body{
	font-size: 18px;
	text-align: center;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
}
header{
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
	background-image: url("/pictures/header_background.png");
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}
p{
	margin-top: 3px;
	margin-bottom: 3px;
}
div#headercontent{
	display: inline-block;
	padding: 30px;
	background: rgb(29, 29, 29);
}
p#sitetitle{
	color: white;
	font-size: 1.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
}
p#sitesubtitle{
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
    line-height: 1.25;
}
section#menu{
	padding-left: 50px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: rgb(68, 68, 68);
	text-align: left;
	background: rgb(29, 29, 29);
}
div.menuitem{
	display: inline-block;
	padding: 5px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
}
div.menuitem.active, div.mobilemenuitem.active{
	color:white;
}
section#menumobile{
	display: none;
	padding-top: 5px;
	padding-bottom: 5px;
	color: rgb(68, 68, 68);
	text-align: left;
	background: rgb(29, 29, 29);
}
img#mobilemenuopenclose{
	margin-left: 20px;
	cursor: pointer;
}
div.mobilemenuitem{
	padding-top: 10px;
	padding-left: 5px;
	padding-bottom: 10px;
	color: rgba(255, 255, 255, 0.5);
	border-top: 1px solid rgba(255,255,255,0.1);
	background: rgb(40, 40, 40);
	cursor: pointer;
}
section#content{
	display: inline-block;
	text-align: left;
	margin-top: 40px;
	width: 1040px;
    max-width: 86%;
}
p.header{
	font-size: 2.5em;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 15px;
}
p.lastaktualized{
	color: rgb(153, 153, 153);
}
p.sectionheader{
	font-size: 1.6em;
	font-weight: 100;
	margin-top: 12px;
	margin-bottom: 7px;
}
input.field{
	font-size: 18px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	width: 99%;
}
div#messagebox{
	position: fixed;
	top: 3px;
	left: 3px;
	right: 3px;
	color: white;
	overflow-y: hidden;
}
div.msgboxgreen{
	background: rgba(153,180,51,0.85);
	border: 1px solid rgba(153,180,51,1);
	border-radius: 4px;
}
div.msgboxred{
	background: rgba(218,83,44,0.85);
	border: 1px solid rgba(218,83,44,1);
	border-radius: 4px;
}
div#text{
	display: inline-block;
}
span#time{
	display: inline-block;
}
a{
	color: rgb(105, 105, 105);
	text-decoration: underline;
	cursor: pointer;
}
span.b{
	display: inline-block;
	font-weight: bold;
}
span.i{
	display: inline-block;
	font-style: italic;
}
span.mobilebrmstr{
	display: none;
}
.hide{
	display: none;
}
div.loadingscreen{
	display: inline-block;
	width: 95px;
	padding: 3px;
	border-radius: 6px;
	border: 1px solid rgba(0,0,0,0.2);
	font-family: Verdana;
	font-size: 14px;
	background: rgba(255,255,255,1);
}
div#lcu, div#lma{
	display: inline-block;
}
#loader span{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background-color: #464646;
	margin: 35px 5px;
}
#loader span:nth-child(1){
	animation: bounce 1s ease-in-out infinite;
}
#loader span:nth-child(2){
	animation: bounce 1s ease-in-out 0.33s infinite;
}
#loader span:nth-child(3){
	animation: bounce 1s ease-in-out 0.66s infinite;
}
@keyframes bounce{
	0%, 75%, 100%{
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	25%{
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}
@media(max-width: 550px){
	section#menu{
		display: none;
	}
	section#menumobile{
		display: block;
	}
	span.mobilebrmstr{
		display: inline-block;
	}
}