@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #101d28;
	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;
}
.oneColElsCtr #container {
	width: 46em;
	background:#666666;
	margin: 15px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px inset  #CCCCCC;
	-moz-border-radius: 8px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtr #mainContent {
	padding: 10px 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColElsCtr #mainContent h1{
text-decoration:none;
color:#FFFFFF;
}
.oneColElsCtr #mainContent h2, {

color: #CCCCCC;
}
.oneColElsCtr #mainContent h3 {
color: #FFFFFF;
}

.oneColElsCtr #mainContent p{
color:#FFFFFF;
font-family:"Times New Roman", Arial;
}
.oneColElsCtr #mainContent a{
color:#FFFFFF;
text-decoration:none;
font-weight:bold;
}
.oneColElsCtr #mainContent a:hover{
text-decoration:underline;
}
.oneColElsCtr #mainContent ul{
list-style:none;
}
.oneColElsCtr #mainContent li{
padding-left: 20px;
}


