/* 
 *	Vertical, left-2-right menu
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

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

#menu {

	width: 100px;
	/*
	width: ?;
	YOU MUST specify some width, otherwise menu would span whole page.
	Since this depends on design, do it in make-up section.
	*/
	display: block;
}

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

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;
}

#menu a {
	display: block;
}

#menu li {
	width: 100%;
}

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

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

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

/* 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 {
/*
	color: #000;
	background-color: #9c6;
	border: 1px solid #693;
	*/
}

#menu li:hover {
/*	background-color: #555555;*/
}

#menu a {
	text-decoration: none;
/*	text-align: center;
	color: #360;*/
	padding: 4px 5px 5px;
}

#menu li:hover>a {
/*	color: #fff;*/
text-decoration: underline;
}

#menu li a:hover {
/*	color: #fff;*/
text-decoration: underline;
}

#menu li ul {
/*	color: #000;*/
	background-color: #BBBBBB;
	border: 1px solid #777777;
	width: 130px;
}

#menu li ul a {
/*	text-align: left;*/
}

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