/* SVN FILE: $Id: misc.css 6311 2008-01-02 06:33:52Z phpnut $ */
/**
 * Menu App CSS
 */
 
.menu {
	background: #fbaf00 url(images/navbar_bg.png) repeat-x bottom left;
	width: 974px;
	height: 30px;
	margin: 0 auto;
}

.menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu ul li { /*display: inline;*/
	float: left;
	position: relative;
	width: 10em;
	line-height: 30px;
	
}

.menu ul li ul {
	display: none;
	position: absolute;
	top: 1em; /*left and top to correct IE's mistake*/
	left: 0;
	background: #FBE400 url(images/navbar_lower.png) repeat-x left top;
	border-top: 5px;
}

.menu ul li>ul { /*uncorrect IE's mistake on other browsers */
	top: auto;
	left: 10;
}

.menu ul li:hover ul,.menu ul li.over ul {
	display: block;
	clear: left;
}

.menu li a {
	display: block;
	text-decoration: none;
	color: #0c0c0c;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
}

.menu li a:hover {
	color: white;
}

.menu li ul a {
	color: #0c0c0c;
}
div.menu ul ul ul, div.menu ul ul li:hover ul ul {
	display:none;
}
div.menu ul ul li:hover ul, div.menu ul ul ul li:hover ul {
	display:none;
} ;
