@charset "UTF-8";
/* CSS Document */

.indice_desplegable {
	display: none;
	position: relative;
	right: 0px;
	margin-top: 20px;
	overflow: visible;
	height: auto;
	width: auto;
	border: 2px solid orange;
	background-color: black;
	
/*	z-index: 2;*/

	font-style: normal;
	font-family: Arial, Trebuchet MS;
	
	/*	display: none;
	position: relative;
	overflow: visible;
	height: auto;
	width: auto;
	border: 2px solid orange;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
	font-style: normal;
	font-family: Arial, Trebuchet MS;
	*/
}

.indice_desplegable > li {
	display: block;
	overflow: visible;
	text-align: center;
	font-size: .8em; /*(= tamaño del numeral)*/
	color: whitesmoke; /*COLOR DEL NUMERAL*/
	/*EXPERIMENTO*/	
	position: inherit;
}

.indice_desplegable > li > a {   /* EL TEXTO DENTRO DEL BTN INDICE*/
	display: block;
	border-radius: 6px;
	width: 30%; /*30% original*/
	margin-left: auto; /*antes 2em
	margin-right: auto;*/
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 1px;
	padding-top: 1px;
	color: white;
	font-family: Trebuchet MS, Arial, "Roboto slab", Helvetica,"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", "sans-serif";
	text-decoration: none;
	font-size: 1em; /*antes 1.2*/
	overflow: hidden;
}
.indice_desplegable > #hamburguesa a {   /* burger LI*/
		display: block;
		border-radius: 10px;
		border: 2px solid yellow;
		width: 30%;
		margin-left: auto;
}

.indice_desplegable > li a:hover, .indice_desplegable2 > li a:hover {
		background-color: transparent;
	}
ul.indice_desplegable {
		display: block; /*antes flex*/
	}



ol.indice_desplegable_sub > li a.botoncito {
		display: block;
		position: relative;
		width: auto;
		border-radius: 0px;
		background-color: transparent;
		color: aliceblue;
		padding-left: 0px;
		padding-right: 0px;
		padding-bottom: 5px;
		padding-top: 5px;
		text-decoration: none;
		font-size: 1.2em;
		margin-left: auto;
		margin-bottom: .5em;
}
ol.indice_desplegable_sub { /*EL DESPLEGABLE NEGRO*/
		width: 50%;
		right: 0;
		height: auto;
		display: none; /* ------ debe ser none*/
		position: absolute;	/*POSICION ORIGINAL: ABSOLUTA*/
		padding: 5px 0px 0px 20px;
		border-radius: 10px;
		background-color: darkslategray;
		-webkit-transition: opacity .5s;
		transition: opacity .5s;
		box-shadow: -2px 3px 10px rgba(0, 0,0, .5);
}
ol.indice_desplegable_sub > li {		
		position: relative;
		width: 90%;
		/*margin-left: auto;*/
		margin-bottom: auto;
}
ol.indice_desplegable_sub li {
		text-align: left;
		margin-left: 10px;
	}
ol.indice_desplegable_sub a {
		display: block;
		padding: 5px;
	}










#boton_indice /*   "a" ANTERIOR*/ {
		margin-right: 8em;
		background-color:rgba(100, 149, 237, .0); /*ANTES TRANSPARENTE*/
		overflow: visible;
}
#hamburspam {
	background-color: darkslategray;
	border-radius: 5px;
	display: block;
	position: relative;
	overflow: hidden;
	width: 40px;
	height: 25px;
	padding: 6px 10px 0 10px;
	margin-left: auto;
	margin-right: auto;	
	box-shadow: -2px 2px 5px rgba(0, 0,0, .4);
}
#hamburX {
	display: none;
}
.pan {
	width: 100%;
	height: 4px;
	border-radius: 2px;
	display:block;
	margin-bottom: 4px;
	background-color: ghostwhite;
}

.close {
  	position: relative;
  	display: block;
  	top: 0px;
	margin-left: auto;
	margin-right: auto;
 	width: auto;
  	height: auto;
}
.close:before, .close:after {
  	position: absolute;
	display: block;
	left: 18px;
  	content: ' ';
  	height: 20px;
  	width: 4px;
	background-color: ghostwhite;
	border-radius: 2px;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

@media (max-width: 550px) {
	
	ol.indice_desplegable_sub { /*EL DESPLEGABLE oscuro*/
		width: 80%;
	}
	
	#boton_indice {
		margin-right: 2em;
	}
}