/*ACSSF - Another CSS Framework*/


/*Fit & Fix*/
*, html {
		margin : 0;
		padding : 0;
}
 /* Pseudo Table can be used with div/ul/ol/etc */
 /* column_container use 100% width of parent width */
 .column_container, .display_category_entrys {
	 margin : 0 auto;
	 width : 100%;
 }
 /* Two column use 50% width of parent width */
 .two_column {
	 float : left;
	 width : 50%;
	 width: calc(100% / 2);
 }
 /* Three column use 33.33% of parent width */
 .three_column {
	 float : left;
	 width : 33.33%;
	 width: calc(100% / 3);
 }
 /* Four column use 25% of parent width */
 .four_column {
	 float : left;
	 width : 25%;
	 width: calc(100% / 4);
 }
 /* clear column */
 .column_clear, .clear {
	 clear : both;
 }
 /* colum variation for sqless_cms */
.display_category_entrys_img {
	 float : left;
	 width : 33%;
	 text-align : center;
}
.display_category_entrys_img img {	
	 width : 100%;
	 max-width : 400px;
	 height : 100%;
}
.display_category_entrys_desc {
	 float : right;
	 width : 66%;
}
 /* Forms */
 
 /* Textarea use 100% of parent width */
 .full_width_textarea {
	 width : 100%;
	 height : auto;
	 min-height : 100px;
 }