html, body{ 
 margin: 0; 
 padding: 0; 
 height: 100%;
 } 
 
#pagewidth{ 
 width: 100%; 
 min-width: 500px; 
 height: 100%;  
} 

#leftcol{
 width: 180px; 
 float: left; 
 position: relative; 
 margin-left: -180px; 
 margin-right: 1px; 
 align: center;
 height: 100%;
 }
 
#outer{ 
 border: solid white 0px; 
  /*/*/ border-left-width: 180px ;  /* left column width. NN4 hack to hide borders */ 
border-left-color: #9999B8;   /* left column colour */ 
/*border-left-color: #3C7F73;   /* left column colour */ 
border-left-style: solid; 
/* background-color: #FFFFFF; /* center column colour */ 
width: auto; 
height: auto;
 } 
 
#inner{margin: 0; width: 100%; height: 100%;}
 
#maincol{ 
 float: left; 
 width: 100%; 
 position: relative; 
 margin: 0 -8px 0 -2px;
 height: auto;
 }
 
#outer>#inner { border-bottom: 1px solid #FFFFFF;  }
 
.clr{clear: both;}
 
.content{padding: 5px;} /*padding for content */ 
 
#header .content{padding-bottom: 0;} /*padding bottom 0 to remove space in IE5 Mac*/ 
 
h1 { font-size: 24px; color: black; font-weight: plain; text-align: center; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; text-decoration: none; }
h2 { font-size: 18px; color: black; margin-left: 5px; font-weight: plain; font-family: Times, serif; text-decoration: none; }
h3 { font-size: 12px; color: black; margin-left: 20px; font-weight: plain; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; text-decoration: none; }
h4     { color: #00c; font-size: 11px; line-height: 15px; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; text-decoration: none; background: #9999b8; text-indent: 20px; margin-left: -5px; width: 100% }
h5 { font-size: 14px; color: black; font-weight: plain; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; text-decoration: none; }
p { font-size: 12px; margin-left: 50px; color: black; text-align: left; font-weight: plain;  font-family: Helvetica, serif; text-decoration: none; }
td { font-size: 11px; color: black; text-align: center; font-weight: plain; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; text-decoration: none; }

body { background: url(images/back.jpg) repeat; }

 /*printer styles*/ 
@media print{ 
/*hide the left column when printing*/
#leftcol{display: none;} 
#outer{border-left: 0;} 
}

