/**
 * 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 {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 1px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px rgba(50, 50, 50, .5);
  box-shadow: 0 0 5px rgba(50, 50, 50, .5);
  color: #6d9ad5;
  background: #fffefd;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmVmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmN2Y0ZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -webkit-linear-gradient(top, #fffefd 0%, #f7f4ef 100%);
  background: -moz-linear-gradient(top, #fffefd 0%, #f7f4ef 100%);
  background: -o-linear-gradient(top, #fffefd 0%, #f7f4ef 100%);
  background: linear-gradient(top, #fffefd 0%, #f7f4ef 100%);
  background-color: #fff;
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
}

.lt-ie9 .dk_container {
  /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefd', endColorstr='#f7f4ef', GradientType=0);*/
  background: #f7f4ef;
  border: 1px solid #ccc;
  padding: 0px;
  }

  .dk_container a {
    color: #6d9ad5;
    cursor: pointer;
    text-decoration: none;
  }

/* Opens the dropdown and holds the menu label */
.dk_toggle {
  min-width:202px;
  max-width: 520px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 8px 16px 8px 16px;
  background: transparent url(../../i/icon-custom-dropdown.png) no-repeat right top;
}
  .dk_toggle:hover {
    border-color: #8c8c8c;
  }
  /* Applied when the dropdown is focused */
  .dk_focus .dk_toggle {
    border-color: #40b5e2;
  }
  .dk_focus .dk_toggle {
    box-shadow: 0 0 5px #40b5e2;
    -moz-box-shadow: 0 0 5px #40b5e2;
    -webkit-box-shadow: 0 0 5px #40b5e2;
  }

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

/* The outer container of the options */
.dk_options {
  top:32px;
  /*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 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;*/
}
  .dk_options a {
    padding: 7px 48px 7px 16px;
    display: block;
    text-decoration: none;
    font-weight: bold;
    color: #00173a;
  }
  .dk_options li:last-child a {
    border-bottom: none;
  }
  .dk_options a:hover/*,
  .dk_option_current a*/ {
    color: #6e99d4;
    text-decoration: none;
  }

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
  background-color: #fff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 5px rgba(50, 50, 50, .5);
  -moz-box-shadow: 0 0 5px rgba(50, 50, 50, .5);
  box-shadow: 0 0 5px rgba(50, 50, 50, .5);

  max-height: 250px;
  
}

.lt-ie9 .dk_options_inner {
  /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefd', endColorstr='#f7f4ef', GradientType=0);*/
  border: 1px solid #ccc;
  padding:1px;
  border-top:0;
  }

/* 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;
}
  .dk_container a {
    outline: 0;
  }

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

.title .dk_toggle{
	 width:auto !important;
}

.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-y: auto;
    overflow-x: hidden;
    position: relative;
  }

.dk_touch .dk_options {
  overflow: hidden;
}

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

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

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