/*** Definition der Farbklassen ***/

/** Akzentfarbe **/

.farbeAkzent,
.farbeAkzentHover:hover {
  color: #B15E00;
}

.farbeAkzentBorder {
  border-color: #B15E00;
}

.farbeAkzentInputAktiv,
.farbeAkzentInputFokus:focus {
  
  background: bottom -1px left -moz-linear-gradient(#B15E00, #B15E00) no-repeat,
              bottom -1px center -moz-linear-gradient(#B15E00, #B15E00) repeat-x,
              bottom -1px right -moz-linear-gradient(#B15E00, #B15E00) no-repeat;
            
  background: bottom -1px left -webkit-linear-gradient(#B15E00, #B15E00) no-repeat,
              bottom -1px center -webkit-linear-gradient(#B15E00, #B15E00) repeat-x,
              bottom -1px right -webkit-linear-gradient(#B15E00, #B15E00) no-repeat;
           
  background: bottom -1px left linear-gradient(#B15E00, #B15E00) no-repeat,
              bottom -1px center linear-gradient(#B15E00, #B15E00) repeat-x,
              bottom -1px right linear-gradient(#B15E00, #B15E00) no-repeat;
             
  background: -ms-linear-gradient(#B15E00, #B15E00) bottom -1px left  no-repeat,
              -ms-linear-gradient(#B15E00, #B15E00) bottom -1px center repeat-x,
              -ms-linear-gradient(#B15E00, #B15E00) bottom -1px right no-repeat;
  
  background-size: 1px 4px, 1px 1px, 1px 4px;
  border-bottom: 1px solid #B15E00;
}

.farbeAkzentComboFokus:focus {
  border-color: #B15E00;
}

/** Akzentfarbe für JQuery UI überschreiben **/
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  color: #B15E00;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  border-color: #B15E00;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  background-color: #B15E00;
}