

#menu {
	width:200px;
	z-index:1000;
	padding-bottom:10px
/*	position:absolute;
	left:0;
	top:255px;*/


	
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	
}

#menu ul li {
	font: bold 11px/16px arial, helvetica, sans-serif;
	height:100%;
	position: relative;
	float:left;
	width:100%;
	}
	
#menu ul li ul li{
	background:#317db1;
	}

#menu ul li a{
	display:block;
	padding: 0px 5px;
	background:url(../imagenes/menu_lateral/bg_azul.gif) #317db1;
	line-height:30px;
	color:white;
		}

#menu ul li a:hover {
	color: #a00;
	background: url(../imagenes/menu_lateral/bg_azul_over.gif);
}

#menu ul li ul li a:hover{
	background: white;
}
#menu ul li ul li a{
	background: white;
	color:black
}

#menu ul ul { /*subsecciones*/
	position: absolute;
	top: 0;
	display:none;
	border:1px solid #317db1;
	width:175px;
	z-index:900;
	background:white

}

#menu ul li:hover ul{
	display: block;
	left:200px;
}

