/*
 *	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 {
	padding: 0px;
	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;
}

#subList {
	background-color: #04815B;
	border: 1px solid #00734F;
	width: 150px;

}

/* Clear-fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

#menuList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#menu {
	color: #fff;
	background: url(menu_bg.png);
	height: 28px;
	background-repeat: no-repeat;
	width: 800px;
}

#menu li {
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: #fff;
}

#menu li li {
	border: none;

}

#menu li:hover {

	
}

#menu a {
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	padding: 7px 15px 7px 15px;
	font-size: 12px;
}


#menu li:hover>a {
	color: #000;
}

#menu li ul {
	color: #FFF;
/*	background-color: #c0c0c0; */
	background-color: #080;
  width: 170px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
}

#menu li ul a {
	text-align: left;
	background-image: url(/images/arrow_white.gif);
	background-repeat: no-repeat;
	background-position: 15px 7px;
}

#menu li li a {
	font-weight: normal;
	text-align: left;
	text-transform: none;
	padding: 4px 10px 4px 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}

#menu li li:hover>a {
	background-color: #33add2;
	color: 000;
}
