/* 
 *		Horizontal, top-2-bottom menu
 *		Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by/2.0/
 */

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

#menu {
	display: block;
	width: 760px;
	height: 27px;
	background-image: url(../images/navbg.gif);
}

#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;
	width: 152px
}

#menu a {
	display: block;
}

#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: 0;
}

/* 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;
}

/* Fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

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

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

#menu {
	color: #000;
	background-color: #D9D3C3;
/*	border: 1px solid #003366; */
}

#menu li:hover {
	/*height: 27*/

}

#menu a {
	text-decoration: none;
	text-align: center;
	color: #FFFFFF;
	padding: 4px 5px 5px;
	font-family: "Arial";
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
}

#menu li:hover>a {
	color: #EBF735;
}

#menu li ul a {
	color: #26224b;
	background-color: #D9D3C3;
	width: 143px;
	font-family: "Arial";
	font-size: 11px;
	line-height: 16px;
	font-weight: bold;
		
}
#menu li ul a:hover {
	color: #ffffff;
	background-color: #26224B;
	width: 143px;
	font-family: "Arial";
	font-size: 11px;
	line-height: 16px;
	font-weight: bold;
		
}

#menu li ul a {
	text-align: left;
}

#menu li li.submenu {
	width: 147px;

	display: block;
	font-family: "Arial";
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
}


