/* 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 white and the margins to 0 and load girls in tshirts in corner*/
body {
	margin: 0;
	padding: 0;
	background: #FFF;
	}
	
	
	
/* define default header values to values color to brownish red*/


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

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

/* 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: 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;
	}
	
pcenter {
	font: 12px Arial, Helvetica, sans-serif; 
	color: #666;
	line-height: 15px;
	text-align: center;
	}
	
p2 {
	font: bold normal 12px/15px Arial, Helvetica, sans-serif;
	color: #FFF;
	text-transform: none;
	line-height: 13px;
	text-align: left;
	}
	

/* 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; }


/* 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: News Gothic MT, Times, serif; 
	font-size: 18px;
		}

/* #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% 25px;
	padding: 1% 2% 2% 6%;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #666;
	line-height: 15px;
	background: #FFF;
	}
/* headlines inside of main gray content */
#content h1	{
	margin: 0px;
	font-family: 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: normal;
	line-height: 18px;
	margin-top: -.5em;
	margin-bottom: .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 form page */
	
table#form
	{ 
	height: 496px;
	border: 1px solid #000;
	background: #FFF;
	}

td.head {
	height: 20px;
	text-align: center;
	border: 1px solid #000;
	padding: 2px;
	}
	

td.posters
	{
	width: 311px;
	border: 1px solid #000;
	padding: 2px;
	}


td.price
	{
	width: 34px;
	border: 1px solid #000;
	padding: 2px;
	}


td.quantity
	{
	width: 77px;
	border: 1px solid #000;
	padding: 2px;
	}


td.total
	{
	width: 55px;
	border: 1px solid #000;
	padding: 2px;
	}


td.grandtotal
	{
	width: 55px;
	text-align: right;
	border: 1px solid #000;
	padding: 2px;
	}
	
	


	
	
	
/* CSS that applies to the validation markers */

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




		
