@charset "utf-8";
/* Menu Styles */

/* basic nav bar styles
---------------------------- */

#menuBar {
 	width: 640px;
	margin: 0px;
	padding: 0px;
	position: relative;
	
}

ul#menu {
	padding:2px 10px 0 15px;
	list-style:none;
	text-transform: uppercase;
	margin:0 auto;
	font-size:11px;
	font-family: Arial, Helvetica, sans-serif;
	height:40px;
	line-height: 40px;
	position: relative;
	font-weight: bold;
}



#menu li {
	float:left;
	display:block;
	text-align: center;
	position:relative;
	margin: 0 20px 0 0;				/* change right margin to fit in more items */
	height: 40px;
}

#menu li.last {
	margin-right: 0px;
}

#menu li a {
	padding: 0 5px;
	color: #1a1a1a;
	text-decoration: none;
	float:left;
	display: block;
	height: 40px;
}

#menu li a:hover {
	background:#dcd9d8;
}

ul#menu li a.activated {text-decoration:underline;}


/* drop down menu styles 
----------------------------*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
ul.level2 {
	visibility:hidden;
	position:absolute;
	top:40px;
	left:0;
	margin:0;
	padding:0;
	width:150px;
	border:1px solid #1a1a1a;
	z-index: 400px;
	text-transform:lowercase;
}

*html ul.level2 {
	top: 30px;
}

#menu ul.level2 li {
	width:150px;
	margin:0;
	padding: 0;
	left:0;
	display: block;
	text-align: left;
	background: #f7f4f3;
	font-size: 10px;
	line-height: 30px;
	font-weight: normal;
	text-indent: 2px;
	color: #000;
	height: 30px;
}

#menu ul.level2 li a  {
	text-decoration: none;
	display: block;
	padding:0;
	margin:0;
	background: #f7f4f3;
	height: 30px;
	width: 150px;
}

/* zero the styles on the table used by IE6 */
#menu table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}


/* style the top level hover */
#menu ul.level 2 a:hover, #menu ul.level2 a:hover{color:#1a1a1a; background:#dcd9d8;}
#menu :hover > a, #menu ul.level2 :hover > a {color:#1a1a1a;background:#dcd9d8;}


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

