html {
               margin: 0em;
               padding: 0em; 
}
body {
               font: 100%/130% Georgia, serif;
               background: #019900;
               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: #000000; 
}
#container {
               width: 1000px;
               /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0px auto 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. */
          padding: 0px;
               background: url(images/bg-container.jpg) repeat-y center top; 
}
#header {
               padding: 0;
               margin: 0px; 
}
#sidebar1 {
               float: left;
               /* since this element is floated, a width must be given */
	width: 188px;
               /* 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: #006802 url(images/bg-sidebar1.jpg) repeat-y right;
               /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
               /* padding keeps the content of the div away from the edges */
               margin: 0px 0px 0px 38px; 
}
#navone {
               margin: 0;
               padding: 25px 0 25px 0; 
}
.navlist {
               margin: 0;
               padding: 0; 
}
.navlist li {
               margin: 0;
               padding: 0;
               list-style-type: none; 
}
.navlist li a:link, .navlist li a:visited {
               display: block;
               color: #ffffff;
               text-decoration: none;
               margin: 0;
               font-size: 110%;
               font-weight: bold;
               padding-top: .6em;
               padding-bottom: .6em;
               padding-left: .8em;
               padding-right: 0em; 
}
.navlist li a:hover {
               color: #006802;
               background-color: #ffffff; 
}
#sidebar2 {
               float: right;
               /* since this element is floated, a width must be given */
	width: 187px;
               /* 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: 0;
               /* padding keeps the content of the div away from the edges */
               margin: 0px 38px 0px 0px;
               background: #006802 url(images/bg-sidebar2.jpg) repeat-y left; 
}
#sidebar2 h3 {
               margin: 25px 0 0 0;
               padding: 0 10px 0 10px; 
}
#sidebar2 p {
               margin: 5px 0 10px 0;
               padding: 0 20px 0 20px; 
}
#mainContent {
               margin: 0 226px 0 226px;
               /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 25px;
               /* remember that padding is the space inside the div box and margin is the space outside the div box */ 
}
#footer {
               width: 1000px;
               /* 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: center;
               /* this overrides the text-align: center on the body element. */
	background: #019900 url(images/footer.jpg) no-repeat center top;
               padding: 50px 0 30px 0; 
}
#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;
               margin: 0px;
               padding: 0px; 
}
.white {
               color: #ffffff; 
}
.green {
               color: #006802; 
}
h1 {
               font: bold 190%/130% Georgia, serif; 
}
h1, h2, h3, h4 {
               color: #0b400f;
               margin: 0px;
               padding: 10px 0px 10px 0px; 
}
h6 {
               color: #cc0033;
               font: bold 140% Verdana, Helvetica, Arial, sans-serif;
               padding: 20px;
               margin: 0px;
          text-align: center; 
          }
p {
               margin: 0px;
               padding: 0px 0px 10px 0px; 
}
#ul-list {
               color: #000000;
               padding: 0;
               margin: 10px 0px 10px 0px; 
}
#ul-list li {
               list-style-type: none;
               padding: 0px 0 10px 45px;
background: url(images/bullet.jpg) no-repeat left center;
}
div.hr {
               height: 13px;
               background: url(images/bg-hr.jpg) no-repeat scroll center; 
}
div.hr hr {
               display: none; 
}
}
a, a img {
               border: none; 
}
h2 a:link, h2 a:visited, h3 a:link, h3 a:visited, h4 a:link, h4 a:visited, h5 a:link, h5 a:visited, p a:link, p a:visited {
               color: #006802;
               text-decoration: none;
               border: none; 
}
h2 a:hover, h2 a:active, h3 a:hover, h3 a:active, h4 a:hover, h4 a:active, h5 a:hover, h5 a:active, p a:hover, p a:active {
               color:#000000;
               text-decoration: underline;
               border: none; 
}
#sidebar2 p a:link, #sidebar2 p a:visited {
               font-weight: bold;
color: #ccc;
               text-decoration: none;
               border: none; 
}
#sidebar2 p a:hover, #sidebar2 p a:active {
               color:#fff;
               text-decoration: underline;
               border: none; 
}
ffieldset {
               width:350px;
               margin: 5px 0px 10px 65px;
               border: none; 
}
.success {
               color: #006802; 
}
label, input[type=text], textarea {
               display:block;
               font-size:85%;
               font-family: Georgia, serif;
               color:#000; 
}
label {
               text-transform:uppercase; 
}
input,textarea {
               margin:4px 0;
               padding:4px;
               border:1px solid gray;
               background: #99ff99;
               width:350px;
               color: #000; 
}
p.hint {
               color:#000;
               font-size:11px;
               font-style:italic;
               font-weight: bold;
               text-align:right;
               margin:0 30px 10px 0; 
}
p.hint:before {
               content:'*'; 
}
.submit {
               color: #fff;
               width:80px;
               background: #019900;
               ;
               text-transform:uppercase;
               border: 1px #006802 solid;
               margin: 4px;
               font: Georgia, serif; 
}
.submit:hover {
               background: #006802;
               color: #ffffff; 
}
#sidebar2 form {
               margin: 0px;
               padding: 0px; 
}
#sidebar2 label {
               font: bold 100% Georgia, serif;
               color: #ffffff;
               margin: 0px; 
}
#sidebar2 input {
               color: #ffffff;
               background: #019900;
               border: 1px solid #ffffff;
               margin: 0px;
               font: 90% Georgia, serif;
               width: 140px; 
}
#sidebar2 .submit {
               color: #ffffff;
               background: #093f0f;
               border: 2px #ffffff solid;
               font: bold 90% Georgia, serif;
               margin: 0px;
               width: 80px; 
}
#sidebar2 .submit:hover {
               background: #019900; 
}
