@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/*font: 100% Arial, Helvetica, sans-serif;*/
	background: #D9DFF0;
	margin: 10px; /* 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: #777777;
}
img {
	border: 0;
}
a {
	text-decoration: underline;
	color: #650E3F;
}
a:link {
	
}
a:visited {
	
}
a:hover {
	color: #CC0000;
}

.twoColFixLtHdr #container { 
	width: 770px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(images/topcorn.gif);
	background-repeat: no-repeat;
	background-position: left top;
} 

.twoColFixLtHdr #header { 
	padding: 10px 0px 10px 128px;  /* 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. */
	margin: 0px 58px 15px 58px;
	background-color: #DBAF0C;
	background-image: url(images/headcorn.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	/*font: 100% Verdana, Arial, Helvetica, sans-serif;*/
	font-size: 12px;
	font-weight: bold;
	color: #650E3F;
} 

.twoColFixLtHdr #tabmenu {
	width: 100%;
}
.twoColFixLtHdr #tabmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.twoColFixLtHdr #tabmenu li {
	float: left;
	display: inline;
	white-space: nowrap;
}
.twoColFixLtHdr #tabmenu li.active {
	padding: 4px 12px 4px 12px;
}
.twoColFixLtHdr #tabmenu li a {
	display: block;
	_display: inline-block;
	text-decoration: none;
	color: #FFFFFF;
	padding: 4px 12px 4px 12px;
}
.twoColFixLtHdr #tabmenu li a:link {
	
}
.twoColFixLtHdr #tabmenu li a:visited {
	
}
.twoColFixLtHdr #tabmenu li a:hover {
	color: #CC0000;
	/*color: #650E3F;
	background-color: #EEEEEE;
	padding: 4px 11px 3px 12px;
	border: 1px solid #650E3F;
	border-left-width: 0;
	border-top-width: 0;*/
}

.twoColFixLtHdr #pageTitle { 
	margin: 0px 58px 40px 58px;
} 

.twoColFixLtHdr #sidebar1 {
	margin: 0px 0px 0px 58px;
	float: left; /* since this element is floated, a width must be given */
	width: 304px; /* 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: 0px 0px 0px 0px;
	display: inline;  /* <---Solution for bug IE6 */ 
	font-size: 12px;
	line-height:20px;
	/*font: 100% Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	text-align: left;
	font-weight: bold;
	color: #FF9900;*/
}

.twoColFixLtHdr #mainContent { 
	margin: 10px 58px 0px 408px; /* 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: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
	line-height:20px;
} 
.twoColFixLtHdr h1 {
	font: 100% Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 20px;
	font-weight: bold;
	color: #CFA20B;
}
.twoColFixLtHdr h2 {
	font: 100% Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
	color: #650E3F;
}
.twoColFixLtHdr h4 {
	font: 100% Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
	color: #EE0000;
}
.twoColFixLtHdr #paragr {
	margin: 20px 0 0 0;
	padding: 0 0 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E0E0E0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E0E0E0;
} 

.twoColFixLtHdr #paragr small {
	font-size: 10px;
} 

.twoColFixLtHdr #footer { 
	padding: 0;
	background: transparent;
	background-image: url(images/botcornindex.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
} 
.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 58px 10px 58px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 10px;
	color: #CFA20B;
}

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