/* user menu settings */
#dropdown {
    float: right;
    display: block;
    padding: 0 2px;
    width: 50px;
    position: relative;
    cursor: pointer;
    border-left: 2px solid #316690;
    background: #1b4790;
    font-size: 12px;
    color: #ccc;
    font-weight: normal;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
#dropdown:hover {
    color: black;
    background : #ccc;
}

#dropdown.open {
    color: black;
    background : #ccc;
    border-left-color: #6c6d70;
}

#dropdown ul {
    z-index: 100;
    list-style-type: none;
    position: absolute;
    top: 100%;
    left: -2px; /* move content -4px because of container left border */
    width: 170px;
    padding: 2px 0px;
    display: none;
    border-left: 2px solid #ccc;
    background: #fff;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);

}
#dropdown ul li {
    font-size: 12px;
}

#dropdown ul li a {
    text-decoration: none;
    display: block;
    color: black;
    padding: 4px 14px;
}
#dropdown ul li a:hover {
    color: #6fa0e9;
    background: #e7f0f7;
}