
/* ===============================
   2. Styles für den Layoutbereich
   =============================== */

#wrapper {
  width: 600px;
  margin: 20px auto;
  border: 1px solid #000;
  padding: 10px 20px;
  background-color: #fff;
}
/* ====================================
   3. Styles für die LIQUID CSS BUTTONS
   ==================================== */

/* Beispielbutton mit 3 Hintergrund-Grafiken */

.button {
  float: left;
  clear: both;
  background: url(images/bg_left.png) no-repeat;
  padding: 0 0 0 10px;
  margin: 5px 0;
}

.button a{
  float: left;
  height: 40px;
  background: url(images/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(images/bg_right.png) no-repeat;
  float: left;
  width: 10px;
  height: 40px;
}

/* Beispielbuttons mit Hintergrundfarbe und Mouseover-Effekt */

.button_col {
  float: left;
  clear: both;
  background: #690 url(images/bg_left.png) no-repeat;
  padding: 0 0 0 10px;
  margin: 5px 0;
}

.button_col a{
  float: left;
  height: 40px;
  background: url(images/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: #690;
}
.button_col span {
  background: url(images/bg_right.png) no-repeat;
  float: left;
  width: 10px;
  height: 40px;
}
.button_col:hover, .button_col a:hover, .button_col span:hover {
  background-color: #fff;
}
.clear {
  clear: both;
}