div.selector  {
  background-image: url(../gfx/select.jpg);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

.selector, 
.selector * {
  margin: 0;
  padding: 0;

}

/* SPRITES */

/* Select */

div.selector {
  line-height: 26px;
  height: 25px;
width: 75px;
}

div.selector span {
	font: 17px Times, "Times New Roman", Georgia;
	color: #a1695a;
  background-position: 0px 0px;
  height: 25px;
width: 48px;
  line-height: 26px;
}

div.selector select {
  /* change these to adjust positioning of select element */
  top: 0px;
  left: 5px;
  color: #a1695a;
  font-family: georgia;
}

div.selector option {
  /* change these to adjust positioning of select element */

  color: #a1695a;
  font-family: georgia;
	font-size: 17px;
}


/* Select */
div.selector {
  width: 50px;
  font-size: 12px;
	padding-right: 25px;
}

div.selector select {
  min-width: 50px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  border: solid 1px #fff;
}

div.selector span {
  padding: 0px 0px 0px 2px;
  cursor: pointer;
}

div.selector span {
  width: 48px;
display: block;
  text-shadow: 0 1px 0 #fff;
  margin-left: 2px;
}

div.selector.disabled span {
  color: #bbb;
}

/*

CORE FUNCTIONALITY 

Not advised to edit stuff below this line
-----------------------------------------------------
*/

.selector {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
  *display: inline;
}

.selector select:focus {
  outline: 0;
}

/* Select */

div.selector {
  position: relative;
  padding-left: 0px;
  overflow: hidden;
}

div.selector span {
  display: block;
  overflow: hidden;
/*  text-overflow: ellipsis;*/
/*  white-space: nowrap;*/
}

div.selector select {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity:0);
  height: 25px;
  border: none;
  background: none;
}


