/* CSS Document */

	#ul,#li,#a {
		display:block;
		margin :0;
		padding:0;
		border:0;
	}

	#ul {
		width:200px;
		/*border:1px solid #9d9da1;*/
		background: url(../imagenes/fondo-gif-anima.gif);
		list-style:none;
	}

	#li {
		position:relative;
		padding:1px;
		padding-left:20px;
		background:url("../imagenes/flechas1.jpg") no-repeat;
		z-index:9;
		border-bottom:1px solid #dbdbdb;
	}
		#li.folder	{ background:url("../imagenes/flechas1.jpg") no-repeat; }		
		#li.folder #ul {
			position:absolute;
			left:120px; /* IE */
			top:5px;
		}		
			#li.folder>#ul { left:200px; } /* others */

	#a {
		padding:2px;
		border:1px solid white;
		text-decoration:none;
		font-family:Arial, Helvetica, sans-serif;
		font-size: 12px;
		color:#999999;
		font-weight:bold;
		text-align:left;
		/*width:100%; *//* IE */
	}
		#li>#a { width:auto; } /* others */

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

	/* regular hovers */

	#a:hover {
		border-color:#dbdbdb;
		background-color:#fcfde9;
		color:#9d0f0d;
	}
		#li.folder #a:hover {
			background-color:#fcfde9;
		}
	
	/* 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;
	}
	#li:hover {
		background:url(../imagenes/flechas2.jpg) no-repeat;
		background-color:#fcfde9;
	}
	#ul #li #ul #li #a {
		border:#dbdbdb solid 1px;
	}
