@charset "utf-8";
/* CSS Document */
.LanguageSelect {
	color: #949494;
	display: inline-block;
	line-height: 100%;
	position: relative;
	vertical-align: middle;
	text-align: left;
	font-size: 15px;
	padding: 10px 0;
}
.LanguageSelect .currentLang {
	display: block;
	height: 15px;
	padding-left: 20px;
}
.LanguageSelect .currentLang:before {
	content: '▼';
	position: absolute;
	left: 5px;
}
.LanguageSelect .currentLang img {
	vertical-align: top;
}

.LanguageSelect .langs {
	position: absolute;
	z-index: 1000;
	min-width: 150px;
	right: -10px;
	top: 100%;
	padding: 0px 5px;
	background-color: #f2f2f2;
	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 200ms;
}

.LanguageSelect:hover .langs,
.LanguageSelect.open .langs {
	height: auto;
	opacity: 1;
	padding: 10px 10px 5px;
}

.LanguageSelect a {
	display: block;
	text-decoration: none;
	color: #222;
	white-space: nowrap;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	opacity: 0.7;
}
.LanguageSelect a:last-of-type {
	border-bottom: 0;
}
.LanguageSelect a:hover {
	text-decoration: none;
	opacity: 1;
}
.LanguageSelect a img { 
	vertical-align: middle;
	box-shadow: 0 0 0 1px rgba(255,255,255,1), 0 0 3px 1px rgba(0,0,0,0.5);
	transform: scale(0.8,0.8);
	transition: all 200ms;
}
.LanguageSelect a:hover img {
	transform: scale(1,1);
}
.LanguageSelect a.sel {
	font-weight: bold;
	opacity: 1;
}