#box {
    position: relative;
    top:1px;
    height: 100%;
    border:1px solid #000000;
    background: #cccccc;
    width:100%;
}

.columnLeft {
    position: absolute;
    top:0px;
    bottom:0px;
    width: 199px;
    background: #cccccc;
    font-family: Arial, Helvetica, sans-serif;
    overflow-y: auto;
    left:0px;
    border-right:1px solid #000000;
}

#map {
    margin-left: 200px;
    overflow: hidden;
}

.listTitle {
    height: auto;
    width:auto;
    background: #EEEEEE;
    margin: 2px;
    padding: 5px;
}

.pop_up_title
{
    font-weight:bold;
    font-size:1.1em;
    text-align: center;
}

.popup_table {
    width: 90%;
    margin: 5px
}

.pop_up_header
{
    text-align: center;
    margin-top:3px;
    margin-bottom:4px;
}

.pop_up_footer
{
    text-align: center;
    margin-top:3px;
    margin-bottom:4px;
}

#nameList {
    height: auto;
    width: auto;
    list-style-type: none;
    margin: 8px;
    padding: 2px;
}

.selectList {
    width: 198px;
    padding: 6px;
}

#nameList li:hover {
    cursor: pointer;
    background-color: skyblue;
}

#legendList {
    padding: 5px;
}

#flagList {
    padding: 5px;
}
.loader {
    border: 10px solid silver;
    border-top: 10px solid gray;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    bottom: 20px;
    left: 75px;
}
@keyframes spin{
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg);}
    100% { -webkit-transform: rotate(360deg);}
}


#tempMap {
    width: 80px;
    height: 80px; /*icon-layer picture size*/
    visibility: hidden;
}


.dot {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    display: inline-block;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

#windbarbs {
    font-size:14px;
    margin: 6px 0 10px 10px;
    margin-bottom: 10px;
}

#infoModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    /*   background-color: rgb(0,0,0); /* Fallback color */
    /*    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    padding-top: 20px;
    padding-bottom: 20px;
}

.modalContent {
    margin: auto;
    border: 1px solid #888888;
    width: 90%;
    height: 80%;
    background-color: rgb(238, 238, 238);
}

