/*CSS styles for the map buttons. This is used by both vs_map_standard.php
and vs_map_fullscreen.html*/

/*Parent div holding the outlook dropdown menu*/
.container{
    width: 98px; 
    cursor: pointer;
    text-align: left;
}

/*Dropdown menu div that holds arrow and outlook text*/
.dropDownControl{
    direction: ltr; 
    overflow-x: hidden; 
    overflow-y: hidden;
    text-align: left; 
    position: relative; 
    font-family: Arial, sans-serif; 
    -webkit-user-select: none; 
    font-size: 12px; 
    padding-right: 6px; 
    border-width: 1px; 
    border-style: solid; 
    border-radius: 2px;
    border-image: initial; 
    padding-left: 4px; 
    background-image: initial; 
    background-attachment: initial; 
    background-origin: initial; 
    background-clip: initial; 
    background-color: rgb(255, 255, 255); 
    background-position: initial initial; 
    background-repeat: initial initial;     
    z-index: 2;
}   

/*Small arrow used in the outlook dropdown menu*/
.dropDownArrow{
    -webkit-user-select: none; 
    border-width: 0px; 
    border-style: initial; 
    border-color: initial; 
    border-image: initial; 
    padding: 0px; 
    margin-right: 0px; 
    margin-bottom: 0px; 
    margin-left: 0px; 
    position: absolute; 
    right: 6px; 
    top: 50%;
    margin-top: -2px; 
    width: 7px; 
    height: 4px; 
}

/*Div holding the dropdown items (opens when dropdown clicked)*/
.dropDownOptionsDiv{
    background-color: white; 
    z-index: 0;
    padding-top: 2px; 
    border-right-width: 1px; 
    border-bottom-width: 1px; 
    border-left-width: 1px; 
    border-right-style: solid; 
    border-bottom-style: solid; 
    border-left-style: solid; 
    border-right-color: rgb(113, 123, 135); 
    border-bottom-color: rgb(113, 123, 135); 
    border-left-color: rgb(113, 123, 135); 
    border-radius: 2px;
    border-image: initial; 
    border-top-width: 0px; 
    border-top-style: initial; 
    border-top-color: initial; 
    -webkit-box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px; 
    box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px; 
    position: relative; 
    text-align: left; 
    display: none;
}

/*Div of each dropdown item*/
.dropDownItemDiv{
    font-family: Arial, sans-serif; 
    -webkit-user-select: none; 
    font-size: 13px; 
    padding-top: 2px; 
    padding-right: 5px; 
    padding-bottom: 3px; 
    padding-left: 5px; 
    background-color: rgb(255, 255, 255); 
    color: black; 
}

/*Hover command for divs within dropdown menu*/
.dropDownItemDiv:hover{
    background-color: rgb(220, 220, 220);               
}

.vsButtonOn:hover{
    background: -webkit-linear-gradient(top,rgb(115,190,115),rgb(115,190,115));             
}

.vsButtonOff:hover{
    background: -webkit-linear-gradient(top,rgb(204,102,64),rgb(204,102,64));           
}

.rmButtonOn:hover{
    background: -webkit-linear-gradient(top,rgb(115,190,115),rgb(115,190,115));             
}

.rmButtonOff:hover{
    background: -webkit-linear-gradient(top,rgb(204,102,64),rgb(204,102,64));           
}

/*Hover command for div holding arrow and outlook text and other buttons*/
.dropDownControl:hover, .button:hover{
    background: -webkit-linear-gradient(top,rgb(220,220,220),rgb(220,220,220));
}
