/*QUITAR SI YA HACES ESTAS MODIFICACIONES EN EL ARCHIVO DONDE PONDRAS EL MENU*/
body, nav, ul, li, a  {margin: 0; padding: 0;}
a {text-decoration: none;}
/*QUITAR SI YA HACES ESTAS MODIFICACIONES EN EL ARCHIVO DONDE PONDRAS EL MENU*/

/*menu*/
.container {
    width: 100%;
	float:left;
}
.toggleMenu {
    display:  none;
	background:url(../img/responsive.png) no-repeat #1990b3;
	background-position:65px center;
	padding: 4px 0px 5px 20px;
	width:100px;
    height:35px;
	margin: 15px 0px 10px 0px;
	text-align:left;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color:white;
	font-family: 'Open Sans', sans-serif;
	text-transform:uppercase;
	font-size:12px;
}
.nav {
    list-style: none;
     *zoom: 1;
     
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
	width:140px; /*determina el tamaño del segundo y tercer nivel*/
    
}
.nav a {
    padding:15px 0;/*afecta a todos los links de primer, segundo y tercer nivel*/
	font-family: 'Open Sans', sans-serif;
    color:white;
	font-size:12px;
}

.nav a:link{
     opacity:1;
 }
 
.nav a:hover{
     opacity:0.6;
 }

.nav li {
    position: relative;
}
.nav > li { /*afecta a cada uno de los elementos del primer nivel*/
    float: left;
    padding:0 5px;
    height:70px;
    line-height:40px;
/*  background:url('../img/separador.png') right center no-repeat; */ 
   -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
}

.nav > li:nth-of-type(8){
     background:none !important;
}


.nav > li > .parent { /*afecta a los elementos del primer o segundo nivel que tienen hijos*/
    background-image: url(../img/downArrow.png);
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    position: relative;
    z-index:100;
	background-color:red;
}

.nav li li li a {
    background:lightblue;
    z-index:200;
}
/*menu end*/

/*PONER DENTRO DE TU MEDIA QUERY PARA NO DOBLETEAR*/
@media screen and (max-width: 699px) {
    /*menu telefonos*/
	.active {
        display: block;
    }
    
    .nav {
    list-style: none;
     *zoom: 1;
     background:#1990b3 !important;
     margin:10px auto 0 auto;
     padding-bottom:20px;
     border-top:solid 1px #7e91a5;
}
    .nav > li {
        float: none !important;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url(../img/downArrow.png);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }
	
	
#header, #mendiola, #logo-menu{
	height:100%;	
	}
    
	
	.nav > li { /*afecta a cada uno de los elementos del primer nivel*/
    float: left;
    padding:10px 12px;
    height:15px;
    line-height:15px;
    background:none !important;
    -moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;	
font-size:12px;
}

.nav > li:first-of-type{
	display:none;	
	}
/*menu telefonos end*/
}