@charset "utf-8";
body {
	font: 75% Verdana, Arial, Helvetica, sans-serif;
	background: #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: #666666;
}

.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #000000;
	padding: 0px;
	margin: 0px;
}

.oneColFixCtrHdr h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: normal;
	color: #666666;
}

.oneColFixCtrHdr h2 {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
}

.oneColFixCtrHdr #mainContent {
	padding: 15px;
	background: #FFFFFF;
	height: 360px;
	margin: 0px;
}
.oneColFixCtrHdr #footer {
	padding: 0px 10px;
	background:#000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: center;
	margin: 0px;
}
.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 */
}

.oneColFixCtrHdr #footer a:link{
	text-decoration: underline;
	color: #FFFFFF;
}

.oneColFixCtrHdr #footer a:hover{
	text-decoration: none;
	color: #FFFFFF;
}

.oneColFixCtrHdr #footer a:visited{
	text-decoration: underline;
	color: #FFFFFF;
}

.oneColFixCtrHdr #mainContent a:link{
	text-decoration: underline;
	color: #000000;
}

.oneColFixCtrHdr #mainContent a:hover{
	text-decoration: none;
	color: #666666;
}

.oneColFixCtrHdr #mainContent a:visited{
	text-decoration: underline;
	color: #666666;
}

/* navigation
--------------------------------------------------*/
#navigation {
	height:30px;
	line-height:30px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-color: #000000;
}

#navigation ul {
  margin:0;
  padding:0;
}

#navigation li {
  float:left;
  margin:0;
  padding:0;
  list-style-type:none;
  border-right:1px solid #000000;
  white-space:nowrap;
}


#navigation li a {
	display:block;
	padding:0 10px;
	font-size:10px;
	text-transform:uppercase;
	letter-spacing:2px;
	font-weight:normal;
	color: #FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}

#navigation li a:hover {
	background-color: #333333;
}


* html #navigation a {width:1%;} /* see http://www.positioniseverything.net/explorer/escape-floats.html */


/* images
--------------------------------------------------*/
img.left {
	float:left;
	margin:0px 12px 0px 0px;
	padding: 0px;
}

img.right {
  float:right;
  margin:0 0 0 12px;
}

img.center {
  display: block;
  margin:0 auto;
}

