/* lang-chooser-trigger */
	.custom-select {
		font-size: 10px;
		color: #333333;
		background: #fff no-repeat left center;
		margin-right: 5px;
		border: 1px solid #d3d3d3;
		line-height: 22px;
		height: 22px;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
	}

	.custom-select-trigger {
		background: url('images/lang-chooser-arrow.jpg') no-repeat right center;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
		cursor: pointer;
		padding: 0 30px 0px 5px;
	}

	.custom-select-options {
		margin: 0px 0 0 0px;
		padding: 0;
		background: #EEE;
		position: absolute;
		display: none;
		z-index: 1;
		border:1px solid #d3d3d3;
	}

	.custom-select.opened .custom-select-options {
		display: block;
	}

	.custom-select-options li{
		list-style: none;
		padding: 5px;
		cursor:pointer;
		margin: 0;
	}

	.custom-select-options li:hover, .custom-select-options li.selected {
		background: #fff;
	}
