/* 
 *	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;
}

#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 {
	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: 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 li {
	height: 21px;
	overflow: hidden;
}*/

#menuContainer {
	position: relative;
	height: 23px;
	top: 0px;
	background-image: url(../images/structure/menu_bg.png);
	z-index: 1;
}

#menu {
	position: absolute;
	left: 50px;
	top: 1px;
}

#menu a img {
	border: none;
}

#menu li ul {
	width: 136px;
	background-color: #004D87;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

#menu li li {
	width: 136px;
	height: 21px;
	line-height: 21px;
	border-top: 1px solid #fff;
}

#menu li li a {
	display: block;
	width: 128px;
	padding-left: 8px;
	text-decoration: none;
	color: #fff;
}

#menu li li a:hover {
	background-color: #4C82AB;
}

#menu li a img {
	display: block;
	position: relative;
	top: 0px;
	left: 0px;
	width: 137px;
	height: 21px;
}

/* navigation items 
==================================================================*/

#menu #nav1 {
	background: transparent left top no-repeat url(../images/menu/nav_1.png);
}

#menu #nav1:hover {
	background-position: left bottom !important;
}

#menu #nav2 {
	background: transparent left top no-repeat url(../images/menu/nav_2.png);
}

#menu #nav2:hover {
	background-position: left bottom !important;
}

#menu #nav3 {
	background: transparent left top no-repeat url(../images/menu/nav_3.png);
}

#menu #nav3:hover {
	background-position: left bottom !important;
}

#menu #nav4 {
	background: transparent left top no-repeat url(../images/menu/nav_4.png);
}

#menu #nav4:hover {
	background-position: left bottom !important;
}

#menu #nav5 {
	background: transparent left top no-repeat url(../images/menu/nav_5.png);
}

#menu #nav5:hover {
	background-position: left bottom !important;
}

#menu li:hover>a {
	background-position: left bottom !important;
	}

