	body {
		behavior:url("../htc/csshover.htc");
	}
	
	* {
		font-family:arial,tahoma,verdana,helvetica;
		font-size:12px;
	}

	/* the menu */

	ul,li,a {
		display:block;
		margin:0;
		padding:0;
		border:0;
	}

	ul {
		width:200px;
		background:#006680;
		list-style:none;
	}

	li {
		position:relative;
		padding:1px;
		z-index:9;
	}
		li.folder	{}		
		li.folder ul {
			position:absolute;
			left:200px; /* IE */
			top:5px;
		}		
			li.folder>ul { left:200px; } /* others */

	a {
		padding:2px;
		border:1px solid white;
		text-decoration:none;
		color:white;
		font-weight:bold;
		width:100%; /* IE */
	}
		li>a { width:auto; } /* others */

	li a.submenu {
	}

	/* regular hovers */

	a:hover {
		background-color:#4589c8;
		color:white;
	}
		li.folder a:hover {
			background-color:#4589c8;
		}
	
	/* 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;
	}		
