/* CSS Document */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.suckertreemenu {
	margin: 0px 0px 0px 0px; /* ubicacion gral del menu*/
	/* background-color: #ffcc33; */
	background: transparent url("img/menu-pat.gif");
	height: 24px;
	width: 760px;
}
* html .suckertreemenu { he\ight:30px; } /* TAN HACK valores que toma IE*/

.suckertreemenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/* item ppales */
.suckertreemenu ul li {
	position: relative;
	display: inline;
	float: left;
	/* background-color: #ffcc33; /* color de fondo */
	padding: 0px 0px 0px 0px; /* separacion de todos los links*/
	margin: 5px 3px;
	white-space: nowrap;       /* no separar palabras */
}

/* link items ppales */
.suckertreemenu ul li a {
	display: block;
	/*width: 90px;  ancho pestaņas, para IE arreglado al pie Holly Hack */
	padding: 1px 2px 1px 3px;
	border: 0px solid black;
	border-left-width: 0;
	text-decoration: none;
	font-family: tahoma, verdana, sans-serif; /* formato texto ppal */
	font-size: 11px;
	color: #333;
	letter-spacing: 0px;
}

/* subrayado links item ppales */
.suckertreemenu ul li a:hover {
	text-decoration: none;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul {
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	border-right: 2px solid #666; /* borde exterior para sombra */
	border-bottom: 2px solid #666;
	background-color: #ffcc33; /* necesario para IE */
}

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

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

/* Sub level menu links style */
.suckertreemenu ul li ul li a {
	display: block;
	width: 180px; /* ancho desplegable*/
	color: white;
	text-decoration: none;
	padding: 1px 5px; /* separacion items secundarios*/
	border: 0px solid #ccc;
	font-family: tahoma, verdana, sans-serif;
	font-size: 11px;
	color: #333;
	letter-spacing: 0px;
}

.suckertreemenu ul li a:hover{
	background-color: #cc9900;
	color: white;
}

/* color de fondo e icono para item principal */
.suckertreemenu .mainfoldericon{
	background: #ffcc33 url(img/arrow-down.gif) no-repeat center right;
}

/* color de fondo e icono para item secundario */
.suckertreemenu .subfoldericon{
	background: #ffcc33 url(img/arrow-right.gif) no-repeat center right;
}

* 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%; width: 30px; } /* ancho pestaņas, no sacar que en IE se desarma */

/* End */




