/* 
 *	Horizontal, top-2-bottom
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by-sa/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

/*		------	Basic style	------		*/

#menu {
	display: block;
	height: 15px; /* heigth to give space for Contacts Drop-down */
         padding-left:21px;
}

#menu ul {
	margin: 0;
	border: 0;
	list-style-type: none;
         padding: 0;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#menu a {
	display: block;
}

#menu li li {
	width: 100%;
}

/* move 1st level submenu up. value for this is solely based on the styles you set in make-up part. just make sure edges touch */
#menu li ul {
	top: 2.0em;
	left: -70px;
}

/* 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 {
	font-size: 1em;
	line-height: 1.3;
	color: #000;
	/*background-color: #fff;
	border: 1px solid #fff;*/
	width: 225px;
	margin: 0px auto; /* "auto" horizontally center pageWrapper*/
}

#menu a {
	text-decoration: underline;
	text-align: center;
	color: #000;
	padding: 4px 5px 5px;
}
/* item without link */
#menu span {
	text-align: center;
	color: #000;
	padding: 4px 5px 5px 22px;
}

#menu li {
	margin: 2px;
	padding: 1px;
}

#menu li:hover {
	background-color: #F4F4F4;
	padding: 0;
	border: 1px solid #8E8E8E;
}

/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
#menu li li {
	width: 210px;
}

#menu li ul {
	color: #000;
	background-color: #fff;
/*	background-image: url(images/iconbg.gif);
	background-repeat: repeat-y;*/
	border: 1px solid #8E8E8E;
	width: 216px;
}

#menu li ul a {
	text-align: left;
	padding-left: 29px;
	width: 210px;
}
#menu li ul li span {
	display: block;
	width: 210px;
	text-align: left;
	padding-left: 29px;
}

#menu li li.submenu {
/*	background-image: url(images/arrow-w.gif);
	background-repeat: no-repeat;
	background-position: right;*/
}

#menu li li.submenu>a {
/*	background: url(images/arrow-b.gif) no-repeat right;*/
}

#menu li li.submenu:hover>a {
/*	background-image: none;*/
}