@charset "UTF-8";
/* CSS Document */

body  {
	font: 12pt Geneva, Arial, Helvetica, sans-serif;
	 background-color: #CCCC99;
	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: #333;
}

a:link {color:#333366; text-decoration:underline;}
a:visited {color:#333366; text-decoration:underline;}
a:hover {color: #3366FF;text-decoration:underline;}
a:active {color:#3366FF; text-decoration:underline;}


.twoColHybRtHdr #container {
width:900px; 
	min-width:900px;  /* this will create a container 80% of the browser width */
	margin: 5px 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. */
	
} 
.twoColHybRtHdr #header {
	background-image:url(images/headerBG.png);
	background-repeat:repeat-x;
	text-align:left;
	padding-left:20px;
	padding: 5px;  /* 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. */
} 

.twoColHybRtHdr #header img{margin-left:30px;}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybRtHdr #sidebar1 p" rule.
*/

.twoColHybRtHdr #mainContent {
  margin: 0 20px 20px 0px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the 	document. */
  padding:0 15px 0 5px;

 
} 
.twoColHybRtHdr #footer {
	width:100%;
	background-color: #333;
	position:relative;
	top:50px;
	bottom:0;
	border-top:5px solid #000;
	text-align:center;
} 
.twoColHybRtHdr #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;
	color: #999;
	font-size:11px;
}
.twoColHybRtHdr #lcol {float:left; width:550px; margin-right:5px; padding:5px;}

.twoColHybRtHdr #rcol
{background-color:#DCE6A4; float:left; width:250px; margin: 0 20px 0 555px; padding:5px 7px 5px 7px; border:1px solid #990; -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  margin:5px;}

/* 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 */
	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;
}

h1,h2, h3{font-family:Helvetica, sans-serif; line-height:1.4em; color:#003366; }

.button {float:left; width:355px; margin-left:20px; padding:0 20px 0 10px; border:1px solid  #999933; background-color:#DCE6A4; }

.fine {font-size:12px; font-style:italic; color:#003366;}

.extrafine {font-size:10px; font-style:italic; color:#003366;}

.returntop {font-size:11px; border-bottom:1px solid #993;}

a.topped {text-decoration:none;}