.MenuGruposWebstorm ul{
font: 8pt Verdana;
margin: 0;
padding: 0;
list-style-type: none;
width: 100%; /* Width of Menu Items */
border-bottom: 1px solid #ccc;
}
	
.MenuGruposWebstorm ul li{
position: relative;
z-index:3;
}
	
/*1st level sub menu style */
.MenuGruposWebstorm ul li ul{
left: 120px; /* Parent menu width - 1*/
position: absolute;
width: 160px; /*sub menu width*/
top: 0;
display: none;
}

/*All subsequent sub menu levels offset */
.MenuGruposWebstorm ul li ul li ul{ 
left: 159px; /* Parent menu width - 1*/
}

/* menu links style */
.MenuGruposWebstorm ul li a{
display: block;
color: black;
text-decoration: none;
background: #EFEFEF;
padding: 1px 5px;
border: 1px solid #ccc;
border-bottom: 0;
}

.MenuGruposWebstorm ul li a:visited{
color: black;
}

.MenuGruposWebstorm ul li a:hover{
background-color: #CFCFCF;
color:#000000;
}

.MenuGruposWebstorm .subfolderstyle{
background: url(images/arrow-list.gif) no-repeat center right;
}

	
/* Holly Hack for IE \*/
* html .MenuGruposWebstorm ul li { float: left; height: 1%; }
* html .MenuGruposWebstorm ul li a { height: 1%; }
/* End */