/* CSS Structure */ 
html {
	overflow-y: scroll; /*keep scroll bar always there -- eliminate jiggle */
}
html, body{ 
 margin:0; 
 padding:0; 
 text-align:center;
 background-image: url(/rm/rmrs-legacy/common/images/treebackground.jpg);
 background-attachment: fixed;
 font-family:Verdana, sans-serif;
 font-size:12px;
} 
body {
	margin: 10px 0;
} 
#pagewidth{ 
	width:960px; 
	text-align:left;  
	margin-left:auto; 
	margin-right:auto; 
	background-color:#fffdee; 
} 
 
#header{
 position:relative; 
 height:125px; 
 width:100%;
} 
 
#leftcol{
 width:180px; 
 float:left; 
 position:relative; 
 }
 
#twocols{
 width:780px; 
 float:right; 
 position:relative; 
  }
#rightcol{
 width: 180px; 
 margin-right: 12px;
 float:right; 
 position:relative; 
 }
 
#maincol{
 float: left; 
 display:inline; 
 /* position: relative; 	IE6 misses h2 underline; browsers seem OK without this */
 width: 578px; 
 margin-left: 10px;
 }
.NoRightCol { 
	width: 753px !important;	/* override ZZmaincol width*/
} 
#footer{
	border-top:1px solid #86A63B;
	background:url(/rm/rmrs-legacy/common/images/footer.gif) left bottom no-repeat;
	clear:both;
 } 
  
 /* *** Float containers fix *** */ 
.clearfix:after {
 content: " "; 
 display: block; 
 height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
 /*printer styles*/ 
 @media print{ 
/*hide the left column when printing*/ 
#leftcol{display:none;} 

/*hide the right column when printing*/ 
#rightcol{display:none;} 
#twocols, #maincol{width:100%; float:none;}
}

