/*   css/nav.css
     Hostito Chile S.A.       */



	 
	/* cleafix setup */
	.clearfix:before,.clearfix:after{content: " ";display:table;}  
	.clearfix:after{clear:both;}  
	.clearfix{*zoom:1;}
	/* cleafix setup */
	 
	/* nav basics */ 
	 
	/* nav basics */
	nav {  
		height: 100%;
		margin: 30px auto;
		padding: 0;
		width: 80%;
		font-size: 16px;
		overflow: hidden;
	}
	
	nav ul {  
		padding: 0;  
		margin: 0;  
		width: 100%;  
		height: 100%; 
		overflow:hidden;
		position: relative; 
	}  
	
	nav li {
		overflow:hidden;
		position: relative; 
		display: inline;  
		float: left;  
		width: 20%;
		height: 50px;
	} 
	/* nav basics */ 

	/* anchor styles */
	nav a { 
		overflow:hidden;
		position: relative; 
		padding: 10px 0; 
		color: #ded5cf;  
		display: inline-block;  
		width: 100%;
		height: 50px; 
		line-height: 25px; 
		text-align: center;  
		text-decoration: none;  
		-webkit-transition: all 0.8s ease;
		-moz-transition: all 0.8s ease;
		-o-transition: all 0.8s ease;
		transition: all 0.8s ease;
	}
	nav a:hover {
		color: #FFF;
	}
	nav a:active {  
		color: #74b63d;
	}
	nav a#pull {  
		display: none;  
	} 
	
	.navSelected {
		color: #FFF;
	}
	.navSelected:hover {
		color: #FFF;
	}
	/* anchor styles */


/* Responsive */

	@media screen and (max-width: 1280px) { 
	}
	
	/* ipad mini/air  wide - ipad pro vertical */
	@media screen and (max-width: 1024px) {
		nav {  
			margin: 19px auto;
		}
	}
	
	@media screen and (max-width: 800px) {
	}
	
	/* ipad mini/air  vertical */
	@media screen and (max-width: 768px) {
	}
	
	@media screen and (max-width: 640px) {   
	}
	
	@media only screen and (max-width : 480px) {
		nav {
			background: rgba(0,0,0,0.3);
			border-bottom: 0;
			width: 100%;
			margin: 0 auto  
		} 
		nav a {  
			height: auto;  
		}   
		nav ul {  
			display: none;  
			height: auto;  
		}  
		nav a#pull {  
			display: block;  
			width: 100%;  
			position: relative;  
		}  
		nav a#pull:after {  
			content:"";  
			background: url('../../images/nav-icon.png') no-repeat;  
			width: 30px;  
			height: 30px;  
			display: inline-block;  
			position: absolute;  
			right: 15px;  
			top: 10px;  
		}
		nav li {  
			display: block;  
			float: none;  
			width: 100%;  
		} 
	}
	
	/* iphone 6s plus */
	@media only screen 
	  and (min-device-width: 414px) 
	  and (max-device-width: 736px) 
	  and (-webkit-min-device-pixel-ratio: 3)
	  and (orientation: portrait) { 
	
	} 
	
	/* iphone 6s */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 667px) 
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: portrait) { 
	
	}
	
	/* Galaxy S5 */
	@media screen 
	  and (device-width: 360px) 
	  and (device-height: 640px) 
	  and (-webkit-device-pixel-ratio: 3) 
	  and (orientation: portrait) {
	
	}
	
	/* Generic 320 width */
	@media only screen and (max-width : 320px) { 
		nav {
		} 
		nav a {  
			height: auto;  
		} 
		nav li {  
			display: block;  
			float: none;  
			width: 100%;  
		}   
	} 

	/* iPhone 5 and 5S */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 568px)
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: portrait) {
	}
	
	/* iPhone 4 and 4S */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 480px)
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: portrait) {
	}

/* Responsive */ 