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

.drop_menu /*tamaño contenedor menu*/
 {
	/*background-color:#005555;*/
	padding:0px;
	margin:0px;
	list-style-type:none;
	width:200px;
	height:30px;
	float:left;


}
.drop_menu li  /*tamaño boton activante*/

{ 
float:left;
/*background-color:#FF0000;*/
width:200px;
height:30px;

}
.drop_menu li a {
	padding:0px 0px;/*9 20*/
	display:block;
	color:#fff;
	text-decoration:none;
	font-family:DIN-CON;
	font-size:18px;

}

/* Submenu */
.drop_menu ul {
	position:absolute;
	left:-9999px;
	top:-9999px;
	list-style-type:none;
	z-index:1500;
}
.drop_menu li:hover 
{ 
position:relative; 
/*background-color:#5FD367;*/

 }
 
.drop_menu li:hover ul {
	left:0px;
	top:30px;/*30 contenedor submenu*/
	/*background-color:#525252;*/
	padding:0px;
}

.drop_menu li:hover ul li a {
	padding:5px;
	display:block;
	text-indent:10px;
	width:200px;
	background-image:url(graficos/layout/bg-cont.png);
	background-repeat:repeat;

}
.drop_menu li:hover ul li a:hover 
{ 
/*background-color:#E20079;*/
	color:#55B847;

}

@font-face 
{

font-family: 'DIN-CON';
src: url('FF_DIN_Condensed_Light.eot') /* IE */
    ,url('FF_DIN_Condensed_Light.ttf'); 
}

