
	/* the menu */

	ul,li,.menulinks a {
		display:block;
		margin:0;
		margin-left:3px;
		padding:0;
		border:0;

	}

	ul {
		background:#dda;
		list-style:none;
		width:185px;
	}

	li {
		position:relative;
		padding:1px;
		padding-left:0;
		background:url("") no-repeat;
		z-index:9;
	}
		li.folder	{ background:url("") no-repeat;}
		li.folder ul {
			position:absolute;
			border:1px solid #621;
			left:160px; /* IE */
			top:-1px;
            margin-left:1px;
		}
			li.folder>ul { left:160px; } /* others */
	.menulinks a {
		padding:2px;
		text-decoration:none;
		color:#621;
		font-weight:bold;
		width:170px; /* IE */
	}
		li>a { width:auto; } /* others */

	li a.submenu {
        z-index:9;
		background:url("./images/arrow4.png") right no-repeat;
}



	/* regular hovers */

	.menulinks a:hover {
   		border-color:#621;
		background-color:#621;
		color:#dda;
	}
		li.folder a:hover {
			background-color:#621;
		}
	
	/* 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;
	}		





