@charset "utf-8";
body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	color: #990000; /* This will be the default font color. */
	margin: 0; /*Always zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* Always set text-align to center in the body element because of IE 5* browsers. Then set the text-align to left in the #container element. */
}
.twoColFixLtHdr #container {
	width: 900px; /* NOTE: 900px may exceed some browsers' ability to display the entire width. Such a browser will create a horizontal scroll bar for any page wider then 760px. */
	margin: .3em auto 0 .3em; /* Setting the right & left margins to auto (in conjunction with a width) centers the page. Setting only the right margin to auto forces the page to the left. */
	border: 1px solid #CC9900; /* Gives the entire page a border. */
	text-align: left; /* See text-align note for the body element. */
	background-image: url(images/container_background.gif);
	background-repeat: repeat;
	background-position: top right;
} 
.twoColFixLtHdr #header {
	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. */
	background-image: url(images/banner_background.gif);
	height: 140px;
} 
.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 #menubar {
	width: 900px;
	background-image: url(images/menubar_background.gif);
	
}
.twoColFixLtHdr #menubar td {
	font-size:.8em;
	padding-left:.5em;
	padding-right: .5em;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 0px 15px 20px;
	text-align:center;
}
.twoColFixLtHdr #sidebar1 p {
	font-size: 0.7em;
}
.twoColFixLtHdr #sidebar1 li {
	font-size: 0.7em;
}
.twoColFixLtHdr #sidebar1 h1 {
	font-size: 0.85em;
}
.twoColFixLtHdr #sidebar1 h2 {
	font-size: 0.75em;
}
.twoColFixLtHdr #sidebar1 h3 {
	font-size: 0.7em;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 170px; /* 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 */
	font-size: 0.8em;
} 
.twoColFixLtHdr #mainContent h1 {
	padding-top: 10px;
	font-size: 12px;
}
.twoColFixLtHdr #mainContent h2 {
	font-size: .9em;
	font-style:italic;
}
.twoColFixLtHdr #footer {
	padding: 0 10px20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
	font-size: 10px;
/*	background:#DDDDDD; */
} 
.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 */
}
.backtotop {
	font-size:.7em;
	float:right;
}
.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;
}
