/* lang-chooser-trigger */
	.custom-select {
		font-family: "MyriadPro";
		font-size: 10px;
		color: #333333;
		background: url('images/lang-chooser-arrow.png') no-repeat right center;
		padding-right: 22px;
		margin-right: 5px;
		line-height: 22px;
		height: 22px;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
		cursor: pointer;
	}

	.custom-select-trigger {
		background: #fff;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
		cursor: pointer;
		padding: 0 7px 0px 5px;
		border-radius: 8px 0px 0px 8px;
		-moz-border-radius: 8px 0px 0px 8px;
		-webkit-border-radius: 8px 0px 0px 8px;
	}

	.custom-select-options {
		margin: 0px 0 0 0px;
		padding: 0;
		border: 1px solid #D4D4D4;
		background: #EEE;
		position: absolute;
		display: none;
		z-index: 1;
	}

	.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;
	}
