/*-------------------- Testklassen -----------------------*/
.rot{
   background-color: red !important;
}
.blau{
   background-color: blue !important;
}
.gruen{
   background-color: green !important;
}
.gelb{
   background-color: yellow !important;
}
.randrot{
   border: 1px solid red !important;
}
.randblau{
   border: 1px solid blue !important;
}
.randgruen{
   border: 1px solid green !important;
}
.randgelb{
   border: 1px solid yellow !important;
}
/*-------------------- allgemeine Klassen -----------------------*/
body{
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size: 100%;
}
/*------------ scrollbars webkit ---------------*/
::-webkit-scrollbar {
   width: 16px;
   height: 16px;
}
::-webkit-scrollbar-track {
   background-color: #202020;
}
::-webkit-scrollbar-thumb {
   background-color: #505050;
   border: 1px solid rgba(128,128,128,0.1);
   -webkit-border-radius: 10px;
   border-radius: 10px;
}
::-webkit-scrollbar-corner {
    background-color: black;
}
/*----------- ende scrollbars -------------*/

div{
   margin: 0;
   padding: 0;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -ms-box-sizing: border-box;
   box-sizing: border-box;
}
table{
   border-spacing: 0;
   border-collapse: collapse;
}
th, td{
   padding: 0;
}
/*-------------------- Eigenschaften -----------------------*/
.fett{
   font-weight: 700;
}
.block{
   display: block;
}
.inline{
   display: inline;
}
.inlineBlock{
   display: inline-block;
}
.weg{
   display: none;
}
.sichtbar{
   visibility: visible;
}
.unsichtbar{
   visibility: hidden;
}
.hand{
   cursor: pointer;
}
.defaultZeiger{
   cursor: default;
}
.klickbar{
   text-decoration: none;
   cursor: pointer;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}
.klickbar:hover{
   text-decoration: none;
   color: #fe8a2a;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}
.klickbar:active{
   text-decoration: none;
   color: #ff8928;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}
.maxgross{
   width: 100%;
   height: 100%;
}
.maxbreit{
   width: 100%;
}
.maxhoch{
   height: 100%;
}
.abs{
   position: absolute;
}
.rel{
   position: relative;
}
.fix{
   position: fixed;
}
.stat{
   position: static;
}
.links{
   left: 0;
}
.oben{
   top: 0;
}
.rechts{
   right: 0;
}
.unten{
   bottom: 0;
}
.hLinks{
   text-align: left;
}
.hMitte{
   text-align: center;
   margin: 0 auto;
}
.hRechts{
   text-align: right;
}
.keinUmbruch{
   white-space: nowrap;
}
.vMitte{
   vertical-align: middle;
}
.vOben{
   vertical-align: top;
}
.vUnten{
   vertical-align: bottom;
}
.flusslinks {
   float: left;
}
.flussrechts {
   float: right;
}
.unselektierbar{
   -moz-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
}
.selektierbar{
   -moz-user-select: text;
   -webkit-user-select: text;
   -ms-user-select: text;
}
.rund{
   -webkit-border-radius: 20px;
   border-radius: 20px;
}
.durchgestrichen{
   text-decoration: line-through;
}
.durchgestrichen:hover{
   text-decoration: line-through;
}
/*-------------------- Farben -----------------------*/
.HGFarb{
   background-color: #000000;
}
.HGFarb2{
   background-color: #1a1a1a;
}
.HGFarbContent{
   background-color: #000000;
}
.HGRahmen{
  background-color: #202020;
}
.hell{
   color: #f0d0b0;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}
.mittel{
   color: #f7bc5b;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}
.dunkel{
   color: #fe8a2a;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}
.inaktiv{
   color: #333;
}
.daumen{
   cursor: pointer;
   font-size: 1.2em;
   -webkit-border-radius: 1.4em;
   border-radius: 0.3em;
   border: 1px outset #f7bc5b;
   padding: 0 0.1em 0.1em 0.1em;
}
.daumen:hover{
   color: #fe8a2a;
}

input[type="checkbox"]{
   margin: 0 1em 0 0;
}

.taste_akt, .taste_inakt{
   padding: 0 0 0.1em 0;
   margin: 0.2em 1.4em 0.5em 1.4em;
   border-style: solid;
   border-width: 0 0 2px 0;
}
.taste_akt{
   color: #fe8a2a;
   border-color: #70ff70;
}
.taste_inakt{
   color: #f0d0b0;
   border-color: #1a1a1a;
}
.taste_akt:hover, .taste_inakt:hover{
   color: #f7bc5b;
}
.taste_akt:active, .taste_inakt:active{
   color: #fe8a2a;
}

.button, .button_aktiv{
   cursor: pointer;
   font-size: 0.85em;
   text-align: center;
   vertical-align: middle;
   padding: 0em;
   margin: 0.5em 0.3em 0.5em 0.3em;
   display: inline-block;
   transition-property: background-color;
   transition-duration: 0.2s;
}
.button {
   border-color: #606060 #373737 #303030 #606060;
}

.button:hover{
   color: #f7bc5b;
}

.button_aktiv{
   color: #fe8a2a;
   border-color: #303030 #303030 #303030 #303030;
   border-width: 2px;
}
.boxrand{
   -webkit-border-radius: 8px;
   border-radius: 8px;
   border-width: 1px;
   border-style: solid;
   border-color: #707070 #404040 #303030 #707070;
}
.editorbox{
   position: fixed;
   padding: 1em 2em 1em 2em;
   left: 1em;
   top: 0em;
   -webkit-border-radius: 8px;
   border-radius: 8px;
   border-width: 1px;
   border-style: solid;
   border-color: #707070 #404040 #303030 #707070;

}

hr{
   background-color: #f0d0b0; /* Farbe für Opera und Firefox */
   color: #f0d0b0; /* Farbe für Internet Explorer (IE) */
   border: 0;
   height: 1px;
}
.vollbildTaste, .vollbildTaste2{
	box-sizing: border-box;
	position: fixed;
	top: 0.6em;
	right: 1em;
	width: 2em;
	height: 2em;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.25em 1em;
}
.vollbildTaste{
   background-image: url('images/vollbild_auf_mittel.png');
}
.vollbildTaste:hover{
   background-image: url('images/vollbild_auf_dunkel.png');
}
.vollbildTaste2{
   background-image: url('images/vollbild_zu_mittel.png');
}
.vollbildTaste2:hover{
   background-image: url('images/vollbild_zu_dunkel.png');
}
