/*************************************************
* CSS Reset
*************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, main, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section { display: block;}
body { line-height: 1.4; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0;}
:focus {
	outline: 0;
}



/*************************************************
* fonts
*************************************************/


/* lato-300 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lato/lato-v23-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato/lato-v23-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato/lato-v23-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato/lato-v23-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato/lato-v23-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato/lato-v23-latin-300.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato/lato-v23-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato/lato-v23-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato/lato-v23-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato/lato-v23-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato/lato-v23-latin-700.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-900 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/lato/lato-v23-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato/lato-v23-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato/lato-v23-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato/lato-v23-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato/lato-v23-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato/lato-v23-latin-900.svg#Lato') format('svg'); /* Legacy iOS */
}

/*************************************************
* layout
*************************************************/

body {
	background-image: url(../img/bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	font-family: 'lato', arial, sans-serif;
	font-weight: 300;
	overflow: hidden;
}

.center img {
	width: 180px;
	height: 180px;
}

.center {
	margin: auto;
	width: 250px;
	height: 330px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;

}

h1 {
	color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    }

.subtext {
	font-size: 14px;
	font-weight: bolder;
	color: #ffffff;
}

#brand .subtext {
	margin-bottom: 30px;
}


.subtext span {
	font-weight: bold;
}


.weblinks-01 a:link,
.weblinks-01 a:visited
 {
	border-radius: 5px;
	margin-top: 20px;
	color: #ffffff;
	padding: 3px;
	display: block;
    background-color: #2c527b;
    box-shadow: 4px 4px 2px 0 rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease 0s, border 0.2s ease 0s, color 0.2s ease 0s;
    }

.weblinks-01 a:hover,
.weblinks-01 a:active
 {
	margin-top:20 px;
	color: #ffffff;
    background-color: #213e5e !important;
    box-shadow: 4px 4px 2px 0 rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease 0s, border 0.2s ease 0s, color 0.2s ease 0s;
    }

.weblinks-02 a:link,
.weblinks-02 a:visited
 {
	border-radius: 5px;
	color: #ffffff;
	margin-top: 5px;
	display: block;
	padding: 3px;
    background-color: #2c527b;
    box-shadow: 4px 4px 2px 0 rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease 0s, border 0.2s ease 0s, color 0.2s ease 0s;
    }

.weblinks-02 a:hover,
.weblinks-02 a:active
 {
	margin-top: 5px;
	color: #ffffff;
    background-color: #213e5e !important;
    box-shadow: 4px 4px 2px 0 rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease 0s, border 0.2s ease 0s, color 0.2s ease 0s;
    }



h2 {
	color: #ffffff;
	margin-bottom: 10px;
	font-weight: bold;
}

h3 {
	margin-top: 10px;
	color: #333;
}

a {
	text-decoration: none;
	color: #ffffff;
}

a:hover {
	color: #ffffff;
}

.impressum_box {
	font-size: small;
	position: absolute;
	width: 410px;
	bottom: 10px;
	right: -300px;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
}

.in {
	right: 0;
}

.trigger {
	color: #fff;
	cursor: pointer;
	font-weight: bold;
}

.impressum {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgba(255,255,255,0.8);
	width: 300px;
	box-sizing: border-box;
	padding: 10px;
	color: #2c527b;

}

.impressum_box h2 {
	color: #2c527b;
	font-weight: bold;
}

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}


/*************************************************
* clearfix
*************************************************/

.clearfix:before,
.clearfix:after {
	content:" "; /* Abstand wegen Opera-Bug */
 	display: table; /* margin-top auch umfassen */
  }
  	
 .clearfix:after {
 	clear:both;
  }
  
 .clearfix {
 	*zoom:1; /* ie6/7 hack */
  }
