/* GLOBAL */
:root {
	--bg-white: rgb(250, 250, 250);
	--bg-black: #333;
	--bg-smokewhite: rgb( 250, 250, 250 );
	--bg-gray: rgb( 238, 238, 238 );
	--bg-gray-opacity50: rgba( 238, 238, 238, 0.5 );
	--bg-gray-opacity90: rgba( 238, 238, 238, 0.9 );
	--bg-darkdarkgray: rgb( 80, 80, 80 );
	--bg-darkgray: #DDD;
	--bg-lightgray: rgb( 245, 245, 245 );
	--bg-lightorange: rgb( 249, 176, 0 );
	--bg-lightorange_alpha20: rgba( 249, 176, 0, 0.20 );
	--bg-orange: rgb( 236, 103, 7 );
	--bg-green: rgb(0, 136, 0);
	--bg-red: rgb( 187, 64, 37 );
	--bg-green-opacity10: rgba(0, 136, 0, 0.1 );
	--bg-red-opacity10: rgb( 187, 64, 37, 0.1 );
	--bg-green-opacity20: rgba(0, 136, 0, 0.2 );
	--bg-red-opacity20: rgb( 187, 64, 37, 0.2 );
	--bg-green-opacity30: rgba(0, 136, 0, 0.3 );
	--bg-red-opacity30: rgb( 187, 64, 37, 0.3 );
	--bg-green-opacity40: rgba(0, 136, 0, 0.4 );
	--bg-red-opacity40: rgb( 187, 64, 37, 0.4 );
	--bg-green-opacity50: rgba(0, 136, 0, 0.5 );
	--bg-red-opacity50: rgb( 187, 64, 37, 0.5 );
	--bg-lightred: rgba( 255, 0, 0, 0.25 );
	--bg-gradient: rgb( 236, 103, 7 );
	--bg-gradient: -webkit-linear-gradient(bottom, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient: -moz-linear-gradient(bottom, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient: -o-linear-gradient(bottom, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient: -ms-linear-gradient(bottom, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient: linear-gradient(to top, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-90: rgb(236, 103, 7);
	--bg-gradient-90: -webkit-linear-gradient(left, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-90: -moz-linear-gradient(left, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-90: -o-linear-gradient(left, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-90: -ms-linear-gradient(left, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-90: linear-gradient(to right, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-180: rgb(236, 103, 7);
	--bg-gradient-180: -webkit-linear-gradient(right, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-180: -moz-linear-gradient(right, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-180: -o-linear-gradient(right, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-180: -ms-linear-gradient(right, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--bg-gradient-180: linear-gradient(to left, rgb(236, 103, 7) 0%, rgb(249, 176, 0) 100%);
	--text-lightorange: rgb(249, 176, 0);
	--text-orange: rgb(236, 103, 7);
	--text-black: #333;
	--text-white: rgb(250, 250, 250);
	--text-gray: #EEE;
	--text-darkgray: #a3a3a3;
	--text-darkdarkgray: rgb(80, 80, 80);
	--text-green: #080;
	--text-red: #bb4025;
}
*:focus {
	outline: none;
}
* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: aaux-next, sans-serif;
	font-weight: 400;
	font-style: normal;
}
strong {
	font-weight: bold;
}

/* SCREEN */
@media only screen {
	html { 
		height: 100%;
		background: url("../images/background_006.jpg") no-repeat center center fixed; 
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	body {
		margin: 0px;
		padding: 0px;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		color: var(--text-black);
	}

	pre {
		margin-top: 50px;
		height: 250px;
		padding: 15px;
		overflow: scroll;
		white-space: pre-wrap;
		background-color: lightcoral;
		background-image: url( '../images/debug.svg' );
		background-repeat: no-repeat;
		background-position: center;
		background-size: 60%;
		border-radius: 3px;
		box-sizing: border-box;
		font-size: 14px;
	}

	.sidenav {
		height: 100%;
		position: fixed;
		z-index: 100;
		top: 0;
		left: 0;
		background: var(--bg-gradient);
		overflow-x: hidden;
	}

	.sidenav a {
		padding: 20px 20px; 
		text-decoration: none;
		font-size: 20px;
		color: var(--text-black);
		display: block;
	}

	.sidenav a:hover {
		background-color: #fff;
		color: black;
	}

	.main {
		margin-left: 65px;
	}

	.main > .topnav {
		overflow: hidden;
		background-color: #e9e9e9;
	}

	.main > .topnav a {
		float: left;
		display: block;
		color: black;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 17px;
	}

	.main > .topnav a:hover {
		background-color: #ccc;
		color: #111;
	}

	.main > .topnav a.active {
		background-color: #111;
		color: white;
	}
	
	.main > .topnav > a > i.counter {
		position: relative;
	}
	.main > .topnav > a > i.counter::after {
		content: attr( data-count );
		position: absolute;
		top: -15px;
		left: 40%;
		padding: 5px;
		font-size: 12px;
		border-radius: 20px;
		color: white;
		background-color:  rgba(253,60,0,0.75);
	}

	.main > .topnav .search-container {
		float: right;
	}

	.main > .topnav input[type=text] {
		padding: 6px;
		margin-top: 8px;
		font-size: 17px;
		border: none;
	}

	.main > .topnav .search-container button {
		padding: 6px 10px;
		margin-top: 8px;
		margin-right: 16px;
		color: #111;
		font-size: 17px;
		border: none;
		cursor: pointer;
	}

	.main > .topnav .search-container button:hover {
		background: #ccc;
	}

	.main > .topnav .subnav {
		overflow: hidden;
		display: inline-block;
	}

	.main > .topnav .subnav .subnavbtn {
		font-size: 16px;  
		border: none;
		outline: none;
		color: #111;
		padding: 12px 12px;
		background-color: inherit;
		font-family: inherit;
		margin: 0px;
	}

	.main > .topnav .subnav .subnavbtn img {
		width: 20px;
		height: 20px;
		vertical-align: middle;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
		border-radius: 20px;
		margin-right: 0.4em;

	}

	.main > .topnav .subnav-content {
		display: none;
		max-width: 200px;
		max-height: 300px;
		position: absolute;
		background-color: #ccc;
		z-index: 100;
		font-size: 20px;
		overflow-y: scroll;
	}

	.main > .topnav .subnav-content a {
		display: block;
		width: 100%;
		text-align: left;
		color: #111;
		text-decoration: none;
	}
	.main > .topnav .subnav-content a i {
		margin-right: 0.4em;
	}
	.main > .topnav .subnav-content a img {
		width: 20px;
		height: 20px;
		vertical-align: middle;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
		border-radius: 20px;
		margin-right: 0.4em;
	}

	.main > .topnav .subnav-content a:hover {
		background-color: #ccc;
		color: white;
	}

	.main > .topnav .subnavbtn:hover {
		background-color: #ccc;
		color: #111;
	}

	.main > .topnav .subnav:hover .subnav-content {
		display: block;
	}

	.main > .content {
		margin-top: 25px;
		padding: 0px 46px 46px 46px;
	}
	.main > .content .dashboard {
		margin-top: 50px;
		display: grid;
		grid-template-columns: repeat( 3, 1fr );
		grid-auto-rows: auto;
		grid-auto-flow: row;
		gap: 15px 15px;
		width: 100%;
		height: 100%;
	}
	.main > .content .dashboard > div {
		position: relative;
		padding: 15px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
	}
	.main > .content .dashboard > div.button {
		position: relative;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		padding: 0px;
		background-color: var(--bg-gray-opacity90);
	}
	.main > .content .dashboard > div.button > a {
		display: block;
		width: 100%;
		height: 100%;
		text-decoration: none;
		color: var(--text-black);
		padding: 15px;
	}
	.main > .content .dashboard > div.button > a > i {
		color: var(--text-lightorange);
		margin-right: 0.4em;
	}
	.main > .content .dashboard > div > div.info {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 26px;
	}
	.main > .content .dashboard > div > h2 {
		padding: 0px;
		margin: 0px;
		padding-right: 75px;
	}
	.main > .content .dashboard > div > form {
		padding: 0px;
		margin: 0px;
		width: 100%;
	}
	.main > .content .dashboard > div > ul > li,
	.main > .content .dashboard > div > ul > ol
	{
		margin-left: 25px;
	}
	.main > .content .dashboard > .news {
		grid-area: span 1 / span 3;
	}
	.main > .content .dashboard > .library {
		grid-area: span 1 / span 3;
	}
	.main > .content .dashboard > .errorBig {
		grid-area: span 1 / span 3;
	}
	.main > .content .dashboard > .statistic {
		grid-area: span 1 / span 3;
	}
	
	.main > .content .statistic {
		position: relative;
		background-color: var(--bg-darkgray);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
	}
	.main > .content .statistic > h2 {
		padding: 0px;
		margin: 0px;
		padding-right: 75px;
	}
	.main > .content .statistic > div.info {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 26px;
	}
	.main > .content .statistic > table {
		width: 100%;
		margin-top: 25px;
		overflow-y: scroll;
	}
	.main > .content .statistic > table > tbody {
		
	}
	.main > .content .statistic > table > tbody > tr {
		
	}
	.main > .content .statistic > table > tbody > tr > td {
		text-align: left;
	}
	.main > .content .statistic > table > tbody > tr > td:first-child {
		width: 250px;
		white-space: nowrap;
	}
	.main > .content .statistic > table > tbody > tr > td:first-child > i {
		margin-right: 0.4em;
	}
	.main > .content .statistic > table > tbody > tr > td > .progress {
		height: 30px;
		width: 100%;
		border: 0px solid var(--bg-darkgray);
		position: relative;
		border-radius: 15px;
		overflow: hidden;
		background-color: var(--bg-darkgray);
	}
	.main > .content .statistic > table > tbody > tr > td > .progress > div.background {
		position: absolute;
		inset: 0;
		border-radius: 0 15px 15px 0;
	}
	.main > .content .statistic > table > tbody > tr > td > .progress > div.text {
		position: absolute;
		inset: 0;
		text-align: center;
		place-items: center;
		text-shadow: 0 0 0.5em white;
	}
	.main > .content .statistic > table > tbody > tr > td > .progress > div.orange_three {
		background-color: #e69536;
	}
	.main > .content .statistic > table > tbody > tr > td > .progress > div.orange_two {
		background-color: #e9a43a;
	}
	.main > .content .statistic > table > tbody > tr > td > .progress > div.orange_one {
		background-color: #eeb23e;
	}
	.main > .content .statistic > table > tbody > tr > td > .progress > div.red {
		background-color: var(--bg-red);
		color: white;
	}
	.main > .content .statistic > p.info {
		margin-left: 255px;
		text-align: center;
	}
	.main > .content h1 {
		padding: 0px;
		magin: 0px;
	}
	.main > .content h1 {
		padding: 0px;
		margin: 0px;
		box-sizing: border-box;
		width: 100%;
		font-size: 36px;
		color: var(--text-lightorange);
		font-family: aaux-next, sans-serif;
		font-weight: 900;
		font-style: normal;
	}
	.main > .content h1 > i {
		margin-right: 0.3em;
	}
	.main > .content h1 > i.fa-angle-right {
		font-size: 20px;
		vertical-align: middle;
		line-height: 36px;
		margin-top: -9px;
	}
	.main > .content h1 > a {
		font-size: 20px;
		float: right;
		background: var(--bg-black);
		color: var(--text-lightorange);
		padding: 5px 15px;
		text-decoration: none;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		margin-left: 10px;
	}
	.main > .content h1 > a:hover {
		background: var(--bg-lightorange);
		color: var(--text-white);
	}
	.main > .content h1 > div.dropdown {
		float: right;
		font-size: 22px;
		width: 125px;
		cursor: pointer;
		margin-top: -2px;
		margin-left: 15px;
	}
	.main > .content h1 > div.dropdown > button.dropbtn {
		font-size: 22px;
		width: 125px;
	}
	.main > .content h2 {
		padding: 0px;
		margin: 0px;
	}
	.main > .content h2 {
		padding: 0px;
		margin: 0px;
		margin-top: 0px;
		box-sizing: border-box;
		width: 100%;
		font-size: 26px;
		color: var(--text-black);
		font-family: aaux-next, sans-serif;
		font-weight: 300;
		font-style: normal;
		text-align: left;
	}
	.main > .content h2 > a {
		font-size: 26px;
		float: right;
		color: var(--text-black);
		text-decoration: none;
	}
	.main > .content h2 > a:hover {
		color: var(--text-lightorange);
	}
	.main > .content h2 > i {
		margin-right: 0.3em;
	}
	.main > .content h2 > i.fa-info-circle {
		font-size: 26px;
		float: right;
		color: var(--text-lightorange);
	}
	.main > .content h3 {
		padding:0px;
		magin: 0px;
	}
	.main > .content h3 > i {
		margin-right: 0.3em;
	}
	.main > .content h3 > i.fa-info-circle {
		font-size: 26px;
		float: right;
		color: var(--text-lightorange);
	}
	.main > .content .pending {
		color: var(--bg-lightorange);
		animation: blink 0.7s linear infinite;
	}
	.main > .content .successful {
		color: var(--text-green);
	}
	.main > .content > .error {
		color: var(--text-red);
	}
	.main > .content > p {
		padding: 0px;
		margin: 0px;
		margin-top: 5px;
		font-size: 20px;
		color: var(--text-black);
	}
	p.description {
		width: 100%;
		display: block;
		box-sizing: border-box;
	}
	p.description span.more {
		display: none;
	}

	p.description span.more.extend {
		display: inline;
	}

	p.description > .description_btn {
		cursor: pointer;
	}

	p.description span.more.extend ~ .description_btn::after {
		content: "[weniger anzeigen]";
		cursor: pointer;
		color: var(--text-darkgray);
	}

	p.description > .description_btn::after {
		content: "[mehr anzeigen]";
		width: auto;
		height: auto;
		clear: both;
		cursor: pointer;
		color: var(--text-darkgray);
	}
	td.text {
		width: 100%;
		/*display: block;*/
		box-sizing: border-box;
	}
	td.text span.report_more {
		display: none;
	}
	td.text span.report_more.extend {
		display: inline;
	}
	td.text > .report_btn {
		cursor: pointer;
	}
	td.text span.report_more.extend ~ .report_btn::after {
		content: "[weniger anzeigen]";
		cursor: pointer;
		color: var(--text-darkgray);
	}
	td.text > .report_btn::after {
		content: "[mehr anzeigen]";
		width: auto;
		height: auto;
		clear: both;
		cursor: pointer;
		color: var(--text-darkgray);
	}



	.main > .content p.info {
		margin-top: 0.4em;
		font-size: 14px;
		color: var(--text-darkgray);
		clear: both;
	}
	.main > .content p.info > i:first-child {
		margin-right: 0.4em;
	}
	.main > .content p.errorBig {
		padding-top: 75px;
		padding-bottom: 75px;
		line-height: 42px;
		vertical-align: middle;
		text-align: center;
		margin-top: 50px;
		font-size: 35px;
		color: var(--text-black);
		background-color: var(--bg-lightred);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		background-image: url("../images/error.png");
		background-position: -50px 50%;
		background-repeat: no-repeat;
		background-size: auto;
	}
	.main > .content .infoBig {
		display: block;
		width: 100%;
		padding-top: 50px;
		padding-left: 250px;
		padding-right: 50px;
		padding-bottom: 50px;
		vertical-align: middle;
		text-align: center;
		margin-top: 25px;
		font-size: 20px;
		color: var(--text-black);
		background-color: var(--bg-gray);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		background-image: url("../images/info.png");
		background-position: -50px 50%;
		background-repeat: no-repeat;
		background-size: auto;
	}
	.main > .content .infoBig > a {
		color: var(--text-lightorange);
		text-decoration: none;
	}
	.main > .content p > img.center {
		margin-left: auto;
		margin-right: auto;
	}
	.main > .content .btn {
		font-size: 20px;
		float: right;
		background: var(--bg-black);
		color: var(--text-lightorange);
		padding: 5px 15px;
		text-decoration: none;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		margin-left: 10px;
	}
	.main > .content .btn:hover {
		background: var(--bg-lightorange);
		color: var(--text-white);
	}
	.main > .content .table_wrapper {
		display: block;
		margin-top: 30px;
	}
	.main > .content table {
		font-size: 18px;
	}
	.main > .content table.horizontal {
		box-sizing: border-box;
		width: 100%;
		padding: 0px;
		margin: 0px;
		margin-top: 10px;
		border-spacing: 0px;
		border-collapse: separate;
	}
	.main > .content table.horizontal > thead > tr {
		box-sizing: border-box;
		background: var(--bg-black);
		color: var(--text-white);
		line-height: 30px;
		top: 0;
	}
	.main > .content table.horizontal > thead > tr > th {
		padding: 5px;
		text-align: left;
		vertical-align: text-top;
	}
	.main > .content table.horizontal > thead > tr > th > i {
		margin-right: 0.4em;
		color: var(--text-lightorange);
	}
	.main > .content table.horizontal > thead > tr > th > a {
		text-decoration: none;
		color: var(--text-white);
	}
	.main > .content table.horizontal > thead > tr > th > a:hover {
		color: var(--text-lightorange);
	}
	.main > .content table.horizontal > thead > tr > th.symbol {
		width: 95px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > thead > tr > th.datetime {
		width: 155px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > thead > tr > th.date {
		width: 135px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > thead > tr > th.time {
		width: 95px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > thead > tr > th.hours {
		width: 85px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.lector {
		width: 85px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.type {
		width: 50px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.size {
		width: 95px;
	}
	.main > .content table.horizontal > thead > tr > th.name {
		min-width: 250px;
	}
	.main > .content table.horizontal > thead > tr > th.text {
		min-width: 250px;
	}
	.main > .content table.horizontal > thead > tr > th.instructor {
		width: 125px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > thead > tr > th.trainee {
		min-width: 95px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.internship {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.retraining {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.training {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.job {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.female {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.foreigner {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.lgbtq {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.rating {
		width: 135px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.thumbnail {
		width: 75px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.picture {
		width: 75px;
		text-align: center;
	}
	.main > .content table.horizontal > thead > tr > th.count {
		width: 95px;
	}
	.main > .content table.horizontal > thead > tr > th.action {
		width: 125px;
	}
	.main > .content table.horizontal > thead > tr > th.text_left {
		text-align: left;
	}
	.main > .content table.horizontal > thead > tr > th.text_right {
		text-align: right;
	}
	.main > .content table.horizontal > thead > tr > th.text_center {
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr {
		box-sizing: border-box;
		min-height: 50px;
		/* background: var(--bg-smokewhite); */
	}
	.main > .content table.horizontal > tbody > tr:nth-child(2n) {
		background: var(--bg-gray-opacity90);
	}
	.main > .content table.horizontal > tbody > tr:hover {
		background: var(--bg-lightorange);
	}
	.main > .content table.horizontal > tbody > tr > th {
		width: 150px;
		background: var(--bg-black);
		color: var(--text-white);
		font-weight: bold;
		text-align: left;
		padding: 5px;
		min-height: 40px;
		line-height: 22px;
	}
	.main > .content table.horizontal > tbody > tr > th > i {
		margin-right: 0.4em;
		color: var(--text-lightorange);
	}
	.main > .content table.horizontal > tbody > tr > td {
		box-sizing: border-box;
		min-height: 40px;
		line-height: 22px;
		padding: 5px;
		border-bottom: 1px solid var(--bg-lightorange);
		border-right: 1px solid var(--bg-lightorange);
		vertical-align: text-top;
	}
	.main > .content table.horizontal > tbody > tr > td:first-child {
		border-left: 1px solid var(--bg-lightorange);
	}
	.main > .content table.horizontal > tbody > tr > td > i {
		margin-right: 0.4em;
		color: var(--text-lightorange);
	}
	.main > .content table.horizontal > tbody > tr > td > ul {
		list-style: none;
	}
	.main > .content table.horizontal > tbody > tr > td > span.label {
		display: inline-block;
		width: 125px;
		font-weight: 300;
		color: var(--text-lightorange);
	}
	.main > .content table.horizontal > tbody > tr:hover > td > span.label {
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr:hover > td > i {
		color: var(--text-black);
	}
	.main > .content table.horizontal > tbody > tr > td > a {
		text-decoration: none;
		color: var(--text-black);
	}
	.main > .content table.horizontal > tbody > tr > td.symbol {
		width: 95px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.day {
		width: 150px;
	}
	.main > .content table.horizontal > tbody > tr > td.datetime {
		width: 155px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.date {
		width: 135px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.time {
		width: 95px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.hours {
		width: 85px;
		white-space: nowrap;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.lector {
		width: 85px;
		white-space: nowrap;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.type {
		width: 50px;
		white-space: nowrap;
		text-align: center;
		vertical-align: text-top;
	}
	.main > .content table.horizontal > tbody > tr > td.type > i {
		font-size: 30px;
	}
	.main > .content table.horizontal > tbody > tr > td.size {
		width: 95px;
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.name {
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.delete {
		text-decoration: line-through;
	}
	.main > .content table.horizontal > tbody > tr > td.text {
		white-space: normal;
	}
	.main > .content table.horizontal > tbody > tr > td.text > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
		vertical-align: text-top;
		margin-right: 25px;
	}
	.main > .content table.horizontal > tbody > tr > td.trainee > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
		vertical-align: text-top;
	}
	.main > .content table.horizontal > tbody > tr > td.instructor > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
		vertical-align: text-top;
	}
	.main > .content table.horizontal > tbody > tr > td.instructor {
		width: 125px;
		text-align: left;
		white-space: nowrap;
	}
	.main > .content table.horizontal > tbody > tr > td.trainee {
		min-width: 55px;
		text-align: left;
	}
	.main > .content table.horizontal > tbody > tr > td.internship {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.retraining {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.training {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.job {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.female {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.foreigner {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.lgbtq {
		width: 35px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.rating {
		width: 135px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.thumbnail {
		width: 75px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.thumbnail > img {
		max-width: 100px;
		max-height: 100px;
	}
	.main > .content table.horizontal > tbody > tr > td.picture {
		width: 75px;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.picture > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
	}
	.main > .content table.horizontal > tbody > tr > td.picture > a {
		text-decoration: none;
	}
	.main > .content table.horizontal > tbody > tr > td.picture > a > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
	}
	.main > .content table.horizontal > tbody > tr > td.count {
		width: 95px;
	}

	.main > .content table.horizontal > tbody > tr > td > i.text-green {
		color: var(--text-green);
	}
	.main > .content table.horizontal > tbody > tr > td > i.text-red {
		color: var(--text-red);
	}
	.main > .content table.horizontal > tbody > tr > td > i.text-gray {
		color: var(--text-darkgray);
	}
	.main > .content table.horizontal > tbody > tr > td > i.text-orange {
		color: var(--text-orange);
	}
	.main > .content table.horizontal > tbody > tr > td.status {
		width: 75px;
		vertical-align: text-top;
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.action {
		width: 125px;
		white-space: nowrap;
		text-align: right;
	}
	.main > .content table.horizontal > tbody > tr > td.action > a {
		display: inline-block;
		font-size: 20px;
		background: var(--bg-black);
		color: var(--text-lightorange);
		padding: 5px 10px;
		text-decoration: none;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		margin-left: 5px;
	}
	.main > .content table.horizontal > tbody > tr > td.action > a:hover {
		background: var(--bg-black);
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr > td.action > a > i.text-green {
		color: var(--text-green);
	}
	.main > .content table.horizontal > tbody > tr > td.action > a:hover > i.text-green {
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr > td.action > a > i.text-red {
		color: var(--text-red);
	}
	.main > .content table.horizontal > tbody > tr > td.action > a:hover > i.text-red {
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr > td.action > button {
		display: inline-block;
		font-size: 20px;
		background: var(--bg-black);
		color: var(--text-lightorange);
		padding: 5px 10px;
		text-decoration: none;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		margin-left: 5px;
		border: 0px;
	}
	.main > .content table.horizontal > tbody > tr > td.action > button:hover {
		background: var(--bg-black);
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr > td.action > button > i.text-green {
		color: var(--text-green);
	}
	.main > .content table.horizontal > tbody > tr > td.action > button:hover > i.text-green {
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr > td.action > button > i.text-red {
		color: var(--text-red);
	}
	.main > .content table.horizontal > tbody > tr > td.action > button:hover > i.text-red {
		color: var(--text-white);
	}
	.main > .content table.horizontal > tbody > tr > td.text_left {
		text-align: left;
	}
	.main > .content table.horizontal > tbody > tr > td.text_right {
		text-align: right;
	}
	.main > .content table.horizontal > tbody > tr > td.text_center {
		text-align: center;
	}
	.main > .content table.horizontal > tbody > tr > td.text-green {
		color: var(--text-green);
	}
	.main > .content table.horizontal > tbody > tr > td.text-red {
		color: var(--text-red);
	}
	.main > .content table.horizontal > tfoot > tr {
		background: var(--bg-smokewhite);
	}
	.main > .content table.horizontal > tfoot > tr > td {
		box-sizing: border-box;
		min-height: 40px;
		line-height: 22px;
		padding: 5px;
		border-top: 1px solid var(--bg-lightorange);
		border-right: 1px solid var(--bg-lightorange);
		border-bottom: 1px solid var(--bg-lightorange);
		vertical-align: text-top;
	}
	.main > .content table.horizontal > tfoot > tr > td:first-child {
		border-left: 1px solid var(--bg-lightorange);
	}
	.main > .content table.vertical {
		box-sizing: border-box;
		width: 100%;
		font-size: 20px;
		margin-top: 25px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0px;
		padding: 0px;
		overflow-y: scroll;
	}
	.main > .content table.vertical > thead > tr {
		box-sizing: border-box;
		background: var(--bg-black);
		color: var(--text-white);
		line-height: 30px;
		top: 0;
	}
	.main > .content table.vertical > thead > tr > th {
		padding: 5px;
		color: var(--text-white);
		text-align: left;
	}
	.main > .content table.vertical > thead > tr > th.text_left {
		text-align: left;
	}
	.main > .content table.vertical > thead > tr > th.text_right {
		text-align: right;
	}
	.main > .content table.vertical > thead > tr > th.text_center {
		text-align: center;
	}
	.main > .content table.vertical > tbody > tr > th {
		width: calc(200px - 10px);
		height: 30px;
		vertical-align: text-top;
		padding: 15px 10px;
		text-align: left;
		background: var(--bg-black);
		color: var(--text-white);
	}
	.main > .content table.vertical > tbody > tr > th > i {
		margin-right: 0.4em;
		color: var(--text-lightorange);
	}
	.main > .content table.vertical > tbody > tr > th.text_left {
		text-align: left;
	}
	.main > .content table.vertical > tbody > tr > th.text_right {
		text-align: right;
	}
	.main > .content table.vertical > tbody > tr > th.text_center {
		text-align: center;
	}
	.main > .content table.vertical > tbody > tr > td {
		box-sizing: border-box;
		padding: 15px 10px;
		min-height: 40px;
		line-height: 22px;
		text-align: left;
		font-family: aaux-next, sans-serif;
		font-weight: 400;
		font-style: normal;
		color: var(--text-black);
		border-bottom: 1px solid var(--bg-darkgray);
	}
	.main > .content table.vertical > tbody > tr > td.text_left {
		text-align: left;
	}
	.main > .content table.vertical > tbody > tr > td.text_right {
		text-align: right;
	}
	.main > .content table.vertical > tbody > tr > td.text_center {
		text-align: center;
	}
	.main > .content table.vertical > tbody > tr > td.trainee > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
		vertical-align: text-top;
		margin-right: 25px;
	}
	.main > .content table.vertical > tbody > tr > td.instructor > img {
		max-width: 50px;
		max-height: 50px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-o-border-radius: 25px;
		-ms-border-radius: 25px;
		border-radius: 25px;
		border: 1px solid #fddfa7;
		vertical-align: text-top;
		margin-right: 25px;
	}
	.main > .content table.vertical > tbody > tr > td:first-child {
		border-bottom: none;
	}
	.main > .content table.vertical > tbody > tr:last-child > td {
		border-bottom: none;
	}
	.main > .content table.vertical > tbody > tr > td > input.datepicker {
		width: 175px;
		text-align: center;
	}
	.main > .content table.vertical > tbody > tr > td > button.ui-datepicker-trigger {
		box-sizing: border-box;
		vertical-align: text-top;
		height: 30px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 2px;
	}
	.main > .content table.vertical > tbody > tr > td > button.ui-datepicker-trigger > img {
		height: 26px;
	}
	.main > .content table.vertical > tbody > tr > td > input.timepicker {
		width: 175px;
		text-align: center;
	}
	.main > .content table.vertical > tbody > tr > td > textarea {
		width: 100%;
		height: 130px;
		font-size: 20px;
		line-height: 24px;
		box-sizing: border-box;
		color: var(--text-lightorange);
		border: 1px solid var(--bg-gray);
		padding: 15px;
	}
	.main > .content table.vertical > tfoot > tr > th.text_left {
		text-align: left;
	}
	.main > .content table.vertical > tfoot > tr > th.text_right {
		text-align: right;
	}
	.main > .content table.vertical > tfoot > tr > th.text_center {
		text-align: center;
	}
	.main > .content table.vertical > tfoot > tr > td {
		box-sizing: border-box;
		padding: 15px 10px;
		text-align: left;
		font-family: aaux-next, sans-serif;
		font-weight: 400;
		font-style: normal;
		color: var(--text-black);
	}
	.main > .content table.vertical > tfoot > tr > td.text_left {
		text-align: left;
	}
	.main > .content table.vertical > tfoot > tr > td.text_right {
		text-align: right;
	}
	.main > .content table.vertical > tfoot > tr > td.text_center {
		text-align: center;
	}
	.main > .content table.vertical > tfoot > tr > td.doubleBroderTop {
		border-top: 3px double var(--bg-lightorange);
	}

	.main > .content .pagination {
		width: 100%;
		margin-top: 25px;
		text-align: center;
		display: block;
	}
	.main > .content .pagination a {
	  color: black;
	  display: inline-block;
	  padding: 8px 16px;
	  text-decoration: none;
	  transition: background-color .3s;
	}
	.main > .content .pagination span {
	  color: black;
	  display: inline-block;
	  padding: 8px 16px;
	  text-decoration: none;
	}
	.main > .content .pagination a.active {
	  background-color: var(--bg-lightorange);
	  color: white;
	}
	.main > .content .pagination a:hover:not(.active) {
		background-color: var(--bg-darkgray);
	}

	.main > .content .text_left {
		text-align: left;
	}
	.main > .content .text_right {
		text-align: right;
	}
	.main > .content .text_center {
		text-align: center;
	}


	.main > .content form {
		width: 100%;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		background-color: var(--bg-lightgray);
		padding: 25px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
	}
	.main > .content form > h2 {
		margin-top: 25px;
	}
	.main > .content form > table {
		margin-top: 25px;
	}
	.main > .content form > table:first-child {
		margin-top: 0px;
	}
	.main > .content .text-red {
		color: var(--text-red);
	}
	.main > .content button.submit {
		box-sizing: border-box;
		width: 80%;
		height: 50px;
		margin-top: 25px;
		font-size: 20px;
		background: var(--bg-black);
		color: var(--text-lightorange);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		border: none;
		-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
		-o-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
		-ms-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
		box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
	}
	.main > .content button.submit:hover {
		background: var(--bg-lightorange);
		color: var(--text-black);
	}
	.main > .content .beta:after {
		position: absolute;
		content: "beta";
		background: var(--bg-orange);
		padding: 2px 2px;
		margin-left: 20px;
		text-align: center;
		font-size: 13px;
		font-family: sans-serif;
		text-transform: uppercase;
		font-weight: bold;
		color: var(--text-white);
		line-height: 13px;
		animation: blink 2.2s linear infinite;
	}
	.main > .content .new:after {
		position: absolute;
		content: "Neu";
		background: var(--bg-orange);
		padding: 2px 2px;
		margin-left: 20px;
		text-align: center;
		font-size: 13px;
		font-family: sans-serif;
		text-transform: uppercase;
		font-weight: bold;
		color: var(--text-white);
		line-height: 13px;
		animation: blink 5s linear infinite;
	}
	.main > .content .allnew:after {
		position: absolute;
		content: "Geändert";
		background: var(--bg-darkdarkgray);
		padding: 2px 2px;
		margin-left: 20px;
		text-align: center;
		font-size: 13px;
		font-family: sans-serif;
		text-transform: uppercase;
		font-weight: bold;
		color: var(--text-gray);
		line-height: 13px;
		animation: blink 2.7s linear infinite;
	}
	.main > .content .onc:after {
		position: absolute;
		content: "im Bau";
		background: var(--bg-orange);
		padding: 2px 2px;
		margin-left: 20px;
		text-align: center;
		font-size: 13px;
		font-family: sans-serif;
		text-transform: uppercase;
		font-weight: bold;
		color: var(--text-white);
		line-height: 13px;
		animation: blink 1.2s linear infinite;
	}
	.main > .content .permanently_closed:after {
		content: "Dauerhaftgeschloßen";
		background: var(--bg-red);
		padding: 6px 12px;
		margin-left: 20px;
		text-align: center;
		font-size: 13px;
		font-family: sans-serif;
		text-transform: uppercase;
		font-weight: bold;
		color: var(--text-white);
		line-height: 27px;
		animation: blink 1.2s linear infinite;
	}
	.main > .content .preloader {
		display: none;
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: var(--bg-smokewhite);
		background-image: url("../images/loader2.gif");
		background-position: center center;
		background-repeat: no-repeat;
		z-index: 10000;
	}
	.main > .content .preloader.open {
		display: block;
	}
	.main > .content .ui-tooltip {
		z-index: 1000;
	}
	.main > .content .dropbtn {
		background-color: var(--bg-black);
		color: var(--text-lightorange);
		padding: 8px 10px;
		font-size: 18px;
		border: none;
		font-weight: normal;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		text-align: left;
		cursor: pointer;
	}
	.main > .content .dropbtn > i {
		margin-right: 0.4em;
	}
	.main > .content .dropdown {
		position: relative;
		display: block;
	}
	.main > .content .dropdown-content {
		display: none;
		position: absolute;
		right: 0;
		background-color: #f9f9f9;
		min-width: 100%;
		max-width: 500px;
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		z-index: 1000;
		text-align: left;
	}
	.main > .content .dropdown-content hr {
		border: 0px;
		border-bottom: 1px solid var(--bg-lightorange);
	}
	.main > .content .dropdown-content span.label {
		background-color: var(--text-lightorange);
		color: var(--text-white);
		padding: 12px 16px;
		font-weight: bold;
		display: block;
		width: 195px;

	}
	.main > .content .dropdown-content a {
		color: var(--text-black);
		padding: 12px 16px;
		text-decoration: none;
		display: block;
		text-align: left;
		white-space: nowrap;
		cursor: pointer;
	}
	.main > .content .dropdown-content a:hover {
		color: var(--text-lightorange);
	}
	.main > .content .dropdown:hover .dropdown-content {
		display: block;
	}
	.main > .content .dropdown:hover .dropbtn {
		color: var(--text-white);
	}
	.main > .content .rainbow {
		background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
		background-size: 1800% 1800%;
		-webkit-animation: rainbow 18s ease infinite;
		-moz-animation: rainbow 18s ease infinite;
		-ms-animation: rainbow 18s ease infinite;
		-o-animation: rainbow 18s ease infinite;
		animation: rainbow 18s ease infinite;
	}

	.main > .content div.legend {
		display: inline-flex;
		background-color: var(--bg-lightorange);
		text-decoration: none;
		color: var(--text-white);
		margin-bottom: 3px;
		padding: 2px 12px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		-ms-border-radius: 50px;
		-o-border-radius: 50px;
		border-radius: 50px;
	}
	.main > .content table.calendar {
		margin-top: 25px;
		box-sizing: border-box;
		width: 100%;
		margin-bottom: 50px;
	}
	.main > .content table.calendar > thead {
		box-sizing: border-box;
	}
	.main > .content table.calendar > thead > tr {
		box-sizing: border-box;
		background: var(--bg-black);
		color: white;
		height: 50px;
	}
	.main > .content table.calendar > thead > tr > td {
		box-sizing: border-box;
		width: calc( 100% / 7 );
		background-color: var(--bg-black);
		color: black;
	}
	.main > .content table.calendar > thead > tr > td.kw {
		width: 50px;
		text-align: center;
	}
	.main > .content table.calendar > tbody {
		box-sizing: border-box;
	}
	.main > .content table.calendar > tbody > tr {
		box-sizing: border-box;
		height: 105px;
	}
	.main > .content table.calendar > tbody > tr > td {
		box-sizing: border-box;
		width: calc( 100% / 7 );
		border-left: 1px solid var(--bg-lightorange);
		border-bottom: 1px solid var(--bg-lightorange);
		padding: 7px 7px 7px 55px;
		vertical-align: top;
		text-align: left;
		max-width: 25px;
	}
	.main > .content table.calendar > tbody > tr > td.kw {
		width: 50px;
		max-width: 100%;
		text-align: center;
		padding: 7px 7px 7px 7px;
	}
	.main > .content table.calendar > tbody > tr > td.now {
		background-color: rgba( 255, 0, 0, 0.07);
	}
	.main > .content table.calendar > tbody > tr > td.one {
		background-image: url("/images/day_1.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.two {
		background-image: url("/images/day_2.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.three {
		background-image: url("/images/day_3.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.four {
		background-image: url("/images/day_4.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.five {
		background-image: url("/images/day_5.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.six {
		background-image: url("/images/day_6.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.seven {
		background-image: url("/images/day_7.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.eight {
		background-image: url("/images/day_8.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.nine {
		background-image: url("/images/day_9.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.ten {
		background-image: url("/images/day_10.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.eleven {
		background-image: url("/images/day_11.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twelve {
		background-image: url("/images/day_12.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.thirteen {
		background-image: url("/images/day_13.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.fourteen {
		background-image: url("/images/day_14.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.fifteen {
		background-image: url("/images/day_15.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.sixteen {
		background-image: url("/images/day_16.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.seventeen {
		background-image: url("/images/day_17.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.eighteen {
		background-image: url("/images/day_18.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.nineteen {
		background-image: url("/images/day_19.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twenty {
		background-image: url("/images/day_20.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentyone {
		background-image: url("/images/day_21.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentytwo {
		background-image: url("/images/day_22.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentythree {
		background-image: url("/images/day_23.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentyfour {
		background-image: url("/images/day_24.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentyfive {
		background-image: url("/images/day_25.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentysix {
		background-image: url("/images/day_26.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentyseven {
		background-image: url("/images/day_27.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentyeight {
		background-image: url("/images/day_28.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.twentynine {
		background-image: url("/images/day_29.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.thirty {
		background-image: url("/images/day_30.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td.thirtyone {
		background-image: url("/images/day_31.png");
		background-repeat: no-repeat;
		background-size: 75%;
	}
	.main > .content table.calendar > tbody > tr > td > a.day {
		display: block;
		width: 100%;
		height: 29px;
		box-sizing: border-box;
		background-color: var(--bg-lightorange);
		text-decoration: none;
		color: var(--text-white);
		margin-bottom: 3px;
		padding: 2px 12px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		-ms-border-radius: 50px;
		-o-border-radius: 50px;
		border-radius: 50px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.main > .content table.calendar > tbody > tr > td > span.day {
		display: block;
		width: 100%;
		height: 29px;
		box-sizing: border-box;
		background-color: var(--bg-lightorange);
		text-decoration: none;
		color: var(--text-white);
		margin-bottom: 3px;
		padding: 2px 8px 2px 8px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		-ms-border-radius: 50px;
		-o-border-radius: 50px;
		border-radius: 50px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.main > .content table.calendar > tbody > tr > td > span.birthday {
		display: block;
		width: 100%;
		height: 29px;
		box-sizing: border-box;
		text-decoration: none;
		color: var(--text-white);
		margin-bottom: 3px;
		padding: 2px 4px 2px 4px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		-ms-border-radius: 50px;
		-o-border-radius: 50px;
		border-radius: 50px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
		background-size: 1800% 1800%;
		-webkit-animation: rainbow 18s ease infinite;
		-moz-animation: rainbow 18s ease infinite;
		-ms-animation: rainbow 18s ease infinite;
		-o-animation: rainbow 18s ease infinite;
		animation: rainbow 18s ease infinite;
	}
	.main > .content table.calendar > tbody > tr > td > span.birthday > img {
		width: 22px;
		height: 22px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		-ms-border-radius: 25px;
		-o-border-radius: 25px;
		border-radius: 25px;
		vertical-align: middle;
		margin-top: -4px;
	}
	.main > .content table.calendar > tbody > tr > td > a.time {
		display: block;
		width: 100%;
		height: 29px;
		box-sizing: border-box;
		background-color: var(--bg-lightorange);
		text-decoration: none;
		color: var(--text-white);
		margin-bottom: 3px;
		padding: 2px 12px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		-ms-border-radius: 50px;
		-o-border-radius: 50px;
		border-radius: 50px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.main > .content table.calendar > tbody > tr > td:last-child {
		border-right: 1px solid var(--bg-lightorange);
	}

	@-webkit-keyframes rainbow {
		0% {
			background-position: 0% 82%
		}
		50% {
			background-position: 100% 19%
		}
		100% {
			background-position: 0% 82%
		}
	}
	@-moz-keyframes rainbow {
		0% {
			background-position: 0% 82%
		}
		50% {
			background-position: 100% 19%
		}
		100% {
			background-position: 0% 82%
		}
	}
	@-ms-keyframes rainbow {
		0% {
			background-position: 0% 82%
		}
		50% {
			background-position: 100% 19%
		}
		100% {
			background-position: 0% 82%
		}
	}
	@-o-keyframes rainbow {
		0% {
			background-position: 0% 82%
		}
		50% {
			background-position: 100% 19%
		}
		100% {
			background-position: 0% 82%
		}
	}
	@keyframes rainbow {
		0% {
			background-position: 0% 82%
		}
		50% {
			background-position: 100% 19%
		}
		100% {
			background-position: 0% 82%
		}
	}
	@-webkit-keyframes blink {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@-moz-keyframes blink {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@-ms-keyframes blink {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@-o-keyframes blink {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@keyframes blink {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

}

/* PRINT */
@media only print {

	body {
		font-family: aaux-next, sans-serif;
		font-weight: 400;
		font-style: normal;
		margin: 0px;
		padding: 0px;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		background-color: var(--bg-white);
		color: var(--text-black);
	}

	.sidenav {
		display: none;
	}
	.sidenav a {
		display: none;
	}

	.sidenav a:hover {
		display: none;
	}

	.main {
		margin-left: 0px;
	}

	.main > .topnav {
		display: none;
	}

	.main > .content > h1 > i {
		display: none;
	}
	
	.main > .content p.info {
		margin-top: 0.4em;
	}

	.main > .content table {
		font-size: 18px;
	}
	.main > .content table.horizontal {
		box-sizing: border-box;
		width: 100%;
		padding: 0px;
		margin: 0px;
		margin-top: 25px;
	}
	.main > .content table.horizontal > thead > tr {
		box-sizing: border-box;
		background: var(--bg-black);
		color: var(--text-white);
		line-height: 30px;
		top: 0;
	}
	.main > .content table.horizontal > thead > tr > th {
		padding: 5px;
		color: var(--text-white);
		text-align: left;
		vertical-align: text-top;
	}
	.main > .content table.horizontal > thead > tr > th.action {
		display: none;
	}
	.main > .content table.horizontal > tbody > tr {
		box-sizing: border-box;
		min-height: 50px;
		background: var(--bg-white);
	}
	.main > .content table.horizontal > tbody > tr > td {
		box-sizing: border-box;
		min-height: 40px;
		line-height: 22px;
		padding: 5px;
		border-bottom: 1px solid var(--bg-black);
		border-right: 1px solid var(--bg-black);
		vertical-align: text-top;
	}
	.main > .content table.horizontal > tbody > tr > td:first-child {
		border-left: 1px solid var(--bg-black);
	}
	.main > .content table.horizontal > tbody > tr > td.action {
		display: none;
	}

}