/* Site layout and Structure styles */

html, body{ 
 margin:0; 
 padding:0; 
 text-align:center;
 font-family: Arial, Helvetica, sans-serif;
} 
 
#pagewidth{ 
 width:800px; 
 text-align:left;  
 margin-left:auto; 
 margin-right:auto;  
} 
 
#header{
 position:relative; 
 width:100%;
} 
 
#leftcol{
 width:318px; 
 float:left; 
 }
 
 #leftcol2{
 width:167px; 
 float:left; 
 }
 
#twocols{
 width:482px; 
 float:right; 
 }
  
 #twocols2{
 width:633px; 
 float:right; 
 }
 
#twocols3{
 width:633px; 
 float:left; 
}

#fullcol{
 width:800px; 
 float:left; 
}
 
#rightcol{
 width:195px; 
 float:right; 
 }
 
#maincol{
 float: left; 
 width:287px;
}

#maincol2{
 float: left; 
 width: 438px;
}

#maincol3{
 float: left; 
 width: 633px;
}

#maincol4{
 float: left; 
 width: 800px;
}
 
#footer{
 clear:both;
 margin-top: 10px;
 border-top: 1px solid #d7d8d8;
} 

.clr{
 clear: both;
 height: 1px;
 overflow: hidden;
}
 
 /* *** Float containers fix:
 http://www.csscreator.com/attributes/containedfloat.php *** */ 
.clearfix:after {
 content: "."; 
 display: block; 
 height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
.clearfix{display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */  

/* Main Navigation */

/* style the outer div to give it width */
.menu {
width: 100%;
margin-left: 5px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
text-transform:uppercase;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
cursor: pointer;
}

/* style the links for the top level */
.menu a{
display:block;
font-size:0.75em;
text-decoration:none; 
color:#000; 
padding: 10px 10px 10px 10px;
background-image: url(../images/icons/arrow_black.gif);
background-repeat: no-repeat;
background-position: left;
font-weight: normal;
}

.menu a.on{
 color:#0075be;
 background-image: url(../images/icons/arrow_blue.gif);
 font-weight: bold;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:25px;
left:0; 
width:150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
color:#000; 
height:auto;
line-height:1em; 
padding:5px 5px 5px 5px; 
width:150px;
text-transform: none;
font-size: 0.7em;
margin: 0;
border: 1px solid #0075be;
background-color: #fff;
background-image: none;
}

* html .menu ul ul a, * html .menu ul ul a:visited {
font-size: 0.9em;
}

/* style the top level hover */
.menu a:hover{
color:#0075be;
border-right: none;
background-image: url(../images/icons/arrow_blue.gif);
}

.menu ul ul a:hover{
 border: 1px solid #0075be;
 background-color: #fff;
 background-image: none;
 color: #0075be;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
visibility:visible; 
}

