/* CSS - domino.css 
copyright notice - following configuration may not be reproduced, distributed, transmitted,
displayed, published or broadcast without the prior written permission of the author
*/


* {
	padding: 0;
	margin: 0;
}

html, body {
	height: 100%;
	background: #f1f1f1;
}
a, img {
    border:none;
    outline:none
}

#wrapper {
	position: relative;
	width: 100%;
	height: auto;
	height: 100%;
	border: 0;
	margin: 0px auto -82px;
}

footer {
	clear:both;
	position: relative;
	margin:0px auto;
	width:100%;
	height:80px;
	border-top:2px solid #8393ca;
	background: #ffffff;
	font-family: Calibri,sans-serif;
	font-size: 90%;
}

#header {
	width: 100%;
	height: 140px;
	float: left;
	border-bottom:2px solid #8393ca;
	background: #ffffff;
}

#logo {
	display: block;
	width: 260px;
	height: auto;
	padding: 0;
	margin-top: 20px;
	margin-left: 30px;
	margin-right: 30px;
	background-color: #ffffff;
	float: left;
}

#navigation {
	float: left;
	margin-top: 80px;
}

#navigation li {
	float: left;
	list-style: none;
}

#navigation li a {
	display: block;
	margin-left: 30px;
	padding: 0;
	text-decoration: none;
	font-family: Calibri,sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}

#navigation li a:hover {
	color: #8393ca;
}

#navigation li a:active {
	color: #8393ca;
}
/*
#navigation li a:visited {color: #000000;}
*/
#content {
	width: auto;
	max-width: 960px;
	height: auto;
	float: left;
	margin-top: 20px;
	margin-left: 30px;
	background: #ffffff;
	padding: 20px;
}
#intro {
	width: auto;
	height: auto;
	float: left;
	margin-top: 20px;
	margin-left: 30px;
	margin-right: 30px;
	background: #ffffff;
	padding: 20px;
}

#sidebar {
	width: auto;
	height: auto;
	float: left;
	margin-top: 20px;
	margin-left: 30px;
	margin-right: 30px;
	background: #ffffff;
	padding: 20px;
}
img.imgsidebar {
	width: 260px;
	border:2px solid #8393ca;
	margin-top: 20px;
	margin-left: 40px;
	margin-bottom: 20px;
	margin-right: 40px;
}
#impressum {
	float: left;
	margin-top: 30px;
	margin-left: 30px;
}

#impressum li {
	float: left;
	margin-right: 30px;
	list-style: none;
}

#impressum li a {
	display: block;
	padding: 0;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}

#impressum li a:hover {
	color: #8393ca;
}

#impressum li a:active {
	color: #8393ca;
}
/*
#impressum li a:visited {color: #000000;}
*/
p {
	font-family: Calibri,sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	color: black;
}

h1 {
	font-family: Calibri,sans-serif;
	font-size: 200%;
	font-style: normal;
	font-weight: bold;
	color: black;
}

h2 {
	font-family: Calibri,sans-serif;
	font-size: 150%;
	font-style: normal;
	font-weight: bold;
	color: #8393ca;
}

h3 {
	font-family: Calibri,sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: bold;
	color: black;
}
h4 {
	font-family: Calibri,sans-serif;
	font-size: 200%;
	font-style: normal;
	font-weight: normal;
	color: white;
}
h5 {
	font-family: Calibri,sans-serif;
	font-size: 150%;
	font-style: normal;
	font-weight: normal;
	color: white;
}

ul.images {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
 
ul.images li {
	display: inline-block;
	margin: 0 1em 1em 0;
	position: relative;
	width: auto;
	height: auto;
}

div.imagetext div {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
div.imagetext {
	background: rgba(0,0,0,0.6);
	cursor: pointer;
	display: table;
	left: 0;
	position: absolute;
	top: 0;
	opacity: 0;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms;
}
ul.images li:hover div.imagetext {
	opacity: 1;
}
/* lightbox for index.html */

/*Eliminates padding, centers the thumbnail */

ul.lightbox {
list-style: none;
top: 0;
left:0;
}

/* Styles the thumbnail */

a.lightbox img {
height: auto;
border: 5px solid white;
margin: 0;
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target {
position: fixed;
top: -100%;
width: 100%;
background: rgba(0,0,0,.8);
width: 100%;
opacity: 0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
margin: auto;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
max-height: 0%;
max-width: 0%;
border: 5px solid white;
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
display: block;
width:50px;
height:50px;
box-sizing: border-box;
background: white;
color: black;
text-decoration: none;
position: absolute;
top: 0;
left: 0;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
opacity: 1;
top: 0;
bottom: 0;
}

.lightbox-target:target img {
max-height: 100%;
max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
top: 0px;
}

}
/* Kontaktformular */

.outer_frame{
    background: #8393ca;
    height:auto;
    width:340px;
    margin:0 auto;
    padding:1px;
    opacity:1;
 }
.inner_frame{
    background:#ffffff;
	height:98.5%;
    padding:10px;
    padding-top:10px;
    padding-bottom:20px;
}
.label{
	font:1em Calibri,sans-serif;color:#000000;
}    
tr:hover{
	border-bottom: 1px solid black;               
}
         
.text_field{
	width:240px;
    padding:5px;
	font:1em Calibri,sans-serif;color:#000000;
    line-height:20px;
    border:1px solid grey;
    background:#ffffff;
}  
.text_field:focus{
	background:#f1f1f1;
}
.textarea{
	width:240px;
    min-height:80px;
    padding:5px;
	font:1em Calibri,sans-serif;color:#000000;
    line-height:20px;
    border:1px solid grey;
    background:#ffffff;
} 
.textarea:focus{
    background:#f1f1f1;
}
.button_container{
	margin-top:1em;
}     
.submit_btn{
	font-weight: bold;
    line-height:20px;
    border:1px solid #8393ca;
	border-radius:4px;
    padding:5px;
    float:right;
    margin-right:30px;
    cursor:pointer;
	background:#f1f1f1;
    color:#8393ca;
} 