/* Resets */
html, body, div, span, h1, h2, h3, h4, h5, h6, a, p, em, strong, b, u, i, 
img, form, label, ul, ol, li, iframe, table, tbody, thead, tr, th, td,
object, blockquote, pre, abbr, address, cite, code, del, dfn, ins, kbd,
q, s, samp, small, sub, sup, var, dl, dt, dd, fieldset, legend, caption,
article, aside, canvas, details, embed, figure, figcaption, footer, header, 
hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0 none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
/* HTML5 hack alte Browser */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* weitere Resets */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input::-moz-focus-inner { /* entfernt unerwünschten Abstand (z.B. Formular Sendebutton) */
	border: 0;
	padding: 0;
}

/* Grundlegende Angaben */

html, body {
	height: 100%;
}
body {
	background: url("../img/layout/bg.jpg") no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	color: #3A424C;
	font: 300 18px/1.8 'Open Sans', sans-serif;
	-webkit-text-size-adjust: none;
}
body > #PageWrapper {
	background-size: cover;
	min-height: 100%;
	position: relative;
}
.cmsMargin {
	margin: 30px 0;
}
a {
	color: #3A424C;
	font-weight: 300;
	text-decoration: none;
}
a:hover {
	color: #E33634;
}
input, textarea, select, button {
	background: #FFFFFF;
	border: 1px solid #D4D4D4;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	-webkit-appearance: none;
}
input[type='submit'] {
	-webkit-appearance: none;
}
input::-ms-clear {
	display: none;
}
input[type="text"]:disabled {
    background: inherit;
} 
ol, ul {
	list-style: none;
}
strong {
	font-weight: 600;
}
*, *:before, *:after {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}

::-moz-selection {
	background: #083671;
	color: #FFFFFF;
}
::selection {
    background: #083671;
    color: #FFFFFF;
}