/*   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:0 auto;
		padding: 0; 
		width: 90%;
		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: 16.66%;
		height: 100px;
	} 
	/* nav basics */ 

	/* anchor styles */
	nav a { 
		overflow: hidden;
		position: relative;
		padding: 10px 0;
		color: #13120d;
		display: inline-block;
		width: 100%;
		height: 100px;
		line-height: 80px;
		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;
		font-size: 24px;
	}
	nav a:hover {
		color: #004661;
	}
	nav a:active {  
		color: #74b63d;
	}
	nav a#pull {  
		display: none;  
	} 
	
	.navSelected {
		color: #004661;
		font-weight: bold;
	}
	.navSelected:hover {
		color: #004661;
	}
	/* 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: 18px;  
		}  
	}
	
	/* ipad mini/air  vertical */
	@media screen and (max-width: 768px) {
	}
	
	@media screen and (max-width: 640px) {   
	}
	
	@media only screen and (max-width : 480px) {
		nav {
			border-bottom: 0; 
    		background: rgba(0,70,97,0.3); 
		} 
		nav li a {  
			width: 100%;
			margin: 0 auto;
			height: auto;
			line-height: 1.1;
			padding: 5px 0;
		}   
		nav ul {  
			display: none;  
			height: auto;  
		} 
		nav li{  
			width: 100%;
			height: auto;
			padding: 5px 0;
			border-bottom: 1px solid #fff;
		}  
		nav a#pull {  
			display: block;  
			width: 100%;  
			position: relative;
			height: 40px;    
		}  
		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 */ 