/* CSS Document INDEX */
@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  
  margin: 0; padding: 0;
}

a:hover {
	background-position: 0 0;
}

a img {
	border:0px;
}

button, object, a {
	outline: none;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

pre {
	margin: 10px auto;
	padding: 0.5em;
	max-width: 800px;
	white-space: pre-wrap;
	background: rgba(255,255,255,0.5);
}

/* /////////// HTML //////////// */
html, body {
  height: 100%;
}

html {
	height:100%; 
	padding: 0;
	
	background-color:white;
	background-color:#908072;
	background-color:white;
	text-align: center;
}

body {
	position: relative;
	left: 0;
	top: 0;
	margin: 0px auto; 
	padding: 10px;
	height: auto;
	min-height: 90%;
	width: 98%; /* wg. IE Scroll */
	
	width: 100%;
	height: 100%;
	min-height: 100%;
	
	text-align: left;
	
	background-color: #ccc;
	background: #c02f4a; /* red */
	background: #505252;  /* grey blue */
		
	border: 0px solid black;
	font-family: "Century Gothic", "Trebuchet MS", Helvetica, Arial, Verdana sans-serif;

	z-index: 2;
}

img{-ms-interpolation-mode:bicubic;}

h1,h2,h3,h4,p {color: #333; margin: 0.5em 0 0.5em 0; padding: 0 2%; line-height: 1.6em;}
h1,h2,h3,h4 {color: #333; font-size: 1.6em;}
p, a {font-size: 1.0em;}

a, a:link, a:active, a:visited  {color: #cc0000; color: #000; text-decoration: none; cursor: pointer;

	-webkit-transition: color .25s ease-out;
	-moz-transition: color .25s ease-out;
	-o-transition: color .25s ease-out;
	transition: color .25s ease-out;

}
a:hover {color: #555; text-decoration: none;}
a:focus, div:focus { outline: none; -moz-outline-style:none; }

/* /////////////////////// DIV ///////////////////////////// */

#page-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0 0 0px 0; 
	border-bottom: 0px solid #555;
	
	text-align: center;
	overflow: auto;
	z-index: 3;
	background: transparent;
	background-color: rgba(250,250,250,0.2);
	background-image: url(../userfiles/images/img_pattern/bg_dot_3x3_black.png);
	background-image: url(../userfiles/images/img_pattern/bg_line_diagonal.png);
}


/* //////// content /////// */

.content_outer{
	position: relative;
	display: table;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

.content_inner{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.content_inner div {	
	position: relative;
	display: inline-block;	
	margin: 0px auto;
	padding: 0;
	min-height: 180px;
	text-align: left;	
	border: 0px solid #FFF;
	
	background-color: rgba(250,250,250,0.6);
}


/* /////////////// footer /////////////// */


#page-wrap:after, #footer {
	display: inline-block;
	height: auto; 
	margin: 0 auto;
	z-index: 3;
}
#footer {
	position: relative;
	display: block;
	text-align: right;
	border-top: 1px solid #FFF;	
	background: transparent;
	background-color: rgba(250,250,250,0.2);
}

/* /////////////// sticky footer - Anpassungen /////////////// */

#page-wrap {
	/* equal to footer height */
	margin: 0 0 -40px 0; 

}

#page-wrap span#vertical {
	/* */
	height: -moz-calc(100% - 40px);
	height: -webkit-calc(100% - 40px);
	height: -o-calc(100% - 40px);
	height: calc(100% - 40px);	

}

#page-wrap:after, #footer {
	height: 40px;
}


/* /////////////// DIVERSES /////////////// */

a.websteil {
	padding: 2px 6px;
	/* CSS 3 daded bei :hover */
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	-ms-transition: all 2s ease;
	-o-transition: all 2s ease;
	transition: all 2s ease;
}
a.websteil:hover { background: #9999cc !important;  color: #666666 !important; }



/* ///////////////////// Full BG /////////////// */

/* CSS 3 */
#full_div_bg {
	position: absolute;
	/**/ position: fixed; 
	top: 0;
	left: 0;
	width:100%;
	min-height: 100%;
	max-width: 100%;
	
	background: transparent url(none) no-repeat center center fixed;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	
	z-index: 1;

}

/* Bild BG faerben // https://www.w3schools.com/cssref/pr_background-blend-mode.asp */
#full_div_bg {
	background-blend-mode: multiply;
	background-color: red;
	background-color: #9999cc;

}


/* IE 6 7 8 per PHP browseweiche.php*/
img.full_bg {
	min-height: 100%;        /*  bg fuellen  */
	min-width: 1024px;
	width: 100%;             /*  bg Skalierung */
	height: auto;
	position: fixed;         /*  bg Positionierung  */
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
}

@media screen and (max-width: 1024px) {
	img.full_bg{
	left: 50%;
	margin-left: -512px;
	}
}

* html img#full_bg { 
	width: 100%;
	height:99.99%; /* IE6 Hack */
	position: absolute;	
}
