/* Cascading Style Sheets */ 
/* (c) www.andreas.com 2014 */ 

body { /* Sets the background. */ 
	/* You can't set a color and an image at the same time. */
	background-color: #ffffff ; /* Sets color if images turned off */ 
	}

H1 {
	font-size: 24px; 
	color: #0099ff;	
	font-family: "verdana", "arial", "helvetica"; 
	} 
H2 {
	font-size: 14px; 
	font-weight: bold; 
	color: #0099ff; 
	font-family: "verdana", "arial", "helvetica"; 
	} 
H3 {
	color: #0099ff; 
	font-style: italic; 
	font-family: "verdana", "arial", "helvetica"; 
	/* comments */ 
	} 
H4 {
	font-size: 16px; 
	font-weight: bold; 
	color: #0099ff; 
	font-family: "verdana", "arial", "helvetica"; 
	/* comments */    
	} 
H5 {
	color: #663300;
	font-size: 90%; 
	font-style: italic ; 
	font-weight: bold; 
	font-family: "verdana", "arial", "helvetica";/* comments */ 
   } 
H6 {
	color: #663300;
	font-size: 70%; 
	font-style: italic ; 
	font-family: "verdana", "arial", "helvetica"; /* comments */ 
   } 

/* Controls the links. Removes underline from links and colors them. */
a:link {
	text-decoration: none; 
	color: ff3300; 
	font-weight: bold; 
	}
a:visited {
	text-decoration: none;
	color: 3333CC;
	font-weight: bold; 
	}
a:active {text-decoration: none }

a:hover {color: #33cc33;}
	
p.toclogo { /* Controls logo */
	font-size: 110%;
	font-weight: bold; 
	text-align: center; /* alignment left, right, center, justify */
   }
p.redtext{ 
	font-family: "verdana", "arial", "helvetica"; 	
	font-weight: bold; 
	color: FF0000; 
	} 
p.toc {   /* Controls table of contents (TOC) */
	font-size: 60%;
	font-weight: bold; 
	text-align: left; 
	/* alignment left, right, center, justify */
   } 

p.navfoot { 	/* Controls my email line at the bottom of navbar */
	font-size: 60%;
	line-height: 150%; /* Sets line height (leading) */
	text-align: center; /* alignment left, right, center, justify */
   } 

p { /* Controls body text */
	font-size: 70%;
	font-family: "verdana", "arial", "helvetica"; 
} 
p.note { 	/* Controls notes (usually bylines) */
	font-size: 60%;
	font-style: italic; /* normal, italic */ 
   } 

p.foot { 	/* Controls footer with Navigation information */
	font-size: 65%;
	text-align: right; 
   } 

p.pageup {  /* p.pageup controls the pageup icon */
     text-align: right; /* alignment left, right, center, justify */
   }

li { 			/* for lists */
	font-size: 70%;
	font-family: "verdana", "arial", "helvetica"; 
   } 

td.cell {   /* for cells*/
	font-size: 70%;
	font-family: "verdana", "arial", "helvetica"; 
   } 

p.navbar 
	{
	/* for the new menu */
	text-align: center; 
	font-size: 70%;	
	font-family: "verdana", "arial", "helvetica";    
	} 

span.navbar 
	{
	/* for the OLD menu */
	text-align: left; 
	font-size: 70%;	
	font-family: "verdana", "arial", "helvetica";    
	} 

span.price { 
	font-size: 100%;
	font-family: "verdana", "arial", "helvetica"; 	
	font-weight: bold; 
	color: FF0000; 
	/* for prices */ 
	} 
   
/* Controls cell colors */
td.navbar  { /* for navbar cell   */ background-color: #FFFFCC; }
td.spacer  { /* for vertical cell */ background-color: #ffffff; }
td.content { /* for content cell  */ background-color: #ffffff; }
td.navfoot { /* for content cell  */ background-color: #ffffff; }

/* End of file: Cascading Style Sheets */ 