html,body { 
    margin:0px; 
    height:100%; /* this is the key! */ 
}   

/* default is canvas top left, info top right
   but this is changed for phones
*/ 
#id_mapcanvas {
    width: 65%;
    height: 100%;
    float: left;
    /*border: 1px solid #666;*/
}
#id_infopanel {
    /*
    margin: 1em;
    padding-left: 1em;
    border: 1px solid #666;
    */
    width: 30%;
    height: 70%;
    float: right;
    padding-right: 0em;
}
#id_cmdpanel {
    width: 30%;
    height: 100%;
    float: bottom;
    padding-right: 0em;
}
#footer {
    clear:both;
    border-top: 1px solid #666; 
    /*
    border: 1px solid #666; 
    */
    padding: 1em 
}

.plabel {
     color: red;
     background-color: white;
font-family: "Lucida Grande", "Arial", sans-serif;
font-size: 10px;
font-weight: bold;
text-align: center;
width: 40px;    
border: 2px solid black;
white-space: nowrap;
}

.navnlabel {
     color: red;
     background-color: white;
font-family: "Lucida Grande", "Arial", sans-serif;
font-size: 10px;
font-weight: bold;
text-align: center;
border: 2px solid black;
white-space: nowrap;
}


 .delete-menu {
        position: absolute;
        background: white;
        padding: 3px;
        color: #666;
        font-weight: bold;
        border: 1px solid #999;
        font-family: sans-serif;
        font-size: 12px;
        box-shadow: 1px 3px 3px rgba(0, 0, 0, .3);
        margin-top: -10px;
        margin-left: 10px;
        cursor: pointer;
      }
      .delete-menu:hover {
        background: #eee;
      }




/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

.tab button.disabled {
    disabled: true;
}



/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
