/* VM Taiwan - Language Switcher */
.lang-switcher-tw {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 12px;
}
.lang-switcher-tw .lang-current-tw {
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 9px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 3px;
    user-select: none;
    white-space: nowrap;
    background: rgba(0,0,0,0.25);
    font-family: Arial, sans-serif;
}
.lang-switcher-tw:hover .lang-current-tw {
    border-color: #fff;
    background: rgba(0,0,0,0.5);
}
.lang-switcher-tw .lang-options-tw {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #333;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 55px;
    z-index: 9999;
    border-top: 2px solid #c00;
}
/* hover controlled by vm-lang-switcher.js */
.lang-switcher-tw .lang-options-tw li {
    margin: 0;
    padding: 0;
    float: none;
    height: auto;
}
.lang-switcher-tw .lang-options-tw li a {
    display: block;
    padding: 7px 12px;
    color: #fff;
    font-size: 12px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    text-align: center;
}
.lang-switcher-tw .lang-options-tw li a:hover {
    background: #c00;
    color: #fff;
}
.lang-switcher-tw .lang-options-tw li.active-lang-tw {
    display: block;
    padding: 7px 12px;
    color: #f88;
    font-size: 12px;
    font-family: Arial, sans-serif;
    text-align: center;
    cursor: default;
}
