@charset "UTF-8";
/* 	
	GRID de 16 Cols. 1140px
	Based on the 12 -column 1140px Grid by Andy Taylor – http://cssgrid.net – http://www.twitter.com/andytlr – http://www.catchingzebra.com
*/

@-ms-viewport {
	width: device-width;
}

.hidden {
	display: none;
	visibility: hidden;
}

.visible-phone {
	display: none !important;
}

.visible-tablet {
	display: none !important;
}

.hidden-desktop {
	display: none;
}

.visible-desktop {
	display: inherit !important;
}

.container {
	width: auto;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto; 
	padding-left: 10px;
	padding-right: 10px;
}

.row {
	width: 100%;
	clear: both;
	/*overflow: hidden;*/
}

.one-col, 
.two-col, 
.three-col, 
.four-col, 
.five-col, 
.six-col, 
.seven-col, 
.eight-col, 
.nine-col, 
.ten-col, 
.eleven-col, 
.twelve-col {
	/*margin-right: 2.4%;
	float: left;
	background: red*/
	display: block;
	float:left;
	margin-right: 2%;
}

.one-col {
	width: 6.5%; 
}

.two-col {
	width: 15.0%; 
}

.three-col {
	width: 23.5%; 
}

.four-col {
	width: 32.0%; 
}

.five-col {
	width: 40.5%; 
}

.six-col {
	width: 49.0%; 
}

.seven-col {
	width: 57.5%; 
}

.eight-col {
	width: 66.0%; 
}

.nine-col {
	width: 74.5%; 
}

.ten-col {
	width: 83.0%; 
}

.eleven-col {
	width: 91.5%; 
}

.twelve-col {
	width: 100%;
}


[class*="-col last"],
.row [class*="-col last"] {
	margin-right: 0;
}


/* ---------------------------------------------------------------------------------------
	Desktop Resoluciones medias entra 800px y 979px 
--------------------------------------------------------------------------------------- */

@media handheld, only screen and (min-width: 800px) and (max-width: 979px) {
	
	.visible-tablet {
	  	display: inherit !important;
	}
	.visible-desktop {
	  	display: none !important;
	}
	.hidden-tablet {
	  	display: none !important;
	}
	.hidden-desktop {
	  	display: inherit !important;
	}
	
	
}

/* ---------------------------------------------------------------------------------------
	Tabletas portrait (768x860)
--------------------------------------------------------------------------------------- */

@media handheld, only screen and (max-width: 800px) {

	body,
	.row, 
	.container {
		max-width: none;
		width: auto;
		*width: auto;
	    margin-left: 0;
	    margin-right: 0;
	}
	  
	[class*="-col"],
	.row [class*="-col"] {
	    float: none;
	    display: block;
	    width: 100%;
	    *width: 100%;
	    margin-left: 0;
	    margin-right: 0 !important;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    box-sizing: border-box;
	}
	
	.visible-phone {
		display: inherit !important;
	}
	.visible-tablet {
	  	display: none !important;
	}
	.hidden-phone {
	  	display: none !important;
	}
	.hidden-tablet {
	  	display: inherit !important;
	}
	
}

/* ---------------------------------------------------------------------------------------
	Pequeñas tabletas (600x860)
--------------------------------------------------------------------------------------- */

@media handheld, only screen and (max-width: 600px) {

}