/*BOOT STRAP OVERRIDES. CANNOT CHANGE IN DATABASE, MUST BE SEPERATE THEME IF THESE ARE CHANGED*/

/*view all button*/
.btn-success {
  color: #fff;
  text-shadow: 0 0px 0 rgba(0, 0, 0, 0.25);
  background-color: #731212;
  background-image: -moz-linear-gradient(top, #731212, #731212);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#731212), to(#731212));
  background-image: -webkit-linear-gradient(top, #731212, #731212);
  background-image: -o-linear-gradient(top, #731212, #731212);
  background-image: linear-gradient(to bottom, #731212, #731212);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#731212', endColorstr='#731212', GradientType=0);
  border-color: #731212 #731212 #731212;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #731212;
   Darken IE7 buttons by default so they stand out more given they won't have borders 

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #fff;
  text-shadow: 0 0px 0 rgba(0, 0, 0, 0.25);
  background-color: #731212;
  *background-color: #731212;
}
.btn-success:active,
.btn-success.active {
  background-color: #7b1104 \9;
}
/*apply here button*/
.btn-warning {
  color: #eee;
  text-shadow: 0 0px 0 rgba(0, 0, 0, 0.25);
/*  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);*/
  background-color: #ff6177;
  *background-color: #ff6177;
  background-image: -moz-linear-gradient(top, #ff6177, #ff6177);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff6177), to(#ff6177));
  background-image: -webkit-linear-gradient(top,  #ff6177, #ff6177);
  background-image: -o-linear-gradient(top, #ff6177, #ff6177);
  background-image: linear-gradient(to bottom, #ff6177, #ff6177);
  background-repeat: repeat-x;
  border-color: #ff6177 #ff6177 #ff6177;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6177', endColorstr='#ff6177', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  color: #fff;
  text-shadow: 0 0px 0 rgba(0, 0, 0, 0.25);
  background-color: #ff6177;
  *background-color: #ff6177;
}

.btn-warning:active,
.btn-warning.active {
  background-color: #ff6177 \9;
}


input, button, select, textarea {
	font-family:Arial, Helvetica, sans-serif;
}


/*CHOSEN OVERRIDES*/

/* @group Base */
.chzn-container {
  font-size: 13px; /* controls all text in chosen */
}
.chzn-container .chzn-drop {
  background: #fff;
  border: 1px solid #aaa;
  border-top: 0;
  color:#555;
}
/* @end */

/* @group Single Chosen */
.chzn-container-single .chzn-single {
  color: #555; /* main text color after it has been selected */
}
.chzn-container-single .chzn-default {
  color: #999; /* main text color */
}

.chzn-container-single .chzn-search input {
color: #555; /* main text color in search */
}
/* @end */

/* @group Results */

.chzn-container .chzn-results .active-result {
  cursor: pointer;
  display: list-item;
}
.chzn-container .chzn-results .highlighted {
  background-color: #ff6177;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6177', endColorstr='#ff6177', GradientType=0 );  
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(20%, #ff6177), color-stop(90%, #ff6177));
  background-image: -webkit-linear-gradient(top, #ff6177 20%, #ff6177 90%);
  background-image: -moz-linear-gradient(top, #ff6177 20%, #ff6177 90%);
  background-image: -o-linear-gradient(top, #ff6177 20%, #ff6177 90%);
  background-image: linear-gradient(#ff6177 20%, #ff6177 90%);
  color: #fff;
}
/* @end */