#menu {
	width: 200px;
	margin: 0 auto;
	margin-top: 65px;
	margin-bottom: 10px;
}

#menu * {
	font-family:"Arial",monospace;
	font-size:11px;
}

/* the menu */
#menu ul, #menu li, #menu a {
	display:block;
	margin:0;
	padding:0;
	border:0;
}

#menu ul {
	width: 200px;
	border:1px solid #333 /* #9d9da1 */;
	background: url(/gfx/menubg.gif) /* #cbf890 */;
	list-style:none;
}

#menu li {
	height: 18px;
	position:relative;
	padding:1px;
	padding-left:26px;
	background:url("gfx/menu_item_leaf.gif") no-repeat;
	z-index:9;
}
	#menu li.folder	{ background:url("gfx/menu_item_folder.gif") no-repeat; }
	#menu li.folder ul {
		position:absolute;
		left:120px; /* IE */
		top:5px;
	}
		li.folder>ul { left:140px; } /* others */

#menu a {
	height: 16px;
	padding:2px;
	text-decoration:none;
	color:#79c;
	font-weight:bold;
	width:100%; /* IE */
}
	#menu li>a { width:auto;} /* others */

#menu li a.submenu {
	background:url("/gfx/sub.gif") right no-repeat;
}

/* regular hovers */
#menu a:hover {
	color:black;
	background-color: #5cb82f;
	background: url(/gfx/menubg_hover.gif) repeat-x;
}
	#menu li.folder a:hover {
		background-color: #5cb82f;
		background: url(/gfx/menubg_hover.gif) repeat-x;
	}

/* hovers with specificity */
#menu li.folder:hover { z-index:10; }

#menu ul ul, #menu li:hover ul ul {
	display:none;
}

#menu li:hover ul, #menu li:hover li:hover ul {
	display:block;
}

