/*ELEMENTS*/
/**************************************************************/
HTML				{
						
						}
BODY 			{
						margin: 0px;
						margin-left: 100px;
						margin-right: 100px;
						color: #00638C;
						font-family: verdana,arial,helvetica,sans-serif;
						font-size: 0.8em;
						}
TD,TH,
CAPTION		{
						color: #00638C;
						font-family: verdana,arial,helvetica,sans-serif;
						font-size: 100%;
						}
TFOOT			{
      				font-style: italic;
      				font-size: 80%;
      				}
CAPTION 		{
      				/*NS 4 does not understand 'bolder', so use 'bold'*/
      				/*font-weight: bold;*/
      				}
      				/*For browser consistency, hard define some soft values*/
B,EM,
STRONG		{
      				font-weight: bold;
      				font-style: normal;
      				}
						/*When CSS is active, NS 4 sets headers the same, we can fix this here*/
						/*As a bonus, this makes browsers behave consistently*/
H1					{ 
						font-size: 200%;
						}
H2					{ 
						font-size: 180%;
						}
H3					{ 
						font-size: 160%;
						}
H4					{ 
						font-size: 140%;
						}
H5					{ 
						font-size: 120%;
						}
H6					{ 
						font-size: 100%;
						}       				
/*PSEUDO-CLASSES*/
/**************************************************************/ 
a:link, 
a:visited, 
a:active 		{ 	
						font-family: verdana,arial,sans-serif;
						font-weight: bold;
						/*font-size: 80%;*/
						color:#6666FF;
						background:transparent; 
						}
a:hover 		{ 		
						color:#4A637B;
						text-decoration:underline;
						}
/*OPTIONAL ADDITIONS TO ELEMENTS & PSEUDO-CLASSES, OFF BY DEFAULT*/					
/**************************************************************/		
A:link, 
A:visited, 
A:active 		{
						/*Turn off underline except when hovered over; NS 4 will do this, even when hovered*/
						/*text-decoration: none;*/
						}
CAPTION 		{
						/*NS 4 does not understand font-variant; no solution but it will still be bold*/
						/*font-variant: small-caps;*/
						}						
/*CLASSES*/
/**************************************************************/  
.highlight 		{				
						color: #666666;
						font-family: verdana,arial,helvetica,sans-serif;
						/*font-weight: bold;*/
						font-size: 150%;
						}
.copyright	{
						color: #6666FF;
						text-align: center;
						}						
.small				{
						color: #666666;
						font-size: 90%;
						text-align: center;
						margin-top: 10px;
						}
/*IDs*/
/**************************************************************/
#special		{
      				/*just an example; NS4 understands this*/
      				color: goldenrod;
      				}
#blueBorder {
							border-color:#42A5BD;
							border-width:1px;
							border-style:solid;
						}  				
@media print {
  @page         { margin: 10% }
  H1, H2, H3,
  H4, H5, H6    { page-break-after: avoid; page-break-inside: avoid }
  BLOCKQUOTE,
  PRE           { page-break-inside: avoid }
  UL, OL, DL    { page-break-before: avoid }
}									
