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

@import url( MenuIcons.css );

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

#menu {
	display: block;
	
	background-image: url(/images/swsh.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;
}

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

/* 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-family: Tahoma, sans-serif;
	font-size: 1em;
	color: #000;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
}

#menu a {
	text-decoration: none;
	text-align: center;
	color: #000;
	padding: 5px 5px 5px;
}

#menu li {
	margin: 2px;
	padding: 1px;
}

#menu li:hover {
	background-color: #ddd;
	padding: 0;
	border: 1px solid #ccc;
}

/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
#menu li li {
	width: 124px;
}

#menu li ul {
	color: #000;
	background-color: #fff;
	background-image: url(/images/);
	background-repeat: repeat-y;
	border: 1px solid #ccc;
	width: 130px;
}

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

#menu li li.submenu {
	background-image: url(/images/);
	background-repeat: no-repeat;
	background-position: right;
}

#menu li li.submenu>a {
	background: url(/images/index14.gif) no-repeat right;
}

#menu li li.submenu:hover>a {
	background-image:url(/images/);
}

