body{
/*background-color: #000070;*/
font-family:'DejaVu Sans',sans-serif;
}
A:link {
color: #000070;
text-decoration: none;
}
A:visited{
color: #333333;
text-decoration: none;
}
A:active, A:hover {
color: #000090;
text-decoration: underline
}

table {
background-color: #D0D6E5;
text-align: left; 
width: 100%;
margin: 0;
padding: 0;
border: 0;
border-collapse: collapse;
border-width: 0;
border-spacing: 0;
}
table td {
vertical-align: top;
padding: 0;
}

/* page header ------------------------------- */
tr.head {
    font-size: 20px;
    color: #eee;
    background-color: #000060;

}
tr.head td {
    padding: 4px;
}


table.menu td {
vertical-align: middle;
text-indent: 30px;
}

table.dialog td {
background-color: #DDDDDD;
vertical-align: middle;
}


#sidebar {
    position: absolute;
    width: 250px;
    left: 0px;
    transition: left 0.5s ease-out;
}

#mapWrapper {
    transition: left 0.5s ease-out;
}

.map-button-container {
    margin-top: 81px;
    margin-left: 11.5px;

    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.map-button {
    /*border: 2px solid ;*/
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.3);
    border-radius: 2px;
    height: 32px;
    width: 32px;
    background-color: white;
    z-index: 800;
}


table.tool {
    width: 250px;
}

table.tool td {
    height: 32px;
    padding-left: 5px;
    vertical-align: middle;
}

table.tool tr.category td {
    height: 40px;
    text-align: left;
    background-image:url(menu_background.png);
    margin-top: 5px;
    margin-bottom: 5px;
}
table.tool tr.category td:nth-child(1)  {
    width: 40px;
}
table.tool tr.category td:nth-child(2)  {
    border-radius: 0px 20px 20px 0px;
}
table.tool tr.category td:nth-child(3)  {
    width:2px;
    opacity: 0;
}


table.entries td {
    padding-left: 20px;
    height: 26px;
}

#editors, #router, #dirs, #website {
    transition: height 0.5s ease-out;
    height: 0px;
    overflow: hidden;
}

.sidebar {
    left: -10px;
}



/* Dialog ============================================================================================*/

.dlg-frame {
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: #000070;
    background-color: #000070;
    padding-top: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.35);
}

.dlg-head {
    color: #D0D6E5;
    background-color: #000070;
    padding-bottom: 5px;
    padding-left: 10px;

    display: flex;
    justify-content: space-between;
}

.dlg-close {
    padding-right: 5px;
}

.dlg-subhead {
    background-color: #A3B1CC;
    color: #000070;
    padding: 5px 10px;
}

.dlg-content {
    background-color: #D0D6E5;
    padding: 5px 10px;
}

.dlg-foot {
    background-color: #D0D6E5;
    padding: 5px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}