/*   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 {  
			height: 100%; 
			margin:0 ;
			padding: 0; 
			width: 100%;
			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 { 
			font-family: "Dosis", Helvetica, Arial, sans-serif;
			overflow:hidden;
			position: relative; 
			padding: 10px 0; 
			color: #333;  
			display: inline-block;  
			width: 100%;
			font-weight: bold;
			height: 50px; 
			line-height: 25px; 
			text-align: center;  
			text-decoration: none;  
			-webkit-transition: all 0.4s ease;
			-moz-transition: all 0.4s ease;
			-o-transition: all 0.4s ease;
			transition: all 0.4s ease;
		}
		nav a:active {  
			color: #74b63d;
		}
		nav a#pull {  
			display: none;  
		} 
		nav a:hover,.navSelected,.navSelected:hover {
			color: #004e6b;
		}
	/* anchor styles */


/* Responsive */

	@media screen and (max-width: 1280px) { 
	}
	
	/* ipad mini/air  wide - ipad pro vertical */
	@media screen and (max-width: 1024px) {
	}
	
	@media screen and (max-width: 800px) {
	
		nav a { 
			font-size: 12px;
		}
	}
	
	/* 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;  
		} 
		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;  
		} 
	}
	
	/* 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 */ 