#lang-switcher {
    position:absolute;
	top: 8px;
	left: 0px;
	
}

.lang-switcher-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 50px;
    
}

.lang-switcher-list li {
    list-style: none;
    padding: 0 0 .6em 0;
    margin: 0;
    background: rgba(249, 249, 249, .8);
    display: none;
}

#lang-switcher a.current-lang {
    color: #6e6e6e;
	text-decoration: none;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	padding-bottom: 1em;
	display:block;
}

#lang-switcher a.current-lang:after {
	position:absolute;
	font-family: FontAwesome;
	font-size: 14px;
	color: #6e6e6e;
	top:0;
	right:15px;
	content: "\f107";  
}

.lang-switcher-list li a:link {
    color: #6e6e6e;
	text-decoration: none;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	display:block;
}

.lang-switcher-list li a:visited {    	
    color: #6e6e6e;
}

.lang-switcher-list li a:hover {    	
    color: #10a3e4;
}

.lang-switcher-list li a:active {
    color: #10a3e4;
}