/* contains new fix for #right-col in IE */


html,body {
margin: 0;
padding: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #000066;
background-color: #CCCCFF;
}

			
#container {
width: 770px;
top: 0px;
}



a {
text-decoration: none;
color: #0033FF;
}

a:hover {
text-decoration: none;
color: #CC00FF;
}
 
 
#header {
 height: 116px;
 background-image: url(images/header.gif);
 background-repeat: no-repeat;
 }
 
 
#left-col {
 position: absolute;
 top: 116px;
 left: 0px;
 width: 169px;
 margin: 0px;
 padding: 0px;
 } 



#right-col{  /* For Mozilla etc */

 margin: 0px 0px 0px 169px;
 padding: 0px 0px 0px 0px;
 position: relative;
 min-height: 720px; /* IE doesn't understand min-height, but other browsers do */
 }

* html #right-col{   /* IE ignores the * html so sees this as #right-col */

 margin: 0px 0px 0px 169px;
 padding: 0px 0px 0px 0px;
 position: relative;
 height: 720px;  /* IE thinks height means min-height */
 }





/* Miscellaneous */


h1 {
font-size: large;
text-align: center;
}

#counter{
background: #FFFFFF;
}

#pix {
padding-right: 10px;
margin-top: 25px;
top: 50px;
}


#homepagetext {
width: 330px;
float:left;
}


#clearer {
clear:both;
}


