.w200 {
	width: 200px;
}
.w150 {
	width: 150px;
}
.w100 {
	width: 100px;
}

div.fancy-select {
	position: relative;
	font-size: 13px;
	color: #666666;
	text-align: left;
}

div.fancy-select.disabled {
	opacity: 0.5;
}

div.fancy-select select:focus + div.trigger {
	box-shadow: none;
}

div.fancy-select select:focus + div.trigger.open {
	box-shadow: none;
}

div.fancy-select div.trigger {
	width: 100%;
	height: 30px;
	border-radius: 4px;
	cursor: pointer;
	padding: 6px 24px 9px 9px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	background: #ffffff;
	border: 1px solid #bfccdb;
	box-shadow: none;

	transition: all 240ms ease-out;
	-webkit-transition: all 100ms ease-out;
	-moz-transition: all 100ms ease-out;
	-ms-transition: all 100ms ease-out;
	-o-transition: all 100ms ease-out;
	
	/* opacity: 0.6; */
}
/* Select Version 2 */
div.trigger_2 {
	width: 100%;
	height: 20px;
	border-radius: 4px;
	cursor: pointer;
	padding: 2px 10px 0px 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	background: #ffffff;
	border: 1px solid #bfccdb;
	box-shadow: none;
	font-size: 11px;

	transition: all 240ms ease-out;
	-webkit-transition: all 100ms ease-out;
	-moz-transition: all 100ms ease-out;
	-ms-transition: all 100ms ease-out;
	-o-transition: all 100ms ease-out;
}
div.trigger:hover {
	background-color: #F7F9FB !important;
}
/* Select Version 2 */
div.trigger_2:hover {
	background-color: #F7F9FB;
}
div.fancy-select div.trigger:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #666666;
	top: 13px;
	right: 9px;
}
/* Select Version 2 */
div.fancy-select div.trigger_2:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #666666;
	top: 7px;
	right: 9px;
}
div.fancy-select div.trigger.open {
	background: #ffffff;
	border: 1px solid #bfccdb;
	box-shadow: none;
}

div.fancy-select div.trigger.open:after {
	border-top-color: #bfccdb;
}

div.fancy-select ul.options {
	width: 99%;
	list-style: none;
	margin: 0;
	position: absolute;
	top: 30px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 50;
	max-height: 200px;
	overflow: auto;
	background: #ffffff;
	border-radius: 0 0 4px 4px;

	transition: opacity 100ms ease-out, top 100ms ease-out, visibility 100ms ease-out;
	-webkit-transition: opacity 100ms ease-out, top 100ms ease-out, visibility 100ms ease-out;
	-moz-transition: opacity 100ms ease-out, top 100ms ease-out, visibility 100ms ease-out;
	-ms-transition: opacity 100ms ease-out, top 100ms ease-out, visibility 100ms ease-out;
	-o-transition: opacity 100ms ease-out, top 100ms ease-out, visibility 100ms ease-out;
}

div.fancy-select ul.options.open {
	visibility: visible;
	top: 29px;
	opacity: 1;
	border: 1px solid #bfccdb;

	/* have to use a non-visibility transition to prevent this iOS issue (bug?): */
	/*http://stackoverflow.com/questions/10736478/css-animation-visibility-visible-works-on-chrome-and-safari-but-not-on-ios*/
	transition: opacity 100ms ease-out, top 100ms ease-out;
	-webkit-transition: opacity 100ms ease-out, top 100ms ease-out;
	-moz-transition: opacity 100ms ease-out, top 100ms ease-out;
	-ms-transition: opacity 100ms ease-out, top 100ms ease-out;
	-o-transition: opacity 100ms ease-out, top 100ms ease-out;
}
/* Select Version 2 */
.select_2 {
	font-size: 11px !important;
}
.select_2 ul {
	top: 19px !important;
}

div.fancy-select ul.options.overflowing {
	top: auto;
	bottom: 40px;

	transition: opacity 100ms ease-out, bottom 100ms ease-out, visibility 100ms ease-out;
	-webkit-transition: opacity 100ms ease-out, bottom 100ms ease-out, visibility 100ms ease-out;
	-moz-transition: opacity 100ms ease-out, bottom 100ms ease-out, visibility 100ms ease-out;
	-ms-transition: opacity 100ms ease-out, bottom 100ms ease-out, visibility 100ms ease-out;
	-o-transition: opacity 100ms ease-out, bottom 100ms ease-out, visibility 100ms ease-out;
}

div.fancy-select ul.options.overflowing.open {
	top: auto;
	bottom: 29px;

	transition: opacity 100ms ease-out, bottom 100ms ease-out;
	-webkit-transition: opacity 100ms ease-out, bottom 100ms ease-out;
	-moz-transition: opacity 100ms ease-out, bottom 100ms ease-out;
	-ms-transition: opacity 100ms ease-out, bottom 100ms ease-out;
	-o-transition: opacity 100ms ease-out, bottom 100ms ease-out;
}

div.fancy-select ul.options li {
	padding: 7px 12px;
	color: #666666;
	cursor: pointer;
	white-space: nowrap;
	border-top: 1px solid #bfccdb;
	
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}
/* Select Version 2 */
.select_2 li {
	padding: 2px 5px !important;
}
ul.options li:first-child {
	border-top: none !important;
}

div.fancy-select ul.options li.selected {
	background: #F7F9FB;
	color: #666666;;
}

div.fancy-select ul.options li.hover {
	background: #F7F9FB;
}