/* there are two css files for the site, one for the landing page and one for the rest of the site. the landing page has a different header. this is the master page for all pages other than the landing page - change w/caution as changes here affect everything!!! */



/* set the background of the window to medium gray and the margins to 0 and load girls in tshirts in corner*/
body {
	margin: 0;
	padding: 0;
	background: #E0E0E0 url(../images/tgirls.gif) no-repeat scroll;
	}
	
	
	
/* define default header values to values color to brownish red*/


h3 { font-family: Arial, Helvetica, sans-serif;
	color: #C30;
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: .6em;
	padding-top: .6em;
	}

h4 { font-family: Arial, Helvetica, sans-serif;
	color: #C30;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	margin-bottom: 1em;
	padding-top: .6em;
	}
	
h5 { font-family: Arial, Helvetica, sans-serif;
	color: #666;
	font-size: 10px;
	font-weight: normal;
	line-height: 12px;
	margin-bottom: 2em;
	}
	
h6 { font-family: Arial, Helvetica, sans-serif;
	color: #666;
	font-size: 10px;
	font-weight: normal;
	line-height: 12px;
	margin-bottom: 2em;
	}

/* use to bold phrases -  <span class ="bold"> phrase </span> */

.bold {font-weight: bold;} 

/* use "subject" to make red highlights like the subjects on the letter page <span class ="subject"> phrase </span> */	

.subject {color: #C30;}

/* define default text values in paragraphs */

p {
	font: bold normal 12px Arial, Helvetica, sans-serif; 
	color: #666;
	line-height: 15px;
	}
	
p1 {
	font: bold normal 12px/15px Arial, Helvetica, sans-serif;
	color: #C30;
	text-transform: none;
	line-height: 15px;
	text-align: center;
	}
	
p2 {
	font: 14px Arial, Helvetica, sans-serif;
	line-height: 16px;
	font-weight: bold;
	}	
	
pcenter {
	font: bold normal 12px Arial, Helvetica, sans-serif; 
	color: #666;
	line-height: 15px;
	text-align: center;
	}
	

/* this places a 1px gray line at the bottom of a paragraph as a seperator - use at the start of the paragraph when you want paragraph divisions- <p class = "divider"> information </p>*/

p.divider {
    	border: solid 1px #666; 
      	border-width: 0 0 3px 0;
		padding: 0 0 2em 0;
		margin: 0 0 1.5em 0;}
		
/* this places a 10 px gray line at the bottom of a paragraph as a seperator - use at the start of the paragraph when you want paragraph divisions- <p class = "divider"> information </p>*/

p.divider1 {
    	border: solid 1px #666; 
      	border-width: 0 0 10px 0;
		padding: 0 0 2em 0;
		margin: 0 0 1.5em 0;}
		
/* this places a 20 px gray line at the bottom of a paragraph as a seperator - use at the start of the paragraph when you want paragraph divisions- <p class = "divider"> information </p>*/

p.divider2 {
    	border: solid 1px #666; 
      	border-width: 0 0 20px 0;
		padding: 0 0 2em 0;
		margin: 0 0 1.5em 0;}
		
/* use ul and li for anything that's a list (like the poster list) */
	
ul {font-family: Arial, Helvetica, sans-serif;
	color: #666;
	font-size: 14px;
	font-weight: normal;
	line-height: 14px;
	margin: 0 0 1em 0;
	padding: 0; 
	}	
	
li	{font: bold 12px Arial, Helvetica, sans-serif;
	 color: #666; 
	 list-style-type: none;	
	}

		
/* these define how links look that aren't in the menu -currently they are blue- hover sets the color when a mouse is over the link - currently that's yellow */

a:link, a:visited, a:active {text-decoration: none;}
a:hover {color: #FF0; }


/* this sets the header dimensions and loads the logo image into the header */
#header {
	margin: 0 0 0 130px;
	height: 112px;
	width: 100%;
	color: #909;
	background: #CCFF33 url(../images/solo.logo.gif) no-repeat scroll;
	}

/* use "sub" to for serif sub heads in header <span class ="sub"> phrase </span>
 this is text as opposed to image supplied which was too long (800 px)*/			
.sub {
	position: relative;
	top: 60px;
	left: 250px;
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 18px;
		}
	
	
/* this defines the left column */

#leftcol {
	position: absolute;
	left: 0%;
	top: 112px;
	padding: 0px;
	width: 130px;
	font: bold 18px Arial, Helvetica, sans-serif;
	color: red;
	background: #909;
	}	

	
/* and this defines the menu and anything that a link in the left column menu */

#leftcol a {
	display: block; 
	border: 1px solid #606;
	border-width: .5px 1px .5px 1px;
	padding: 2px 0px 2px 10px;
	font: bold 12px Arial, Helvetica, sans-serif;
	background: transparent;
	color: #F9F;
	}
	
/* hide from IEmac \*/
* html #leftcol a {width: 100%;}
/* end hide */

/* and this defines what happens when the mouse is over the menu items */

#leftcol a:hover {background-color: #F9F; color: #FF0;}

/* special info box as seen on letter and posters etc */

#smbox {
	position: relative;
	margin: 2em .25em .25em .25em;
	padding: .25em;
	background: #CC66CC;
	border: 1px solid #606;
	border-width: 1px;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #99FF00;
	line-height: 1em;
	}
	
/* and the links in the special info box */
#smbox a {
	display: block; 
	border: 0;
	padding: .25em;
	border-width: 0;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #FCF;
	line-height: 1em;
	}
	

/* #menu a#posters {display: block; border: 1px solid gray; 
padding: 2px 0px 2px 10px;} ---don't remember what this was */



/* these rules define the appearence of the center main content and change the behavior of some of the header defaults when the are used in the content div */

#content {
	margin: 0% 0% 0% 120px;
	padding: 1% 2% 2% 6%;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #666;
	font-weight: bold;
	line-height: 15px;
	}
/* headlines inside of main gray content */
#content h1	{
	margin: 0px;
	font-family: bold normal Arial, Helvetica, sans-serif;
	color: #909;
	font-size: 20px;
	font-weight: bold;
	margin-top: .6em;
	margin-bottom: .6em;
	line-height: 23px;
	}

/* sub heads inside of main gray content */
#content h2 {
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	color: #909;
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: .6em;
	padding-top: .6em;
		}

#content h4 {margin: 0; font-weight: bold;}
#content h5 {margin: 0; font-weight: bold;}
#content a {font-weight: bold;}

/* this is the table for the sales page */

table#sales {
	width: 596px;
	border: 2px solid #FF0;
	background: #E0E0E0;
	padding: 2em 0em 2em .5em;
	}
	
table#sales td {
	vertical-align: middle;
	padding: 10px 20px 5px 0px;
	}


	
/* defines the appearence of the footer */
		
#footer {
	clear: both;
	margin: 0;
	padding: 2em;
	text-align: left;
	border: 1px solid #FF0;
	color: #FF0;
	background: #909 url(../images/banana_sm.GIF) no-repeat scroll;
	background-position: right;
	font: bold 12px Arial, Helvetica, sans-serif;
}
	
	
	
/* CSS that applies to the validation markers */

#validation {position: relative;
	text-align: center;
	margin: 15% 0% 1% 0%;
	}
	
#validation img {border: 0;}




		
