/**
 * 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: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f5f5));
  background: -moz-linear-gradient(top, #fff, #f5f5f5);
  background: -o-linear-gradient(top, #fff, #f5f5f5);*/
  background-color: #f5f5f5;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;

}
  .dk_container:focus {
    outline: 0;
  }
  .dk_container a {
    cursor: pointer;
    text-decoration: none;
  }

/* Opens the dropdown and holds the menu label */
.dk_toggle {
  /**
   * Help: Arrow image not appearing
   * Try updating this property to your correct dk_arrows.png path
   */
  background-image: url('images/dk_arrows.png');
  background-repeat: no-repeat;
  background-position: 90% center;
  color: #333;
  padding: 7px 10px;
  text-shadow: #fff 1px 1px 0;
/*  -webkit-transition: border-color .5s;
  -moz-transition: border-color .5s;
  -o-transition: border-color .5s;
  transition: border-color .5s;*/
}
  .dk_toggle:hover {
    border-color: #8c8c8c;
  }
  /* Applied when the dropdown is focused */
  .dk_focus .dk_toggle {
/*
    border-color: #F34013;
*/
  }
  .dk_focus .dk_toggle {
/*    box-shadow: 0 0 5px #F34013;
    -moz-box-shadow: 0 0 5px #F34013;
    -webkit-box-shadow: 0 0 5px #F34013;*/
  }

/* Applied whenever the dropdown is open */
.dk_open {
/*  box-shadow: 0 0 5px #F34013;
  -moz-box-shadow: 0 0 5px #F34013;
  -webkit-box-shadow: 0 0 5px #F34013;*/
  /**
   * Help: Dropdown menu is covered by something
   * Try setting this value higher
   */
  z-index: 10;
}
  .dk_open .dk_toggle {
    background-color: #ececec;
    border-color: #8c8c8c;
    color: #ccc;
    box-shadow: inset 0 -2px 5px #ccc;

  }

/* 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;*/

}
  .dk_options a {
    background-color: #fff;
    /*border-bottom: 1px solid #999;*/
    font-weight: bold;
    padding: 5px 10px 4px;
  }
  .dk_options li:last-child a {
    border-bottom: none;
  }
  .dk_options a:hover,
  .dk_option_current a {
    color: #fff;
    text-decoration: none;
    text-shadow: rgba(0, 0, 0, .5) 0 1px 0;
  }

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
  border: 1px solid #8c8c8e;
  border-bottom-width: 2px;
  border-bottom-color: #999;
  color: #333;
  max-height: 350px;
  text-shadow: #fff 0 1px 0;

}

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

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

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

.dk_container {
  display: none;

  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;
  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.ss_black {
  position: relative;
  top: -99999em;
  visibility: hidden;
}

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

.dk_theme_black {
  background: transparent url(../images/selector_background.png);
}
.dk_theme_black .dk_toggle,
.dk_theme_black.dk_open .dk_toggle {
background-color: transparent;
background-image: url('../images/dk_arrows_white.png');
color: #333;
text-shadow: none;
}
.dk_theme_black .dk_options a {
background-color: #fff;
color: #000;
text-shadow: none;
font-weight: normal;
padding-left: 34px;
padding-bottom: 2px; 
padding-top: 2px;
}

.extra-options .dk_theme_black a.dk_toggle {
    max-width: 307px;
    min-width: 307px;
}

.dk_theme_black .dk_options a:hover{
  background: url(../images/bkg_dropdown.png) repeat-x #003366;
  color: #FFF;
  font-weight: bold;
}
.dk_theme_black .dk_option_current a {
  background-color: #FFF;
  color: #000;
  text-shadow: none;
  background: #FFF url(../images/checkbox_arrow.gif) no-repeat 9px 50%;
}

.dk_theme_dark_dropdown {
  background: transparent url(../images/selector_background_dark.png);
  border-radius:5px;
}
.dk_theme_dark_dropdown .dk_toggle,
.dk_theme_dark_dropdown.dk_open .dk_toggle {
background-color: transparent;
background-image: url('../images/sort-by-arrow.png');
background-position: 95% center;
color: white;
text-shadow: none;
border:none;
}
.dk_theme_dark_dropdown .dk_options a {
background-color: #FFF;
color: #333;
text-shadow: none;
}
.dk_theme_dark_dropdown .dk_options a:hover,
.dk_theme_dark_dropdown .dk_option_current a {
  background-color: #6c6c6c;
  color: #FFF;
}

/* Alt Theme */

.dk_theme_alt {
    background: none;
    font-size: 15px;
    font-weight: normal;
}
.dk_theme_alt .dk_toggle,
.dk_theme_alt.dk_open .dk_toggle {
    background: url("../images/alt-options-bkg.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    color: #333333;
    font-size: 18px;
    height: 28px;
    line-height: 28px;
    max-width: 389px;
    min-width: 389px;
    padding: 11px 20px 11px 10px;
    text-shadow: none;
    text-transform: uppercase;
}
.dk_theme_alt .dk_options a {
    background-color: #fff;
    color: #000;
    text-shadow: none;
    font-weight: normal;
    padding-left: 34px;
    padding-bottom: 7px;
    padding-top: 7px;
}

.dk_theme_alt .dk_options a:hover{
  background: none #6c6c6c;
  color: #FFF;
  font-weight: bold;
}
.dk_theme_alt .dk_option_current a {
  background-color: #FFF;
  color: #000;
  text-shadow: none;
  background: #FFF url(../images/checkbox_arrow.gif) no-repeat 9px 50%;
}


/* Sort-by Theme */

.dk_theme_sortby {
  background: transparent none;
  border-radius:5px;
}
.dk_theme_sortby .dk_toggle,
.dk_theme_sortby.dk_open .dk_toggle {
    background-color: rgba(0, 0, 0, 0);
    background-image: url("../images/black-down-arrow.png");
    background-position: 95% center;
    border: medium none;
    color: #333333;
    text-shadow: none;
    font-size: 16px;
}
.dk_theme_sortby .dk_options a {
background-color: #FFF;
color: #333;
text-shadow: none;
}
.dk_theme_sortby .dk_options a:hover,
.dk_theme_sortby .dk_option_current a {
  background-color: #6c6c6c;
  color: #FFF;
}

/* Paymeth Theme */

.dk_theme_paymeth {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-radius: 5px;
    margin: 4px 0 10px 20px;
    display: none;
}

.dk_theme_paymeth li {
    margin: 0;
}

.dk_theme_paymeth .dk_options_inner {

}

.dk_theme_paymeth .dk_toggle,
.dk_theme_paymeth.dk_open .dk_toggle {
    background-color: #ffffff;
    background-image: url("../images/black-down-arrow.png");
    background-position: 95% center;
    border: 1px solid #A3A3A3;
    color: #333333;
    font-size: 15px;
    padding: 5px 32px 4px 10px;
    text-shadow: none;
}
.dk_theme_paymeth .dk_options a {
    color: #333333;
    font-size: 15px;
    text-shadow: none;
}
.dk_theme_paymeth .dk_options a:hover,
.dk_theme_paymeth .dk_option_current a {
  background-color: #6c6c6c;
  color: #FFF;
}

/* Return Theme */

.dk_theme_return {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-radius: 5px;
    display: none;
    font-weight: normal;
}
.dk_theme_return li {
    margin: 0;
    width: 100%;
}
.dk_theme_return .dk_toggle,
.dk_theme_return.dk_open .dk_toggle {
    background-color: #FFFFFF;
    background-image: url("../images/black-down-arrow.png");
    background-position: 95% center;
    border: 1px solid #A3A3A3;
    color: #333333;
    font-size: 11px;
    padding: 7px 24px 6px 13px;
    text-shadow: none;
}
.dk_theme_return .dk_options a {
    color: #333333;
    font-size: 11px;
    text-shadow: none;
    font-weight: normal;
}
.dk_theme_return .dk_options a:hover,
.dk_theme_return .dk_option_current a {
  background-color: #6c6c6c;
  color: #FFF;
}

/* Bundle Options Theme */
.dk_theme_options {
    background: none repeat scroll 0 0 #ECECEC;
    font-size: 15px;
    font-weight: normal;
}
.dk_theme_options .dk_toggle,
.dk_theme_options.dk_open .dk_toggle {
    background: url("../images/dk_arrow_black.png") no-repeat scroll 366px 12px rgba(0, 0, 0, 0);
    color: #333333;
    padding: 8px 20px 7px 10px;
    text-shadow: none;
}
.dk_theme_options .dk_options a {
    background-color: #fff;
    color: #000;
    text-shadow: none;
    font-weight: normal;
    padding-left: 34px;
    padding-bottom: 7px;
    padding-top: 7px;
}

.extra-options .dk_theme_options a.dk_toggle {
    max-width: 360px;
    min-width: 360px;
}

.dk_theme_options .dk_options a:hover{
  background: none #6c6c6c;
  color: #FFF;
  font-weight: bold;
}
.dk_theme_options .dk_option_current a {
  background-color: #FFF;
  color: #000;
  text-shadow: none;
  background: #FFF url(../images/checkbox_arrow.gif) no-repeat 9px 50%;
}

/* Bundle Options Dark Theme */
.dk_theme_options_dark {
    background: url("../images/white-down-arrow.png") no-repeat scroll 93% 9px #666666;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.dk_theme_options_dark .dk_toggle,
.dk_theme_options_dark.dk_open .dk_toggle {
    color: #ffffff;
    text-shadow: none;
    text-transform: uppercase;
    padding: 5px 29px 4px 10px;
}
.dk_theme_options_dark .dk_options a {
    background-color: #fff;
    color: #000;
    text-shadow: none;
    font-weight: normal;
    padding-left: 34px;
    padding-bottom: 2px;
    padding-top: 2px;
}

.extra-options .dk_theme_options_dark a.dk_toggle {
    max-width: 360px;
    min-width: 360px;
}

.dk_theme_options .dk_options_dark a:hover{
  background: url(../images/bkg_dropdown.png) repeat-x #003366;
  color: #FFF;
  font-weight: bold;
}
.dk_theme_options_dark .dk_option_current a {
  background-color: #FFF;
  color: #000;
  text-shadow: none;
  background: #FFF url(../images/checkbox_arrow.gif) no-repeat 9px 50%;
}