/* Site layout and Structure styles */

html, body{ 
 margin:0; 
 padding:0; 
 text-align:center;
 font-family: Arial, Helvetica, sans-serif;
 background-color: #d1cfb8;
 background-position: left top;
 background-repeat:repeat-x;
 background-image: url(../images/structure/header/bg.jpg);
} 
 
#pagewidth{ 
 width:800px; 
 text-align:left;  
 margin-left:auto; 
 margin-right:auto;
 background-position: top;
 background-repeat:no-repeat;
 background-image: url(../images/structure/header/top.jpg); 
} 
 
#header{
 position:relative; 
 width:100%;
} 

#wrapper{
 background-color: #e5e3d1;
}
 
#leftcol{
 width:185px; 
 float:left;
 }
 
#twocols{
 width:615px; 
 float:right;
 background-color: #fff;
 min-height: 350px;
}

* html #twocols{
 height: 350px;
}
 
#rightcol{
 width:222px; 
 float:right; 
 }
 
#maincol{
 float: left; 
 width:393px;
}

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

#twocols2{
 width:800px; 
 background-color: #fff;
}

#maincol_full{
 float: left; 
 width:800px;
}
 
#footer{
 clear:both;
 background-position: left top;
 background-repeat:repeat-x;
 background-image: url(../images/structure/footer/bg.jpg);
} 

.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 {
width:100%;
border-bottom: 1px solid #f26722;
height:30px;

}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0 0 0 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;

}

/* style the links for the top level */
.menu a{
display:inline; /* Replaced display:block to fix ie8 bug*/
font-size:0.9em;
text-decoration:none; 
color:#3F3F3F; 
padding: 9px 13px 9px 13px;
background-position: right bottom;
background-repeat:no-repeat;
background-image: url(../images/structure/header/nav_border.gif);
line-height:30px; /* added to fix ie bug */
}

.menu a.on{
 color:#fff;
 background: none;
 background-color: #f26722;
}

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

/* 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;}

.menu ul ul li{
/* border-bottom: 1px solid transparent; */
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#e5e3d1; 
color:#3F3F3F; 
height:auto; 
line-height:2em; /* replaced line-height:1em to fix ie8 bug */
padding:5px 10px; 
text-transform: none;
text-align: left;
font-size: 0.8em;
margin-top: 0;
}

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

/* style the top level hover */
.menu a:hover{
 color:#fff;
 background: none;
 background-color: #f26722;
}

.menu ul ul a:hover{
 color: #fff;
 background-color: #f26722;
}

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




