@charset "utf-8";
body  {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	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:#000066;
}
.twoColFixLtHdr #left { 
	float: left; 
	/* width: 50%; since this element is floated, a width must be given */
	background:url(graphix/bkg-lt-bg.gif) repeat-x #EBEBEB;
}
.twoColFixLtHdr #right { 
	float: right; 
	/* width: 50%;  since this element is floated, a width must be given */
	background: #CCCCFF; /* the background color will be displayed for the length of the content in the column, but no further */
}	
.twoColFixLtHdr #container { 
	width: 765px;  
	background: #fff9e1;
	margin: 0 auto; 
	border: 1px solid #666666;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #fff9e1; 
} 
.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 */
	display:none;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 15px 5px;
	font-size:12px;
}

.twoColFixLtHdr #sidebar1 h3{
	color:#009966;
	text-align:center;
	font-size:150%;
	font-weight:bold;
}
.twoColFixLtHdr #sidebar1 h4{
	color:#FF9933;
	text-align:left;
	font-size:150%;
	font-weight:bold;
}

.twoColFixLtHdr #sidebar1 li{
	color:#009966;
	list-style:disc;
	font-size:140%;
	font-weight:bold;
	padding-bottom:5px;
}
.twoColFixLtHdr #mainContent { 
	font: 110% Verdana, Arial, Helvetica, sans-serif;
	margin: 0 0 0 220px; /* 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLtHdr #mainContent h1{ 
	color:#423386;
	font-size:150%;
	padding-top:15px;
}
.twoColFixLtHdr #mainContent h3{ 
	color:#FF9933;
	text-align:center;
	font-size:110%;
	font-weight:bold;
}
.twoColFixLtHdr #mainContent a{ 
	color:#009966;
}
.twoColFixLtHdr #mainContent .small{ 
	font-size:12px;
	color:#333333;
	text-align:center;
}
.twoColFixLtHdr #mainContent #nav a{ 
	margin-top:0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size: 11px;
	color:#008f6c;
	text-decoration:none;
}

.twoColFixLtHdr #mainContent #nav a:hover{ 
	color:#000066;
/*	background-image:url(graphix/mag_glass_sm.gif);
	background-position:right;
	background-repeat:no-repeat;*/
}
.twoColFixLtHdr #mainContent #nav #navtable{ 
	margin: 0 auto;
	text-align:left;
}
.twoColFixLtHdr #mainContent #nav #navtable td{ 
	padding:0 21px 0 3px;
	border-left:#fe7f16 solid 1px;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#423386; 
} 
.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 */
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
}

.twoColFixLtHdr #footer a{ 
	color:#FFFCCC;
}

.twoColFixLtHdr #footer a:hover{ 
	text-decoration: none;
}

.nexlynx {
	text-align:right;
	font-size:9px;
}
.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;
}