/**
 * Default DropKick theme
 *
 * Feel free to edit the default theme
 * or even add your own.
 *
 * See the readme for themeing help
 *
 */

/***** Begin Theme, feel free to edit in here! ******/

/* One container to bind them... */
.dk_container {
	background: url("../images/dropdown-form-back.png") 0 top repeat-x;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 14px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
  .dk_container:focus {
    outline: 0;
  }
  .dk_container a {
    cursor: pointer;
    text-decoration: none;
  }


/* Opens the dropdown and holds the menu label */
.dk_toggle {
  background: url('../images/sprite.png') right -140px no-repeat;
   border: 1px solid #DAD6CB;
  color: #555;
  padding: 0 25px 0 10px;
  border-radius: 2px;
  width: 100% !important;
  height: 32px;
  line-height: 32px;
}
  .dk_toggle:hover {
    border-color: #bdb9ad;
    color: #000;
  }



  /* Applied when the dropdown is focused */
  .dk_focus .dk_toggle {
    border-color: #bdb9ad;
    box-shadow: 0 0 5px #bdb9ad; /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
    -webkit-box-shadow: 0 0 5px #bdb9ad; /* Saf3.0+, Chrome */
    -moz-box-shadow: 0 0 5px #bdb9ad; /* FF3.5+ */
  }



/* Applied whenever the dropdown is open */
.dk_open {
  z-index: 10;
}
  .dk_open .dk_toggle {
    border-color: #bdb9ad;
    color: #000;
    border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
  }

/* The outer container of the options */
.dk_options {
  box-shadow: rgba(0, 0, 0, .2) 0 2px 8px;
  -moz-box-shadow: rgba(0, 0, 0, .2) 0 2px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 2px 8px;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  background-color: #fff;
}
  .dk_options a {
    background-color: #fff;
    font-weight: normal;
    padding: 8px 10px;
    color: #555;
    border-bottom: 1px solid #fff;
  }
  .dk_options li:last-child a {
    border-bottom: none;
  }
  .dk_options a:hover,
  .dk_option_current a {
    background-color: #f1f0ed;
    color: #000;
    text-decoration: none;
  }

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
  color: #555;
  max-height: 250px;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  border: 1px solid #dad6cb;
  background-color: #fff;
}

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

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

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

.dk_container {
  display: none;
  float: left;
  position: relative;
  width: 100%;
}
  .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;
  margin-top: -1px;
  position: absolute;
  right: 0;
  width: 100%;
}
  .dk_options a,
  .dk_options a:link,
  .dk_options a:visited {
    display: block;
  }
  .dk_options_inner {
    overflow: auto;
    position: relative;
  }

.dk_touch .dk_options {
  overflow: hidden;
}

.dk_touch .dk_options_inner {
  max-height: none;
  overflow: visible;
}

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

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