@charset "utf-8";
/* CSS Document */

*{
	/* IMPORTANT! statements for font-size, line-height and letter-spacing: normal are REQUIRED */
}

.cont, .col, .cont_col {
	font-size: 0;
	line-height: 0;
	letter-spacing: -4px;
}

.col {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align:top;
	
	/* custom paddings */
	
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
.cont, .col.cont {
	padding: 0;
}
.col > .cont{
	/* custom negative side margins = side padding of the .col */
}
.cont > .cont{
	margin: 0;
}
.w_1 {
	width: 100%;
}
.w_1-2, .w_2-4 {
	width: 50%;
}
.w_1-3 {
	width: 33.3333%;
}
.w_2-3 {
	width: 66.6667%;
}
.w_1-4 {
	width: 25%;
}
.w_3-4 {
	width: 75%;
}