/* MENU */
#menu {
	height: 47px;  /* 57px */
	width: auto;
	background-image: url(../img/menu_bg.png);
	background-repeat: no-repeat;
	margin-left: 8px;
	font-family: Verdana,Geneva,Kalimati,sans-serif;
	font-size: 10px;
	font-weight: bold;
	background-position: 0 -10px; /* new */
}

#menu ul {
	width: auto;
	height: 100%;
	margin-left: 8px;
}

#menu ul li {
	list-style: none;
	height: 47px;   /* 57px */
	position: relative;
	display: inline;
	float: left;
	background-image: url(../img/menu_separator.png);
	background-position: left 2px;
	background-repeat: no-repeat;
	_width: 1%;
	white-space: nowrap;
	z-index: 10;
	
	text-align: center;
	line-height: 14px;
	background-position: 0 -10px; /* new */
}

#menu ul li.first {
	background-image: none;
}

#menu ul li a {
	display: block;
	padding-top: 10px;  /* 20px */
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
	height: 37px;   /* 27px */
	color: black;
	text-decoration: none;
}

#menu ul li a:hover {
	color: white;
	text-decoration: underline;
}

#menu ul li ul{
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
	width: 220px;
}

#menu ul li ul li {
	border-top: 1px solid #567ba4;
	background: none;
	display: list-item;
	float: none;
	width: 100%;
	background-color: #6396d1;

	height: 30px;
	
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;
	filter: alpha(opacity=90, style=0);
	
	text-align: left;
}

#menu ul li ul li a{
	padding-top: 7px;
	height: 30px;
	
}


