@media screen and (min-width: 900px){
	/*------------------------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: 40px;
		margin: 0 auto;
	}
	ul.re-ul-principal{
		margin: 0;
		font-weight: 500;
		text-align: right;
		text-transform: normal;
	}
	ul.re-ul-principal li a{/*Todas las anclas dentro del div.re*/
		min-height: 40px;
		overflow: hidden;
		display: block;
		line-height: 40px;
		cursor: pointer;
	}
	ul.re-ul-principal li div{
		display: table;
		width: 100%;
		*width:;/*Hack para ie7 porque hace spacing entre las celdas*/
	}
	ul.re-ul-principal li div p{
		height: 40px;
		display: table-cell;
		vertical-align: middle;
		padding: 0 8px;
		line-height: 13pt;
	}

	/*------------------------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 .5s ease;
		-moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s 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: 100px;
		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;
		text-align: center;
	}
	ul.re-ul-principal li.re-oculto{
		display: none;
	}
	ul.re-ul-principal > li:first-child:before{
		width: 1px;
		height: 15px;
		position: absolute;
		top: 50%;
		left: -1px;
		border-left: 1px solid #b4b4b4;
		margin-top: -7.5px;
		content: '';
	}
	ul.re-ul-principal > li:after{
		width: 1px;
		height: 15px;
		position: absolute;
		top: 50%;
		right: 0;
		border-left: 1px solid #b4b4b4;
		margin-top: -7.5px;
		content: '';
	}
	ul.re-ul-principal li a:hover{
		color: #71be3b;
	}
}
@media screen and (min-width: 1024px){
	ul.re-ul-principal li{/*li 1º nivel*/
		width: 120px;
	}
}