﻿#divLanguage {
    width: 100px;
    height: 28px;
    padding-top: 2px;
    font-weight: bold;
    font-size: 10pt;
    color: white;
    text-align: center;
    cursor: pointer;
    background-color: rgba(0,48,160,0.85);
    border: 1px solid #ccc;
}
#divLanguages {
    width: 100px;
    overflow-y: hidden;
    height: 0px;
    transition: 0.5s;
    position: absolute;
    z-index: 15000;
    background-color: rgba(0,128,224,0.85);
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: none;
    visibility: hidden;
}
#divLanguages > table > tbody > tr > td {
    text-align: center;
    height: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    vertical-align: middle;
    background-color: transparent;
}
#divLanguages > table > tbody > tr > td:hover {
    background-color: rgba(64,192,255,0.85);
}
#divLanguages > table > tbody > tr > td > a {
    color: white;
    text-decoration: none;
    font-size: 10pt;
}