@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFC300;
	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;
}
	.twoColFixLtHdr #footer a:link {
	color: #FFFFFF;
	text-decoration:none; 
}
a:link {
	color: #D55419;
	text-decoration:underline;
}
a:hover {
	color: #333333;
	text-decoration: underline;
}
a:active {
	color: #D55419;
	text-decoration:none; 
}	
a:visited {
	color: #D55419;
	text-decoration:none;
}
.twoColFixLtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #333333;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #333333; 
	padding: 0 14px 0 14px;  /* 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 #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 310px; /* 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: #333333; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px 0px 0px;
	margin: 10px 14px 0 0px
}
.twoColFixLtHdr #sidebar1 p.one
{
	background: #D55419;
	border: 1px solid black;
	padding: 10px 10px;
	margin-top: 0px;
	font: 12px/18px verdana,sans-serif;
	color: #FFF
}
.twoColFixLtHdr #sidebar1 p.two
{
background: #FFFF99;
border: 1px solid black;
padding: 10px 10px;
margin-top: 0px;
font: 12px/18px verdana,sans-serif;
color: #000 
}
.twoColFixLtHdr #sidebar1 p.three
{
background: #FFC300;
border: 1px solid black;
padding: 10px 10px;
margin-top: 0px;
font: 12px/18px verdana,sans-serif;
color: #000 
}
.twoColFixLtHdr #mainContent {
	margin: 0px 330px 0 14px; /* 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 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFFFFF;
	background-image: url(images/backbox.jpg);
	background-repeat: repeat-x;
}
.twoColFixLtHdr #mainContent p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 80%;
	color: #333;
	line-height: 130%;
}
.twoColFixLtHdr #mainContent h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 150%;
	color: #FF6633;
	font-variant: normal;
	text-transform: uppercase;
	padding-top: 10px;
}
.twoColFixLtHdr #mainContent h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #CC6600;
}
	.twoColFixLtHdr #mainContent li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 80%;
	color: #333;
	line-height: 130%;
}
.twoColFixLtHdr #footer { 
	padding: 10px 10px;
	margin: 0 14px 10px 14px;
	background-color: #D55419; 
} 
.twoColFixLtHdr #footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFF;
}
.twoColFixLtHdr #footer a:link {
	color: #FFFFFF;
	text-decoration:underline; 
}
.twoColFixLtHdr #footer a:hover {
	color: #333333;
	text-decoration: underline;
}
.twoColFixLtHdr #footer a:active {
	color: #D55419;
	text-decoration:none; 
}	
.twoColFixLtHdr #footer a:visited {
	color: #FFFF99;
	text-decoration:none;
}

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



label {font-weight:bold;}
fieldset {padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
legend {font-weight:bold;font-size:1.2em;}
input.text, input.title, textarea, select {margin:0.5em 0;border:1px solid #bbb;}
input.text:focus, input.title:focus, textarea:focus, select:focus {border:1px solid #666;}
input.text, input.title {width:300px;padding:5px;}
input.title {font-size:1.5em;}
textarea {width:390px;height:250px;padding:5px;}
.error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
.error a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}




