@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif; color: #000000;
	background: #EAC54A;
	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 */
}
.mystyles #container { 
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFE3;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*border: 1px medium solid #824F1D;*/
}
.mystyles #headerleft { 
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	float: center;
	text-align: center;
	width: 270px;
	height: 225px;
	padding: 0px,0px,0px,0px; 
} 
.mystyles #headerright { 
	font: 100% Times New Roman, Verdana, Arial, Helvetica, sans-serif; color: #000000;
    float: center;
	text-align: center;
    width: 470px;
	height: 225px;
	padding: 0px,0px,0px,0px; 
} 
 
.mystyles #menubar {
	font: 14px Verdana, Arial, Helvetica, sans-serif; color: #824F1D;
    height: 20px;
	background: #996633; /*#824F1D; #002246;*/ /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
	
}

.mystyles #maincontent {
	font: 12px Verdana, Arial, Helvetica, sans-serif; color: #666666; 
	margin: 0 0 0 0px; /* 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 */
}
.mystyles #columnleft {
	font: 14px Verdana, Arial, Helvetica, sans-serif; color: #000000; 
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-c:ompliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px 0px 0px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.mystyles #columnright {
	font: 12px Verdana, Arial, Helvetica, sans-serif; color: #666666; 
	
	float: right; /* since this element is floated, a width must be given */
	width: 560px; /* the actual width of this div, in standards-c:ompliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.mystyles #indent50 {
	font: 12px Verdana, Arial, Helvetica, sans-serif; color: #666666; 
	margin: 0 0 0 0px; /* 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 45px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.mystyles #maincontact {
	font: 14px Verdana, Arial, Helvetica, sans-serif; color: #666666; 
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	float: center;
    text-align: center;
	width: 710px;
	margin: 0px 0px 0px 0px; /* 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 */
}
.mystyles #footer { 
	width: 1000px;
	padding: 5px 0px 5px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #824F1D; /*#002246;#BB8C00;*/
	font: 11px Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; font-weight: normal;
	text-align: center; 
} 
 

    
a:link {
		text-decoration: none;
		color: #000000; /*color: #FFFFFF;*/
	}	
a:visited {
		text-decoration: none;
		color: #000000; /*color: #FFFFFF;*/
	}
a:hover {
		text-decoration: underline;
		color: #037FFE;*/
		
	}
a:active {
		text-decoration: none;
		color: #000000;
    }    
	
.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;
}