/* ---------------- main style for all Pages ----------------- */

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-Regular.ttf") format('truetype');
}
@font-face {
    font-family: "OpenSans-SemiBold";
    src: url("fonts/OpenSans-SemiBold.ttf") format('truetype');
}
@font-face {
    font-family: "OpenSans-Bold";
    src: url("fonts/OpenSans-Bold.ttf") format('truetype');
}

/* Some root variable definitions: */
:root {
    --width-left-menu: 261px;
}

* {
    padding:0px;
    margin:0px;
}
.clear {
    clear:both;
}
.cent {
    text-align:center;
}
.sml {
    font-size:10px;
    line-height:normal;
}
.bld {
    font-weight:bold;
}
.left {
    float:left;
}
.right {
    float:right;
}
.nobrd {
    border:none;
}
.fieldsetmargin {
    border:none;
    margin-top:5px;
    margin-bottom:5px;
}
.vtop {
    vertical-align:top;
}
.hid {
    visibility:hidden;
}
.inputborder {
    border:1px solid #888888;
}
.inputborder.focused {
    border:1px solid #4E647E;
    box-shadow:0px 1px 4px rgba(0, 0, 0, 0.4) inset;
    color:#000000;
}
html {
    overflow:hidden;
}
body {
    background:#ccc;
    font:14px "OpenSans", Helvetica,Arial,sans-serif;
    color:#333;
}
a {
    color:inherit;
}
input {
    font:14px "OpenSans", Helvetica,Arial,sans-serif;
    line-height:1.3em;
}
textarea {
    font:14px "OpenSans", Helvetica,Arial,sans-serif;
    line-height:1.3em;
}
#main {
    height:100%;
    position:relative;	
    overflow-x:hidden;
    overflow-y:auto;
    line-height:1.5em;
}
#main a {
    color:#40779E;
}
#main h1 {
    text-transform:uppercase;
    margin:30px 0px 25px 0px;
    display:inline-block;
    background:#002557;
    padding:8px 6px 8px 6px;
    font-size:25px;
    font-weight:400;
    color:#fff;
}
#main h2 {
    padding:0px 6px 0px 6px;
    text-transform:uppercase;
    margin:25px 20px 20px 0px;
    color:#666666;
}
#main h2.toggler {
    padding:10px;
    background-color:#A4AEB8;
    cursor:pointer;
}
#main h3 {
    padding: 0px 0px 2px 0px;
}
#main ul.reg {
    list-style-position:outside;
    list-style-type:square;
    margin:0px 0px 20px 22px;
    color:#000000;
}
#main ul.number {
    list-style-position:outside;
    list-style-type:decimal;
    margin:0px 0px 20px 22px;
    color:#000000;
}
#main li.reg {
    position: relative;
}
#main li.reg input {
    position: absolute;
    top: 3px;
    left: 170px;
}

#main input {
    height:16px;
    color:#000000;
    width:400px;
    vertical-align:middle;
    border:1px solid #4E647E;
    padding:0px 4px 0px 4px;
    background:#eeeeee;
}
#main input.checkboxwithlabel {
    /* needs label tag as well which is associated with 'for' */
    width:auto;
    margin-right:4px;
    vertical-align:middle;
    position: relative;
    top: -1px;
}
#main p {
    margin:0px 14px 16px 0px;
}
#main table {
    border-collapse: collapse;
    border:1px solid #000000;
}
#main table.nobrd {
    border:none;
}
#main table td {
    border:1px solid #000000;
    padding:5px;
}
#main table td.nobrd {
    border:none;
    padding:0px;
}
#main table th {
    border:1px solid #000000;
    background:#4E647E;
    color:#ffffff;
    font-weight:bold;
    padding:3px;
}
#main table th.htw {
    background:#bf7414;
}
#main table td.blue {
    background:#4E647E;
    color:#ffffff;
    font-weight:bold;
}
#main table td.klapp  {
    padding-left:25px;
    font-size:13px;
    width:160px;
    vertical-align:top;
}
#main table td.klapp span {
    background:url("images/sprites.png") no-repeat -267px 2px;
    position:absolute;
    left:8px;
    height:18px;
    width:18px;
    display:none;
}
#main table p img {
    width:15%;
    margin-right:3px;
    margin-left:3px;
}
#main table p {
    margin:0px 0px 0px 0px;
}
#main table fieldset input {	/* intend */
    margin-left:20px;
}
.grid-container-lecturehall {
    width: 100%;
    max-width: 812px;
    display: grid;
    grid-template-columns: 140px 55px 55px 165px 240px 310px;
    display: -ms-grid;
    -ms-grid-columns: 140px 55px 55px 165px 240px 310px;
}
.grid-header {
    background: #4E647E;
    font-weight: bold;
    color: #ffffff;
    padding: 6px;
    /* header always visible even when grid scrolled down */
    position: sticky;
    top: 0px;
    z-index: 1;
}
.grid-row-odd {
    background: #fff;
    padding: 6px;
}
.grid-row-odd img {
    width: 55px;
}
.grid-row-even {
    background: #ddd;
    padding: 6px;
}
.grid-row-even img {
    width: 55px;
}
.grid-3col-2row {
    display: grid;
    grid-template-columns: 55px 55px 55px;
    grid-template-rows: 55px 55px;
    display: -ms-grid;
    -ms-grid-columns: 55px 55px 55px;
    -ms-grid-rows: 55px 55px;
}
.grid-admin-common {
    display: grid;
    grid-template-columns: 635px 120px;
    grid-row-gap: 10px;
}
.grid-child-border:nth-child(n+3) {
    padding-top: 10px;
    border-top: 1px dotted #393939;
}
#main input.updatebutton {
    width:120px;
    height:30px;
    cursor: pointer;
    float: right;
}
#main div.trenn {
    height:1px;
    margin-bottom:21px;
    border-top:1px dotted #ccc;
    margin-top:21px;
}
#portal-wrapper {
    border:1px solid #ffffff;
    background:#ffffff;
    overflow:hidden;
    position:relative;
}
#portal-top {
    height:100px;
    background:#fff url('images/border-main.png') repeat-x 0px 94px;
}
#tu-logo {
    width:40px;
}
#navigator-logo {
    display:block;
    position:absolute;
    left:20px;
    top:20px;
    background:url('images/logo2_neu.png') no-repeat;
    text-indent:-999999px;
    height:50px;
    width:141px;
}
#portal-breadcrumbs {
    height:40px;
    padding:0px 20px 0px 20px;
    border-bottom:10px solid #4E647E;
    position:relative;
}
#portal-breadcrumbs a {
    color:#666;
    display:inline-block;
    text-transform: uppercase;
    font:13px/32px "OpenSans-SemiBold", Helvetica,Arial,sans-serif;
    text-decoration:none;
    height:24px;
    padding-top:2px;
    border-bottom:none;
}
#portal-breadcrumbs a.cur {
    color:#002557;
    border-bottom:6px solid #4E647E;
}
#portal-breadcrumbs a:hover {
    color:#002557;
    border-bottom:6px solid #4E647E;
}
#portal-breadcrumbs span.arrow {
    height:100%;
    display:inline-block;
    vertical-align:top;
    width:25px;
    margin-right:15px;
    background:url('images/breadcrumb_arrow.png') no-repeat right center;
}
a#home_house {
    padding-top:6px;
    border-bottom:none;
}
#home_house img {
    vertical-align:top;
    padding-top:5px;
    width:17px;
    height:17px;
}
#portal-globalnav {
    position:absolute;
    left:var(--width-left-menu);
    height:94px;
    min-width:800px;
    border-left:1px solid #eee;
}
#portal-globalnav div {
    float:left;
    height:100%;
    width:130px;
    box-sizing:border-box;
    border-right:1px solid #eee;
    line-height:100px;
}
#portal-globalnav div a {
    text-transform:uppercase;
    display:block;
    padding-top:40px;
    width:100%;
    height:48px;
    text-align:center;
    text-decoration:none;
    color:#666;
    line-height:normal;
    font-size:15px;
    border-bottom:none;
}
#portal-globalnav div.sel a {
    color:#002557;
    border-bottom:6px solid #002557;
}
#portal-globalnav div a:hover {
    color:#002557;
    border-bottom:6px solid #002557;
}
#portal-main {
    position:relative;
    overflow:hidden;
}
#language_div:before {
    content: "";
    background: #002557 url("images/sprites.png") no-repeat -60px -25px;
    float: left;
    margin: 0;
    width: 25px;
    height: 25px;
    padding: 0;
    margin-right: 9px;
}
#language_div {
    position:absolute;
    top:0px;
    right:0px;
    padding:6px;
    cursor:pointer;
    background: #002557;
}
#language_div #sprache {
    height:100%;
    color:#fff;
    line-height:25px;
    display: inline;
}
#language_div #sprache_box {
    position:absolute;
    right:0px;
    top:37px;
    padding:6px;
    padding-top:12px;
    border:1px solid #002557;
    background:#fff;
    z-index:9100;
    width:130px;
    text-align:left;
    box-shadow:0 1px 5px #999;
    cursor:default;
    display:none;
}
#language_div #sprache_box img {
    display:inline-block;
    vertical-align:middle;
    margin-right:5px;
    margin-bottom:8px;
    height:20px;
}


#routing-menu {
    width:var(--width-left-menu);
    height:100%;
    border-right:1px solid #cccccc;
    position:absolute;
    background:#ffffff;
    z-index:3000;
}
#menu_routing_toggle {
    position:absolute;
    right:-24px;
    top:0px;
    width:20px;
    height:35px;
    background:#f5f5f5 url("images/sprites.png") no-repeat 2px 10px;
    cursor:pointer;
    padding:2px 0px 0px 2px;
    font-size:14px;
    font-weight:bold;
    color:#ffffff;
    border-right:1px solid #5498c7;
    border-bottom:1px solid #5498c7;
    box-shadow:0 1px 5px #999999;
}
#menu_routing_cont {
    padding:0px;
    width:var(--width-left-menu);
    height:100%;
    /*	overflow-x:hidden;
            overflow-y:auto;*/
}
#menu_routing_cont h5 {
    text-transform:uppercase;
    font-size:14px;
    line-height:14px;
    font-weight:bold;
    padding:8px 5px 8px 5px;
    margin:6px;
    background:#eee;
    color:#002557;
}
#transport_select input {
    width:36px;
    height:24px;
    border:none;
    float:left;
    margin-right:7px;
    cursor:pointer;
    color:transparent;
}
#transport_select input#transport_car {
    background:#ffffff url("images/sprites.png") no-repeat 0px -59px;
}
#transport_select input#transport_car.sel {
    background-color:#dddddd;
}
#transport_select input#transport_bike {
    background:#ffffff url("images/sprites.png") no-repeat -45px -59px;
}
#transport_select input#transport_bike.sel {
    background-color:#dddddd;
}
#transport_select input#transport_foot {
    background:#ffffff url("images/sprites.png") no-repeat -86px -59px;
}
#transport_select input#transport_foot.sel {
    background-color:#dddddd;
}
#transport_select input#transport_blind {
    background:#ffffff url("images/sprites.png") no-repeat -182px -59px;
}
#transport_select input#transport_blind.sel {
    background-color:#dddddd;
}
#transport_select input#transport_wheelchair {
    background:#ffffff url("images/sprites.png") no-repeat -124px -59px;
}
#transport_select input#transport_wheelchair.sel {
    background-color:#dddddd;
}
#transport_select input#advanced_routing {
    background:#ffffff url("images/sprites.png") no-repeat -163px -59px;
    border: 1px solid #999;
}
div#advanced_routing_options {
    padding: 5px;
    width: 198px;
    position:relative;
    top: -1px;
    background-color: #dddddd;
    overflow:hidden;
    display:none;
    font-size:12px;
}
#menu_routing_cont textarea {
    height:50px;
    width:100%;
    color:inherit;
    border:none;
    padding:2px 4px 2px 4px;
    background:none;
    resize:none;
}
#menu_routing_cont #fromhere {
    background:#f5f5f5 url("images/sprites.png") no-repeat -32px -27px;
    height:22px;
    width:22px;
    border:1px solid #cccccc;
    cursor:pointer;
    margin-left:5px;
    /* hide the value text to get accessible image buttons: */
    color: transparent;
}
#menu_routing_cont button.big {
    display:block;
    height:40px;
    font-weight:bold;
    background: #002557;
    padding:0px 5px 0px 5px;
    color:#ffffff;
    border:1px solid #cccccc;
    cursor:pointer;
}
#menu_routing_cont #loading_animation {
    float:right;
    display:none;
    margin:13px 20px 0px 0px;
}
#menu_routing_cont #route_info {
    margin-top:20px;
}
#routingsearch_results {
    background:none;
    border:none;
    margin:0px;
    padding:4px 0px 4px 0px;
    position:absolute;
    width:180px;
    background:#ffffff;
    box-shadow:0px -3px 4px rgba(0, 0, 0, 0.4) inset;
    border-bottom:1px solid #4E647E;
    border-right:1px solid #4E647E;
    border-left:1px solid #4E647E;
    display:none;
}
#routingsearch_results p {
    line-height: 22px;
    color:#888888;
    cursor:pointer;
    padding:0px 4px 0px 4px;
}
#routingsearch_results p.hovered {
    background:#4E647E;
    color:#ffffff;
    font-weight:bold;	
}
#route_instructions ol {
    counter-reset: item;
    padding-left: 10px;
}
#route_instructions li {
    display: block;
}
#route_instructions li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
}

#moreinfo {
    padding-left: 12px;
    /*	display: none;*/
}


#portal-menu_left {
    width:var(--width-left-menu);
    height:100%;
    float:left;
    border-right:1px solid #cccccc;
    position:relative;
    background:#ffffff;
    z-index:3000;
}
#menu_left_toggle {
    position:absolute;
    right:-24px;
    top:0px;
    width:20px;
    height:35px;
    background:#f5f5f5 url("images/sprites.png") no-repeat 2px 10px;
    cursor:pointer;
    padding:2px 0px 0px 2px;
    font-size:14px;
    font-weight:bold;
    color:#ffffff;
    border-right:1px solid #5498c7;
    border-bottom:1px solid #5498c7;
    box-shadow:0 1px 5px #999999;
}
#portal-menu_right {
    width:220px;
    height:100%;
    float:right;
    border-left:1px solid #cccccc;
    position:relative;
    background:#ffffff;
    z-index:3000;
}
#menu_right_toggle {
    position:absolute;
    left:-24px;
    top:0px;
    width:20px;
    height:55px;
    background:#f5f5f5 url("images/sprites.png") no-repeat -17px 30px;
    cursor:pointer;
    padding:2px 0px 0px 2px;
    font-size:14px;
    font-weight:bold;
    border-left:1px solid #5498c7;
    border-bottom:1px solid #5498c7;
    box-shadow:0 1px 5px #999999;
}
#menu_cont_right {
    padding:0px;
    width:220px;
    height:100%;
    overflow-x:hidden;
    overflow-y:auto;
    position:relative;
}
#menu_cont_right h5 {
    text-transform:uppercase;
    width:188px;
    padding:17px 0px 4px 0px;
    margin-left:11px;
    border-bottom:1px dotted #333333;
    color:#333333;
}
#menu_cont_right h6 {
    font:11px "OpenSans-Bold", Helvetica,Arial,sans-serif;
    margin-bottom:2px;
    color:#000000;
}
#menu_cont_right p {
    font-size:10px;
    margin-left:6px;
    float:left;
    margin-right:3px;
    clear:both;
}
#menu_cont_right p img {
    width:20%;
    margin-right:5px;
    margin-left:5px;
}
#menu_cont_right div.p {
    font-size:10px;
    width:110px;
    float:right;	
}
#menu_cont_right div p img {
    width: 55px;
}
#menu_cont {
    padding:0px;
    width:100%;
    height:100%;
    overflow-x:hidden;
    overflow-y:auto;
}
#menu_cont h5 {
    text-transform:uppercase;
    font-size:14px;
    line-height:14px;
    font-weight:bold;
    padding:8px 5px 8px 5px;
    margin:6px;
    background:#eee;
    color:#002557;
}

#menu_cont ul {
    list-style: none outside none;
}
#menu_cont ul a {
    color:#333333;
    display:block;
    padding:4px 0px 4px 28px;
    text-decoration:none;
    background-image:url("images/big_emptynode_open.gif");
    background-repeat:no-repeat;
    background-position:left center;
    position:relative;
    line-height:17px;
}
#menu_cont li.closed ul {
    display:none;
}
#menu_cont ul a:hover {
    background-color:#CCD6DF;
}
#menu_cont li.closed a {
    background-image:url("images/big_node_close.gif");
}
#menu_cont li.open a {
    background-color:#CCD6DF;
    background-image:url("images/big_node_open.gif");
}
#menu_cont li.open a:hover {
    background-color:#A4AEB8;
}
#menu_cont li a.focused {
    background-color:#CCD6DF;
}
#menu_cont li ul.submenu1 a {
    margin-left:11px;
    background-image:url("images/little_emptynode_close.gif");
}
#menu_cont li ul.submenu1 li.closed a {
    background-image:url("images/little_node_close.gif");
}
#menu_cont li ul.submenu1 li.open a {
    background-color:#A4AEB8;
    background-image:url("images/little_node_open.gif");
}
#menu_cont li ul.submenu1 li.open a:hover {
    background-color:#0B2A51;
    color:#ffffff;
}
#menu_cont li ul.submenu1 li a.focused {
    background-color:#A4AEB8;
}
#menu_cont li ul.submenu1 li ul.submenu2 a {
    margin-left:22px;
    background-image:url("images/little_emptynode_close.gif");
}
#menu_cont li ul.submenu1 li ul.submenu2 li a.focused {
    background-color:#0B2A51;
    color:#ffffff;
}
#portal-footer {
    background:#0B2A51;
    padding:4px 14px 4px 14px;
    height:16px;
}
#portal-footer a {
    color:#ffffff;
    margin-right:14px;
    display:inline-block;
    text-decoration:none;
    font-weight:bold;
}
#portal-footer a:hover {
    text-decoration:underline;
}

#searchdiv {
    position:absolute;
    right:20px;
    top:6px;
    margin-top:1px;
    background:none;
}
#searchdiv div {
    float:right;
    margin-left:5px;
    color:#999999;
    position:relative;
    border:none;
}
span#searchboxtitle {
    font:14px/24px "OpenSans-SemiBold", Helvetica,Arial,sans-serif;
    margin-right:10px;
}
div#searchborder {
    z-index:80;
    float:none;
    margin:0px;
    padding:0px;
    position:relative;
    background:none;
    border:1px solid #888888;
}
div#searchborder img#sb_loading_animation{
    position:absolute;
    right:3px;
    top:3px;
    display:none;
}

#searchdiv div.focused {
    border:1px solid #4E647E;
    box-shadow:0px 1px 4px rgba(0, 0, 0, 0.4) inset;
    color:#000000;
}
#searchdiv input {
    height:22px;
    color:inherit;
    width:288px;
    vertical-align:top;
    border:none;
    padding:0px 4px 0px 4px;
    background:none;
}
input#search_assist {
    position:absolute;
    left:1px;
    top:1px;
    color:#cccccc;
    z-index:2;
}
div#search_results {
    background:none;
    border:none;
    float:none;
    margin:0px;
    padding:4px 0px 4px 0px;
    width:296px;
    position:absolute;
    left:-1px;
    top:20px;
    background:#ffffff;
    box-shadow:0px -3px 4px rgba(0, 0, 0, 0.4) inset;
    border-bottom:1px solid #4E647E;
    border-right:1px solid #4E647E;
    border-left:1px solid #4E647E;
    display:none;
    font-size:14px;
    line-height:24px;
}
#search_results p {
    color:#888888;
    cursor:pointer;
    padding:0px 4px 0px 4px;
}
#search_results p.hovered {
    background:#4E647E;
    color:#ffffff;
    font-weight:bold;	
}
#search_results div.head {
    position:static;
    float:none;
    background:#dddddd;
    color:#000000;
    font-size:9px;
    margin:0px;
    padding-left:7px;
}
div#searchdiv a#search_more {
    float:right;
    border:none;
    padding:0px;
    margin-left:3px;
    width:26px;
    height:25px;
    background:url("images/sprites.png") no-repeat 0px -26px;
}


#fullscreen_toggle {
    position:absolute;
    top:0px;
    background:#f5f5f5 url("images/sprites.png") no-repeat -36px 2px;
    width:22px;
    height:22px;
    cursor:pointer;
    z-index:9000;
    border-left:1px solid #5498c7;
    border-bottom:1px solid #5498c7;
    box-shadow:0 1px 5px #999999;
}

#ebenen_selector {
    width:90px;
    height:38px;
    position:absolute;
    right:255px;
    top:10px;
    border:1px solid #5498c7;
    cursor:pointer;
    overflow:hidden;
    color:#265576;
    background:#f5f5f5;
    box-shadow:0 1px 5px #999999;
}
#ebenen_selector h5 {
    font-style:normal;
    font-size:1em;
    text-align:center;
    padding-top:4px;
    padding-bottom:16px;
    line-height:18px;
    font-size:12px;
    background:#f5f5f5 url("images/sprites.png") no-repeat -85px 18px;
}
#ebenen_selector ul {
    list-style: none outside none;
    /*	width:200px;*/
}
#ebenen_selector ul a {
    color:#333333;
    display:block;
    padding:0px 0px 0px 28px;
    text-decoration:none;
    background:url("images/layer_checked.gif") left center no-repeat;
    line-height:17px;
    text-align:left;
    border-top:1px solid #cccccc;
}
#ebenen_selector ul a span {
    padding:3px;
    margin:0px;
    display:block;
    border-left:1px solid #cccccc;
}
#ebenen_selector ul ul {
    padding:0px 0px 0px 28px;
}

div.mapbuttons {
    position:absolute;
    left:275px;
    top:50px;
    z-index:9;
}
#main div.mapbuttons input {
    display:block;
    width:22px;
    height:22px;
    border:1px solid #5498c7;
    box-shadow:0 1px 5px #999999;
    cursor:pointer;
    /* hide the value text to get accessible image buttons: */
    color: transparent;
}
div.mapbuttons input#plus {
    background:#f5f5f5 url("images/sprites.png") no-repeat -217px 0px;
    margin-bottom:5px;
}
div.mapbuttons input#minus {
    background:#f5f5f5 url("images/sprites.png") no-repeat -236px 0px;
    margin-bottom:20px;
}
div.mapbuttons input#loc {
    background:#f5f5f5 url("images/sprites.png") no-repeat -32px -27px;
    margin-bottom:20px;
}
#main div.mapbuttons input.levelselect {
    background: #f5f5f5;
    color:#5498c7;
    margin-bottom:5px;
}
#main div.mapbuttons input.levelselect.selected {
    background: #ddd;
}

#galerie img {
    position:absolute;
    box-shadow:0 1px 5px #999999;
    max-width:95%;
}
#galerie_thumbs {
    display:none;
    height:70px;
    position:relative;
    margin-bottom:15px;
}
#galerie_thumbs img {
    position:static;
    height:70px;
    display:inline;
    margin-right:5px;
    border:1px solid #0B2A51;
    cursor:pointer;
}

div.screensots img {
    margin-right:10px;
    margin-bottom:10px;
    box-shadow:0 1px 5px #999999;
    border:1px solid #0B2A51;
}

div.pfeile {
    width:15px;
    height:100%;
    position:absolute;
    z-index:10;
    cursor:pointer;
}

div#main input#searchbox_big {
    height:22px;
    color:#000000;
    width:550px;
    vertical-align:top;
    border:none;
    padding:0px 4px 0px 4px;
    background:none;
}
div#main div#searchborder_big {
    z-index:80;
    float:none;
    position:relative;
    background:none;
    border:1px solid #888888;
}
div#main input#search_assist_big {
    position:absolute;
    top:1px;
    left:1px;
    color:#cccccc;
    height:22px;
    width:560px;
    z-index:2;
    background:none;
    border:none;
}
div#main button#searchbutton {
    width:90px;
    height:24px;
    border:1px solid #000000;
    background:#ffffff;
    display:block;
    cursor:pointer;
}

div#main div p#results_Content li.searchres {
    padding:1px 0px 1px 0px;	
}

a.druckansicht {
    background:url("images/print.gif") no-repeat 0px 2px;
    padding-left:15px;
}

.admin_floatwindow {
    width:90px;
    height:38px;
    position:absolute;
    top:10px;
    border:1px solid #5498c7;
    overflow:hidden;
    background:#f5f5f5;
    box-shadow:0 1px 5px #999999;
    visibility:hidden;
}
.admin_floatwindow div.content {
    visibility:hidden;
    padding:5px;
}
.admin_floatwindow h5 {
    cursor:move;
    color:#5498c7;
    font-style:normal;
    font-size:1em;
    text-align:center;
    padding-top:4px;
    padding-bottom:16px;
    line-height:18px;
    font-size:12px;
    background:#f5f5f5 url("images/sprites.png") no-repeat -85px 18px;
}
.admin_floatwindow div.pin {
    position:absolute;
    right:6px;
    top:6px;
    width:8px;
    height:9px;
    padding-left:1px;
    border:1px solid #000;
    cursor:pointer;	
    display:none;
}
.admin_acgrid {
    display: grid;
    grid-template-columns: 300px 200px 550px;
    grid-template-rows: 50px 50px 200px;
    grid-column-gap: 20px;
}
.admin_acgrid input {
    width: auto !important;
    margin-right: 10px;
}
.admin_acgrid ol {
    padding-left: 38px;
    padding-right: 10px;
    float: right;
    height: 200px;
    width: 115px;
    overflow-y: scroll;
    border: 1px solid lightgray;
}
.fixed_header_table tbody {
    display: block;
    overflow-y: auto;
}
.fixed_header_table thead tr {
    display: block;
}
.fixed_header_table tbody tr:nth-child(odd) {
    background-color: #eee;
}
.fixed_header_table tbody tr:nth-child(even) {
    background-color: #ddd;
}
.admin_actable {
    font-family: monospace;
    border: none !important;
    border-collapse: unset !important;
}
.admin_actable tbody {
    width: 816px;
    height: 568px;
}
.admin_actable tbody tr {
    display: flex;
}
.admin_actable thead tr th {
    border: none !important;
}
.admin_actable tbody tr td {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid black;
}
.actable_logincol {
    width: 20%;
}
.actable_rolecol {
    width: 20%;
}
.actable_rescol {
    width: 60%;
}

#barriere_table textarea {
    width:600px;
    height:50px;
    padding:4px;
    background:#eeeeee;
    border:1px solid #4E647E;
}
#barriere_table input {
    width:600px;
    padding:4px; 
}
#main #eingaenge_table {
    border:none;
    position:relative;
}
#main #eingaenge_table th {
    border:1px solid #4e647e;
}
#main #eingaenge_table td {
    border:1px solid #4e647e;
}
#eingaenge_table input {
    width:auto;
    margin-right:4px;
}
#eingaenge_table img {
    width:261px;
}
#eingaenge_table ul {
    width:240px;
}
#eingaenge_table textarea {
    width:600px;
    height:50px;
    padding:4px;
    background:#eeeeee;
}
#room_details textarea {
    width:600px;
    height:50px;
    padding:4px;
    background:#eeeeee;
    border:1px solid #4E647E;
}
#room_details input {
    width:600px;
    padding:4px; 
}

#lizenz_line {
    position:absolute;
    bottom:0px;
    right: 0px;
    height:20px;
    overflow: hidden;
}
#lizenz_line span {
    color:#ffffff;
    font-size:10px;
    line-height:14px;
    background: #0B2A51;
    padding: 2px 4px 4px 4px;
    float: right;
    display:block;
}
#osm_contrib {
    background: #44444444;
    font: 12px "OpenSans", Helvetica,Arial,sans-serif;
    float: right;
    position: relative;
    top: -18px;
    left: 1px;
}
#osm_contrib_sitemap {
    font: 10px "OpenSans", Helvetica,Arial,sans-serif;
    background: #44444444;
    position: relative;
    top: -10px;
    float: left;
    left: 10px;
}

#mapCanvas {
    background:#f2efe9;
}
#departurestable {
    position:absolute;
    background:#687372;
    display:none;
    padding:4px;
    color:#fff;
    font-size:10px;
    line-height:14px;
    opacity:0.85;
    border:1px solid #fff;
    width: 210px;
}
#infobox {
    position: absolute;
    background:#687372;
    display: none;
    padding: 4px;
    color:#ffffff;
    font-size:10px;
    line-height: 14px;
    opacity: 0.85;
    border: 1px solid #ffffff;
    left:0px;
    top:0px;
}

#ilogo {
    position:absolute;
    left:0px;
    bottom:0px;
    display:block;
}
#ilogo img {
    vertical-align:bottom;
}

/* all we need for the routing contextmenu: */
#routing_contextmenu {
    position:absolute;
    margin: 0;
    padding: 1px;
    list-style: none;
    border: 1px solid #ccc;
    background:#ffffff;
    display:block;
    visibility:hidden;
}
#routing_contextmenu li span {
    display: block;
    text-decoration: none;
    padding: 2px 5px 2px 5px;
    cursor:pointer;
}
#routing_contextmenu li span:hover {
    background:#335EA8;
    color:#fff;
}
/* End routing context-menu */
/* all we need for contextmenu: */
#pic_contextmenu {
    position:absolute;
    left:300px;
    top:300px;
    padding:1px;
    list-style: none;
    border:1px solid #000;
    background:#ffffff;
    display:none;
}
#pic_contextmenu li {
    padding:0px 15px 0px 15px;
    cursor:pointer;
}
#pic_contextmenu li:hover {
    background:#335EA8;
    color:#fff;
}
/* End context-menu */

/* for the routinginstructions */
#route_instructions {
    margin-top:10px;
}
#route_instructions th td {
    padding-bottom:4px;
    padding-right:3px;	
}
#route_instructions td.pic div {
    background-image:url("images/sprites.png");
    background-repeat:no-repeat;
    width:25px;
    height:25px;
}
#route_instructions th.txt{
    padding-right: 10px;
    overflow: hidden;
    text-align: left;
}
#route_instructions td.txt{
    padding-right:10px;
    padding-left:15px;
    overflow:hidden;
}
#route_instructions td.txt div {
    width:110px;
}
#route_instructions tr.instruction td{
    padding-top: 3px;
    padding-bottom: 3px;
}
td.pic div.continue{
    background-position:-2px -88px;
}
td.pic div.slight_right{
    background-position:-27px -88px;
}
td.pic div.right{
    background-position:-53px -88px;
}
td.pic div.sharp_right{
    background-position:-83px -88px;
}
td.pic div.sharp_left{
    background-position:-117px -88px;
}
td.pic div.left{
    background-position:-149px -88px;
}
td.pic div.slight_left{
    background-position:-175px -88px;
}
td.pic div.roundabout{
    background-position:-206px -88px;
}
td.pic div.marker_from{
    background-position:-241px -88px;
}
td.pic div.marker_to{
    background-position:-297px -88px;
}
td.pic div.marker_interm{
    background-position:-266px -88px;
}
/* end routinginstructions */


#markerBox {
    position:absolute;
    left:400px;
    top:100px;
    z-index:300;
    margin-top:-60px;
    margin-left:-130px;
    display:none;
}

#markerBox input {
    border:1px solid #4E647E;
    box-shadow:0px 1px 4px rgba(0, 0, 0, 0.4) inset;
    color:#000000;
    background:#fff;
    width:250px;
    padding:2px 4px 2px 4px;
}

#markerBox button {
    position:absolute;
    right:2px;
    top:2px;
    border:0px;
    background:#A4AEB8;
    color:#fff;
    font-size:10px;
    line-height:14px;
    height:18px;
    cursor:pointer;
    border:1px dotted #fff;
}

#logintable {
    margin-bottom:30px;
}
#logintable td {
    border:0 !important;
}
#logintable td input {
    width:200px;
    height:20px;
}
/* Set a style for loginbutton */
button.login {
    background-color: #0B2A51;
    color: white;
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}
button.login:hover {
    opacity: 0.8;
}

/* need to overwrite most styleoptions from "#main input" with !important */
.editinputbutton {
    height: 20px !important;
    width: 20px !important;
    background: transparent url('images/sprites.png') no-repeat -99px -28px !important;
    color: transparent !important;
    border: transparent !important;
    cursor: pointer;
    margin-left: 5px;
}
.removeinputbutton {
    height: 20px !important;
    width: 20px !important;
    background: transparent url('images/sprites.png') no-repeat -133px -28px !important;
    color: transparent !important;
    border: transparent !important;
    cursor: pointer;
    margin-left: 5px;
}

#doorplatecontent table {
    border: 0;
}
#doorplatecontent table td {
    border: 0;
    padding-right: 10px;
}
#doorplatecontent input {
    width: 100%;
    height: auto;
}
#doorplatecontent select {
    width: 104%;
}
#doorplatecontent textarea {
    width: 104%;
}
#doorplateeditor {
    display: grid;
    grid-template-columns: 200px 350px;
    grid-row-gap: 5px;
}
#doorplateeditor input {
    height: auto;
}
#doorplateeditor_generated {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-top: 20px;
}
.dpedit_left {
    grid-column-start: 1;
}
.dpedit_mid {
    grid-column-start: 2;
}
input.dpedit_mid {
    width: auto !important;
}
.dpedit_right {
    grid-column-start: 3;
}
.name_box {
    display: grid;
    grid-template-columns: 200px 350px 50px;
    grid-row-gap: 5px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.function_box {
    display: grid;
    grid-template-columns: 200px 350px 50px;
    grid-row-gap: 5px;
    padding-top: 3px;
    padding-bottom: 3px;  
}

/* Popup for simple information available on click */
/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* the svgs inside the object tags */
.popup object {
    width:50px;
    pointer-events:none;
}
/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 150px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 100;
    bottom: 110%;
    left: 50%;
    margin-left: -75px;
}
/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
.picupload {
    width:295px;
    height:300px;
    background:#eeeeee;
    margin-bottom:15px;
    border:1px solid #dddddd;
    position:relative;
}
.picupload_span {
    position:absolute;
    left:46%;
    top:46%;
    margin-left:-60px;
    color:#bbbbbb;
    font-size:20px;
}
.picupload img {
    display:none;
    position:absolute;
    left:50%;
    top:50%;
}
.picupload_progbar {
    position:absolute;
    left:0px;
    top:0px;
    width:0%;
    height:4px;
    background:#0154A4;
}
.picupload_dropbox {
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
}
#editbox {
    position:absolute;
    background-color:#ddd;
    width:470px;
    z-index: 19;
    box-shadow:3px 5px 3px;
}
#editbox input {
    height:auto;
    width:auto;
    margin: 0px 10px 5px 10px;
}
#editbox label {
    margin: 0px 0px 2px 10px;
}
.draftacceptdenialbox {
    margin-left:25px;
    color:green;
}
.draftacceptdenialbutton {
    width:auto !important;
    height:auto !important;
    margin-left:5px;
}
/* The Close Button (x) */
/* Center the image and position the close button */
.closecontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}
button.close {
    position: absolute;
    right: 25px;
    top: -15px;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    border: none;
    background-color: white;
}
button.close:hover,
button.close:focus {
    color: red;
    cursor: pointer;
}
#main input.savebutton {
    width: 220px;
    height: 30px;
    margin-top: 10px;
    cursor: pointer;
}
#main input.inputbutton {
    width: auto;
    height: 30px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}
/* Popup end */

/* footer stuff */
#privacy-statement {
    text-align: center;
    background-color: #4E647E;
}
#privacy-statement span {
    color: #fff;
}
#privacy-statement p {
    color: #fff;
    padding-left: 20%;
    padding-right: 20%;
}
#privacy-statement input {
    margin: 9px 16px 12px 16px;
    color: #fff;
    background-color: #f00;
    border: none;
    padding: 2px 6px 2px 4px;
    vertical-align: middle;
    cursor: pointer;
}
#survey-hint {
    text-align: center;
    background-color: #e0850b;
    height: 30px;
    padding-top: 10px;
}
#survey-hint span {
    color: #fff;
}
/* footer stuff end */

@media all and (max-width: 1400px){
    span#searchboxtitle {
        display:none;
        /*
        font-size:12px;
        line-height:26px;
        */
    }
}


@media all and (max-width: 1150px){

    #portal-top {
        height:60px;
        background-position:0px 54px;
    }
    #portal-globalnav {
        height:54px;
        left:200px;
    }
    #portal-globalnav div {
        width:100px;
    }
    #portal-globalnav div a {
        height:28px;
        font-size:12px;
        padding-top:20px;
    }
    #navigator-logo {
        top:10px;
        background-size:100px;
    }
    #language_div:before {
        background-size:236px;
        background-position: -35px -16px;
        height: 17px;
    }
    #language_div {
        height:15px;
    }
    #language_div #sprache {
        line-height:15px;
    }
    #language_div #sprache_box {
        top:27px;
        width:120px;
        font-size:12px;
    }
    #language_div #sprache_box img {
        height:15px;
    }
    #portal-breadcrumbs {
        height:35px;
    }
    #portal-breadcrumbs a {
        font-size:12px;
        line-height:24px;
        height:18px;
        padding:7px 0px 7px 0px;
        border-bottom-width:3px;
    }
    #portal-breadcrumbs a.cur {
        border-bottom-width:3px;
    }
    #portal-breadcrumbs span.arrow {
        background-size:6px;
        width:18px;
        margin-right:12px;
    }
    #home_house img {
        padding-top:2px;
    }
    #searchdiv {
        top:3px;
    }
    #searchdiv input {
        width:180px;
        font-size:12px;
    }
    div#search_results {
        width:188px;
        font-size:12px;
        line-height:20px;
    }
}
