/* ***
* Author: Dirk Hesse (dirk@basiscode.de)
* Copyright 2012
*/
html {
  height: 100%;
  overflow: scroll;
}

body {
  height: 100%;
}

/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* =============================================================================
   HTML5 element display
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231;
}

body, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

/* 
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */
::-moz-selection {
  background: #7ebbff;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #7ebbff;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e;
}

a:visited {
  color: #551a8b;
}

a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/*
 * Correct overflow displayed oddly in IE9 
 */
/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button, input {
  line-height: normal;
  *overflow: visible;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
}

input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* 
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ 
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd;
}

/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  width: 950px;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}

.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12, .span-13, .span-14, .span-15, .span-16, .span-17, .span-18, .span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {
  display: inline;
  float: left;
  margin-right: 10px;
}
* html .column, * html .span-1, * html .span-2, * html .span-3, * html .span-4, * html .span-5, * html .span-6, * html .span-7, * html .span-8, * html .span-9, * html .span-10, * html .span-11, * html .span-12, * html .span-13, * html .span-14, * html .span-15, * html .span-16, * html .span-17, * html .span-18, * html .span-19, * html .span-20, * html .span-21, * html .span-22, * html .span-23, * html .span-24 {
  overflow-x: hidden;
}

.last {
  margin-right: 0;
}

.span-1 {
  width: 30px;
}

.span-2 {
  width: 70px;
}

.span-3 {
  width: 110px;
}

.span-4 {
  width: 150px;
}

.span-5 {
  width: 190px;
}

.span-6 {
  width: 230px;
}

.span-7 {
  width: 270px;
}

.span-8 {
  width: 310px;
}

.span-9 {
  width: 350px;
}

.span-10 {
  width: 390px;
}

.span-11 {
  width: 430px;
}

.span-12 {
  width: 470px;
}

.span-13 {
  width: 510px;
}

.span-14 {
  width: 550px;
}

.span-15 {
  width: 590px;
}

.span-16 {
  width: 630px;
}

.span-17 {
  width: 670px;
}

.span-18 {
  width: 710px;
}

.span-19 {
  width: 750px;
}

.span-20 {
  width: 790px;
}

.span-21 {
  width: 830px;
}

.span-22 {
  width: 870px;
}

.span-23 {
  width: 910px;
}

.span-24 {
  width: 950px;
  margin: 0;
}

input.span-1, textarea.span-1, select.span-1 {
  width: 30px;
}
input.span-2, textarea.span-2, select.span-2 {
  width: 70px;
}
input.span-3, textarea.span-3, select.span-3 {
  width: 110px;
}
input.span-4, textarea.span-4, select.span-4 {
  width: 150px;
}
input.span-5, textarea.span-5, select.span-5 {
  width: 190px;
}
input.span-6, textarea.span-6, select.span-6 {
  width: 230px;
}
input.span-7, textarea.span-7, select.span-7 {
  width: 270px;
}
input.span-8, textarea.span-8, select.span-8 {
  width: 310px;
}
input.span-9, textarea.span-9, select.span-9 {
  width: 350px;
}
input.span-10, textarea.span-10, select.span-10 {
  width: 390px;
}
input.span-11, textarea.span-11, select.span-11 {
  width: 430px;
}
input.span-12, textarea.span-12, select.span-12 {
  width: 470px;
}
input.span-13, textarea.span-13, select.span-13 {
  width: 510px;
}
input.span-14, textarea.span-14, select.span-14 {
  width: 550px;
}
input.span-15, textarea.span-15, select.span-15 {
  width: 590px;
}
input.span-16, textarea.span-16, select.span-16 {
  width: 630px;
}
input.span-17, textarea.span-17, select.span-17 {
  width: 670px;
}
input.span-18, textarea.span-18, select.span-18 {
  width: 710px;
}
input.span-19, textarea.span-19, select.span-19 {
  width: 750px;
}
input.span-20, textarea.span-20, select.span-20 {
  width: 790px;
}
input.span-21, textarea.span-21, select.span-21 {
  width: 830px;
}
input.span-22, textarea.span-22, select.span-22 {
  width: 870px;
}
input.span-23, textarea.span-23, select.span-23 {
  width: 910px;
}
input.span-24, textarea.span-24, select.span-24 {
  width: 950px;
}

.append-1 {
  padding-right: 40px;
}

.append-2 {
  padding-right: 80px;
}

.append-3 {
  padding-right: 120px;
}

.append-4 {
  padding-right: 160px;
}

.append-5 {
  padding-right: 200px;
}

.append-6 {
  padding-right: 240px;
}

.append-7 {
  padding-right: 280px;
}

.append-8 {
  padding-right: 320px;
}

.append-9 {
  padding-right: 360px;
}

.append-10 {
  padding-right: 400px;
}

.append-11 {
  padding-right: 440px;
}

.append-12 {
  padding-right: 480px;
}

.append-13 {
  padding-right: 520px;
}

.append-14 {
  padding-right: 560px;
}

.append-15 {
  padding-right: 600px;
}

.append-16 {
  padding-right: 640px;
}

.append-17 {
  padding-right: 680px;
}

.append-18 {
  padding-right: 720px;
}

.append-19 {
  padding-right: 760px;
}

.append-20 {
  padding-right: 800px;
}

.append-21 {
  padding-right: 840px;
}

.append-22 {
  padding-right: 880px;
}

.append-23 {
  padding-right: 920px;
}

.prepend-1 {
  padding-left: 40px;
}

.prepend-2 {
  padding-left: 80px;
}

.prepend-3 {
  padding-left: 120px;
}

.prepend-4 {
  padding-left: 160px;
}

.prepend-5 {
  padding-left: 200px;
}

.prepend-6 {
  padding-left: 240px;
}

.prepend-7 {
  padding-left: 280px;
}

.prepend-8 {
  padding-left: 320px;
}

.prepend-9 {
  padding-left: 360px;
}

.prepend-10 {
  padding-left: 400px;
}

.prepend-11 {
  padding-left: 440px;
}

.prepend-12 {
  padding-left: 480px;
}

.prepend-13 {
  padding-left: 520px;
}

.prepend-14 {
  padding-left: 560px;
}

.prepend-15 {
  padding-left: 600px;
}

.prepend-16 {
  padding-left: 640px;
}

.prepend-17 {
  padding-left: 680px;
}

.prepend-18 {
  padding-left: 720px;
}

.prepend-19 {
  padding-left: 760px;
}

.prepend-20 {
  padding-left: 800px;
}

.prepend-21 {
  padding-left: 840px;
}

.prepend-22 {
  padding-left: 880px;
}

.prepend-23 {
  padding-left: 920px;
}

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {
  display: inline;
  float: left;
  position: relative;
}

.pull-1 {
  margin-left: -40px;
}

.pull-2 {
  margin-left: -80px;
}

.pull-3 {
  margin-left: -120px;
}

.pull-4 {
  margin-left: -160px;
}

.pull-5 {
  margin-left: -200px;
}

.pull-6 {
  margin-left: -240px;
}

.pull-7 {
  margin-left: -280px;
}

.pull-8 {
  margin-left: -320px;
}

.pull-9 {
  margin-left: -360px;
}

.pull-10 {
  margin-left: -400px;
}

.pull-11 {
  margin-left: -440px;
}

.pull-12 {
  margin-left: -480px;
}

.pull-13 {
  margin-left: -520px;
}

.pull-14 {
  margin-left: -560px;
}

.pull-15 {
  margin-left: -600px;
}

.pull-16 {
  margin-left: -640px;
}

.pull-17 {
  margin-left: -680px;
}

.pull-18 {
  margin-left: -720px;
}

.pull-19 {
  margin-left: -760px;
}

.pull-20 {
  margin-left: -800px;
}

.pull-21 {
  margin-left: -840px;
}

.pull-22 {
  margin-left: -880px;
}

.pull-23 {
  margin-left: -920px;
}

.pull-24 {
  margin-left: -960px;
}

.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {
  display: inline;
  float: left;
  position: relative;
}

.push-1 {
  margin: 0 -40px 1.5em 40px;
}

.push-2 {
  margin: 0 -80px 1.5em 80px;
}

.push-3 {
  margin: 0 -120px 1.5em 120px;
}

.push-4 {
  margin: 0 -160px 1.5em 160px;
}

.push-5 {
  margin: 0 -200px 1.5em 200px;
}

.push-6 {
  margin: 0 -240px 1.5em 240px;
}

.push-7 {
  margin: 0 -280px 1.5em 280px;
}

.push-8 {
  margin: 0 -320px 1.5em 320px;
}

.push-9 {
  margin: 0 -360px 1.5em 360px;
}

.push-10 {
  margin: 0 -400px 1.5em 400px;
}

.push-11 {
  margin: 0 -440px 1.5em 440px;
}

.push-12 {
  margin: 0 -480px 1.5em 480px;
}

.push-13 {
  margin: 0 -520px 1.5em 520px;
}

.push-14 {
  margin: 0 -560px 1.5em 560px;
}

.push-15 {
  margin: 0 -600px 1.5em 600px;
}

.push-16 {
  margin: 0 -640px 1.5em 640px;
}

.push-17 {
  margin: 0 -680px 1.5em 680px;
}

.push-18 {
  margin: 0 -720px 1.5em 720px;
}

.push-19 {
  margin: 0 -760px 1.5em 760px;
}

.push-20 {
  margin: 0 -800px 1.5em 800px;
}

.push-21 {
  margin: 0 -840px 1.5em 840px;
}

.push-22 {
  margin: 0 -880px 1.5em 880px;
}

.push-23 {
  margin: 0 -920px 1.5em 920px;
}

.push-24 {
  margin: 0 -960px 1.5em 960px;
}

.prepend-top {
  margin-top: 1.5em;
}

.append-bottom {
  margin-bottom: 1.5em;
}

body {
  background: black url("../img/wood5.png") repeat center top;
  background-attachment: fixed;
  padding-top: 40px;
}
body.fluid25 #container {
  width: 100%;
}

#sidebar-box {
  display: inline;
  float: left;
  margin-right: 10px;
  width: 310px;
}
* html #sidebar-box {
  overflow-x: hidden;
}
#sidebar-box #sidebar {
  display: inline;
  float: left;
  margin-right: 10px;
  width: 310px;
  margin-top: 30px;
  padding-top: 20px;
  margin-right: 0;
  margin-left: 20px;
  background-color: white;
  height: 523px;
}
* html #sidebar-box #sidebar {
  overflow-x: hidden;
}
#sidebar-box #sidebar nav {
  clear: left;
  padding-top: 10px;
}
#sidebar-box #sidebar nav ul {
  position: relative;
  color: green;
  margin-right: 10px;
}
#sidebar-box #sidebar nav ul li {
  background-image: url("../img/marke_gruen.png");
  background-repeat: no-repeat;
  background-position: 40px center;
  border-top: 1px solid #352618;
  height: 45px;
  line-height: 45px;
  padding-left: 40px;
}
#sidebar-box #sidebar nav ul li:last-child {
  border-bottom: 1px solid #352618;
}
#sidebar-box #sidebar nav ul li a {
  display: inline-block;
  padding-left: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #653515;
}
#sidebar-box #sidebar nav ul li a:hover {
  font-weight: bold;
  text-decoration: none;
}
#sidebar-box #sidebar nav.horizontal {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  *zoom: 1;
}
#sidebar-box #sidebar nav.horizontal li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0px;
  white-space: nowrap;
  display: inline;
  float: right;
  padding-left: 10px;
  padding-right: 10px;
}
#sidebar-box #sidebar nav.horizontal li:first-child, #sidebar-box #sidebar nav.horizontal li.first {
  padding-right: 0;
}
#sidebar-box #sidebar nav.horizontal li:last-child {
  padding-left: 0;
}
#sidebar-box #sidebar nav.horizontal li.last {
  padding-left: 0;
}
#sidebar-box #fb-like {
  width: 100px;
  margin-left: 28px;
  margin-top: 21px;
}

#logo {
  display: inline;
  float: left;
  position: relative;
  margin: 0 -40px 1.5em 40px;
}

#post-it {
  position: relative;
  left: -40px;
  float: left;
}

#logo-tischler-nrw {
  position: relative;
  left: 210px;
  bottom: 25px;
  width: 80px;
}

#facebook-icon {
  float: left;
  position: relative;
  top: 16px;
  left: 15px;
}

#teambild {
  display: block;
  margin: 10px auto 30px auto;
}

#main {
  display: inline;
  float: left;
  margin-right: 10px;
  width: 590px;
  margin-left: 0px;
}
* html #main {
  overflow-x: hidden;
}

header {
  background: transparent url("../img/dach.png") no-repeat top left;
  text-align: center;
  padding-top: 50px;
  color: #cec9c5;
  font-style: italic;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
header h1 {
  background-color: #352618;
  margin: 0;
  font-size: 31px;
  font-family: Georgia;
  font-weight: normal;
}
header h1 span {
  color: #4ba729;
}
header p {
  background-color: #352618;
  margin: 0;
  padding: 20px 30px;
  font-weight: 100;
  font-size: 14px;
}

#message-box {
  text-align: center;
  background-color: #9d2a1b;
  color: #eabc9d;
  font-family: Verdana;
  text-transform: uppercase;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  display: none;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
#message-box a {
  color: #eabc9d;
}

#content {
  background-color: #d0c7bb;
  color: #342517;
  padding: 10px 10px;
  margin-bottom: 50px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
#content h2 {
  font-size: 20px;
  color: #342517;
  font-weight: normal;
  margin-bottom: 0;
  padding-top: 10px;
}
#content h3 {
  font-size: 16px;
  color: #342517;
  font-weight: normal;
  margin-bottom: 0;
  padding-top: 5px;
}
#content p.slogan {
  margin: 0;
  padding: 20px 30px;
  text-align: center;
  font-style: italic;
}
#content div.teammitglied {
  text-align: center;
}
#content div.teammitglied span.name {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.3em;
}
#content div.teammitglied span.bezeichnung {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.3em;
  font-style: italic;
  color: #8a7a6a;
}
#content div.teammitglied p {
  color: #8a7a6a;
  font-style: italic;
}
#content div.leistungs-box {
  height: 130px;
  background-color: #b4a696;
  margin-bottom: 10px;
  padding: 10px;
  position: relative;
}
#content div.leistungs-box h2 {
  margin: 0px;
  color: #342517;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.3em;
}
#content div.leistungs-box h2 em {
  color: #fff;
}
#content div.leistungs-box p.leistungs-beschreibung {
  float: left;
  width: 400px;
  /*250*/
  font-size: 13px;
  margin-top: 10px;
  padding-left: 20px;
  font-style: italic;
}
#content div.leistungs-box div.referenzen {
  display: none;
  position: absolute;
  top: 20px;
  right: 10px;
  float: left;
  width: 250px;
}
#content div.leistungs-box div.referenzen h3 {
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  font-style: italic;
  display: none;
}
#content div.leistungs-box div.referenzen img {
  width: 60px;
  height: 60px;
}
#content div.content-box {
  width: 185px;
  float: left;
  margin-right: 5px;
}
#content div.content-box h2 {
  height: 49px;
  line-height: 49px;
  text-align: center;
  margin: 0;
  font-size: 13px;
  background-color: #b4a696;
  text-transform: uppercase;
  letter-spacing: 0.23em;
}
#content div.content-box h2 img {
  position: relative;
  top: 2px;
  margin: 0px 3px;
}
#content div.content-box div {
  margin-top: 2px;
  background-color: #b4a696;
  margin-bottom: 30px;
}
#content div.content-box div img {
  width: 175px;
  height: 150px;
  margin: 8px 5px 25px 5px;
}

footer {
  clear: both;
  margin-top: 40px;
  text-align: center;
  color: #8d7967;
  width: 100%;
  font-size: 10px;
  text-transform: uppercase;
  background: transparent url("../img/linie-footer.png") no-repeat top center;
  letter-spacing: 0.15em;
}
footer h4 {
  font-size: 10px;
  color: #8d7967;
  font-weight: normal;
  margin-bottom: 0;
  padding-top: 10px;
}
footer p {
  margin: 0;
  padding-top: 0px;
  padding-bottom: 15px;
}
footer a {
  color: #8d7967;
  text-decoration: none;
}
footer a:visited {
  color: #8d7967;
}
footer a:hover {
  color: #8d7967;
  text-decoration: underline;
}

pre, code {
  width: auto;
  padding: 10px;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px / 8px;
  -o-border-radius: 8px / 8px;
  -ms-border-radius: 8px / 8px;
  -khtml-border-radius: 8px / 8px;
  border-radius: 8px / 8px;
  background-color: rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  margin: 0;
}

#container {
  width: 950px;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
  color: #342517;
  background: transparent;
  width: 950px;
}

body {
  font-size: 81.25%;
  line-height: 1.538em;
}

html > body {
  font-size: 13px;
}

body {
  font-family: 'Georgia', sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}
a:visited {
  color: white;
}
a:focus {
  color: white;
}
a:hover {
  color: white;
}
a:active {
  color: white;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: white;
  font-family: 'Georgia', sans-serif;
}

pre, code {
  font-family: 'Ubuntu Mono', sans-serif;
  font-size: 110%;
}

h1 {
  font-size: 4.615em;
  line-height: 1.333em;
}

h2 {
  font-size: 2.615em;
  line-height: 1.176em;
}

h3 {
  font-size: 1.538em;
  line-height: 2em;
}

h4 {
  font-size: 1.385em;
  line-height: 2.222em;
}

p {
  margin-bottom: 1.538em;
}

.round {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
}

#kontaktdaten p {
  display: inline-block;
  width: 49%;
}
#kontaktdaten #adresse {
  text-align: right;
}
#kontaktdaten #kontaktmoeglichkeiten {
  float: right;
  text-align: left;
}

#kontaktform input {
  margin-top: 10px;
  display: block;
  width: 100%;
  background-color: #ffffff;
  padding: 6px 12px;
  box-sizing: border-box;
  border: 1px solid #A4A2A2;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  color: #221919;
  margin-bottom: 5px;
  font-family: 'Georgia', sans-serif;
}
#kontaktform textarea {
  display: block;
  background-color: #ffffff;
  padding: 6px 12px;
  box-sizing: border-box;
  border: 1px solid #A4A2A2;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  color: #221919;
  margin-bottom: 5px;
  font-family: 'Georgia', sans-serif;
}
#kontaktform #kontakt_name {
  width: 450px;
  margin: 5px auto;
}
#kontaktform #kontakt_unternehmen {
  width: 450px;
  margin: 5px auto;
}
#kontaktform #kontakt_nachricht {
  width: 450px;
  height: 300px;
  margin: 5px auto;
}
#kontaktform #kontakt_telefon_mail {
  width: 450px;
  margin: 0px auto;
  margin-top: 5px;
  padding: 0px;
}
#kontaktform #kontakt_telefon_mail #kontakt_telefon {
  width: 220px;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
#kontaktform #kontakt_telefon_mail #kontakt_email {
  width: 220px;
  float: right;
  margin-right: 0px;
  margin-top: 0px;
}
#kontaktform #kontakt_submit {
  background-color: #463524;
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  width: 450px;
  margin: 0px auto;
  padding: 8px 58px;
  text-decoration: none;
}
#kontaktform #kontakt_submit:hover {
  background-color: #6e5b50;
}
#kontaktform #kontakt_submit:active {
  position: relative;
  top: 1px;
}

p.error {
  color: #9D2A1B;
  font-size: 14px;
  padding: 2px 10px;
  margin: 0px;
}

/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}
