﻿/*reset */
* {
	margin:0;
	padding:0;
}

/* global */
body {
	background: #ffffff;
	background: -moz-linear-gradient(45deg, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	background: -webkit-linear-gradient(45deg, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
	background: linear-gradient(45deg, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 );

	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:1.3em;
	color:#010025;
}
h1 {
	font-size:36px;
	margin-bottom:20px;
}
p {
	margin: 10px 0;
}
a {
	color:#2989d8;
	text-decoration:none;
}
a:hover {
	color:#777777;
}
ul, ol {
	margin-left:15px;
}
/* classes */
.top {
	background: #a90329;
	background: -moz-linear-gradient(top,  #a90329 0%, #8f0222 44%, #6d0019 100%);
	background: -webkit-linear-gradient(top,  #a90329 0%,#8f0222 44%,#6d0019 100%);
	background: linear-gradient(to bottom,  #a90329 0%,#8f0222 44%,#6d0019 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 );
	
	height: 30px;
}

.wrapper {
	width: 100%;
	min-height:600px;
	background-color:#fefefe;
}
.header {
	width:100%;
	height:400px;
}
.header #cookiehint {
	height:400px; 
	text-align:center; 
	padding:50px 25px 0 25px;
	color:gray;
}
.header #cookiehint .button {
	width:300px;
	margin:auto;
	background: #00bc13;
	opacity:0.8;
	color: #efefef;
	line-height: 24px;
	cursor: pointer;
	display: block;
	padding: 12px;
	text-align: center;
	border:1px #fff outset;
	border-radius:5px;
	transition:all 0.2s;
}
.header #cookiehint .button:hover {
	opacity:1;
	color:#fff;
}


.content-left {
	width: 410px;
	padding:28px 20px 0 0;
	float:left;
	text-align:right;
}
.content-left-2 {
	width: 410px;
	padding-right:20px;
	float:left;
	text-align:right;
}


@media (min-width: 900px) {
	.content {
		width: 900px;
		margin:auto;
	}
	.content-full {
		clear:both;
		width:75%;
		margin: 0 auto;
		padding:20px;
	}
}

@media (max-width: 899px) {
	.content {
		width: 90%;
		margin:auto;
		line-height:normal;
	}
	.content-left {
		padding:28px 0 0 20px;
		float:none;
		text-align:left;
	}
	.content-left-2 {
		padding-left:20px;
		float:none;
		text-align:left;
	}
	.content-full {
		clear:both;
		width:100%;
		padding:20px 5px;
		text-align:center;
	}
}

ul {
	list-style-type: circle;
}
hr {
	box-sizing:content-box;
	height: 0;
	border: 0;
	border-top-color: currentcolor;
	border-top-style: none;
	border-top-width: 0px;
	border-top: 1px solid #eeeeee;
}

.content-right {
	width: 410px;
	float:left;
	padding:40px 0 0 20px;
}
.content-right-2 {
	width: 410px;
	float:left;
	padding-left:20px;
}

.text-medium {
	color:#363636;
	font-size:0.9em;
}
.text-medium a {
	font-size:0.9em;
}
.text-small {
	color:#363636;
	font-size:0.8em;
	line-height:1.2em;
}
.text-bold {
	font-weight:bold;
}
.text-red {
	color:red;
}
.text-center {
	text-align:center;
}
.margin-top {
	margin-top:20px;
}
.margin-bottom-5 {
	margin-bottom:5px;
}



