/*
 *	Horizontal, top-2-bottom
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 * I downloaded these CSS files from the following location:
 *  http://www.aplus.co.yu/adxmenu/intro/
 */

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

#tab_menu {
	display: block;
	background-color: #FF9933;
}

#tab_menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#tab_menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#tab_menu a {
	display: block;
}

#tab_menu li li {
	width: 100%;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#tab_menu li li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#tab_menu li li:hover ul {
	left: 100%;
}

/* initialy hide all sub menus */
#tab_menu li ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
#tab_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 */
#tab_menuList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Clear-fix for IE5/Mac \*//*/
#tab_menu a {
	float: left;
}

#tab_menuList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/
#tab_menu {
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 0.9em;
	font-weight: bold;
	color: #000;
	background-image: url(../images/footer_bg.jpg);
	background-repeat: repeat;
}

#tab_menu a {
	text-decoration: none;
	text-align: center;
	color: #000000;
	padding: 1px 5px 1px 5px;
}

#tab_menu a:hover {
	color: white;
}

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

#tab_menu li:hover {
	padding: 1px;
/*	border: 1px solid black;*/
	background-color: #FFCC33; /*peach*/
	
}

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

#tab_menu li ul {
	color: #000;
	background-color: #FF9C00; /*salmon*/
	/*background-image: url(../images/iconbg00.gif);
	background-repeat: repeat-y;*/
/*	border: 1px solid #FF9700;*/
	width: 150px;
}

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

#tab_menu li li.submenu {
	/*background-image: url(../images/arrow-w0.gif);
	background-repeat: no-repeat;*/
	background-position: right;
}

#tab_menu li li.submenu>a {
	/*background: url(../images/arrow-b0.gif) no-repeat right;*/
}

#tab_menu li li.submenu:hover>a {
	background-image: none;
}
