@charset "UTF-8";
body  {
	font: 100% Tahoma, 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: #000000;
	background-color: #9CF;
	background-image: none;
}

.twoColFixLtHdr #container {
	width: 780px;  /* 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: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	vertical-align: top;
} 
.twoColFixLtHdr #header {
	background: #267aab;
	height: 72px;
	/*padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.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 #mainmenu{
	background-color: #334961;
	height: 52px;
	vertical-align: center;
	text-align: right;
	line-height: 34px;
	padding-left: 0px;
	background-image: url(/images/images-home/Menu%20BG.gif);
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background-repeat: repeat-x;
}

.twoColFixLtHdr #mainmenu a{
	font-size: 16ุpx;
	padding-left: 4px;
	padding-right: 4px;
	margin-left: 4px;
	margin-right: 4px;
	color: #6C0;
}

.twoColFixLtHdr #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 190px;
	margin: 0px;
	background-color: #C8E3EB;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.twoColFixLtHdr #sidebar h3 {
	background-color: #334961;
	font-size: 15px;
	color: #ffffff;
	padding-left: 10px;
	margin: 0px;
	padding-top: 3px;
	padding-bottom: 2px;
	height: 22px;
}

.twoColFixLtHdr #sidebar ul{
	color: #0099CC;
	font-size: 12px;
	font-weight: bold;
	list-style-position: outside;
	list-style-type: square;
	padding-left: 10px;
	margin-left: 15px;
	margin-top: 0px;
}

.twoColFixLtHdr #sidebar li {
	padding-top: 14px;
}

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 185px; /* 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: 20px 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
} 


.twoColFixLtHdr #mainContent ul{
	list-style-type: square;
}

.twoColFixLtHdr #mainContent li{
	margin: 12px;
}

.twoColFixLtHdr #mainContent img {
	padding: 6px;
	border: none;
}

.twoColFixLtHdr #mainContent a {
	font-size: 12px;
}

.twoColFixLtHdr #mainContent h1 {
	color: #990000;
	font-size: 16px;
}


.twoColFixLtHdr #mainContent table {
	border-style: double white;
	BORDER-RIGHT: medium none; 
	BORDER-TOP: medium none;
	BORDER-LEFT: medium none;  
	BORDER-BOTTOM: medium none; 
	BORDER-COLLAPSE: collapse; 
	mso-yfti-tbllook: 480; 
	mso-padding-alt: 0cm 5.4pt 0cm 5.4pt; 
	mso-border-alt: double white 2.25pt; 
	mso-border-insideh: 2.25pt double white; 
	mso-border-insidev: 2.25pt double white;
	BACKGROUND: #d9d9d9;
	color: #000000;
	font-size: 14px;
}

.twoColFixLtHdr #mainContent td {
	border: double 2.25pt white;
	BORDER-RIGHT: white 2.25pt double; 
	PADDING-RIGHT: 5.4pt; 
	BORDER-TOP: white 2.25pt double; 
	PADDING-LEFT: 5.4pt;  
	PADDING-BOTTOM: 3px; 
	BORDER-LEFT: white 2.25pt double; 
	PADDING-TOP: 3px; 
	BORDER-BOTTOM: white 2.25pt double; 
	HEIGHT: 19.85pts;
	vertical-align: middle;
}

.twoColFixLtHdr #mainContent tr.first, td.first {
	background: silver;
	font-weight: bold;
	color: #333333;
	text-align: center;
}

.twoColFixLtHdr #mainContent td.first {
	text-align: left;
}

.twoColFixLtHdr #footer { 
	clear: both;
	padding: 15px;
	text-align: center;
	background-color: #324962;
	color: white;
	font-size: 11px;
} 
.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 */
}
.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;
}

a:link {
	color: #339900;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #0099cc;
	text-decoration: underline;
}
a:visited {
	color: #0099CC;
}
