﻿/* reset styles */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video{
	display: block;
}

input:focus, select:focus, textarea:focus, button:focus{
    outline: none;
}

h1, h2, h3, h4, h5, h6, p{
	font-family: 'Open Sans', sans-serif;
}

a img, hr{
	border: 0;
}

/* typography presets */
h1{
font-size: 2.4em;
font-weight: 300;
}

h2{
font-size: 2.2em;
font-weight: 300;
}

p{
font-size: 1.2em;
}


/* 
verwendete schriften:
	
verwendete farben:
	
*/

/* page layout */
*{
	margin: 0 auto;
	/* box model (width + padding + border) überschreiben */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}

html, body{
	height: 100%;
	margin: 0;
	padding: 0;
}

body{
	
}

#content{
width: 888px;
min-height: 900px;
background-color: rgba(240,240,240,1);
margin:0 auto;
}

header{
width: 100%;
height: 300px;
margin-top: 10px;
background-image: url('../images/banner.bmp');
}

section#person{
width: 300px;
height: 400px;
background-image: url('../images/Person.jpg');
margin: 30px 20px 20px 30px;
float: left;

}

section#quote{
width: 500px;
height: 200px;
background-color: rgba(255,255,255,0);
padding: 5px;
margin: 50px 10px 20px 0px;
float: right;
}

section#infopflicht{
height: 23px;
width: 169px;
background-image: url('../images/infopflicht.gif');
float: right;
margin: -35px 40px 0px 0px;
}

section#adress{
width: 500px;
height: 100px;
background-color: rgba(255,255,255,0);
margin: 0px 10px 20px 0px;
float: right;

}

#line{
width: 830px;
height: 1px;
background-color: rgba(0,0,0,1);
margin: 0px 0px 0px 30px;
float: left;
}

section#gallery{
width: 830px;
min-height: 200px;
float: left;
margin: 20px 0px 20px 30px;
}


::selection{
	
}

::-moz-selection{
	
}

#fullGallery{
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
}

#fullGallery .imgWrap{
	display: block;
	height: 80vh;
	width: 80vw;
	vertical-align: middle;
	top: 10vh;
	position: relative;
	margin: 0 auto;
	pointer-events: none;
}

.arrowL{
	width: 20%;
	height: 20%;
	background-image: url('../images/left.png');
	background-repeat: no-repeat;	
	background-position: center;
	position: absolute;
	left: 50px;
	top: 40%;
	margin-top: -15px;
	cursor: pointer;
	z-index:1000;
}

.arrowR{
	width: 20%;
	height: 20%;
	background-image: url('../images/right.png');
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 50px;
	top: 40%;
	margin-top: -15px;
	cursor: pointer;
	z-index:1000;
}

#fullGallery img{
	max-width: 100%;
	max-height: 100%;
	border: 5px solid white;
	position: relative;
	margin: 0 auto;
	display: block;
	top: 5%:
}

#bg{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	position: absolute;
}

.galleryWrap{
	text-align: center;
}

.galleryWrap img{
	cursor: pointer;
	height: 150px;
	display: inline-block;
	margin: 10px;
}

/* pseudo clearfix */

.clear:after{
	content: ".";
	display: block;
	height: 0;
	width: 0;
	opacity: 0;
	clear: both; /* höhe des contents bei gefloateten elementen erweitern */ 
}