/*! 
	jQuery easySelect 1.1.0 - http://tameraydin.github.com/jquery-easyselect/
*/

/* 
	Base Styles
*/
.easyselect-field-wrapper {
  position: relative;
}
.easyselect-field {
  margin: 0;
}
.easyselect-list-wrapper {
  /* IE7 fix */
  clear: left;
}
.easyselect-list {
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}
.easyselect-list li {
  background: #FFF;
  cursor: pointer;
  display: none;
}
.easyselect-list li.filtered {
  display: block;
}
.easyselect-list li.active {
  background: #333;
  color: #FFF;
}
.easyselect-box {
  background: #999;
  padding: 10px;
}
.easyselect-box-item {
  background: #CCC;
  cursor: pointer;
  margin-right: 10px;
  padding: 3px 5px;
}

/* 
	Extras
*/
.easyselect-container {
  font-family: sans-serif;
}
.easyselect-field-wrapper {
  z-index: 2;
}
.easyselect-field {
	width: 98%;
	height: 25px;
	font-size: 20px;
	padding-left: 5px;
	border: 1px solid #aaa;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.easyselect-list {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-left: 4px;
  width: 98%;
  z-index: 2;
}
.easyselect-list li {
  border-bottom: 1px solid #EAEFFA;
  padding: 3px 5px;
  width: 98%;
}
.easyselect-list li.active {
  background: #1CAAA1;
}
.easyselect-box {
  background: #fff;
  border-radius: 4px;
  margin-top: 8px;
  padding: 0 8px 8px 0;
  position: relative;
  width: 98%;
  *zoom: 1;
  margin-bottom: 30px;
}
.easyselect-box.empty {
  display: none;
}
.easyselect-box:before,
.easyselect-box:after {
  content: "";
  display: table;
}
.easyselect-box:after {
  clear: both;
}
.easyselect-box-item {
  
  background: #1CAAA1;
  border-radius: 4px;
  color: #FFF;
  float: left;
  line-height: 1em;
  margin: 8px 0 0 8px;
  text-decoration: none;
}
.easyselect-box-item:hover {
  border-color: #336699;
  text-decoration: none;
}
