@charset "utf-8";
/* CSS Document */
<!-- 
body  {
	background: #ccc;
	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 */
}
.twoColFixLt #container,.threeColFixLt #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
	background:repeat-y url(/images/bg_page.gif) ;
}
.twoColFixLt #sidebar1,.threeColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 171px; /* 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 */
	padding: 0;
}
.twoColFixLt #mainContent { 
	width:729px;
	float:left;
	margin: 0;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.threeColFixLt #mainContent { 
	width:529px;
	float:left;
	margin: 0; 
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.threeColFixLt #rightSidebar { 
	width:170px;
	float:left;
	margin: 0; 
	padding: 30px 30px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#headerBar{ 
	background:url(/images/bg_top.gif) repeat-x;
	text-align:right;
}
#menuBar{ 
	background:#e05206 url(/images/bg_pattern.gif) repeat-x;
	height:32px;
}
#menuBar ul{
	margin:0;
	list-style:none;
	padding:0;
}
#menuBar ul li{
	padding:0;
	margin:0;
	display:block;
	height:32px;
	vertical-align:middle;
	float:left;
	font-size:11px;
	font-weight:bold;
	background-color:#e05206;
}

#menuBar .lastItem{
	border-right:2px solid #873a15;
}
#menuBar ul li a{ 
	display:block;
	text-decoration:none;
	padding:8px 10px;
	color:#FFcc00;
}
#menuBar a:hover{
	color:#FFCC00;
	text-decoration:underline;
}
#textContainer{
	padding:30px;
}
#sidebarContainer{
	padding:0 10px;
	height:153px;
}
.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;
    line-height: 0px;
}
#subMenu{
	width:140px;
	float:left;
	list-style: none;
	list-style-type: none;
	margin:0;
	padding:0;
	overflow:hidden;
}
#subMenu ul{
	width:130px;
	list-style: none;
	list-style-type: none;
	padding:0 0 10px 0;
	margin:0;
}
#subMenu ul li{
	width:130px;
	list-style: none;
	list-style-type: none;
	font-size:11px;
	position:relative;
}
#subMenu ul li a{
	padding:5px 0;
	text-decoration:none;
	color:#999;
	display:block;
}

#subMenu ul li h1{
	font-size:11px;
	padding:5px 0;
	margin:0;
	color:#069;
	font-weight:bold;
	display:block;
}
#subMenu a:hover{
	text-decoration:none;
	color:#069;
}
--> 