/* **************************************************************************
 *  MEDIA MOTION AG															*
 ****************************************************************************

    Dateiname	base.css
    Funktion	PLACEHOLDER MIT BACKSTRECH (ohne js)
    Author		MEDIA MOTION AG, KO
    Datum		Juli 2013

    Änderungen	   
*****************************************************************************/


/**
 * ALLGEMEIN
 * Allgemeine Tags
 *****************************************************/
* { 
	margin: 0; 
	box-sizing: border-box;
}


html { overflow-y: scroll; height:100%;} /* Scrollbalken immer anzeigen */

body {
    line-height: 1.5em;
    font-size: 18px;
    font-family: 'speicher-regular';
    font-weight: 400;
    height: 100%;
    color:#444; 
}

hr {
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-top: 2px solid lightgray;
}

h1 { font-size: 16px; } 
h2 { font-size: 15px; }

p {
	text-align: center;
}


img { border: 0; }

a { text-decoration: underline; }
a:hover { text-decoration: none; }

a.button {
    padding: 10px 20px;
    background-color: #bb2b37;
    display: block;
    text-decoration: none !important;
    color: #fff !important;
}

@font-face {
    font-family: 'speicher-regular';
    src: url('../fonts/nimbussansdot-regu-webfont.eot');
    src: url('../fonts/nimbussansdot-regu-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/nimbussansdot-regu-webfont.woff') format('woff'),
         url('../fonts/nimbussansdot-regu-webfont.ttf') format('truetype'),
         url('../fonts/nimbussansdot-regu-webfont.svg#nimbus_sans_d_otregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

div#wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

div#wrapper a {text-decoration: underline; color:#444;}

div#inner {
	background: rgba(255, 255, 255, 0.95);
    position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
div#inner > * {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

div#logo {
	margin: auto;
	max-width: 310px;
	text-align: center;
}

div#logo img{
    max-width: 100%;
    max-height: 100%;
}


.right {width:290px; float:left; margin-top: 40px;}

.fullwidth {
	clear: both;
    margin-top: 63px;
    padding-top: 40px;
}

div#footer {
	background:url('../img/inner_bg.png');
	width:100%;
}

div#push,
div#footer {height:60px;}

.container {
	width: 50%;
	padding: 40px;
}

div#memo {
	float: left;
    height: 50px;
    margin-right: 20px;
    position: relative;
    top: 10px;
    width: 260px;
	
}

div#memo-text {
    line-height: 16px;
    position: relative;
    top: 20px;
    font-size:12px;
}

div#memo-text a {
    color: #444444;
    font-size: 10.79px;
    text-decoration: none;
}
.image {
	width: 50%;
	position: relative;
	overflow: hidden;
}
.image img {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	min-width: 100%;
	min-height: 100%;
}

@media (max-width: 1200px) {
    div#inner {
	    display: block;
    }
    .container,
    .image {
	    width: 100%;
    }
    .image img {
	    position: static;
	    -webkit-transform: none;
	            transform: none;
    }
}
@media (max-width: 370px) {
    div#logo {
        width: 200px;
    }

    div#wrapper {
        margin: 0 10px;
    }

    div#inner {
        padding: 40px 20px;
    }
}




