/* SMARTPHONES */
@media only screen and (min-width: 320px) {
	#langs {
		list-style-type: none;
		padding: 0px;
		margin: 0 38%;
		width: 25%;
		height: 30px;
		float: none;
	}
	#langs li {
		background: none repeat scroll 0% 0% white;
		float: left;
		margin: 3px 0px 0px 3px;
	}
	#langs li img {
		display: block;
		opacity: 0.5;
		border: 1px solid #666;
		width: 30px;
		height: 20px;
	}
	#langs li:hover img { opacity: 0.7;}
	#langs li img.selected { display: block; opacity: 1; }
}
/* TABLETTES */
@media only screen and (min-width: 768px) {
	#langs {
		width: 10%;
		margin: 0 45%;
	}
}
/* ORDINATEURS */
@media only screen and (min-width: 1024px) {
	#langs {
		list-style-type: none;
		padding: 0px;
		margin: 70px 10px 0px 0px;
		height: 17px;
		float: right;
	}
	#langs li {
		background: none repeat scroll 0% 0% white;
		float: left;
		margin: 3px 0px 0px 3px;
	}
	#langs li img {
		display: block;
		opacity: 0.5;
		border: 1px solid #666;
		width: 15px;
		height: 10px;
	}
	#langs li:hover img { opacity: 0.7;}
	#langs li img.selected { display: block; opacity: 1; }
}