.dk_container {
  margin: 12px 0 0;
  font-family: 'open_sansregular';
  font-size: 12px;
  line-height: 16px;
}
.dk_container:focus {
  outline: 0;
}
.dk_container a {
  cursor: pointer;
  text-decoration: none;
}

/* Opens the dropdown and holds the menu label */
.dk_toggle {
  /*
  background-image: url('images/dk_arrows.png');
  background-repeat: no-repeat;
  background-position: right center;
  */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07) inset; 
  border: 1px solid #ccc;
  background: #fff url(../images/dropdown-arrow-v2.png) no-repeat right 0;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #5b5958;
  padding: 8px 16px 8px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow:ellipsis;
}
.dk_toggle:hover {
  color: #5b5958;
}
/* Applied when the dropdown is focused */
.dk_focus .dk_toggle {

}

/* Applied whenever the dropdown is open */
.dk_open {
  z-index: 10;
}
.dk_open .dk_toggle {
  color: #bbb4b2;
  box-shadow: none;
  border: 1px solid #fff;

}

/* The outer container of the options */
.dk_options {
  background: #fff;
  border: 1px solid #fff;
  position: absolute;
  top: 0 !important;
  bottom: auto !important;
  left: 0;
  right: 0;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3); 
}
.dk_options a {
  padding: 8px 12px;
  font-size: 13px;
  color: #5b5958;
}

.dk_options li.value-US a,
.dk_options li.value-0 a {
  color: #bbb4b2;
  font-size: 12px;
  background: #fff url(../images/dropdown-arrow-v2.png) no-repeat right -64px;
}

.dk_options a:hover,
.dk_option_current a {
  color: #3cb4e7;
}
.dk_options .disabled {
  cursor: default;
}
.dk_options .disabled:hover {

}

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {

}

/* Set a max-height on the options inner */
.dk_options_inner,
.dk_touch .dk_options {
  max-height: 300px;
}

/******  End Theme ******/

/***** Critical to the continued enjoyment of working dropdowns ******/

.dk_container {
  display: none;
  float: left;
  position: relative;
}
.dk_container a {
  outline: 0;
}

.dk_toggle {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  position: relative;
  zoom: 1;
}

.dk_open {
  position: relative;
}
.dk_open .dk_options {
  display: block;
}
.dk_open .dk_label {
  color: inherit;
}

.dk_options {
  display: none;
}
.dk_options a,
.dk_options a:link,
.dk_options a:visited {
  display: block;
}
.dk_options_inner {
  overflow: auto;
  -webkit-overflow-scrolling:touch;
  position: relative;
}

.dk_fouc select {
  position: relative;
  top: -99999em;
  visibility: hidden;
}

/***** End Critical to the continued enjoyment of working dropdowns ******/
