


/*
=========== body ==========================================================

*/


body
{
 background-color:white;
 color: black;

	text-align: center; 
	 /* for IE bug - will remove this later */


}










/*
=========== a ==========================================================

*/



/* normal underlined links */


a:link {
  color: #0000cc ;
  text-decoration: underline ;
}

a:visited {
  color: purple ;
  text-decoration: underline ;
}

a:active {
  color: purple ;
  text-decoration: underline ;
}

a:focus {
  color: purple ;
  text-decoration: underline ;
}







/*

main navigation links
only underline when hover

*/


a.main-navigation:link {
  color: navy ;
  font-weight: bold ;
  font-family:Arial,Verdana,Sans-serif;
  text-decoration: none ;
}

a.main-navigation:visited {
  color: navy ;
  font-weight: bold ;
  font-family:Arial,Verdana,Sans-serif;
  text-decoration: none ;
}

a.main-navigation:active {
  color: navy ;
  font-weight: bold ;
  font-family:Arial,Verdana,Sans-serif;
  text-decoration: none ;
}

a.main-navigation:focus {
  color: navy ;
  font-weight: bold ;
  font-family:Arial,Verdana,Sans-serif;
  text-decoration: none ;
}

a.main-navigation:hover    {
  color: navy ;
  font-weight: bold ;
  font-family:Arial,Verdana,Sans-serif;
  text-decoration: underline ;
}






/* 
=========== box ==========================================================

if surrounding entire page with box,
have box width just under 100%


	<div id="wholepage">
	<div id="boxinpage">

*/




	#wholepage {
 background-color:white;

		margin: 0 auto;   	 

/*
this centers in other browsers but not in IE
margin: top/bottom 0, left/right auto 
*/

		text-align: left; 	/* counter the center done in body above (for IE bug) */

		border: none  ;
		padding: 0px;

		width: 98%;
	}




	#boxinpage {
 background-color:white;

		margin: 0 auto;   	 
		text-align: left; 	 

   		border: 2px solid gray ;
   		padding: 12px;

		width: 96%;
	}


 





/* 
=========== noprint ==========================================================

print will exclude segments marked with: 
 <DIV class=NOPRINT> 
*/

.noprint     {}

@media print {               
  .noprint {display: none}           
  }







