.location_selector_container 
{
    position: relative;
    margin: 1px;
    width: 100%;
}
.location_selector_container * 
{
    transition-property: all;
}
ul.location_selector 
{
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    width: 300px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    border: thin solid #333;
    background-color: white;
    z-index: 100;
}
ul.location_selector
{
    width: 100%;
}
ul.location_selector li
{
    list-style-type: none;
    padding: 5px;
    text-align: center;
}
ul.location_selector li:nth-child(even)
{
    list-style-type: none;
    background-color: #DDD;
}
ul.location_selector li a
{
    text-decoration: none !important;
    color: inherit;
    display: block;
}
ul.location_selector li:hover
{
    background-color: #FF7400;
    color: #fff;
}
.off
{
    display: none;
}
.on
{
    display: block;
}