@media only screen and (min-width: 1024px) {
    body{
        display: block;
        box-sizing: border-box;
        
        margin: 0px;
        padding: 0px;
		
		overflow: hidden;
    }
    /*******************************************************************
     *** SLIDER: BEREICH AUF DER LINKEN SEITE MIT SLOGAN UND BG-BILD ***
     *******************************************************************/
	#slider{
		display: block;
		position: relative;
		box-sizing: border-box;
		
		width: 62.5%;
		height: 100%;
		
		background-image: url("../../img/slider/01.jpg");
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		
		float: left;
		
		overflow: hidden;
	}
	#slogan{
		display: block;
		position: absolute;
		box-sizing: border-box;
		
		/* right und bottom wird per js eingestellt (_js/_layout.js) */
	}
    /**********************************************************
     *** BEREICH AUF DER RECHTEN SEITE MIT LOGO UND ADRESSE ***
     **********************************************************/
	#logo_n_adresse{
		display: block;
		position: relative;
		box-sizing: border-box;
		
		width: 37.5%;
		height: 75%;
		
		text-align: right;
		
		background-color: #fcd615;
		
		float: left;
	}
	/*** LOGO OBEN RECHTS ***/
	#logo_n_adresse #logo{
		display: block;
		position: absolute;
		box-sizing: border-box;
		
		top: 0px;
		right: 0px;
		
		/* pt und pr wird im _layout.js eingestellt */
	}
	/*** ADRESSE UNTEN RECHTS ***/
	#logo_n_adresse #adresse{
		display: block;
		position: absolute;
		box-sizing: border-box;
		
		bottom: 0px;
		right: 0px;
	}
    /******************************************
     *** HOME CONTENT: BEREICH UNTEN RECHTS ***
     ******************************************/
	#home_content{
		display: block;
		position: relative;
		box-sizing: border-box;
		
		width: 37.5%;
		height: 25%;
		
		padding-right: 70px;
		padding-bottom: 35px;
		
		overflow-y: auto;
		
		background-color: #ffffff;
		
		float: left;
	}
}