.customSelect
{
	display: inline-block;
	box-sizing: border-box;
	margin: 1px 0 2px 0;
	position: relative;
	width: 100%;
	height: 29px;
	line-height: 25px;
	font-size: 0.9em;
	padding: 0 25px 0 12px;
	border: 2px solid #DDDDDD;
	border-radius: 5px;
	color: #303030;
	background: #fff;
	outline: none;
	text-overflow: ellipsis;
	overflow: hidden;
}
	.customSelect.disabled
	{
		background: #eee;
		color: #aaa;
	}
		.customSelect.disabled:after
		{
			border-top-color: #eee;
		}
	.customSelect.default
	{
		color: #999999;
	}
	.customSelect.error
	{
		border-color: red;
	}
	.customSelect:hover
	{
		border-color: #D6D6D6;
	}
	.customSelect:focus
	{
		border-color: #84CCF5;
	}
	.customSelect:before
	{
		content: "";
		position: absolute;
		right: 8px;
		top: 10px;
		width: 0;
		height: 0;
		border: 6px solid rgba(0, 0, 0, 0);
		border-top-color: #aaa;
	}
	.customSelect:after
	{
		content: "";
		position: absolute;
		right: 8px;
		top: 9px;
		width: 0;
		height: 0;
		border: 6px solid rgba(0, 0, 0, 0);
		border-top-color: #fff;
	}

select.customSelect-hidden
{
	position: absolute;
	z-index: -100;
	opacity: 0;
	width: 0;
	height: 0;
	left: -1px;
	top: -1px;
}

.customSelect-options
{
	position: absolute;
	box-sizing: border-box;
	background: #FFFFFF;
	border: 2px solid #84CCF5;
	border-top-color: #E5E5E5;
	border-top-width: 1px;
	overflow: auto;
	z-index: 9999;
	border-radius: 0 0 5px 5px;
}
	
	.customSelect-options .search-text
	{
		font-size: 12px;
		color: #777;
		padding: 0 10px;
		font-style: italic;
		text-decoration: underline;
	}

	.customSelect-options.above
	{
		border-top-color: #75C2EE;
		border-bottom-color: #E5E5E5;
		border-radius: 5px 5px 0 0;cd
		border-top-width: 2px;
		border-bottom-width: 1px;
	}

	.customSelect-options .item,
	.customSelect-options .optgroup .title
	{
		display: block;
		white-space: nowrap;
		height: 25px;
		line-height: 25px;
		padding: 0px 5px 0px 10px;
		overflow: hidden;
		cursor: pointer;

		text-overflow: ellipsis;
		font-size: 0.9em;
		font-weight: bold;
		color: #777;
	}
		.customSelect-options .item.default
		{
			color: #999999;
		}
		.customSelect-options .item.selected
		{
			background: #EEE;
			color: #AAA;
			cursor: default;
		}
		.customSelect-options .item.active
		{
			background: #398bc6;
			color: #fff;
		}

		.customSelect-options .item input[type="checkbox"]
		{
			float: left;
			margin: 6px 5px 6px 0;
		}

		.customSelect-options .item b
		{
			text-decoration: underline;
			color: #333;
		}

	.customSelect-options .optgroup
	{

	}
		.customSelect-options .optgroup .title
		{
			border-top: 1px solid #ddd;
			color: #444;
			cursor: default;
		}
		.customSelect-options .child .item
		{
			padding-left: 20px;
		}


/* way to stop blinking*/
select.customSelect-hidden{
	width: 100px;
	height: 25px;
}