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

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

	.custom-select-options {
		margin: 0px 0 0 0px;
		padding: 0;
		background: #073772;
		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: #0a4896;
	}
