
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #cccc99 url(../images/bg2.jpg) repeat top left;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000000;
}
p
{
	padding: 10px;
}
ul 
{
	color: #333333;
	margin:10px;
	padding:10px;
	list-style-type:none;
}
a {
	color:#650000;
	text-decoration:none;
}
a:hover {
	color:#5a5a5a;
	text-decoration:underline;
}
img
{
    border-style:none;    
}
hr
{
	color: #660000;
	background-color:#660000;
	height:1px;
	width:300px;
}
h3
{	font-size:14px;
	line-height:18px;
	font-weight:bold;
	color:#ffffff;
	padding-left: 10px;
}
h4
{
	font-size:12px;
	line-height:14px;
	font-weight:bold;
	color:#ffffff;
}
.red
{
	color: #660000;
	font-weight: bold;
}
.green 
{
	color: #666600;
	font-weight: bold;
}
.grey
{
	color: #cccc66;
	font-weight: bold;
}
.bggreen 
{
	background-color:#666600;
}
.bgred
{
	background-color:#660000;
}
.bggrey
{
	background-color:#cccc66;
}
#container { 
	width: 900px;  
	background: url(../images/bg_container3.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	color:#000000;
	font-size:12px;
	line-height:16px;
	
} 
#header 
{
	width: 882px;
	background: url(../images/header.jpg) no-repeat;
	padding: 0;
	height:175px;
	margin-left:9px;
	

} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an 
unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin 
collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the 
div */
}
#topNav
{
	width: 880px;
	height:40px;
	margin: 0;
	padding: 0;
	
}
.topNav  ul{
	margin:0px;
	padding:0px;
	width:300px;
	list-style-type:none;
}
.topNav li{
	 float:left;
	 display:inline;
}
.topNav li a{
	 float:left;
     font-family:Arial, Helvetica, sans-serif;
	 font-size:12px;
	 color:#FFFFFF;
	 text-align:center;
	 line-height:35px;
	 display:block;
	 text-decoration:none;
	 background:#660000;
	 padding-left:12px;
	 padding-right:12px;
	 margin-top:5px;
	 border-right:1px solid #FFFFFF;
}
.topNav li a:hover{
	background:#FFFFFF;
	color:#666600;
	text-decoration:none;
	border-right:1px solid #666600;
}
.topNav li a.topNavAct{
	background:#FFFFFF;
	color:#660000;
	text-decoration:none;
	height:40px;
	position:relative;
	top:-5px;
	border-right:none;
}
.topNav li a.topNavLast{
	border-right: none;
	padding-left: 15px;
	padding-right: 15px;
}
#currDate
{
	float: left;
	width: 700px;
	font-size: 10px;
	color: #333333;
	padding: 0 0 0 10px;
}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 330px; 
	padding: 10px;
	margin: 5px;
}
#mainContent { 
	margin: 0 340px 0 5; /* the right margin on this div element creates the column down the right side of the page - 
no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want 
the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10; 
}
.box 
{
	border:solid 2px #660000;
	width:500px;
	color: #660000;
	padding: 10px;
}
.boxBgGrey
{
	border: solid 1px #660000;
	background-color: #cccc66;
	padding: 5px;
	color: #660000;
	width: 500px;
	
}
.boxBgRed
{
	border: solid 1px #cccc66;
	background-color: #660000;
	color: #ffffff;
	width: 500px;
}
.boxBgGreen
{
	border: solid 1px #cccc66;
	background-color: #666600;
	color: #ffffff;
	width: 500px;
}
.sidebarboxBgGrey
{
	border: solid 1px #660000;
	background-color: #cccc66;
	padding: 5px;
	color: #660000;		
}
	
#locations
{
	margin: 0 auto;
	width: 700px; 
	padding: 20px; 
}
#locations h3
{
	font-size: 16px;
	line-height: 18px;
	color: #660000;
	
}
#locations hr
{
	color: #660000;
	background-color:#660000;
	height:2px;
	width:400px;
}
#footer { 
	padding: 0 0 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. 
*/
	margin: 0 auto;
	text-align: center;
	font-size: 10px;
	color: #660000;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse 
- a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the 
margin collapse issue */
}
.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;
}
