@charset "utf-8";
body {
	font: 80% 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 */
	
}
.oneColFixCtr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color:#330e2f;
	height:auto;
	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. */
	padding 0;
}
.oneColFixCtr #container2 {
	background: url(images/site2.jpg) no-repeat top center;
	height:auto;
	display:block;
	position:relative;
	padding: 180px 110px 20px 320px;
}
.oneColFixCtr #container2a {
	background: #000000 url(images/site4.jpg) no-repeat top center;
	height:auto;
	display:block;
	position:relative;
	padding: 230px 50px 10px 50px;
}
.oneColFixCtr #mainContent {
	/*position:relative;
	top:180px;
	left:320px;
	width:470px;*/
	background-color: #ffffff; 
	margin-bottom: 20px;
	border:#333333 1px solid;
	-moz-border-radius: 30px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.oneColFixCtr #nav {
padding: 0;
margin: 0;
list-style: none;
background-color:#000000;
height:20px;
}
.oneColFixCtr #nav ul {
padding: 0;
margin: 0;
list-style: none;
background-color:#330e2f;
}
.oneColFixCtr #nav li {
/*float the main list items*/
float: left;
position: relative;
width: 8em;
border-bottom: 1px solid #ffffff;
background-color: #330e2f;
color: #FFFFFF;
font-size: 100%;
margin-right: 1em;
}
.oneColFixCtr #nav a:link, .oneColFixCtr #nav a:visited {
display: block;
text-decoration: none;
padding-left: 1em;
color: #FFFFFF;
}
* html .oneColFixCtr #nav a {
width: 100%;
}

.oneColFixCtr #nav li > ul {
	top:auto;
	left:auto;
}
.oneColFixCtr #nav li:hover { 
	display: block; 
	width:8em;
	background-color: #FF00FF;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.oneColFixCtr #siteInfo{
	clear: both;
	/* border: 1px solid #cccccc; */
	font-size: 75%;
	color: #ffffff;
	padding: 10px 10px 0px 10px;
	text-align:center;
}
.oneColFixCtr #siteInfo a{
	color:#CCCCCC;
}
