/**
 * Moda DropKick theme
**/

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

/* One container to bind them... */
.dk_container {
  background-color: #ffffff;
  font-family: 'Verdana', Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
  .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/rebrand/drop-down-arrow-option1.png');
  background-position: right center;
  background-repeat: no-repeat;
  border: 1px solid #fff;
  padding: 3px 0 5px 5px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-weight: normal;
  -moz-transition: border-color .5s;
  -o-transition: border-color .5s;
  transition: border-color .5s;
  background-color: #b80175;
  color:#fff;
}
   /* modals and body content*/
   #myModalThin .dk_toggle, #myModalFat .dk_toggle {
	  background-color:#c25f92;
  	  color:#ffffff;
   }
   #myModalThin .dk_toggle:hover, #myModalFat .dk_toggle:hover{
	    background-color:#c25f92;
   }
  .dk_toggle:hover {
   text-decoration: none;
   background-color: none;
   color:#fff;
  }
  /* Applied when the dropdown is focused */
  .dk_focus .dk_toggle {
  
  }

/* Applied whenever the dropdown is open */
.dk_open {
  /**
   * Help: Dropdown menu is covered by something
   * Try setting this value higher
   */
   z-index: 100;
   position:absolute;
}
/*
  .dk_open .dk_toggle {
	background-color: #ffffff;
    color:#A50069;
    
  }
  */
  
  .dk_open .dk_toggle, 
  .dk_container .dk_toggle:active, #contentMain .dk_container .dk_toggle:active {
    background-color:#b80175;
  	color:#fff;
  }

/* The outer container of the options */
.dk_options {
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
}
  .dk_options a {
	font-weight: normal;
    color: #493831;
    background-color: #fff;
    border: 1px solid #a7a9ac;
	  border-top:none;
    border-radius: 0;
   -moz-border-radius: 0;
   -webkit-border-radius: 0;
    padding: 3px 0 3px 5px;
  }
  .dk_options li:last-child a {
    
  }
  .dk_options a:hover,
  .dk_option_current a {
    background-color: #fff;
	  color:#0098aa;
    text-decoration: none;
  }

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
	list-style:none;
	margin:0;
	padding:0;
	border:none;
  color: #333;
}
/* don't show default text when dropdown is open */
.dk_open li:first-child {
	display:none;	
 }
/* 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;
	font-family:omnes_ods_mediumregular, verdana, sans-serif;
	font-size:13px;
  }

.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;
}

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

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