/* *** This is a comment *** */
html, body{ 
 margin:0; 
 padding:0; 
 font-family: arial, verdana, sans-serif;
 background-color:#CCCCCC; 
 } 
 
#pagewidth{ 
 width:100%; 
 min-width: 500px;  
 } 
 
#header{ 
 width:100%; 
 font-size:24px;
 font-color:black;
 text-align:center;
 background-color:#999999; 
 } 
 
#leftcol{
 width:160px; 
 float:left; 
 position:relative; 
 margin-left:-120px; 
 margin-right:1px; 
 font-size:14px;
 border-right:solid black 1px;
 }
 
#outer{ 
 border:solid black 1px; 
  /*/*/ border-left-width: 120px ;  /* left column width. NN4 hack to hide borders */ 
 border-left-color: #CCCCCC;   /* left column colour */ 
 border-left-style: solid; 
 background-color: #CCCCCC; /* center column colour */ 
 width: auto; 
 } 
 
#footer{
 height:50px; 
 width:100%; 
 background-color:#CCCCCC; 
 font-size:12px;
 text-align:center;
 } 
 
#inner{margin:0; width:100%;}
 
#maincol{ 
 float: left; 
 width: 80%; 
 position: relative; 
 margin: 0 -8px 0 -2px; 
 font-size:14px;
 }
 
#outer>#inner { border-bottom: 1px solid #8CFFFF;  }

.thumbnail-l{
 float: left;
 pad:5px;
 }
 
.thumbnail-r{
 float: right;
 pad:5px;
 }

.clr{clear:both;}
 
.content{padding:5px;} /*padding for content */ 

h1{
 color:black;
 font-size: 18px;
 font-weight:600;
 }

h2{
 color:black;
 font-size: 16px;
 font-weight:600;
 }

li{
 color:#000066;
 font-weight:500;
 }

td{
 height:20;
 width:20;
 }

p{
 color:#000066;
 font-weight:500;
 }

p.navigation-bar{
 color:black;
 background-color:white;
 border:black;
 padding:6px;
 text-align:center;
 font-size:16px;
 font-weight:600;
 }

p.navigation-bar a:link{
 color:#0066FF;
 text-decoration:none;
 font-weight:bold;
 }

p.navigation-bar a:visited{
 background:transparent;
 color:dark blue;
 text-decoration:none;
 }

p.navigation-bar a:hover{
 background-color:#ffb0d3;
 color:black;
 text-decoration:none;
 }
 
#header .content{padding-bottom:0;} /*padding bottom 0 to remove space in IE5 Mac*/  
 
/*printer styles*/ 
@media print{ 
/*hide the left column when printing*/
#leftcol{display:none;} 
#outer{border-left:0px none;} 

}