/* General Color Config   #e9f0f8;    */
html, body {
    background:         #2b4906;
    color:              #000000;
}

a:link, a:visited {
  color:                #551010;
  text-decoration:      none;
}

.page_title {
  position:             absolute;
  top:                  0px;
  width:                99vw;
  height:               85px;
  z-index:              0;
}

h1.title, a.title {
  color:                #FFFFFF;
  font-weight:          bold;
  text-decoration:      none;
  text-align:           center;
}

.page_logo {
  position:             absolute;
  top:                  5px;
  width:                200px;
  height:               80px;
  z-index:              0;
}

.page_topright {
  position:             absolute;
  top:                  5px;
  right:                5px;
  color:                #FFFFFF;
  font-weight:          bold;
  text-align:           right;
  width:                200px;
  height:               80px;
  z-index:              0;
}

.page_footer {
  position:             absolute;
  bottom:               0px;
  width:                99vw;
  height:               25px;
  color:                #FFFFFF;
  text-align:           right;
  font-size:            x-small;
  font-weight:          bold;
  z-index:              0;
}

.page_menu {
  position:             absolute;
  top:                  85px;
  left:                 0px;
  width:                170px;
  z-index:              0;
}

.page_content {
/*  background-color:     #816666;*/
  background:           #F8F4E9;
  position:             absolute;
  top:                  85px;
  bottom:               25px;
  left:                 180px;
  right:                10px;
  width:                calc(100% - 190px);
  height:               calc(100% - 110px);
  overflow:             auto;
  z-index:              0;
}

table.login {
  background:           rgb(37, 52, 106, 0.5);
  position:             absolute;
  top:                  20px;
  left:                 20px;
  overflow:             auto;
  border-spacing:       10px;
  z-index:              1;
}

table.login td {
  color:                #2b4906;
  vertical-align:       middle;
  text-align:           left;
  font-size:            large;
  font-weight:          bold;
  height:               50px;
}

table.login th {
  color:                #ffffff;
  vertical-align:       middle;
  text-align:           left;
  font-size:            x-large;
  font-weight:          bold;
  background:            #2b4906;
}

table.tab_content_level_1 {
  border:               0px;
  padding:              5px;
  border-spacing:       10px;
  width:                100%;
}

table.tab_content_level_1 th {
  color:                #FFFFFF;
  vertical-align:       middle;
  text-align:           left;
  font-size:            xx-large;
  font-weight:          bold;
  background:           #2b4906;
}

table.tab_content_level_1 td {
  vertical-align:       top;
}

table.tab_content_level_2 {
  border:               0px;
  border-spacing:       0px;
  width:                100%;
}
table.tab_content_level_2 th {
  color:                #FFFFFF;
  vertical-align:       middle;
  /* text-align:           center; */
  font-weight:          bold;
  font-size:            large;
  background:           #2b4906;
  position:             sticky;
  top:                  10px;
}

table.tab_content_level_2 td {
  font-family:          monospace;
  font-size:            12px;
  border-bottom:        2px solid #551010;
  padding:              5px;
}

table.tab_content_level_2 tr:hover td {
  background:           #ffffff;
  color:                #551010;
}

table.tab_content_level_2a {
  border:               0px;
  border-spacing:       10px;
  width:                100%;
}
table.tab_content_level_2a th {
  color:                #FFFFFF;
  vertical-align:       middle;
  text-align:           center;
  font-weight:          bold;
  font-size:            large;
  background:           #2b4906;
}

table.tab_content_level_2a td {
  font-size:            14px;
  padding:              5px;
}

/* Style-Definition für Overlay */
.page_overlay {
	position: absolute;
	top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  background: #00000080;
	transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.page_overlay:target {
    visibility: visible;
    opacity: 1;
  }

.page_overlay_cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}

.page_overlay_popup {
	margin: 75px auto;
	padding: 10px;
  background: #F8F4E9;
	border: 2px solid #551010;
	width: 800px;
	box-shadow: 0 0 50px #00000080;
  position: relative;
  z-index: 5;
}

.page_overlay_content {
    max-height: 800px;
    overflow: auto;
    z-index: 5;
  }

.loghighlight {
  color:                #FFFFFF;
  font-weight:          bold;
  background:           #2b4906;
}

/* https://cssbuttoncreator.com/ */
.button {
  background: #ABABAB;
  background-image: -webkit-linear-gradient(top, #ABABAB, #0C0C0C);
  background-image: -moz-linear-gradient(top, #ABABAB, #0C0C0C);
  background-image: -ms-linear-gradient(top, #ABABAB, #0C0C0C);
  background-image: -o-linear-gradient(top, #ABABAB, #0C0C0C);
  background-image: linear-gradient(to bottom, #ABABAB, #0C0C0C);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  height: 60px;
  line-height: 60px;
  color: #ffffff;
  font-family: monospace;
  width: 400px;
  font-size: 25px;
  font-weight: 100;
  padding: 0px;
  border-style: null;
  border-color: solid;
  border-width: 0;
  border-color-hover: solid;
  border-style-hover: null;
  border-width-hover: 0;
  text-shadow: 1px 1px 20px #000000;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  background: #C8C8C8;
  background-image: -webkit-linear-gradient(top, #C8C8C8, #2b4906);
  background-image: -moz-linear-gradient(top, #C8C8C8, #2b4906);
  background-image: -ms-linear-gradient(top, #C8C8C8, #2b4906);
  background-image: -o-linear-gradient(top, #C8C8C8, #2b4906);
  background-image: linear-gradient(to bottom, #C8C8C8, #2b4906);
  border-color: solid;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  text-decoration: none;
}


/*Style-Definition für die First-Level-Navigation*/
DIV.fstLevel a, DIV.fstLevel a:visited
{
TEXT-DECORATION: none;
display: inline-block;
WIDTH: 150px;
height: 30px;
PADDING: 3px;
MARGIN: 5Px;
FONT-FAMILY: verdana, arial, helvetica;
FONT-SIZE: 14px;
FONT-WEIGHT: bold;
TEXT-ALIGN: left;
line-height: 30px;
COLOR: #404040;
background-color: #F8F4E9;
}
/*Style-Definition für die First-Level-Navigation bei Mouse-Over*/
DIV.fstLevel a:hover
{
COLOR: #FF0000;
}
/*Style-Definition für die First-Level-Navigation bei aktivem Link*/
DIV.fstLevelActive a, DIV.fstLevelActive a:visited
{
TEXT-DECORATION: none;
DISPLAY: block;
WIDTH: 150px;
height: 30px;
PADDING: 3px;
MARGIN: 5Px;
FONT-FAMILY: verdana, arial, helvetica;
FONT-SIZE: 14px;
FONT-WEIGHT: bold;
TEXT-ALIGN: left;
line-height: 30px;
TEXT-TRANSFORM:uppercase;
COLOR: #FFFFFF;
BACKGROUND-COLOR: #FF0000;
}

/*Style-Definition f�r die Second-Level-Navigation*/
DIV.secLevel a, DIV.secLevel a:visited
{
TEXT-DECORATION: none;
DISPLAY: block;
WIDTH: 150px;
height: 30px;
line-height: 30px;
PADDING: 3px;
MARGIN: 5Px;
FONT-FAMILY: verdana, arial, helvetica;
FONT-SIZE: 12px;
FONT-WEIGHT: normal;
TEXT-ALIGN: right;
COLOR: #000000;
BACKGROUND-COLOR: #CCCCCC;
}
/*Style-Definition f�r die Second-Level-Navigation bei Mouse-Over*/
DIV.secLevel a:hover
{
COLOR: #FF0000;
FONT-WEIGHT: bold;
BACKGROUND-COLOR: #FFFFFF;
}
/*Style-Definition f�r die Second-Level-Navigation bei aktivem Link*/
DIV.secLevelActive a, DIV.secLevelActive a:visited
{
TEXT-DECORATION: none;
DISPLAY: block;
WIDTH: 150px;
height: 30px;
line-height: 30px;
PADDING: 3px;
MARGIN: 5Px;
FONT-FAMILY: verdana, arial, helvetica;
FONT-SIZE: 12px;
FONT-WEIGHT: bold;
TEXT-ALIGN: right;
COLOR: #FFFFFF;
BACKGROUND-COLOR: #FF0000;
}
