/* 
 *	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 {
	list-style-type: none;
}

#menu li {
	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	--------			*/

/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
#menu li li {
	width: 154px;
}

#menu li ul {
	width: 170px;
	margin-left: 0px;
	top: 23px;
	left: -1px;
	
	background-color: #ffffff;
	border: 1px solid #CFCFCF;
	
	color: #000000;
	
	/*opacity: .90;*/
}

#menu li ul a:link, 
#menu li ul a:visited
{
	width: 150px;
	padding: 4px 5px 4px 15px;
	
	background-image: url(../images/bullet_menu.gif);
	background-repeat: no-repeat;
	background-position: 4px 7px;
	
	text-align: left;
	text-transform: uppercase;
	font-weight: bold;
	color: #727272;
	font-size: 90%;
	font-family: Arial, Helvetica, sans-serif;
}
#menu li ul a:hover
{
	background-color: #F6D82A;
	color: #FF0099;
	/*color: #333333;*/
}

#menu li ul li
{
	background-image: none;
}

#menu li ul ul
{
	/*filter: alpha(opacity=90);*/
}
