@charset "utf-8";
/* CSS Document */

.menu{
width:907px;
position:relative;
display:inline-block;
background: #cccccc url(images/blockdefault.gif) center center repeat;
}

.menu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.menu ul li{
position: relative;
display: inline;
float: left;
font: bold 13px Verdana;
text-align:center;
background: #cccccc url(images/blockdefault.gif) center center repeat; /*overall menu background color*/
}

/*Top level menu link items style*/
.menu ul li a{
display: block;
width: 90px; /*Width of top level menu link items*/
padding: 3px 5px;
border-right:inset 1px #FFCC33;
border-left:outset 1px #FFCC33;
text-decoration: none;
color: black;
}

.menu ul li a:visited{
color:black;
}
	
/*1st sub level menu*/
.menu ul li ul{
left: 0;
background-color:#cccccc;
position:absolute;
top: 1em; /* no need to change, as true value set by script */
display:block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu ul li ul li{
display: list-item;
float: none;
text-align:left;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.menu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.menu ul li ul li a{
display: block;
width: 180px; /*width of sub menu levels*/
color: black;
text-decoration: none;
padding: 1px 5px;
border: 1px solid #cccccc;
}

.menu ul li a:hover{
background: transparent url(images/blockactive.gif) center center repeat;
color: white;
}

/*Background image for top level menu list links */
.menu .mainfoldericon{
background: #cccccc url(images/blockdefault.gif) center center repeat;
}

/*Background image for subsequent level menu list links */
.menu .subfoldericon{
background:url(images/arrows.gif) no-repeat center right;
}

.navbarspacer{
background: #cccccc url(images/blockdefault.gif) center center repeat-x;
width: 30px;
padding: 3px 4px;
}


	
/* Holly Hack for IE \*/
* html .menu ul li { float: left; height: 1%; }
* html .menu ul li a { height: 1%; }
/* End */
