@charset "UTF-8";
body  {
	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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
a:link, a:visited {
	color: #FFC63C;
	text-decoration: none;
	}


.twoColFixLtHdr #container {
	width: 790px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	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. */
} 
.twoColFixLtHdr #header {
	background: #000000;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #000000;
	color: #333333;
	border-right-width: 3px;
	border-right-style: dotted;
	border-right-color: #333333;
	width: 130px;
}
.twoColFixLtHdr #sidebar1 ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.twoColFixLtHdr #sidebar1 li{
	font-size: 14px;
	list-style-type: none;
	font-weight: bold;
	line-height: 35px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
}

.twoColFixLtHdr #sidebar1 li a, a:link, a:visited {
	color: #FFFFFF;
	text-decoration: none;
	list-style-type: none;
}
.twoColFixLtHdr #sidebar1 li a:hover {
	color: #FFC63C;
	border-bottom-color: #FFC63C;
}
.twoColFixLtHdr #mainContent {
	color: #FFFFFF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.twoColFixLtHdr #galleryContent {
	color: #FFFFFF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 150px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.twoColFixLtHdr #footer {
	background:#000000;
	font-size: 10px;
	text-align: center;
	border-top-width: 3px;
	border-top-style: dotted;
	border-top-color: #333333;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 10px;
	color: #FFFFFF;
	line-height: 18px;
} 
a:link, a:visited {
	color: #FFC63C;
	text-decoration: none;
	list-style-type: none;
	}
	
.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;
}
