@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'Lato', sans-serif;
}

html {
	height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	outline: 0;
}

/*********
Allgemeine Responsive Klassen fÌr GerÀte
*********/
/* Desktop */
@media 
only screen and (min-device-width : 880px), 
only screen and (min-width : 880px) {
.desktop-off, 
.tablet-on,
.phone-on {
	display: none;
}
.desktop-on, 
.tablet-off, 
.phone-off {
	display: block;
}
}
/* Tablets */
@media 
only screen and (min-device-width : 681px) and (max-device-width : 879px), 
only screen and (min-width : 681px) and (max-width : 879px) {
.tablet-off,
.desktop-on, 
.phone-on {
	display: none;
}
.tablet-on,
.desktop-off, 
.phone-off {
	display: block;
}
}
/* Mobile */
@media 
only screen and (min-device-width : 220px) and (max-device-width : 680px), 
only screen and (min-width : 220px) and (max-width : 680px) {
.phone-off,
.desktop-on, 
.tablet-on
 {
	display: none;
}
.phone-on, 
.desktop-off, 
.tablet-off {
	display: block;
}
}

/*********
Allgemeine Content Styles
*********/
h1 {
	font-size: 2.5rem; 
	font-weight: normal;
	color: #8e0303;
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
}

#big-img h1 {
	color: #fff;
	margin: 0;
	padding: 40px;
}

h2 {
	font-size: 2rem;
	font-weight: normal;
	color: #8e0303;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

h3 {
	font-size: 1.25rem;
	color: #8e0303;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
	padding-top: 15px;
}

h3:first-child {
	padding-top: 0;
}

h4 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #000;
	margin: 0;
	padding: 0;
	margin-bottom: 5px;
}

p {
	font-size: 1rem; /* 12px 12/16 = 0.75 */
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

p.date {
	font-size: 0.8rem; 
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 680px), 
only screen and (min-width : 220px) and (max-width : 680px) {
h1 {
	font-size: 2rem; /* 30px 32/16 = 2 */
}
#big-img h1 {
	color: #fff;
	margin: 0;
	padding: 0;
	margin-top: 20px;
	color: #8e0303; 
}
}

img {
	border: 0;
}

img.full {
	width: 100%;
	height: auto;
	display: block;
}

.img-right {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 680px), 
only screen and (min-width : 220px) and (max-width : 680px) {
.img-right {
	float: none;
	display: block;
	width: 100%;
	margin-left: 0px;
}
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 680px), 
only screen and (min-width : 220px) and (max-width : 680px) {
.img-left {
	float: none;
	display: block;
	width: 100%;
	margin-right: 0px;
}
}

ul {
	padding: 0;
	margin: 0;
} 

li {
	list-style-type: none;
	font-size: 0.75rem; /* 12px 12/16 = 0.75 */
}


/*Links*/
a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #8e0303;
	text-decoration: none;
}

.btn-menu a {
	display: inline-block;
	background: #8e0303;
	padding: 10px;
	color: #fff;
	text-decoration: none;
}


/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1em */
	height: 100%;
}

body, img, p, tr, td {
	color: #000;
}

#content, 
#big-img .titel {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

header {
	background: url(../img/layout/bg-muster.png) left top repeat;
	text-align: center;
}

#logo {
	text-align: center;
	padding: 85px 45px;
}

#logo img {
	width: 315px;
	height: auto;
	display: inline-block;
}

#big-img .titel {
	position: relative;
}

#big-img h1 {
	position: absolute;
	left: 0;
	bottom: 0;
	background: url(../img/layout/bg-muster-gold.png) left top repeat;
}

.main-nav {
	padding-bottom: 40px;
}

#content {
	margin-top: 85px;
	margin-bottom: 85px;
}

footer {
	background: #bb7f33;
	padding: 25px;
	text-align: center;
}

footer p, 
footer a, 
footer a:hover {
	color: #fff;
	margin-bottom: 0;
}

@media 
only screen and (min-device-width : 681px) and (max-device-width : 1300px), 
only screen and (min-width : 681px) and (max-width : 1300px) {
#content, 
#big-img .titel {
	margin-left: 45px;
	margin-right: 45px;
	width: auto;
}
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 680px), 
only screen and (min-width : 220px) and (max-width : 680px) {
body {
	font-size: 90%; 
}
#content, 
#big-img .titel {
	margin-left: 15px;
	margin-right: 15px;
	width: auto;
}
#logo {
	padding: 30px 20px;
}

#logo img {
	width: 60%;
	height: auto;
	display: inline-block;
}
#big-img h1 {
	position: relative;
	left: inherit;
	bottom: inherit;
	background: none;
}
#content {
	margin-top: 40px;
	margin-bottom: 40px;
}
}

.skipp {
	position: absolute;
	right: 10px;
	top: 10px;
}

.skipp img {
	display: block;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	/* IE 5-7 */
	filter: alpha(opacity=70);
	/* Netscape/FireFox */
	-moz-opacity: 0.7;
	/* Safari 1.x */
	-khtml-opacity: 0.7;
	/* aktuelle Browser */
	opacity: 0.7;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 680px), 
only screen and (min-width : 220px) and (max-width : 680px) {
.skipp {
	display: none;
}
}

/*********
Tools
*********/
.list {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.list li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.list li a {
	display: block;
	text-decoration: none;
}

/* Menüs */
.menus li {
	margin-bottom: 10px;
}

.list.menus p {
	margin-bottom: 0;
}

.menus .preis {
	display: inline-block;
	color: #fff;
	background: #bb7f33;
	padding: 5px;
	margin-top: 15px;
}

/* Bilder */
.list.bilder li {
	float: left;
	width: 22%;
	margin-right: 4%;
	margin-bottom: 4%;	
}

.list.bilder li:nth-child(4n) {
	margin-right: 0;
}

.list.bilder li img {
	width: 100%;
	height: auto;
	display: block;
}

/*********
Navigation
*********/
.main-nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.main-nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}

.main-nav li a {
	display: inline-block;
	margin: 0 15px;
	color: #bb7f33;
	font-size: 1.25rem;
	text-decoration: none;
}

.main-nav li a.active, 
.main-nav li a:hover {
	color: #8e0303;
}

/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 10px;
}

tr, td, th {
	border: 0px;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

tr {
	padding: 0px;
	margin: 0px;
}

tr:hover {
	background-color: #e3b2b3;
}

th {
	padding: 2px;
	border-bottom: 1px solid #333;
	vertical-align: top;
	text-align: left;
	color: #fff;
	font-weight: bold;
	background-color: #C00;
}


td {
	margin: 0;
	padding: 2px;
	border-bottom: 1px dotted #333;
	vertical-align: top;
	text-align: left;
}

/*********
Formulare
*********/
form {
	overflow: hidden;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form p {
	padding-bottom: 10px;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 7px;
	font-size: 1rem;
	text-transform: uppercase;
}

label {
	display: block;	
	font-size: 0.75rem;
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #fff;
	color: #000;
	border: 0;
	padding: 8px;
	font-size: 0.75rem;
	width: 100%;
	margin-bottom: 8px;
}

input, 
textarea {
	width: 90%;
	width: calc(100% - 16px);
}

textarea {
	height: 120px;
}

input:focus {
	/*border-color: #2A8E01;*/
}

input[type="checkbox"], 
input[type="radio"] {
	width: auto;
	margin-right: 5px;
	border: 0;
}

input[type="checkbox"] {
	border: 0;
	background: #fff;
	padding: 0px;
}

input[type="submit"], 
button[type="submit"] {
	background-color: #fff;
	width: 100%;
}

input[type="submit"]:hover {
}

input.pflicht, 
textarea.pflicht {
	/*border-right: 3px solid #000;*/
}

.validationerror {
	background: #CB0003;
	color: #fff;
	padding: 8px;
	margin-bottom: 1px;
	width: 50%;
	
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 879px), 
only screen and (min-width : 220px) and (max-width : 879px) {
input, 
select,
textarea,
input[type="submit"],
button[type="submit"],
input[type="submit"]:hover, 
.validationerror
 {
	width: 90%;
	width: calc(100% - 16px);
}

input, 
select, 
input[type="submit"],
button[type="submit"],
input[type="submit"]:hover {
	width: 100%;
}
}

/*********
Transparenzen
*********/
.opac70 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	  /* IE 5-7 */
	  filter: alpha(opacity=70);
	  /* Netscape/FireFox */
	  -moz-opacity: 0.7;
	  /* Safari 1.x */
	  -khtml-opacity: 0.7;
	  /* aktuelle Browser */
	  opacity: 0.7;
}

.opac100 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	  /* IE 5-7 */
	  filter: alpha(opacity=100);
	  /* Netscape/FireFox */
	  -moz-opacity: 1.0;
	  /* Safari 1.x */
	  -khtml-opacity: 1.0;
	  /* aktuelle Browser */
	  opacity: 1.0;
}
