@charset "UTF-8";
body  {
	font: 13px/125% Verdana, Arial, Helvetica, sans-serif;
	background: #1B1464;
	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: #BFD0EA;
}
a:link {
	color: #66CCFF;
	text-decoration: none;
}
#container {
	background: #1B1464;
	margin: 0px auto 0; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left;
	width: 1000px;
} 
#header {
	background: #1B1464;
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	list-style: none;
	z-index: 1;
}
#headerul {
	font-size: 12px;
	list-style: none;
	margin: 0px;
	z-index: 2;
	padding: 0px;
	width: 100%;
	border-top: thin inset #D4DDED;
	border-bottom: thin none;
	border-right-style: none;
	border-left-style: none;
}
#headerul a {
	display: block;
	color: #FFFFFF;
	padding: 3px 25px;
	text-decoration: none;
	font: bold 12px Geneva, Arial, Helvetica, sans-serif;
	margin: 5px 0px 0px 5px;
	border-top: thin none #FFFFFF;
	border-right: thin none #FFFFFF;
	border-bottom: thin none #FFFFFF;
	border-left: thin inset #FFFFFF;
	letter-spacing: 0.2em;
}
#headerul a:hover {
	color: #66CCFF;
	text-decoration: none;
	letter-spacing: .2em;
}
#headerul li {
	padding: 0px;
	color: #FFFFFF;
	text-decoration: none;
	float: right;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 15px 80px;
	font: normal 12px/150% Verdana, Arial, Helvetica, sans-serif;
	margin: 80px 10px 0px;
	color: #FFFFFF;
}
h1 {
	font: 400 normal 24px Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
}
h2 {
	font: normal 20px Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
}
h3 {
	font: normal 16px Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
}
#mainContent {
	padding: 30px 0px 20px 40px;
	margin-top: 0px;
	margin-bottom: 0;
	margin-left: 300px;
	width: 600px;
	color: #FFFFFF;
} 
.box {
	border: 1px solid #FFFFFF;
	padding: 10px;
}
#footer {
	padding: 0 10px 0 20px;
} 
#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 */
	color: #FFFFFF;
}
.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;
}
a:visited {
	color: #66CCFF;
	text-decoration: none;
}
a:active {
	color: #66CCFF;
	text-decoration: none;
}
a:hover {
	color: #66CCFF;
	text-decoration: underline;
}

