@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #a4a590;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
p{
	font: Arial, Helvetica, sans-serif;
	font-size: 0.80em;
	line-height: 130%;
	color:#000000;
	}

h1{
	font-family:"Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #00457c;
	}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	border: solid 4px white;
	margin: 10px auto;
	padding:0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	padding: 0;
	margin: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#nav{
	list-style-type:none;
	padding: 0;
	margin: 0;
	text-indent: 0px;
}
#nav li{
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-indent: 0;
	float: left;
}
#nav a{
	font:0.90em "Times New Roman", Times, serif;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	background-color: #a4a590;
	display: block;
	/*width: 108px;*/
	width:126px;
	margin-top:4px;
	margin-left: 0;
	margin-right: 4px;
	margin-bottom: 4px;
	padding:5px 0;
	text-transform: capitalize;
	color: #FFFFFF;
}
#copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	color: #FFFFFF;
	width: 780px;
	text-align: right;
	margin-right: auto;
	margin-left: auto;
}
#copyright a{
	color: white;
	text-decoration: none;
	border-bottom: dotted 1px white;
	}


#nav a:hover{
	background-color: #98082e;
	}
	
	 #mainContent .aboutText a {
	color: #990000;
	text-decoration: none;
}
 #mainContent a {
	color: #990000;
	text-decoration: none;
}

 #mainContent a:hover {
	color: #990000;
	text-decoration: underline;
}

 #mainContent .aboutText a:hover {
	color: #990000;
	text-decoration: underline;
}
	
	#mainContent { 
	clear: both;
	margin: 0; 
	padding-top: 5px;
	padding-left: 20px;
	padding-bottom: 0;
	padding-right: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#nav a.rightNavButton {
	margin-top: 4px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 4px;
}


#footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

