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

body  {
	font: 12pt Geneva, Arial, Helvetica, sans-serif;
	background: #CCCC99 url(images/headerBG.png);
	background-repeat:repeat-x;
	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:940px;  /* 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 {
	text-align:left;
	margin:0px;  /* 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. */
} 



/* 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: 10px 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,#lcol {float:left; width:600px; margin-right:5px; padding-right:10px;}

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

/* forms */

form.hericustom{
	font:16px;
	font-weight: bold;
	background: #996;

	padding:10px 20px;
	width:500px;
	}
	
	form.hericustom  ol {
		list-style:none;
		margin:0;
		padding:0;
		}

		form.hericustom li {
			padding:6px;
			background:#cc9;
			margin-bottom:1px;
			}

			form.hericustom li#send {
				background:none;
				margin-top:6px;
				}
				
				form.hericustom label {
			float:left;
			width:100px;
			text-align:right;
			margin-right:7px;
			color:#333;
			line-height:23px;	 /* This will make the labels vertically centered with the inputs */
			}

		form.hericustom input,
		form.hericustom textarea {
			padding:4px;
			font:13px Georgia, "Times New Roman", Times, serif;
			border:1px solid #999999;
			width:300px;
			}
			
legend {
  display: inline-block;
  display: -moz-inline-block;
  width:300px;
  text-align:left;
  margin:-20px; }
			
			form.hericustom .radio {font-weight:100; font-size:14px; line-height:18px; }
			
			form.hericustom input:focus,
			for.hericustomm textarea:focus {
				border:1px solid #666;
				background:#e3f1f1;
				}
				
				form.hericustom li#send button {
			background:#003366 url(images/send.gif) no-repeat 8px 50%;
			border:none;
			padding:8px 12px 8px 30px;
			border-radius:15%; /* Don't expect this to work on IE6 or 7 */
			-moz-border-radius:15%;
			-webkit-border-radius:15%;
			font-size:16px;
			color:#fff;
			margin-left:400px; /* Total width of the labels + their right margin */
			cursor:pointer;
			}

			form.hericustom li#send button:hover {
				background-color:#006633;
				}
/* 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 {font-family:Helvetica, sans-serif; line-height:1.4em; color:#003366; }
h3 {font-family:Helvetica, sans-serif; line-height:1.4em; color:#333; }

a.button {width:300px; text-decoration :none; float:left; border:1px solid  #999933; background-color:#DCE6A4; padding:5px;}
a.button:hover {float:left; border:1px solid  #999933; background-color:#66cc00; }

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

hr {border:1px solid #993;}
