/* Site layout and Structure styles */

html, body{ 
 margin:0; 
 padding:0; 
 text-align:center;
 font-family: Arial, Helvetica, sans-serif;
} 
 
#pagewidth{ 
 width:790px; 
 text-align:left;  
 margin-left:auto; 
 margin-right:auto;  
} 
 
#header{
 position:relative; 
 width:100%;
 margin-top: 15px;
} 
 
#leftcol{
 width:150px; 
 float:left; 
 }
 
#twocols{
 width:640px; 
 float:right; 
 }
 
#homepageWrapper{
 width:100%;  
}
 
#rightcol{
 width:150px; 
 float:right; 
 }
 
#maincol{
 float: left; 
 width:490px;
}

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

#rightcol2{
 float: right;
 width: 395px;
}

#footer{
 clear:both;
 width: 790px;
 margin-top: 4px;
} 

.clr{
 clear: both;
 height: 0px;
 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 {
margin-left: 127px;
margin-top: -63px;
margin-bottom: 7px;
border-top: 1px solid #cccccc;
border-right: 1px solid #cccccc;
padding-top: 4px;
}

*:lang(en) .menu{
 margin-top: -60px !important;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
/* 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;
width: 80px;
background-color: #cccccc;
border-right: 4px solid #fff;
padding-left: 10px;
}

.menu li.news, .menu li.about {
 width: 82px;
}

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

.menu a.on{
 color:#339933;
}

/* 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:55.5px;
left:0; 
width:100px;
}

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

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

.menu ul ul li{
 padding: 0;
 border: 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:#339933;
border: none;
}

.menu ul ul a:hover{
 color: #fff;
 background-color: #000000;
 border: 1px solid #fff;
}

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