/* HTML or Element selectors : Standard HTML Tags  for the entire site */

html {margin: 0;	padding: 0;}
	
body {
	margin: 0;
	padding: 0;
	background-color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: black;
}

h1 {font-size: 135%;
	text-align: left;
	font-weight: bold;}

h2 {font-size: 120%;
	text-align: left;
	font-weight: bold;}

h3 {font-size: 110%;
	text-align: left;
	font-weight: bold;}

h4 {	font-size: 100%;
	text-align: left;
	font-weight: bold;}
	
td {
	margin-right: 10px; 
}

ul {list-style-position: outside;}
ol {list-style-position: outside;}
li {text-align: left; margin-top: 6px;}
a img {border: none;}

a:link    {color: maroon; text-decoration: underline;}
a:visited {color: maroon; text-decoration: underline;}        
a:hover   {color: maroon; text-decoration: underline;}
a:active  {color: maroon; text-decoration: underline;}
 
/* Solitary class selectors */

.justify {text-align: justify;}
.italics {font-style: italic;}
.bold {font-weight: bold;}
.center {text-align: center;}
.emphasis {color: #ff0000;}
.header {margin:0; padding:10px;font-weight: bold;font-size: 275%;}
.quote {font-weight: bold; font-size: 90%;}

.acq {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}

.pageFooter {
	color:#CCCCCC;
	font-size:90%;
	width:500px;
	margin-left: auto;
    margin-right: auto;
    text-align:center;
}

/* *****************************************************
Top of Each Page : Logo and Title
**************************************************** */
div#topPage
{
	margin: 0;
	padding: 0;
	height: 160px;
	background-image: url(../images/top.gif);
	background-position: center;
	background-repeat: no-repeat;
}

/* *****************************************************
The body content 
**************************************************** */
div#bodyContent
{
	float: right;
	width: 100%;
	margin: 0;
	padding: 5px;
}


div#botPage
{
	float: right;
	width: 100%;
	margin: 0;
	padding: 10px;
	font-size: 80%;
	background-image: url(../images/line_h_bottom.gif);
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}


/* *****************************************************
Define how the page will look printed ... 
	idea is do a simpler format for print

	1) take out the background for print
	2) print type in black
**************************************************** */
@media print
{
body {background-color: white;
	width: 90%;
	font-size: 11pt;
	padding: 0;
	color: black;}
div#bodyContent {width: 100%;
	margin: 0;
	padding: 0;}
div#topPage {text-align: center;
	font-size: 16pt;
	color: black;} 
#navBar 	{display:none;}
h1 		{font-size: 14pt;}
h2 		{font-size: 13pt;}
a:link 	 {color: black; text-decoration: underline;}
a:visited {color: black; text-decoration: underline;}        
a:hover   {color: black; text-decoration: underline;}
a:active  {color: black; text-decoration: underline;}
}