@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: #efefef;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
}
.oneColFixCtrHdr #container {
	width: 802px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	position: relative;
}
a img {
	border: none;
}
#apDiv1 {
	position:absolute;
	width:320px;
	height:240px;
	z-index:1;
	left: 0;
	top: 0;
}#apDiv2 {
	position:absolute;
	z-index:5;
	left: 0;
	top: 0;
}
.oneColFixCtrHdr #header {
	background-color: #000000;
	height: 240px;
	background-image: url(header.jpg);
	background-repeat: no-repeat;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #222222;
	border-left-color: #222222;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	background-color: #000000;
	border: 1px solid #222222;
}
.oneColFixCtrHdr #footer {
	background-color: #000000;
	height: 20px;
	text-align: center;
	font-size: 10px;
}
.oneColFixCtrHdr #footer a:link { 
	color: #efefef;
	text-decoration: none;
	}
.oneColFixCtrHdr #footer a:visited {
	color: #efefef;
	text-decoration: none;
	}
.oneColFixCtrHdr #footer a:hover {
	color: #ffffff;
	background-color: #076db0;
	text-decoration: none;
	font-style: italic;
	}
.oneColFixCtrHdr #footer a:active {
	color: #efefef;
	text-decoration: none;
	}
.oneColFixCtrHdr #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 */
}
