
/* nav */
.nav {
	position: absolute;
	/*margin: 20px 0;*/
	z-index:12;
	bottom:35px;
	left:20px;
	/*font-family:'geared';*/
}
.nav ul {
	margin: 0;
	padding: 0;
}
.nav li {
	margin: 0 5px 10px 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	/*font-size:21px;*/
	font-size:24px;
	padding-right: 20px;
}
.nav a {
	/*padding: 3px 12px;*/
	padding: 3px 8px;
	text-decoration: none;
	color: #fff;
	line-height: 100%;
	    text-transform: uppercase;
   /* font-weight: bold;*/
    font-size: 18px;
}
.nav a:hover {
	color: #b3bbc3;
}
.nav .current a {
	/*background: #999;*/
	color: #444242;
	/*border-radius: 5px;*/
}

/* right nav */
.nav.right ul {
	text-align: right;
}

/* center nav */
.nav.center ul {
	text-align: center;
}



@media screen and (max-width: 4050px) {
	#logotipo{
		/*top:70px;*/
	}
	.nav {
		position: fixed;
		top:0px;
		min-height: 40px;
		/*background: #537270;*/
		width:100%;
		z-index:99;
		height:18px;
		left:0px;
	}	
	.nav ul {
		width: 220px;
		padding: 4.5px 0;
		position: absolute;
		top: 0;
		right: 0px;
		/*border: solid 1px #aaa;*/
		/*background: #fff url(../images/icon-menu.png) no-repeat 10px 11px;*/
		z-index:14;
		/*border-radius: 5px;
		box-shadow: 0 1px 2px rgba(0,0,0,.3);*/
	}
	.nav li {
		display: none; /* hide all <li> items */
		margin: 0;
	}
	.nav .current {
		display: block; /* show only current <li> item */
	}
	.nav a {
		display: block;
		padding: 5px 10px 5px 32px;
		text-align: right;
		   
	}
	.nav .current a {
		background: none;
		color: #fff;
	}

	/* on nav hover */
	.nav ul:hover {
		background-image: none;
	}
	.nav ul:hover li {
		display: block;
		margin: 0 0 5px;
	}
	.nav ul
	{
		background:  url(../images/icon-menu.png) no-repeat 10px 8px #537270; background-position-x: right;
	}
	
	.nav ul:hover
	{
		background:  url(../images/icon-menu.png) no-repeat 10px 8px;background-position-x: right;
		background-color:#537270;
	}
	.nav ul:hover .current {
		/*background: url(images/icon-check.png) no-repeat 10px 7px;*/
	}

	/* right nav */
	.nav.right ul {
		left: auto;
		right: 0;
	}

	/* center nav */
	.nav.center ul {
		left: 50%;
		margin-left: -90px;
	}
	
}