/* --------------------      CSS    ------------------------*/

	html, body {
		margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
		padding: 0;
		height: 100%;
	}
	body {
		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;
		font-family:Arial, Helvetica, sans-serif;
		font-size:12px ;
		line-height: 19px;

		background: #ffffff;
	}
	#container {
		min-height:100%;
		width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
		background: #FFFFFF;
		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. */
		margin-bottom:-30px;	/* HEIGHT OF FOOTER */
		background-image:url(../images/total_green_bar_bg.gif);
		background-repeat:repeat-y;
	}
	#header {
		background: #DDDDDD;
		width: 980px;
		margin-left: 10px;
	}
	#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 */
	}
	#sidebar {
		float: left; /* since this element is floated, a width must be given */
		width: 210px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
		margin-left: 10px;
		padding:0;
	}
	/* IE 7 only below */
	* html #sidebar  {
		margin-left: 0px;
		*margin-left/**/:/**/ 5px;
		
	}
	#mainContent {
		margin: 0 0 0 220px; /* 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. */
		width: 770px;
		/*padding: 0 20px remember that padding is the space inside the div box and margin is the space outside the div box *//*	width: 770px;*/
	}
	.contentTop {
		padding-left:15px;
	}
	#footer {
		clear:both;
		height: 30px;
		margin-top:-31px;
		width: 1000px;
		margin: 0 auto;
	}
	#clearfooter {
		clear:both;
		height:-30px;
	}/*needed to make room for footer*/
	#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;
	}
	

/* --------------------      HTML    ------------------------*/
	
	td {
		font-family: Arial, Helvetica, sans-serif;
	}
	p {
		font-family:Arial, Helvetica, sans-serif;
		font-size:12px ;
		line-height: 19px;
	}
	a {
		color: #76162B;
		outline:none;
		cursor: pointer;
		text-decoration:underline;
	}
	a:hover {
		text-decoration:none;
	}

	h1 {
		font-family : Arial, Helvetica, sans-serif;
		font-size:26px;
		margin:0px 0px 0px 0px;
		font-weight:800;
		line-height: 36px;
		padding-top: 35px;
		padding-bottom: 13px;
	}
	h2 {
		font-family : Arial, Helvetica, sans-serif;
		font-size:23px;
		margin:0px 0px 0px 0px;
		font-weight:900;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	h3 {
		font-family:Arial, Helvetica, sans-serif;
		font-size:18px ;
		margin:0px 0px 0px 0px;
		padding:5px 0px 5px 0px;
		font-weight:800;
		letter-spacing: 0ex;
	}
	h4 {
		font-family:Arial, Helvetica, sans-serif;
		font-size:13px;
		line-height:16px;
		margin:0px 0px 0px 0px;
		padding:0px;
		letter-spacing: 0ex;	
	}		

	hr {
		color: none;
		border-bottom: 1px dashed #78851B;
		height: 1px;
		border-top-style: none;
		border-right-style: none;
		border-left-style: none;
		padding: 0px;			
	}
	
	img {
		border:none;
		outline:none;
	}

	ul{
		font-family:Arial, Helvetica, sans-serif;
		font-size:13px ;
		line-height: 17px;	
	}
	
	
	
/* --------------------      Classes    ------------------------*/

	.logo{
		padding-left: 7px;
		padding-top: 24px;
		padding-bottom: 27px;
		padding-right: 22px;
		background-color:#FFFFFF;
	}

	.strapLine {
		padding-top: 15px;
		padding-right: 15px;
		font-size: 16px;
		color: #FFFFFF;
		line-height: 26px;
		text-align:center;
	}
	
	.strapRow {
		padding-top: 15px;
		height: 60px;
	}	
	
	.strapSpacing {
		letter-spacing: 0.3em;
	}		
	
	.header {
		height:180px;
	}

	.Content {
		height: 285px;
		width: 744px;
		padding-left: 0px;
		padding-top: 0px;
	}
	
	.ContentRight {
		width: 335px; 
		padding-left: 26px;
		padding-bottom:10px;
	}
	
	.ContentLeft {
		width: 350px; 
		padding-bottom:10px;
	}
	

	.downloadPDF {
		font-family:Arial, Helvetica, sans-serif;
		font-size:14px ;
		margin:0px;
		padding:5px 0px 5px 0px;
		font-weight:900;
		letter-spacing: 0ex;
		text-decoration:none;
	}	

	.downloadPDF:hover {
		text-decoration:underline;
	}	
	
	.bottomTableHeadline {
		padding-left: 10px; 
		padding-top: 10px; 
		padding-bottom: 10px;
		border-left:1px solid #CCCCCC
	}
	
	.bottomTableTextBlock {
		padding-left:10px;
		padding-right:5px;
		padding-top:10px;
		width: 160px;	
		border-left:1px solid #CCCCCC
	}
	
	.footerText {
		font-family:Arial, Helvetica, sans-serif;
		font-size:11px;
		padding-left:10px;
	}
	
	.introCopy {
		font-family:Arial, Helvetica, sans-serif;
		font-size:14px ;
		line-height: 22px;
		font-weight:bolder;
	}
		
	.introblock {
		width: 350px;	
	}	
		
   .linkNoUnderline{
		text-decoration:none;
		outline:none;
   }
	.surfaceTag {
		padding-right: 10px;
		font-family: verdana;
		font-size: 8px;
		color: #B1B1B1;
		text-decoration: none;
		/*letter-spacing: 0.1ex;*/		
	}
	.surfaceTag:hover {
		color: #Cc480A;
		text-decoration: none;
	}
	.clrGreen {
		color: #78851B;
	}
	.clrRed {
		color: #76162B;
	}
	.darkish {
		color: #333333;
	}	
	.white {
		color: #ffffff;
	}
	.clrBlack {
		color: #000000;
	}	

	.hrRed {
		color: none;
		border-bottom: 1px solid #cc0000;
		height: 1px;
		border-top-style: none;
		border-right-style: none;
		border-left-style: none;
		padding: 0px;
	}
	

	.leftColumn{
		width: 210px;
	
	}


	.superscript{
		position: relative;top: -0.3em; 
		font-size: 0.8em;	
	}
	
	.newsletterMar10 {
		color: none;
		width:135px;
		height:355px;
		display:block;
		padding: 0px;
		background-image:url(../images/newsletter_mar10_sml.jpg);
		background-position: 0 0;
		background-repeat:no-repeat;
	}
	.newsletterMar10:hover {
		color: none;
		width:135px;
		height:355px;
		display:block;
		padding: 0px;
		background-image:url(../images/newsletter_mar10_sml.jpg);
		background-position: -135px 0;
		background-repeat:no-repeat;
	}
	.newsletterJun10 {
		color: none;
		width:135px;
		height:429px;
		display:block;
		padding: 0px;
		background-image:url(../images/newsletter_jun10_sml.jpg);
		background-position: 0 0;
		background-repeat:no-repeat;
	}
	.newsletterJun10:hover {
		color: none;
		width:135px;
		height:429px;
		display:block;
		padding: 0px;
		background-image:url(../images/newsletter_jun10_sml.jpg);
		background-position: -135px 0;
		background-repeat:no-repeat;
	}
	.newsletterAug10 {
		color: none;
		width:135px;
		height:222px;
		display:block;
		padding: 0px;
		background-image:url(../images/newsletter_aug10_sml.jpg);
		background-position: 0 0;
		background-repeat:no-repeat;
	}
	.newsletterAug10:hover {
		color: none;
		width:135px;
		height:222px;
		display:block;
		padding: 0px;
		background-image:url(../images/newsletter_aug10_sml.jpg);
		background-position: -135px 0;
		background-repeat:no-repeat;
	}
		
/* ------------------------------------  Form stuff -----------------------------------*/


 
 
	 .checkBoxText{
		width: 418px;
		font-size: 11px;
		line-height: 13px;
		margin-left: 5px;
		padding:0px;
		text-align: justify;
	 }
	 
	 .formCopy{
		font-family:Arial, Helvetica, sans-serif;
		font-size:12px;
		line-height:14px;	
		padding:0px;
		margin:0px; 	
	 }
	 
	 input.text{
		 width: 187px;
		 height: 23px;
		 background-color: #E4E7D1 !important;
		 border:1px solid #78851B;
		 margin:0px;
		 padding-top:5px;
		 padding-left:0px;
		 padding-right: 0px;
		 padding-bottom:0px;
	 }
	 select.text{
		 background-color: #E4E7D1 !important;
		 border:1px solid #78851B;
		 margin:0px;
		 padding-top:3px;
		 padding-left:0px;
		 padding-right:3px;
		 padding-bottom:3px;
	 }
  
	.submissions {
		 width: 460px;
		 height: 160px;
		 background-color: #E4E7D1;
		 border:1px solid #78851B;
		 padding-top:2px;
		 padding-left:0px;
		 padding-right: 0px;
		 padding-bottom:0px;	 
	}
	
	.sessionTitle {
		 width: 460px;
		 height: 68px;
		 background-color: #E4E7D1;
		 border:1px solid #78851B;
		 padding-top:2px;
		 padding-left:0px;
		 padding-right: 0px;
		 padding-bottom:0px;	 
	}	
	
	.Suggestions {
		 width: 442px;
		 height: 95px;
		 background-color: #E4E7D1;
		 border:1px solid #78851B;
		 padding-top:2px;
		 padding-left:0px;
		 padding-right: 0px;
		 padding-bottom:0px;	 
	}

	input.chekBox{
		width: 14px;
		height: 14px;
		background-color: #E4E7D1;
		border:1px inset #78851B;
		padding:0px;
		margin:0px;
		outline:none;
	}

	.submit {
		margin: 10px 0px 0px 0px;
		padding:5px  0px 5px 0px;
		width: 144px;
		height: 31px;
		font-family:Arial, Helvetica, sans-serif;
		font-size: 14px;
		color:#FFFFFF;
		cursor:pointer;
		letter-spacing: 0.1em;
		border: none;
		background-color: #78851B;	
	}

	
<!--  Menu -->	
	
	#mainnav {
		margin: 0;
		padding-top: 15px;
		padding-left: 0px;
		padding-bottom:25px;
		list-style:none;
		font-family:Arial, Helvetica, sans-serif;
		line-height: 18px;
		}
		
	#mainnav li {
		margin: 0;
		padding: 0;
		list-style:none;
		font-family:Arial, Helvetica, sans-serif;
		line-height: 18px;
		}	
			
	#mainnav li a {
		text-decoration:none;
		color: #FFFFFF;
		font-size:16px;	
		display:block;
		width: 190px;	
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 0px;
		margin-left: -25px;
		*margin-left/**/:/**/ 15px;
		}

	#mainnav a:hover { 
		color: #CCCCCC;
		text-decoration: none;
		}
			
<!-- Menu -->	


