@charset "UTF-8";
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; /* 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: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 100%;
	background-color: #FFF;
}
.greytext{
	color:#666;
}
.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 800px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
} 
.twoColFixLtHdr #header {
	background-color: #FFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
	color: #666;
	font-family: Helvetica, "Trebuchet MS", Arial, sans-serif;
	font-size: 24px;
	text-align: right;
	margin-bottom: 20px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	background-color: #FFF;
	height: 800px;
	font-family: Helvetica, "Trebuchet MS", Arial, sans-serif;
	padding-top: 7.5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 13px;
}
.twoColFixLtHdr #mainContent {
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 0px;
	height: 800px;
	padding-left: 0px;
	text-align: left;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
} 


.twoColFixLtHdr #caption {
	font-size: 12px;
}
.twoColFixLtHdr #counter {
	font-size: 75%;	
}

.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #FFF;
} 
.twoColFixLtHdr #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 */
}

.subnav {
	width: 800px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 150px;
}

.subnav ul
{
	text-align: right;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-image: none;
	list-style-type: none;
}

.subnav li
{
	display: inline;
	padding-bottom: 0px;
	padding-top: 0px;
	color: #000;
	padding-right: 50px;
}

.subnav li a:link
{
	color: #000;
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


.subnav ul li a:hover
{
	color: #CCC;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}

.subnav ul li a:visited 
{
	text-decoration: none;
}


.subnav li.active
{
	color: #000;
	text-decoration: none;
}
.bold_sub {
	font-weight: bold;
}

a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
	color: #999;
}
a:active {
	text-decoration: none;
	color: #000;
}

#thumbnails {
	margin: 0px;
}

#thumbnails ul
{
	margin-left: -30px;
}
#thumbnails ul li {
	display: inline;
	height: 60px;
	width: 60px;
	float: left;
	padding: 0.4em;
}

#thumbnails ul li a:hover {
	height: 60px;
	width: 60px;
	float: left;
}
#thumbnails_big {
	
}

.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;
	text-align: left;
}
.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 */
	text-align: right;
}

