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

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;
	color: #999;
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	background-color: #666;
}

a {
	color: #000;
	text-decoration: none;
}

a:link {
	color: #0CF;
	text-decoration: none;
}
	
a:visited {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #0CF;
	text-decoration: underline;
	text-align: left;
}

.twoColFixLt #header {
	width: 950px; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0px;
	height: 65px;
	color: #999;
}

.twoColFixLt #container {
	width: 950px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px dotted #999;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0px;
	height: 600px;
	color: #999;
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 215px;
	font-size: 70%;
	text-align: left;
	height: 600px;
}

.twoColFixLt #mainContent {
	width: 700px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 215px;
	padding-top: 2px;
	padding-right: 20px;
	padding-bottom: 2px;
	padding-left: 20px;
	text-align: left;
	height: 600px;
	font-size: 80%;
} 
.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;
}
