@charset "utf-8";
body {
	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: #bab9b9;
	background-color: #1c1c1e;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
#container {
	width: 1024px;
	margin: 0 auto;
	text-align: left;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#header {
	height: 135px;
	margin-top: 10px;

}
#navbar {
	height: 40px;
	background: url(../images/navibottom.gif) no-repeat left center;
}


#navbar ul {
	margin: 0px;
	padding: 6px 0px 0px;
}
#navbar ul li {
	display: inline;
	list-style: none;
	margin-right: 35px;
	margin-left: 35px;
}
#navbar a:link, #navbar a:visited {
	color: #666;
	text-decoration: none;
	font-size: 1.2em;
}
/*#navbar a:visited {
	text-decoration: none;
}*/
#navbar a:hover, #navbar a:active {
	color: #BAB9B9;
	text-decoration: underline;
}
/*#navbar a:active {
	text-decoration: none;
}*/

#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 */
}
#mainContent {
	padding: 0 20px;
	min-height: 500px;
	margin-top: 5px;
	margin-bottom: 5px;
	background-attachment: fixed;
	background-color: #363637;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center center;
	border: 2px solid #3b61b8;
}
#footer {
	height: 20px;
	background-image: url(../images/footerbanner.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	border: 2px solid #363637;

}
#footer p {
	margin: 0;
	font-size: 0.8em;
	padding-top: 2px;
	padding-left: 10px;
	color: #BAB9B9;
}
