/* 
  --- 
  Style SCREEN intro.css
  --- 

  --- Horizontal centering can be achieved by
    - Applying text-align: center in parent container
    - Add margin: auto (margin-left: auto; margin-right: auto) to the content container

  --- Vertical centering see: 
    - http://blog.themeforest.net/tutorials/vertical-centering-with-css/ 
*/

html {
    height: 100%;
}

body  {
  height: 100%; 
  margin:0; 
  padding:0;  
  background-color: #fff;
  text-align: center;
}

a {
    text-decoration: none;
    font-weight: normal;
}

a:hover {
    /*text-decoration: underline;*/
}

/*
  For vertically centering div (page-layout)
*/
div#verticalSpacer {
    float: left;
    height: 50%;
    /* 
          content no-klinker: 590px (*1/2 = 295px)
          content klinker: 617px (*1/2 = 309px)
          content/2;
    */
    margin-bottom: -309px; 
}

/* width: 950px; height: 105px;  */
div#logoContainer {
    clear: both;
    margin: auto;
    background-color: #fff8e7;
    width: 801px; /* 950px - 149px */
    height: 57px; /*84px;*/ /* 105px - 21px */
    text-align: right;
    padding: 48px 149px 0px 0px;
}

div#textContainer {
    margin: auto;
    width: 801px; /* 950px - 149px */
    height: 74px;
    line-height: 74px;
    vertical-align: middle;
    text-align: right;
    background-color: #fff8e7;
    padding: 0px 149px 0px 0px;
    /*border: 1px solid black;*/
}

div#imgContainer {
    clear: both;
    position: relative;
    margin: auto;
    padding: 27px 0px 0px 0px; /*27px = space for klinker */
    height: 411px;
    width: 950px;
    background-color: #fff8e7;
}


span#klinker {
    position: absolute;
    /* no more used after 31.12.2009*/
    display: none;
    z-index: 10;
    top: 0px;
    left: 30px;
    width: 400px;
    height: 216px;
    background-image: url(../../imgs/klinker_400x216.png);
    /* IE6-Hack: bug with transparent pngs -> less nice gif version of image */
    _background-image: url(../../imgs/klinker_400x216_ie6.gif);
}

div#textContainer a {
  font-size: 36px;
  color: #7e450a;
  font-family: "Times New Roman", Times, FreeSerif, serif;
  font-weight: normal;
}