/* ********************************************************************** */
/*  STANDARD/DEFAULT CONTENT LAYOUT (e.g. FCE's, content container, etc)
/* ********************************************************************** */


/* ********************************************************************** */
/* FCE (Typo3 Flexible Content elements)
/* ********************************************************************** */
.column_left{float:left;}
.column_right{float:right;}
.column_66{width:66.666%;}
.column_33{width:33.333%;}

.two_colums_66_33{}
.two_colums_33_66{}



/**********************************************/
/* Media Queries 
/**********************************************/
@media only screen and (min-width: 980px) {}

/* MEDIUM - (could be: Tablets Portrait, Mobiles landscape)  */
@media only screen and (min-width: 768px) and (max-width: 979px) {          
}
 

/* SMALL  */
@media only screen and (min-width: 480px) and (max-width: 767px){
	.two_colums_66_33 .column_66{clear:both; width:100%;}
	.two_colums_66_33 .column_33{clear:both; width:100%;}

	.two_colums_33_66 .column_33{clear:both; width:100%;}
	.two_colums_33_66 .column_66{clear:both; width:100%;}
}

 
/* TINY -  */
@media only screen and (max-width: 479px) {
	.two_colums_66_33 .column_66{clear:both; width:100%;}
	.two_colums_66_33 .column_33{clear:both; width:100%;}

	.two_colums_33_66 .column_33{clear:both; width:100%;}
	.two_colums_33_66 .column_66{clear:both; width:100%;}
}
