/* CSS Document */

#New_module {
	float: left;
	width: 100%;
}

#New_module div {
	float: left;
}



/**************************************************************************************************
 * 
 * #Media Queries
 * 
 *************************************************************************************************/
/**************************************************************************************************
 * Browser gross
 * 
 * 1170px - 
 *************************************************************************************************/
@media only screen and (min-width: 1170px) {

}



/**************************************************************************************************
 * Browser gross
 * Browser normal / Tablet Landscape
 * 
 * 960px - 
 *************************************************************************************************/
@media only screen and (min-width: 960px) {

}



/**************************************************************************************************
 * Browser gross
 * Browser normal / Tablet Landscape
 * Browser schmal / Tablet Portrait
 * 
 * 768px - 
 *************************************************************************************************/
@media only screen and (min-width: 768px) {
	
}



/**************************************************************************************************
 * Browser normal / Tablet Landscape
 * 
 * 960px - 1169px
 *************************************************************************************************/
@media only screen and (min-width: 960px) and (max-width: 1169px) {

}



/**************************************************************************************************
 * Browser schmal / Tablet
 * 
 * 768px - 959px
 *************************************************************************************************/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}



/**************************************************************************************************
 * Browser schmal / Tablet Portrait
 * Smartphone Landscape
 * Smartphone Portrait
 * 
 *  - 959px
 *************************************************************************************************/
@media only screen and (max-width: 959px) {

}



/**************************************************************************************************
 * Smartphone Landscape
 * Smartphone Portrait
 * 
 *  - 767px
 *************************************************************************************************/
@media only screen and (max-width: 767px) {

}



/**************************************************************************************************
 * Smartphone Landscape
 * 
 * 480px - 767px
 *************************************************************************************************/
@media only screen and (min-width: 480px) and (max-width: 767px) {

}



/**************************************************************************************************
 * Smartphone Portrait
 * 
 *  - 479px
 *************************************************************************************************/
@media only screen and (max-width: 479px) {

}
