/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.suckertreemenu{
	background-color:#F3F3F3; /*overall menu background color*/
	border:1px solid #ccc;
	position:relative;
	float:left;
	width:958px;
	z-index:9;
}
.suckertreemenu ul{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size:16px;
	font-weight: normal;
	text-transform: capitalize;
	border-collapse:collapse;
}

/*Top level list items*/
.suckertreemenu ul li{
	position:relative;
	display:inline;
	float:left;
	background-color:#F3F3F3; /*overall menu background color*/
	text-align:center;
	z-index:9;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display:block;
	width:135px; /*Width of top level menu link items*/
	text-decoration:none;
	height:25px;
	padding-top:5px;	
	color:#505050;
	background:url(../imagenes/boton1.png) #f4f4f4 center;
	border-left:2px solid #cccccc;
}

/*1st sub level menu*/
.suckertreemenu ul li ul{
	left:0;
	position:absolute;
	z-index:10;
	top:1em; /* no need to change, as true value set by script */
	display:block;
	visibility:hidden;
	padding-top:0px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
	text-align:left;
}

.suckertreemenu ul li ul li .test{
	float: none;
	text-align:left;
	height:100px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{
	left:159px; /* no need to change, as true value set by script */
	top:0;
	padding-left:2px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display:block;
	width:160px; /*width of sub menu levels*/
	height:15px;
	color:#505050;
	background-image:none;
	text-decoration:none;
	padding:6px 0 10px 8px;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
}

.suckertreemenu ul li a:hover{
	background-color:#EAEAEA;
	color:#0066FF;
	border-left:2px solid #0066FF;
}

.suckertreemenu ul li ul li a:hover{
	background-color:#EAEAEA;
	color:#0066FF;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top:1em;
}

/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */



