@charset "utf-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #4E5658;
	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: #CCC;
}
.twoColFixLt #container { 
	width: 869px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #373C3F;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #4E5658;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColFixLt #sidebar1 {
	background: #373C3F url(images/left-grey-bg.jpg) repeat-y left top;
	float: left; 
	width: 194px; 
	min-height: 750px;
	padding: 10px 10px 15px 10px;
}

.twoColFixLt #sidebar2 { /*used with photoflow page because images are top and absolute aligned*/
	background: #373C3F url(images/left-grey-bg.jpg) repeat-y left top;
	float: left; 
	width: 184px; 
	min-height: 750px;
	padding: 10px 10px 15px 20px;
}

.twoColFixLt #sidebar2  img{
	position:static;
}

.twoColFixLt #sidebar1title {
color: #373C3F;
font-weight: bold;
font-size: 16px;
padding: 40px 0 10px 0;
}


 a.navLink:link, a.navLink:active, a.navLink:visited {
	color: #4E5658;
	font-size: 13px;
	font-weight: normal;
	text-decoration: none;
	padding: 0;
	line-height: 30px;
	
}
a.navLink:hover {
	color: #ffffff;   
	text-decoration: none;
	font-size: 13px;
	font-weight: normal;
}




.twoColFixLt #mainContent { 
	margin: 0 0 0 214px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 20px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #373C3F;
	
} 


.twoColFixLt #flashHeader { 
margin: 0;
padding: 0;
}

.twoColFixLt #smNavBar { 
margin: 0;
padding: 0 20px 0 0;
height: 20px;
text-align:right;
background-color: #ffffff;
width: 635px;
}

.twoColFixLt #smNavBar img{
	position:static;
	top:auto;
}

a.smNavBar:link, a.smNavBar:active, a.smNavBar:visited {
	color: #373C3F;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;


	
}
a.smNavBar:hover {
	color: #0C0;
	text-decoration: none;
	font-size: 14px;
	font-weight: normal;
}


.twoColFixLt #mainBody { 
margin: 0;
padding: 10px 20px;
width: 615px;
}

.twoColFixLt #mainBodyTitle {
color: #FFF;
font-weight: bold;
font-size: 14px;
}




.twoColFixLt #mainBodyLft {
float: left;
width: 400px;
}

.twoColFixLt #mainBodyRt {
float: right;
width: 200px;
line-height: 30px;

}

a.bodyLink:link, a.bodyLink:active, a.bodyLink:visited {
	color: #6F0;
	font-size: 11px;
	font-weight: normal;
	text-decoration: none;
}
a.bodyLink:hover {
	color: #FFF;
	text-decoration: none;
	font-size: 11px;
	font-weight: normal;
}










.twoColFixLt #whtSpace { 
height: 5px;
background-color:#FFF;

}


.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;
}