
/* Layout Stylesheet */ 


body{
 font-family: Verdana, Arial, Tahoma, sans-serif; 
 font-size: 70%;
 margin: 0px;
 padding:0;
 background: #000;
 color: #222;
 }
		 
#lh-col{
 position: absolute;
 top: 120px;
 left: 20px;
 width: 160px;
 border: 0px solid #000000;
 background: #222;
 color: #333333;
 margin: 0px;
 padding: 10px;
 height: 600px;
 }
		 
#lh-col-bottom{
 position: absolute;
 top: 675px;
 left: 20px;
 width: 160px;
 border: 0px solid #000000;
 background: #222;
 color: #333333;
 margin: 0px;
 padding: 10px;
 height: 20px;
 }
 
#rh-col{
 margin: 20px 20px 20px 220px;
 border: 0px solid #000000;
 background: #222;
 color: #EEE;
 padding: 20px;
 }

#footer {
margin: 20px 20px 20px 220px;
border: 0px solid #FFF;
color: white;
height: 50px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin: 1 auto;
margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
background-color: #222;
}

#footerb {
	position:absolute;
	bottom:110;
	left:220;
	z-index:10; /* Prevent certain problems with form controls */
text-align: center;
background-color: yellow;
}