@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #84C046;
	background-image:url(images/background.jpg);
	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 */
	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;
}
img {
	border:none;
}
.twoColFixLtHdr #container { 
	background-image:url(images/mainbackground.png);
	background-repeat:no-repeat;
	
	width: 880px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	
} 
.twoColFixLtHdr #header { 
	padding: 0 10px 0 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. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
}
.caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: italic;
	color: #000;
	text-align: left;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #DDDDDD;
}
a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #006633;
}

a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #003333;
}
h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-weight: bold;
	color: #003333;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #003333;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	text-align: justify;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	/*width: 250px;  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 */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 10px 5px;
}
.twoColFixLtHdr #sidebar2 {
	float: left;
	width: 230px; /* 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 */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	margin: 100px 0 0 0;
}
.twoColFixLtHdr #image {
	float: left;
	 /* 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 */
	/* the background color will be displayed for the length of the content in the column, but no further */
	
	margin: 15px 10px 15px 10px;
}
.twoColFixLtHdr #rule {
	width:540px;
	float: left;
	border-top:dotted;
	border-width:2px;
	color:#003333;
	margin:10px 0px;
}
.twoColFixLtHdr #indent {
	width:500px;
	
	margin-left: 60px;
}
.clearthefloats {clear:both;
}
.twoColFixLtHdr #mainContent { 
	width: 550px;
	margin: 0 0 0 275px; /* 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: 50 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixLtHdr #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 */
	
	
}
.twoColFixLtHdr #prodimg {
	width:100px;
	
	padding: 0px 0 0 0px;
	
}
.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;
	padding: 60px 160px 0 0;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	padding: 0px 30px 0 10px;
}
.fltctr { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	padding: 20px 0px 0 50px;
}
.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;
}
.smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}
ul#content {
	list-style-type: disc;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	margin: 0 0 0 0px;
}
li#contentli {
	list-style-position: inside;
}
ul#footerul {
	list-style: none;
	text-align:center;
}
li#footerli {
	display: inline;
	padding: 0 15px 0 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
}	
li#footerli.separator {
	display: inline;
	margin: 0 0 0 0px;
	padding: 0 0 0 0;
}.fieldheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #000000;
}
input.txt {
  color: #00008B;
  background-color: #CCCCCC;
  border: 1px inset #00008B;
  width: 200px;
}
input.btn {
  color: #00008B;
  background-color: #ADD8E6;
  border: 1px outset #00008B;
}
form div {
  margin: 0;
  padding: 0;
  padding-top: 0.6em;
}
form div label {
	text-align:right;
	padding:0 20px 0 0;
  float: left;
  width: 25%;
  font: 12px Arial, Helvetica, sans-serif;
}
.prodheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #003333;
}
table.sample {
	border-width: 0px;
	border-spacing: ;
	border-style: hidden;
	border-color: gray;
	border-collapse: collapse;
	
}
table.sample th {
	border-width: 2px;
	padding: 3px;
	border-style: dotted;
	border-color: #669933;

	-moz-border-radius: ;
}
table.sample td {
	border-width: 2px;
	padding: 3px;
	border-style: dotted;
	border-color: #669933;
	background-color: ;
	-moz-border-radius: ;
}
.tableheader {
font-family:Arial, Helvetica, sans-serif;
font-weight:bold;
font-size:14px;
color:#003333;
text-align:center;
}
.tablebodycopy {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#003333;
text-align:center;
}
.securemenu:link {
	color: #000000;
}
.securemenu:visited
{
	color: #008000;
}
.securemenu:active
{
	color: #000000;
}
.securemenu:hover {
	color: #008000;
}
.securemenu2:link {
	color: #000000;
}
.securemenu2:visited
{
	color: #000000;
}
.securemenu2:active
{
	color: #000000;
}
.securemenu2:hover {
	color: #000000;
}.logopush {
	margin-left: 120px;
}
