/* 
 *		Horizontal, top-2-bottom menu
 *		Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by-sa/2.0/
 */
 
#menutop{
	display: block;
	width: 802px;
	height: 36px;
	background: url("../_images/bg-menu.gif") no-repeat;
	position: absolute;
	top: 254px;
	left: 0;
	z-index: 5;
}
 
#menutop ul{
	margin: 4px 0 0 13px;
	padding: 0;
	border: 0;
	list-style-type: none;
}
 
#menutop li{
	margin: 0px;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
	line-height: 1.3em;
}
 
#menutop a {
	display: block;
}
 
#menutop li li {
	width: 100%;
	background: none;
}
 
/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menutop li li ul {
	top: 0;
	left: 0;
}
 
/* ...and then place it where it should be when shown */
#menutop li li:hover ul {
	left: 100%;
}
 
/* initialy hide all sub menus */
#menutop li ul {
	display: none;
	position: absolute;
	z-index: 10;
	margin: 0;
}
 
/* display them on hover */
#menutop li:hover>ul {
	display: block;
}
 
/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuListtop:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
 
/* Fix for IE5/Mac \*//*/
#menutop a {
	float: left;
}
 
#menuListtop {
	display: inline-block;
}
/*  */
 
/*		------   Make-up	--------			*/
 
#menutop a {
	text-decoration: none;
	text-align: center;
	font-size: 90%;
	padding: 5px 7px 4px 7px;
	color: #cecfd0;
}
#menutop a:hover{
	color: #fff;
}
 
#menutop li ul {
	color: #fff;
	background-color: #0e0e0e;
	width: 130px;
	border: 1px solid #202020;
}
 
#menutop li ul a {
	text-align: left;
	background-image: none;
}

#menutop li:hover ul, #menutop li ul li:hover ul {
	display: none;
}