@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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #666666;
	background-image: url(../_images/bg.gif);
	background-repeat: repeat;
}
#container {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#header {
	margin: 0px;
	height: 95px;
	width: 1024px;
	background-color: #000;
	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 */
}
#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin: 0px;
	height: 218px;
	width: 1024px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	position: relative;
}
#button {
	margin: 0px;
	padding: 0px;
	right: 0px;
	bottom: 0px;
}
#button ul {
	list-style-type: none;
	display: block;
	margin: 0px;
	padding: 0px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	text-indent: -1000em;
}
#button ul li a:link,#button ul li a:visited {
	background-image: url(../_images/index/front_button.jpg);
	background-position: left bottom;
	height: 51px;
	width: 250px;
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	display: block;
	list-style-type: none;
	text-transform: none;
	font-size: 0px;
	line-height: normal;
	color: #AAB397;
	text-indent: -1000px;
	vertical-align: -1000%;
}
#button ul li a:hover,#button ul li a:active {
	background-image:url(../_images/index/front_button.jpg);
	background-position: right bottom;
	font-size: 0px;
	color: #21437C;
	text-decoration: none;
	cursor: crosshair;
}
#leftAd {
	float: left;
	margin: 0px;
	padding: 0px;
	height: 236px;
	width: 218px;
}
#middleLeft {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 236px;
	width: 300px;
}
#middleRight {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 236px;
	width: 271px;
}
#rightAd {
	margin: 0px;
	padding: 0px;
	float: right;
	height: 236px;
	width: 235px;
}
#footer {
	background:#e1dbd4;
	padding-top: 0px;
	padding-right: 112px;
	padding-bottom: 0;
	padding-left: 112px;
	position: relative;
	clear: both;
}
#footer table tr td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #40382E;
	text-align: center;
	width: 200px;
	background-color: #e1dbd4;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	text-decoration: underline;
}
#footer table tr td a:hover {
	color: #6F1100;
	text-decoration: underline;
}
#footer table tr td a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #40382E;
	text-align: left;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-decoration: none;
	background-color: #e1dbd4;
	font-weight: normal;
}
#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 */
	font-size: 9px;
	text-align: center;
}
#footer p a {
	color: #666;
	text-decoration: none;
	font-variant: normal;
	text-transform: none;
}
#footer p a:hover {
	text-decoration: underline;
}

