/** 
 *		Este fichero es el estilo exclusivo para configurar el menú mobile
 *
 */

/********** INI COLORES **********/
/* TITLEBAR */
#head_mobile #title_mobile {
	background-color: #333;
}
#head_mobile #title_mobile span {
	color: white;
	line-height: 60px;
	font-size: 19px;
	margin-left: 10px;
}
/* botón del menú */
#head_mobile #boton-menu {
	background: url(img/menu-mobile-white.png) center no-repeat;
}
/* el navegador */
#head_mobile #nav_mobile {
	background: white;
}
/* el navegador (cada enlace) */
#head_mobile #nav_mobile li a {
	border-bottom: solid 1px #EEE;
	color: black;
}
/********** FIN COLORES **********/

#head_mobile {
	display: none;
}
@media only screen and (max-width: 768px) {
	#head_mobile {
		display: block;
	}
	#head_mobile #title_mobile {
		height: 59px;
		left: 0;
		top: 0;
		right: 0;
		bottom: auto;
		width: 100%;
		z-index: 202;
		/*position: fixed;*/
		box-shadow: 0px 2px 5px #EEE;
		-webkit-box-shadow: 0px 2px 5px #EEE;
		-moz-box-shadow: 0px 2px 5px #EEE;
		-ms-box-shadow: 0px 2px 5px #EEE;
		-o-box-shadow: 0px 2px 5px #EEE;		
	}
	#head_mobile #boton-menu {
		width: 70px;
		height: 60px;
		float: right;
		text-indent: 3000px;
	}
	#head_mobile #nav_mobile{
		display: none;
		/*position: absolute;*/
		left: 0;
		right: 0;
		top: 59px;
		z-index: 200;
		height: auto;
	}
	#head_mobile #nav_mobile li a {
		display: block;
		text-align: left;
		line-height: 50px;
		padding-left: 20px;
	}
}