@charset "utf-8";
/* stylesheet for structure of the page*/
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;
	padding-left:20px;
	padding-right:20px;
	/*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:#FFFFFF;
	font-family:Helvetica, serif;
	font-size:12pt;
	background:#cccccc;
}

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin:0px;
	padding:0px;
	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. */
}

#header {
	margin:0;
	padding:0;
	height:241px;	
	background-image:url(../images/header.jpg);
	background-repeat:no-repeat;
}

#menu {
	margin:0;
	padding:0;
	height:43px;
	background-color:#cccccc;
}

#mainContent {
	margin:0px;
	padding:0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*specify page height */
	background:#8C1515;
}

#left_content {
	margin:0;
	padding:0;
	width:170px;
	margin-top:66px;
	height:166px;
	float:left;
}

#right_content{
	float:right;
	margin:0;
	padding:0; 
	padding-left:60px;
	padding-right:50px;
	padding-top:56px;
	padding-bottom:10px;
	width:510px;
	height:auto;
}

#footer {
	margin:0;
	padding:0;
	height:200px;
	background-image:url(../images/footer.jpg);
	background-repeat:no-repeat;
	clear:both;
}

.hidden_text{
	position:absolute;
	top:-10000px;
	left:-10000px;
}

p {
	margin:0;
	padding:0;
	padding-bottom:1.5em;
}