@media screen and (min-width: 1200px){
	/*--------------------Iván Luna [Re]--------------------*/
	/*--------------------Para evitar estilos del menu responsive--------------------*/
	.dl-submenu{display: none;}	/*Para evitar que el body crezca al dar click sobre los items*/
	.dl-trigger{display: none;}
	.dl-back{display: none !important;}
	/*--------------------Generales--------------------*/
	div.re-content{/*div que contiene el menu ul.re-ul-principal*/
		width: 100%;
		max-width: 100%;/*1001*/
		height: 70px;
		margin: 0 auto 0 auto;
	}
	ul.re-ul-principal{
		margin: 0;
		font-weight: 300;
		text-align: left;
		text-transform: normal;
	}	
	ul.re-ul-principal li a{/*Todas las anclas dentro del div.re*/
		min-height: 70px;
		overflow: hidden;
		display: block;
		line-height: 70px;
		color: #2e2d2f;
		cursor: pointer;
	}
	ul.re-ul-principal li div{
		position: relative;
		display: table;
		width: 100%;
		*width:;/*Hack para ie7 porque hace spacing entre las celdas*/
	}
	ul.re-ul-principal li div p{
		height: 70px;
		display: table-cell;
		vertical-align: middle;
		padding: 0 15px;
		line-height: 13pt;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-weight: 400;
		font-size: 1rem;
	}
	/*--------------------Ocultar Mostrar Subniveles--------------------*/
	ul.re-ul-principal li > ul{
		display: block;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
	}
	ul.re-ul-principal li:hover > ul{
		display: block;
		max-height: auto;
		opacity: 1;
		overflow: visible;
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-ms-transition: all .25s ease;
		-o-transition: all .25s ease;
		transition: all .25s ease;
	}
	ul.re-ul-principal li ul li > ul{
		overflow: hidden;
	}
	ul.re-ul-principal li ul li:hover > ul{
		display: block;
		max-height: auto;
		overflow: visible;
	}
	/*--------------------1º nivel--------------------*/
	ul.re-ul-principal li{/*li 1º nivel*/
		width: auto;
		position: relative;/*Para evitar que se despliegue al ancho de toda la pantalla*/
		display: inline-block;
		*display: inline;
		vertical-align: top;
		zoom: 1;
		margin-left: -.225em;
	}
	ul.re-ul-principal li a{
		border-bottom: 3px solid rgba(0,0,0,0);
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-ms-transition: all .25s ease;
		-o-transition: all .25s ease;
		transition: all .25s ease;
	}
	ul.re-ul-principal li .active, ul.re-ul-principal li a:hover{
		border-bottom: 3px solid #A37C49;
	}
	ul.re-ul-principal li.re-oculto{
		display: none;
	}	
	/*--------------------2º nivel--------------------*/
	ul.re-ul-principal li ul{/*ul del 2º nivel*/
		width: 120%;
		position: absolute;
		top: 60px;
		left: -10%;
		font-weight: 400;
		text-transform: none;
		text-align: center;
	}
	ul.re-ul-principal li ul li{
		width: 100%;
		margin-left: 0;
	}
	ul.re-ul-principal li ul li a{/*anclas de 2º nivel cuando están desplegadas*/
		color: #eeeeee;
		border-right: none;
		background: #48be85;
		border-bottom: none;
	}	
	ul.re-ul-principal li ul li a:hover{/*anclas hover 2º nivel*/
		color: #eeeeee;
		background: #42a571;
	}
	ul.re-ul-principal li ul li a p{
		padding: 0 .5em;

	}
	ul.re-ul-principal li ul li a div:before{
		display: none;
	}
}