/* 
 *	Horizontal, top-2-bottom
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

/*		------	Basic style	------		*/

#menu {
	display: block;
	padding-left: 10px;
}

#menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#menu a:link, #menu a:visited {
	display: block;
	color: #023573;
	text-decoration: none;
	font-weight: bold;
}
#menu a:hover, #menu a:active {
	text-decoration: underline;
}

#menu li li {
	width: 100%;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#menu li li:hover ul {
	left: 100%;
}

/* initialy hide all sub menus */
#menu li ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
#menu li:hover>ul {
	display: block;
}

/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Clear-fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

#menuList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#menu {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000;
}

#menu li {
	width: auto;
}

#menu li ul {
	color: #333;
	font-weight: normal;
	font-size: 9px;
	background-color: #fff;
	border: 1px solid #ccc;
	width: 130px;
}

#menu a {
	text-decoration: none;
	color: #000;
	padding: 5px 8px;
	border-left: 1px solid #fff;
	border-right: 1px solid #8F8EA8;
}
#first a { 
	border-left: 0px;
	}
#menu li a:hover {
	background-color: #38347C;
	background-image: url(../img/nav-ro.jpg);
	background-repeat: repeat-x;
	text-decoration: none;
}

#menu li ul a:hover {
	background-color: #DCDACB;
	background-image: none;
}

#menu li ul a {
	padding: 2px 8px 3px 12px;
	border: 1px solid #fff;
	background-color: #EBE9DF;
}