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

html {
	height: 100%;
}
body {
	height: 100%;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(../images/bg.png) repeat-x #000000;
	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;
}
.wrap {
	width: 846px;
	height: 100%;
	background: url(../images/centered_bg.png) 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. */
}
.imgHolder{
	border: 1px solid #BD2B37;
	margin: 15px;
	background-color:#fff;
	padding: 8px;
}
.captionImgHolder{
	margin: 6px;
	font-size: 11px;
	color:  #BD2B37;
	text-align:center;
}
.tablecontainer{
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	
}
.container {	
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	width: 780px;  
	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. */
	background: url(../images/body_bg.jpg) no-repeat;
	background-position: 0 230px;
	border-left: 1px solid #fff;
}
#header {
	background: #ffffff; 
	height: 230px;
	padding: 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. */
	margin: 0 auto;
	border-bottom: 1px solid #000;
}
#header #header_left {
	width:399px;
	height: 230px;
	margin:0;
	padding:0;
	background: url(../images/header_left.png);
	float:left;
}
#header #header_right {
	width:381px;
	height: 230px;	
	margin:0;
	padding:0;
	background: url(../images/header_right_image.jpg);
	float: left;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
}
#mainContent .hilightBox{
	color: #fff;
	background-color: #BD2B37;
	border: 1px solid #000;
	padding: 10px;
	text-align: center;
}
a {
	color: #BE2C37;
}
#mainContent h1{
	font-size: 24px;
	font-weight: bold;
	color: #A8292D;
}
#mainContent h2{
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	color: #39516C;	
}
#mainContent p{
	color: #4B688C;
	font-size: 16px;
}
#mainContent table{
	color: #4B688C;
	font-size: 16px;
}

.footer {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	border-left: 1px solid #fff;
	height:31px;
	text-align:center;
	background: url(../images/footer_bg.png) repeat-x;
	background-position:bottom;
}
.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 */
	font-size: 10px;
	color: #fff;
	padding: 4px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.footer a{
	color: #fff;
}