@charset "utf-8";
body {
	background: #303030;
}

#container {
	width: 950px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	background: #fff;
	text-align: left;
	padding: 0 0 15px 0;
}
#header { 
	background: url(../img/headerBG.jpg) top center no-repeat;
	height: 75px; 
	padding: 0;
} 
#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 */
}
#nav {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	height: 200px;
	
}
#banner {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: url(../img/bannerBG.jpg) top center no-repeat;
	height: 200px;
	border: 1px solid #222;
	margin: 0 30px;
	
}
#subbanner {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: url(../img/subbannerBG.jpg) top center no-repeat;
	height: 200px;
	border: 1px solid #222;
	margin: 0 30px;
	
}
#subbanner2 {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: url(../img/subbanner2BG.jpg) top center no-repeat;
	height: 200px;
	
}
#mainContent {
	padding: 45px 45px 0 45px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 auto;
	background: url(../img/bodyBG.jpg) top center no-repeat;
}
#mainContent table{
	border: 1px solid #7c020d;
	margin: 10px auto;
}
#mainContent table td{
	border: 1px solid #bd1a0b;
}
#mainContent ul li {
	margin-top: 10px;
}
#mainContent h1, h2, h3 {
	color: #bd1a0b;
}

#footer { 
	padding: 0 30px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #bd1a0b;
	border: 1px solid #222;
	border-top: 5px solid #222;
	color: #e4dfc4;
	margin: 15px 30px 0 30px;
	font-size: 75%;
} 
#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 */
	clear: both;
	text-align: left;
}
#footer a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
#footer a:hover {
	text-decoration: underline;
}
#clear { 
	clear: both; 
}
.imgR  {
    float: right;
	margin: 0 0 5px 10px;
}
.imgL  {
    float: left;
	margin: 0 10px 5px 0;
}


#contactFormWrap {
	float: left;
	width: 540px;
	margin-bottom: 10px;
}

.notice {background:#ffd84f;color:#222;border-color:#daad0d; font-weight: bold;}