
div.infolanguageGrey{
	position:absolute;
	width:100%;
	height:0;
	top:0;
	left:0;	
	background-color:transparent;
	z-index:99999;	
	transition: background .3s ease-in;
}
div.infolanguageGrey.shown{
	height:100%;
	background-color:rgba(100,100,100,0.8);
}
div.infolanguage{
	display: block;
    position: absolute;
    top: 124px;
    right: 0px;
    height: 40px;
    width: 35px;
    z-index: 999;
    padding: 4px;
    background-color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    color: #777 !important;
    text-decoration: none;
    line-height: 35px;
    font-weight: normal;
    transition: width .4s ease-in-out;
}
div.infolanguage:hover{
    position: absolute;
    /* width: 300px; */
    height: 40px;
    box-sizing: border-box;
    padding: 4px 14px 4px 26px;
    line-height: 24px;
    z-index: 99999;
    overflow: visible;
}

div.infolanguage.overlay{
	background-color: rgba(100, 100, 100, 0.41);
}
div.infolanguage a{
    display: inline-block;
    width: 60%;
    float: left;
    color: #646464;
    border-right: 1px solid #636363;
	text-decoration:none;
	cursor:pointer;
	font-weight:bold;
}
div.infolanguage span{
    display: block;
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    padding: 5px 3px;
    height: 100%;
    z-index: 100000;
    border-radius: 3px 3px 0 0;
}
div.infolanguage span img#curLanguage {
    width: 28px;
	float:right;
    margin-top: 4px;
}
div.infolanguage span img#language_down{
    position: absolute;
    width: 17px;
    right: 28px;
    top: 12px;	
}
div.infolanguage:hover span{
	background-color:#fff;
	max-height:200px;	
}


div.infolanguage ul{
    padding: 0;
    margin: 0;
    width: 206px;
    right: 0px;
    top: 34px;
    background-color: #fff;
    position: absolute;
    border-radius: 5px 0 5px 5px;
    min-height:0px;
	max-height:0px;
	overflow-y:hidden;
}
div.infolanguage span:hover ul{
	max-height:200px;
}

div.infolanguage span ul li{
	min-height:0;
	max-height:0;
	padding: 0;
	transition: max-height .3s ease-in, padding .3s ease-in;
}
div.infolanguage span:hover ul li{
    list-style: none;
    max-height: 60px;
    padding: 11px 8px;
    margin: 0;
    color: #646363;
    cursor: pointer;
}
div.infolanguage span:hover ul li.selected,
div.infolanguage span:hover ul li:hover{
	color: #e41419;
	background-color: rgb(239, 239, 239);
}
div.infolanguage ul li img{
    width: 30px;
    margin-right: 8px;
    height: auto;
}
