﻿#LanguageSelectionBox {
    position: absolute;
    top: 0px;
    right: 0px;
    /*border:1px solid #777;*/
    width: 100px;
    height: 30px;
    cursor: pointer;
    /*background-color: white;*/
}

    #LanguageSelectionBox::after {
        font-family: 'FontAwesome';
        font-size: 16px;
        content: '\f107';
        line-height: 28px;
        right: 5px;
        top: 0;
        width: 20px;
        text-align: center;
        position: absolute;
        color: #777;
    }

#LanguageOptions {
    position: absolute;
    top: -2px;
    z-index: 1000;
    right: 5px;
    width: 100px;
    /*border-top:none;
    border-left:1px solid #777;
    border-right:1px solid #777;
    border-bottom:1px solid #777;*/
    /*background-color: white;*/
}

    #LanguageOptions ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        float: left;
        width: 100%;
        width: 100px
    }

    #LanguageOptions li {
        padding: 0px;
        float: right;
        list-style: none;
        padding: 0;
        overflow: hidden;
        width: 100%;
        height: 30px;
        line-height: 30px;
        width: 30px;
    }

        #LanguageOptions li span {
            display: inline-block;
            margin-left: 10px;
            /*text-decoration:underline;*/
        }

        #LanguageOptions li.inactive span {
            /* IE 8 */
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            /* IE 5-7 */
            filter: alpha(opacity=50);
            /* Netscape */
            -moz-opacity: 0.5;
            /* Safari 1.x */
            -khtml-opacity: 0.5;
            /* Good browsers */
            opacity: 0.5;
        }

        #LanguageOptions li img {
            width: 100%
        }
/*#LanguageOptions li:hover {
    background-color:#EEE
}*/
