@charset "UTF-8";
body {
	background: #FFFFFF;
	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: #333333; 
	font-size: 10px; 
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
p, h1, h2, h3, h4, ul, li {
	margin: 0;
	padding: 0;
}
a, a:hover, a:visited {
	color: #009293;
	text-decoration: none;
}
form {
	padding-left: 20px;
}
.submitButton{
	margin-left: 50px;
}
label {
	line-height: 16px;
}
input {
	font-size: 9px;
	margin-bottom: 4px;
}
.twoColFixRtHdr #container {
	width: 800px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	padding: 0;  /* 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. */
	margin: 50px 0 0 0;
}
.twoColFixRtHdr #header p {
	padding: 0 5px 5px 0;
}
.twoColFixRtHdr #navigation {
	padding: 4px 0;
	margin-bottom: 10px;
	border-top: 1px solid #333333;
}
.twoColFixRtHdr #navigation li{
	display: inline;
}
.twoColFixRtHdr #navigation a {
	background-color: #E7E7E7;
	padding: 4px 25px;
	color: #7A7A7A;
	border-left: solid 1px #7A7A7A;
	border-right: solid 1px #7A7A7A;
	border-bottom: solid 1px #7A7A7A;
}
.twoColFixRtHdr #navigation a:hover {
	background-color: #FF3300;
	padding: 4px 25px;
	color: #FFFFFF;
	border-left: solid 1px #333333;
	border-right: solid 1px #333333;
	border-bottom: solid 1px #333333;
}
.active {
	background-color: #FF3300;
	padding: 4px 25px;
	color: #FFFFFF;
	border-left: solid 1px #333333;
	border-right: solid 1px #333333;
	border-bottom: solid 1px #333333;	
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 225px; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
.twoColFixRtHdr #sidebar1 h1{
	margin: 0 0 0 5px;
	padding: 0;
	line-height: 140%;
	font-size: 125%;
}
.twoColFixRtHdr #sidebar1 p{
	margin: 0 0 0 5px;
	padding: 0;
	line-height: 100%;
	font-size: 100%;
}
.twoColFixRtHdr #sidebar1 li{
	display: list-item;
	list-style-type: none;
}
.twoColFixRtHdr #mainContent {
	margin: 0 235px 0 0; /* the right margin on this div element creates the column down the right 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: 45px 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: solid 1px #b2b2b2;
	background-image: url(../__images/h1_bkg.gif);
	background-repeat: no-repeat;
}
.twoColFixRtHdr #mainContent h1 {
	margin: 0;
	padding: 0 0 10px 10px;
	line-height: 150%;
	font-size: 140%;
}
.twoColFixRtHdr #mainContent h2 {
	margin: 0;
	padding: 0 0 10px 10px;
	line-height: 125%;
	font-size: 110%;
}
.twoColFixRtHdr #mainContent p{
	margin: 0 10px;
	padding: 0 0 10px 0;
	line-height: 180%;
	font-size: 110%;
} 
.twoColFixRtHdr #footer {
	padding: 0;
	margin: 0;
} 
.twoColFixRtHdr #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 */
}
.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;
}
.align_cm{
}
.padButton {
	float: right;
	padding-right: 25px;
}
