

/* Layout Stylesheet 

We have 10 px at the top coming from the BODY-tag
hdr (header) gives another 140 px
so rh-col, c-col and lh-col colummns start at 150 px + 5px extra for whatever reason

*/ 
	 
#lh-col{
 position:absolute;
 top: 155px;
 left: 25px;
 width: 160px;
 z-index:3;
}

#rh-col{
 position:absolute;
 top: 155px;
 right:25px;
 width:160px;
 z-index:2;
}

#c-block {
 width:100%;
 z-index:1;
 height:80%;}

#hdr{
 height: 135px; 
 width:100%; 
 margin:0;
  }

/* center - column is indented from left and right margin; 
Take lh-col left + width 
top and bottom = 0 */

#c-col{
 margin:0 175px 0 175px;
 position:relative;
 z-index:5;
 min-height: 700px;
 }

/* the footer will center with the total width given */
#ftr {
  width:60%;
  margin-top: 5px;
  margin-right: auto;
  margin-left: auto 
 
 }
