
/* ====================================
   3. Styles für die LIQUID CSS BUTTONS
   ==================================== */

/* Beispielbutton mit 3 Hintergrund-Grafiken */

.button {
  float: left;
  clear: both;
  background: url(img/bg_left.png) no-repeat;
  padding: 0 0 0 10px;
  margin: 5px 0;
}

.button a{
  float: left;
  height: 40px;
  background: url(img/bg_stretch.png) repeat-x left top;
  line-height: 40px;
  padding: 0 1px;
  color: #000;
  font-size: 1.3em;
  text-decoration: none;
}

.button span {
  background: url(img/bg_right.png) no-repeat;
  float: left;
  width: 10px;
  height: 40px;
}

/* Beispielbuttons mit Hintergrundfarbe und Mouseover-Effekt */

.button_col {
  float: left;
  clear: both;
  background: #d13264 url(img/bg_left.png) no-repeat;
  padding: 0 0 0 10px;
  margin: 5px 0;
}

.button_col a{
  float: left;
  height: 40px;
  background: url(img/bg_stretch.png) repeat-x left top;
  line-height: 40px;
  padding: 0 1px;
  color: #fff;
  font-size: 1.3em;
  text-decoration: none;
}
.button_col a:hover {
  color: #000000;
}
.button_col span {
  background: url(img/bg_right.png) no-repeat;
  float: left;
  width: 10px;
  height: 40px;
}
.button_col:hover, .button_col a:hover, .button_col span:hover {
  background-color: #d13264;
}
.clear {
  clear: both;
}
