.select2-container {
	vertical-align: top;

	position: relative;

	display: inline-block;
	zoom: 1;
	*display: inline;
}

.select2-container,
.select2-drop,
.select2-search {
	-webkit-box-sizing: border-box; /* webkit */
	-moz-box-sizing: border-box;    /* firefox */
	box-sizing: border-box;         /* css3 */
}

.select2-container.first_list
{
	margin: 0px;
    width: calc(100% - 20px);
}

.select2-container.second_list
{
	margin: 0px;
    width: calc(100% - 20px);
}

.select2-container.third_list
{
	margin: 0px;
    width: calc(100% - 20px);
}

.select2-container .select2-choice {
	-webkit-box-shadow: inset 0 0px 0px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid grey;
    box-shadow: inset 0 0px 0px 0 rgba(255, 255, 255, 0.5);
    background: #FFF;
    height: 35px;
    color: #000;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    position: relative;
    font-weight: 400;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 23px;
    /*-webkit-appearance: searchfield;*/
    -moz-appearance: none;
}

.select2-container.select2-container-disabled .select2-choice, .select2-container.select2-container-disabled .select2-choice div b
{
	    background: #eee;
}

.select2-container .select2-choice span {
	overflow: hidden;
	line-height: 34px;
}

.select2-drop {
	border: 1px solid grey;
    background: #FFF;
	color: #000;
	position: absolute;
	top: 100%;
	width: 100%;
	margin-top: -1px;
	z-index: 9999;
	font-weight: 400;
	font-size: 12px;
}

.select2-container .select2-choice div {
	position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 22px;
    height: 100%;
}

.select2-container .select2-choice div b {
	display: block;
    width: 22px;
    height: 33px;
    background: #FFF url(../Images/show_arrow.png) 1px center no-repeat;
    background-size: 14px;
}

.select2-search {
	white-space: nowrap;

	display: inline-block;
	width: 100%;
	min-height: 26px;
	margin: 0;
	padding-left: 4px;
	padding-right: 4px;
	z-index: 10000;
}

.select2-search-hidden {
	display: block;
	position: absolute;
	left: -10000px;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
	outline: none;
}

.select2-dropdown-open .select2-choice div {
	position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 22px;
    height: 100%;
}

.select2-dropdown-open .select2-choice div b {
	display: block;
    width: 22px;
    height: 33px;
    background: #FFF url(../Images/hide_arrow.png) 1px center no-repeat;
    background-size: 14px;
}

/* results */
.select2-results {
	overflow-x: hidden;
	overflow-y: auto;

	position: relative;
	margin: 0;
	padding: 0;
	max-height: 200px;
}

.select2-results li {
	list-style: none;

	display: list-item;
}

.select2-results .select2-result-label {
	cursor: pointer;

	padding: 0 10px;
	margin: 0;
	line-height: 25px;
}

.select2-results .select2-highlighted {
	background: #CCC;
	color: #000;
}

.select2-results .select2-highlighted em {
	background: transparent;
}

.select2-results .select2-no-results {
	display: none;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
	background: #f4f4f4;

	display: list-item;
}

.select2-more-results {
	background: #f4f4f4;

	display: list-item;
}

.select2-default {
	color: #999 !important;
}

.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-result-selectable .select2-match {
	text-decoration: underline;
}

.select2-result-unselectable .select2-match {
	text-decoration: none;
}

.select2-offscreen {
	position: absolute;
	left: -10000px;
}

.no-search .select2-search {
    display:none
}