@charset "UTF-8";
/* CSS Document */

 
body  {
	margin: 20; /* 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;
	font-family: Tahoma, Geneva, sans-serif;
	background-color: #000;
	background-image: url(images/bg.png);
}

a:link {
	color: #C00;
	text-decoration: none;
}
a:visited {color: #06F;
}
a:hover {color: #C00;
}
a:active {color: #F30;
}

#container {
	width: 85%; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #cccccc;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color:#000;
}
#menuCol {
	width:200px;
} 
#mainCol {
	width:100%;
	background-color: #000;
	background-image: url(images/wheel_background_large.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-attachment: scroll;
}
#header {
	background: #000;  
	height: 125px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-left:auto;
	margin-right:auto;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #900;
} 


#sidebar1 {
	float: left;
	width: 200px; /* since this element is floated, a width must be given */
	background: #000; /* top and bottom padding create visual space within this div */
	padding:0px;
}


#mainContent {
	margin: 0; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */

}

#HomePage {
	text-align: center;
	margin: 4px auto 4px auto;
} 
#HomePage img {
	padding:3px; margin:3px;
	border: 1px solid #000;	
	
} 

#subheader1 {
	background-color: #666;
	text-align: center;
	border:2px #ffff66 solid;
	margin-top:0.5em;
}
#subheader1 tr td  {
	padding: 0 4px 0 8px;
}
#subheader1 tr td div img.scca {
	margin-top: 6px;
	margin-bottom: 6px;
}


#contactInfo {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	text-decoration: none;
	background-color: #000;
	padding: 6px;
	color: #FFF;
	text-align: center;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #900;
}

#contactInfo a.nav:link {color: red; text-decoration: none; }
#contactInfo a.nav:visited {
	color: #F00;
	text-decoration: none;
}
#contactInfo a.nav:hover {
	color: #FC3;
	text-decoration: underline;
}
#contactInfo a.nav:active {
	color: #FC0;
}
.hagerman {
	font-size: 30px;
	font-weight: bold;
	color:#FF0;
	text-align: center;
}

.smaller {
	font-size: 12px;
	color: #f0f0f0;
	margin-top:2em;
}

#sidebar1 a.nav:link {color: red; text-decoration: none; }
#sidebar1 a.nav:visited {
	color: #F00;
	text-decoration: none;
}
#sidebar1 a.nav:hover {
	color: #FC3;
	text-decoration: underline;
}
#sidebar1 a.nav:active {
	color: #FC0;
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#666;
} 
#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 */
	text-align:center;
}
#footer a.nav:link {
	color: #FC3;
	text-decoration: none;
}
#footer a.nav:visited {
	color: #F00;
	text-decoration: none;
}
#footer a.nav:hover {
	color: #FC3;
	text-decoration: underline;
}
#footer a.nav:active {
	color: #FC0;
}


