
/* ==================================================
   HEADER
================================================== */

#header{
	height: 90px;
	width: 100%;
	z-index: 999;
	position: fixed;
	background-color: rgba(0,0,0, 0.35);
	transition: all 1s;
  	-moz-transition: all 1s; /* Firefox 4 */
  	-webkit-transition: all 1s; /* Safari and Chrome */
  	-o-transition: all 1s; /* Opera */
}

#logo {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 9999;
	width: 220px;
	height: 90px;
	background-color: #213036;
	background-image: url(../images/imprefin-logo.png);
	background-repeat: no-repeat;
	background-position: center center;
}

#mail {
	position: absolute;
	top: 30px;
	right: 50px;
	z-index: 9999;
	width: 30px;
	height: 30px;
	background-image: url(../images/mail-ico.png);
	background-repeat: no-repeat;
	background-position: center center;
}

#dondeestamos {
	position: absolute;
	top: 29px;
	right: 15px;
	z-index: 9999;
	width: 30px;
	height: 30px;
	background-image: url(../images/dondeestamos-ico.png);
	background-repeat: no-repeat;
	background-position: center center;
}


/* ==================================================
   NUEVO MENU DESPLEGABLE
================================================== */

#nav span {
    display: none;
}

#nav {
	margin:0 ;
  	padding: 0;
  	list-style:none;
  	position: relative;
  	text-align: center;
	z-index: 999;
	
}

#nav ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

#nav li {
	display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 10px;
    text-align: center;
    letter-spacing: 3px;
}

#nav li a {
    display:block;
    white-space: normal;
}

#nav > li > a {
	color: #ffffff;
    padding: 30px 10px;
    margin: 0 10px;
    border-top-width: 10px;
    border-top-style: solid;
    border-top-color: rgba(75,190,190, 0);
	transition: all 1s;
  	-moz-transition: all 1s; /* Firefox 4 */
  	-webkit-transition: all 1s; /* Safari and Chrome */
  	-o-transition: all 1s; /* Opera */
}

#nav > li > a.last {}

#nav > li:hover > a, #nav > a:hover {
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: rgba(75,190,190, 1);
}

#nav li.active > a {}




/* ==================================================
   MEDIA
================================================== */

@media only screen and (max-width: 1280px) {

#nav { margin-left: 240px; text-align: left;}

}

@media only screen and (max-width: 1023px) {

#nav { display: none;}
#logo {	left: 40px;}

#dondeestamos { top: 24px;}
#mail { top: 25px;}

}

@media only screen and (max-width: 350px) {

#dondeestamos { display: none;}
#mail { right: 10px;}

}

@media only screen and (max-width: 308px) {

#mail { display: none;}

}


