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

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

#top{
	height: 20px;
	width: 100%;
	z-index: 999;
	background-color: #0099cc;
}

#logo {
	position: absolute;
    top: 20px;
    left: 25px;
    z-index: 9999;
    width: 230px;
    height: 50px;
    background-image: url(../images/chumbinho-logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin: 30px;
}

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

#mail:hover { background-image: url(../images/mail-ico2.png);}

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

#dondeestamos:hover { background-image: url(../images/dondeestamos-ico2.png);}


/* ==================================================
   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: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 10px;
    text-align: center;
    letter-spacing: 2px;
}

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

#nav > li > a {
	color: #333333;
	padding: 60px 20px 20px 20px;
	margin: 0px 0px;
	transition: all 1s;
	-moz-transition: all 1s; /* Firefox 4 */
	-webkit-transition: all 1s; /* Safari and Chrome */
	-o-transition: all 1s; /* Opera */
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0,153,204, 0);
}

#nav > li > a.last {}

#nav > li:hover > a, #nav > a:hover {
	background-color: rgba(255,255,255, 0.6);
	color: #000000;
	border-bottom-color: rgba(0,153,204, 1);
}

#nav li.active > a {}




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

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

#nav { margin-left: 300px; text-align: left;}
#logo {	left: 5px;}
#dondeestamos { right: 35px;}
#mail { right: 80px;}


}

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

#nav { display: none;}


}

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

#mail { display: none;}
#dondeestamos {display: none;}

#logo { left: 50%; margin-left: -115px;}

}




