	/* the menu */

	ul,li,a.menu {
		display:block;
		margin:0;
		padding:0;
		border:0;
		background-color: #fae2c9; /* background all menu bars */
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.05em;
		}

	ul 	{
		width:250px;
		border:1px solid #f0e7d7;
		background: #fff;
		list-style:none;
		}

	li 	{
		position:relative;
		padding:1px;
		padding-left: 1px;
		}

	li.folder	{ background:url("images/item_folder.gif") no-repeat; background-color:#f0e7d7;
		}
		
	li.folder ul {
		position:absolute;
		left:240px; /* IE */
		top:5px;
		}		

	li.folder>ul { left:240px; } /* others */

	a.menu	{
		padding:2px;
		border:1px solid #f08501;
		text-decoration:none;
		color: #824600;
		width:100%; /* IE */

		}

	li>a.menu { width:auto; } /* others */

	li a.submenu {
		background:url("sub.gif") right no-repeat;
		}

	/* regular hovers */

	a.menu:hover {
		border-color:gray;
		background-color:#F08501;
		color: #ffffff;
		}
	
	li.folder a.menu:hover {
		background-color:#F08501;
		}
	
	/* hovers with specificity */
	
	li.folder:hover { z-index:10; }		
		
	ul ul, li:hover ul ul {
		display:none;
		}

	li:hover ul, li:hover li:hover ul {
		display:block;
		}