
/* General */

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,body {
	width: 100%;
	height: 100%;
}

body {
	background: #fff /*url(../img/back.png) center 100px no-repeat*/;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	text-align: left;
	
	scrollbar-face-color: #bdcee8;
	scrollbar-highlight-color: #fff;
	scrollbar-3dlight-color: #c1ddff;
	scrollbar-darkshadow-color: #5e7a9a;
	scrollbar-shadow-color: #7d99bb;
	scrollbar-arrow-color: #bdcee8;
	scrollbar-track-color: #fff;
	
	scrollbar-face-color: #88acd7;
	scrollbar-highlight-color: #fff;
	scrollbar-3dlight-color: #c1ddff;
	scrollbar-darkshadow-color: #5e7a9a;
	scrollbar-shadow-color: #7d99bb;
	scrollbar-arrow-color: #000;
	scrollbar-track-color: #bdcee8;
}

a,
a:visited,
a:active,
a:hover {
	/* color: #df3015; */
	color: inherit;
	text-decoration: none;
}

:focus {
	outline: 0;
}

ul,ol {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
}

#wrapper {
}

#wrapper2 {
	position: relative;
}

@media only screen and (max-width: 383px) {
	#wrapper {
	}
	
	#wrapper2 {
	}
}

@media only screen and (min-width: 384px) and (max-width: 479px) {
	#wrapper {
		width: 384px;
		margin: 0 auto;
	}
	
	#wrapper2 {
		box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
		background: rgba(255,255,255,0.8);
	}
}

@media only screen and (min-width: 480px) {
	#wrapper {
		width: 80%;
		max-width: 1000px;
		margin: 0 auto;
	}
	
	#wrapper2 {
		box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
		background: rgba(255,255,255,0.8);
	}
}

.help-block {
    display: block;
}

.help-block::before {
	content: '▲';
	display: inline-block;
	padding-right: 2px;
}


/* Header */

.header {
	position: relative;
	height: 80px;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	background: #fff;
	padding-top: 49px;
}


/* Nav */

#nav {
	position: relative;
	height: 30px;
	background: #001aac;
}

#nav ul {
	position: relative;
	height: 30px;
	padding: 0 20px;
	overflow: hidden;
}

#nav li {
	float: left;
	height: 30px;
	padding-right: 2px;
	background: #fff;
}

#nav li:first-child {
	padding-left: 2px;
}

#nav li:hover, #nav li.sel:hover {
}

#nav li.sel {
}

#nav a {
	background: #001aac;
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
}

#nav a:hover,#nav .sel a:hover {
	background: #99a3de;
	color: #57656c;
}

#nav .sel a {
	background: #99a3de;
	color: #57656c;
}

#mobile-nav-toggle {
	position: relative;
	background: #c61d18;
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	cursor: pointer;
}

#mobile-nav-toggle i {
	line-height: 30px;
}

#mobile-nav {
	display: none;
	position: absolute;
	z-index: 3000;
	width: 100%;
}

#mobile-nav ul {
}

#mobile-nav li {
	border-top: 1px solid #fff;
}


#mobile-nav a {
	background: #c61d18;
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 34px;
}

#mobile-nav a:hover,#mobile-nav .sel a:hover {
	background: #ccc;
	color: #000;
}

#mobile-nav .sel a {
	background: #999;
	color: #000;
}

@media only screen and (max-width: 739px) {
	#nav {
		display: none;
	}
}

@media only screen and (min-width: 740px) {
	#mobile-nav-toggle {
		display: none;
	}
}


/* Info */

#infotext {
	position: absolute;
	left: 36px;
	top: 86px;
	width: 50%;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #555;
	z-index: 2000;
}

#infotext a {
	font-weight: bold;
	color: #000;
}

#infotext a:hover {
	color: #555;
}


/* Subnav */

#subnav {
	position: absolute;
	left: 36px;
	top: 86px;
	width: 50%;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #555;
	z-index: 2000;
}

#subnav a {
	font-weight: bold;
	color: #000;
}

#subnav a:hover {
	color: #555;
}


/* Login Info */

#logininfo {
	position: absolute;
	right: 60px;
	top: 86px;
	width: 50%;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #555;
	text-align: right;
	z-index: 2000;
}

#logininfo a {
	font-weight: bold;
	color: #000;
}

#logininfo a:hover {
	color: #555;
}


/* Footer */

.footer {
	position: relative;
	margin: 20px 0;
}


/* Main */

#main {
	overflow: hidden;
	background: rgba(200,200,200,0.4);
}

#leftcolumn {
	overflow: hidden;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	background: rgba(255,255,255,0.8);
	padding: 20px;
}

#rightcolumn {
	overflow: hidden;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	background: rgba(255,255,255,0.8);
	padding: 20px;
}

#infocolumn {
	overflow: hidden;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	background: rgba(255,255,255,0.8);
	padding: 20px;
}

#additionalcolumn {
	overflow: hidden;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	background: rgba(255,255,255,0.8);
	padding: 20px;
}

#widecolumn {
	overflow: hidden;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	background: rgba(255,255,255,0.8);
	padding: 20px;
	margin: 5%;
	width: 90%;
}

@media only screen and (max-width: 799px) {
	#leftcolumn {
		margin: 5%;
		width: 90%;
	}
	
	#rightcolumn {
		margin: 5%;
		width: 90%;
	}
	
	#infocolumn {
		margin: 5%;
		width: 90%;
	}
	
	#additionalcolumn {
		margin: 5%;
		width: 90%;
	}
}

@media only screen and (min-width: 800px) {
	#leftcolumn {
		float: left;
		margin: 5%;
		width: 40%;
	}
	
	#rightcolumn {
		float: right;
		margin: 5%;
		width: 40%;
	}
	
	#infocolumn {
		float: right;
		margin: 5%;
		width: 40%;
		margin-top: 150px;
	}
	
	#additionalcolumn {
		float: right;
		margin: 5%;
		width: 40%;
	}
}


/* Content */

#main h1 {
	font-size: 16px;
	font-weight: bold;
	color: #d61c23;
	line-height: 20px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

#main h2 {
	font-size: 14px;
	color: #c61d18;
	line-height: 16px;
	margin-top: 20px;
	margin-bottom: 13px;
}

#main p {
	font-size: 12px;
	color: #000;
	line-height: 16px;
	margin: 7px 0 10px;
}

#main p a {
	color: #c61d18;
	text-decoration: underline;
}

#main #infocolumn p {
	color: #c61d18;
}

#main input[type="text"],#main input[type="password"],#main textarea {
	font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    line-height: 16px;
    padding: 3px 6px;
    background: #ddd;
    border: 1px solid #555;
}

#main .button {
	background: #c61d18;
	border: 1px solid #c61d18;
	color: #fff;
	padding: 3px 6px;
	cursor: pointer;
}

#infocolumn ul,#infocolumn li {
	list-style: none;
	margin-left: 0 !important;
}


/* Misc */
/*
#main.home .textbox {
	position: absolute;
	left: 75px;
	top: 119px;
	width: 217px;
	height: 380px;
}

#main.home .textbox h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #006ab3;
	line-height: 22px;
	margin-top: 10px;
	margin-bottom: 17px;
}

#main.home .textbox p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 14px;
	margin-top: 10px;
	margin-bottom: 12px;
}

#main.home .textbox p a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 14px;
	text-decoration: underline;
}

#main.home .infobox {
	position: absolute;
	left: 356px;
	top: 399px;
	width: 217px;
	height: 100px;
}

#main.home .infobox h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	line-height: 22px;
	margin-top: 10px;
	margin-bottom: 16px;
}

#main.home .infobox p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	line-height: 16px;
	margin-top: 10px;
	margin-bottom: 12px;
}

#main.home .infobox p a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	line-height: 16px;
	text-decoration: underline;
}

#main.sub .titlebox {
	position: absolute;
	left: 85px;
	top: 143px;
	width: 200px;
	height: 25px;
}

#main.sub .titlebox h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	line-height: 16px;
}

#main.sub .infobox {
	position: absolute;
	left: 68px;
	top: 383px;
	width: 230px;
	height: 136px;
}

#main.sub .infobox h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #006ab3;
	line-height: 22px;
	margin-top: 10px;
	margin-bottom: 17px;
}

#main.sub .infobox p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #006ab3;
	line-height: 16px;
	margin-top: 10px;
	margin-bottom: 12px;
}

#main.sub .infobox p a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #006ab3;
	line-height: 16px;
	text-decoration: underline;
}

#main.sub .textbox {
	position: absolute;
	left: 358px;
	top: 122px;
	width: 375px;
	height: 400px;
}

#main.sub .textboxscroll {
	position: absolute;
	left: 358px;
	top: 128px;
	width: 392px;
	height: 360px;
	overflow: auto;
}

#main.sub .text {
	padding-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

#main.sub .textscroll {
	padding-left: 0px;
	padding-top: 0px;
	padding-right: 17px;
	padding-bottom: 0px;
}

#main.sub .textbox h1,#main.sub .textboxscroll h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #006ab3;
	line-height: 22px;
	margin-top: 10px;
	margin-bottom: 17px;
}

#main.sub .textbox p,#main.sub .textboxscroll p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 16px;
	margin-top: 10px;
	margin-bottom: 12px;
}

#main.sub .textbox p a,#main.sub .textboxscroll p a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 16px;
	text-decoration: underline;
}

#main.sub .textbox td p,#main.sub .textboxscroll td p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 16px;
	margin-top: 0px;
	margin-bottom: 0px;
}

#main.sub .textbox p.small a,#main.sub .textboxscroll p.small a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 14px;
	text-decoration: underline;
}

#main.sub .textbox td p.small,#main.sub .textboxscroll td p.small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 14px;
	margin-top: 0px;
	margin-bottom: 0px;
}
*/

/* Content */

.input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}

.info {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #0f0a0b;
	font-weight: bold;
	text-decoration: underline;
	line-height: 20px;
}

.infotitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #161213;
}

.infotitlearea {
	margin-top: 137px;
	margin-left: 320px;
	margin-right: 40px;
	height: 15px;
}

.cell {
	padding-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #0f0a0b;
	font-weight: bold;
	line-height: 20px;
	text-decoration: none;
}

.cellspace {
	width: 20px;
	text-decoration: none;
}

.space {
	height: 5px;
}

.terminvergeben {
	color: #FF0000;
}

.terminfrei {
	color: #00FF00;
}


/* Intro */

#introlinks {
	position: absolute;
	left: 600px;
	top: 556px;
	width: 360px;
	height: 50px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #006ab3;
	text-align: right;
	text-transform: uppercase;
}

/*
#introlinks a {
	text-decoration: underline;
}
*/

#introlinks a {
	display: inline-block;
	padding: 2px 6px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #006ab3;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
}

#main #infocolumn h3 {
	color: #c61d18;
	font-size: 14px;
}

#main #infocolumn a {
	display: inline-block;
	padding: 2px 6px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #c61d18;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	border-bottom: 4px solid #fff;
}

#main .anmeldung {
	margin-bottom: 10px;
}

#main .anmeldung p {
	margin: 2px 0;
}

#main .anmeldung h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #006ab3;
	text-decoration: underline;
	text-transform: none;
	padding: 0;
}

#main .anmeldung h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #006ab3;
	text-transform: uppercase;
	padding: 0;
}

#main #anmeldungform table {
	width: 100%;
}

#main #anmeldungform td {
	padding-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #0f0a0b;
	font-weight: bold;
	line-height: 20px;
	text-decoration: none;
}

#main #anmeldungform input[type="text"] {
	width: 100%;
}

#main #infocolumn p {
	color: #fff;
}

#main #infocolumn a {
	color: #fff;
}

#main .toplinks {
	font-size: 9px;
	line-height: 12px;
	margin-top: 0;
}

#main p a.anmelden {
	display: inline-block;
	padding: 2px 6px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #006ab3;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
}

#menu.admin a {
	font-size: 10px;
	height: 21px;
	/*line-height: 12px;*/
	padding: 10px 8px 0px;
}

.dashboarditem {
	margin-bottom: 20px;
	min-height: 38px;
}

.dashboarditemicon {
	float: left;
	width: 30px;
	margin-left: 10px;
	margin-right: 10px;
	padding-top: 4px; 
	padding-bottom: 4px;
}

.dashboarditemtextsingle {
	margin-left: 60px;
	padding-top: 10px;
}

#main .dashboarditemtextsingle p {
	margin-top: 0px;
}

.dashboarditemtextmulti {
	margin-left: 60px;
	padding-top: 10px;
}

#main .dashboarditemtextmulti p {
	margin-top: 0px;
}

#subnav li {
	display: block;
	float: left;
	margin-right: 20px;
}

#subnav li.sel a,#subnav li a:hover {
	color: #006AB3;
}

#main ul {
	list-style: disc outside none;
	font-size: 12px;
	color: #000;
	line-height: 16px;
	margin: 7px 0 10px 20px;
}

#main li {
	margin: 4px 0;
}
