@charset "UTF-8";
/* Main CSS Source */

* {
	margin: 0;
}

body  {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	font: 100% Helvetica, Arial, Verdana, sans-serif;
	background:url(../images/background_pattern.jpg);
}

img {
	border: 0;
}

#shadow {
	margin-left: auto;
	margin-right: auto;
    background:url(../images/shadow.png) repeat-y left;
	width: 825px;
}

.twoColLiqRtHdr a {
	color:#697427;
	text-decoration:none;
}

.twoColLiqRtHdr a:hover {
	color:#848E25;
	text-decoration:underline;
}
.twoColLiqRtHdr a:active{
	color:#A0AF12;
	text-decoration:underline;
}

.twoColLiqRtHdr a:visited{
	color:#742406;
	text-decoration:none;
}

.twoColLiqRtHdr #container { 
	width: 780px;  /* this will create a container 80% of the browser width */
	background: #E6E6E6;
	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. */
} 

.twoColLiqRtHdr #header { 
	background:url(../images/header.jpg);
	height:157px;
	width:780px;
	margin-left:auto;
	margin-right:auto;
} 

.twoColLiqRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; 
	background: #D0D2D3; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 15px 0; /* top and bottom padding create visual space within this div  */
	margin-right: 26px;
}

.sidebarhdr1 {
	background:url(../images/sidebar_availhdr.png);
	height:45px;
}

.twoColLiqRtHdr #mainContent { 
	font-family: Helvetica, Arial, sans-serif;
	line-height:20px;
	margin: 0 325px 0 10px;
	padding:0 15px;
} 

.twoColLiqRtHdr #mainContent h2 {
	padding-bottom: 15px;
}

.twoColLiqRtHdr #footer { 
	width:780px;
	height:37px;
	margin-left:auto;
	margin-right:auto;
	background: url(../images/footer.png);
	color:#E9E0AA;
} 

.twoColLiqRtHdr #footer a { 
	color:#848E25;
}

.twoColLiqRtHdr #footer a:hover { 
	color:91994a;
	text-decoration:underline;
}

.twoColLiqRtHdr #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 */
	color:#E6E6E6;
}

/* Miscellaneous classes for reuse */
.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. The floated element must precede the element it should be next to on the 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;
}