body {
		behavior:url("../css/csshover.htc");
	}
	
	ul#menu ,#menu li,#menu a {
		display:block;
		margin:0;
		padding:0;
		border:0;
	}

	ul#menu  {
		width:150px;
		border:1px solid #9d9da1;
		background:white;
		list-style:none;
	}

	#menu li {
		position:relative;
		padding:1px;
	/*uncomment the following for images on the left of the menu*/
		/*	padding-left:26px;
		background:url("../images/item_moz.gif") no-repeat;
		*/
		z-index:9;
	}
		/*uncomment the following for images on the left of the menu*/
		/*#menu li.folder	{ background:url("../images/item_folder.gif") no-repeat; }		
		*/
		#menu li.folder ul {
			position:absolute;
			left:120px; /* IE */
			top:5px;
		}		
			#menu li.folder>ul { left:140px; } /* others */

	#menu a {
		padding:2px;
		border:1px solid white;
		text-decoration:none;
		color:gray;
		font-weight:bold;
		width:100%; /* IE */
	}
		#menu li>a { width:auto; } /* others */

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

	/* regular hovers */

	#menu a:hover {
		border-color:gray;
		background-color:#bbb7c7;
		color:black;
	}
		#menu li.folder a:hover {
			background-color:#bbb7c7;
		}
	
	/* hovers with specificity */
	
	#menu li.folder:hover { z-index:10; }		
		
	ul ul, li:hover ul ul {
		display:none;
	}

	#menu li:hover ul, #menu li:hover li:hover ul {
		display:block;
		background: white;
		padding:0;
		margin:0;
		border:1px solid;
	}		

