.select2-container {
	position: relative;
	display: inline-block;
	/* inline-block for ie7 */
	zoom: 1;
	*display: inline;
	vertical-align: top;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input{
  -moz-box-sizing: border-box;    /* firefox */
  -ms-box-sizing: border-box;     /* ie */
  -webkit-box-sizing: border-box; /* webkit */
  -khtml-box-sizing: border-box;  /* konqueror */
  box-sizing: border-box;         /* css3 */
}
.select2-container .select2-choice {
   -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;
	border: 1px solid #ececec;
	border-top: 1px solid #cecece;		
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 26px;
  line-height: 26px;
  padding: 16px 19px 15px;
  color: #444;
  text-decoration: none;
}
.select2-container .select2-choice span {
	font-size: 1.9em;
	font-weight: bold;
	color: #5b5b5b;
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.select2-drop {
	background: #fff;
  color: #000;
  border: 1px solid #dcdbdb;
	border-radius: 3px;
  position: absolute;
  top: 100%;
  z-index: 99999;
	width: 100%;
	margin-top: -2px;	
}
.select2-container .select2-choice div {
  background: url(../images/ico/seta_g.png) no-repeat 0 0;
  position: absolute;
  right: 6px;
  top: 6px;
  display: block;
  height: 44px;
  width: 48px;
}
.select2-search {
  display: none;
}
.select2-search-hidden {
  display: block;
  position: absolute;
  left: -10000px;
}
.select2-dropdown-open .select2-choice div {
  background: url(../images/ico/seta_f.png) no-repeat 0 0;
}
/* results */
.select2-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 200px;
  width: 100%;
}

.select2-results li {
  list-style: none;
  display: list-item;
	font-size: 1.5em;
	color: #555;
	line-height: 45px;
	padding: 0 0 0 15px;
  width: 100%;
}

.select2-results.list-01 {
  width: 100%;
}

.select2-results.list-01 li {
  width: 195.5px;
}

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}
.select2-results .select2-result-label {
  cursor: pointer;
}
.select2-results .select2-highlighted {
  background: #f8faf3;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: transparent;
}
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container.select2-container-disabled .select2-choice div {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}

.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; }
