/* 
    Document   : init
    Created on : 29.03.2013, 17:23:18
    Author     : AOONO MEDIA e.K.
    Description:
        initial configuration: basics for all pages.
        (might be overridden by other styles later)
*/

/***********************************/
/* G E N E R A L   S E T T I N G S  */
/***********************************/
* {
    margin: 0;
    padding: 0;
    /* 
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    */
}
  
img { height: auto; max-width: 100%; }
a img { border: none; }

html{ font-size: 100%; }

body {
    /* transform could be used for zoom in JS */
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -o-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    text-align: center;
    font-family: Helvetica, Arial, sans-serif; 
    font-size: 75%; /* 12px */
    color: #000000;
    background: #9EA1A3 url(images/backgndBody.jpg) left top repeat-x;
}

/* remove lines around links */
a { outline: none; }

/* headlines */
h1, h2, h3, h4, h5, h6 { font-weight: 500; line-height: 115%; }

h1 { font-size: 1.83em; }
h2 { font-size: 1.49em; }
h3 { font-size: 1.49em; padding-bottom: 8px; }
h4 { font-size: 1.25em; font-weight: 700; margin-bottom: 10px;}
h5 { font-size: 1.0em; font-weight: 700; }
h6 { font-size: 0.9em; font-weight: 700; padding-bottom: 15px;}

/* clear floats */
hr {
    clear: both;
    height: .1px;
    border: none;
    visibility: hidden;
}

p {
    padding-bottom: 15px; 
    line-height: 130%;
}

.bold {
    font-weight: 700;
}


/***********************************/
/* H E A D E R  */
/***********************************/
.header {
    margin: 0 auto;
    max-width: 980px;
    height: 128px;
}

.headerTop {
    position: relative;
}

/************/
/* Logo */
.header .headerTop .logo {
    position: absolute;
    top: 26px;
    left: 21px;
}

/************/
/* Suche */
.header .headerTop .suche {
    position: absolute;
    right: 0;
    top: 43px;
}

.header .headerTop .suche input {
   /* background: url(images/backgndSucheInput.gif) right center no-repeat; */
    padding: 1px 0 1px 5px !important;
    color: #444;
}
.header .headerTop .suche input:hover { background-color: #f2f2f2; }
.header .headerTop .suche input:focus { background-color: #F0F9FF; }

/************************/
/* Sprache / Langugage */
.header .headerTop .language {
    position: absolute;
    right: 220px;
    top: 47px;
    height: 15px;
    overflow: hidden;
    transition: height 0.5s linear;
    /* Firefox 4 */
    -moz-transition: height 0.5s linear;
    /* Safari and Chrome */
    -webkit-transition: height 0.5s linear;
    /* Opera */
    -o-transition: height 0.5s linear;
    z-index: 999;
}

.header .headerTop .language:hover {
    height: 90px;
}

.header .headerTop .language ul {
    margin: 0;
    padding: 0;
}

.header .headerTop .language li {
    padding: 0; /* overwrite from rte.css */
}

.header .headerTop .language ul li a,
.header .headerTop .language ul li a:hover {
    display: block;
    text-decoration: none;
    text-align: left;
    color:#000000;
    padding: 2px 8px;
    background: url(images/backgnd_language.png) left top repeat-x;
    /* background-color: #E8E9EA;  */
}

.header .headerTop .language ul li a:hover {
    color: #0072BC;
}

.header .headerTop .language a,
.header .headerTop .language a:hover {
    text-decoration: underline;
    color: #000000;
}

.header .headerTop .language a:hover { color: #0072BC; }

/************/
/* Login */
.header .headerTop .login {
    position: absolute;
    right: 350px;
    top: 47px;
}

.header .headerTop .login a,
.header .headerTop .login a:hover {
    text-decoration: underline;
    color: #000000;
}

.header .headerTop .login a:hover { color: #0072BC; }

/***********************************/
/* T O P N A V I G A T I O N  */
/***********************************/
.header .topNavigation {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: url(images/backgndTopNavigation.png) left top repeat-x;
}

.header .topNavigation ul {
    margin: 0 auto;
    display: table;
    width: 980px;
    height: 19px;
    padding: 23px 0 24px 0;
    list-style: none;
}

.header .topNavigation li {
    display: table-cell;
    vertical-align: middle;
}

.header .topNavigation li a, 
.header .topNavigation li a:hover {
    display: block;
    margin-left: -1px;
    padding: 0 15px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

/* border-left green at hover */
.header .topNavigation li a:hover,
.header .topNavigation li a.current {
    color: #72bf44;
    border-left: 1px solid #72bf44;
}
 
/* make neighbour border at right side green also */
.header .topNavigation li:hover + li a,
.header .topNavigation li.current + li a {
    border-left: 1px solid #72bf44;
}

.header .topNavigation li.last a:hover,
.header .topNavigation li.last a.current {
   border-right: 1px solid #72bf44; 
}

/***********************************/
/* C O N T A I N E R   */
/***********************************/
.container {
    /* neccessary for draggable 360° and Vorteile at ProductDetails */
    position: relative;
    margin: 0 auto;
    text-align: center;
    width: 1020px;
}

/***********************************/
/* C O N T E N T I N N E R */
/***********************************/
.content .contentInnerHome {
    float: left;
    width: 537px;
    margin-left: 40px;
}

.content .contentInnerHome h1,
.content .contentInnerFollow h1 {
    font-size: 1.0em;
    font-weight: 700;
}

.content .contentInnerHome h2,
.content .contentInnerFollow h2 {
    font-size: 1.9em;
    font-weight: 700;
    padding-bottom: 29px;
}


/***********************************/
/* N E W S */
/***********************************/
.content .news {
    position: relative;
    float: right;
    width: 280px;
    padding: 12px 12px 25px 12px;
    background-color: #E2E3E4;
}

.content .news .newsHeadline {
    position: absolute;
    right: 0;
    top: -13px;
    display: block;
    width: 180px;
    padding: 5px 0 4px 10px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    background-color: #ff3300;
}

/* News inner */
.content .news .news-latest-container {
    padding-bottom: 10px;
}

.content .news .news-latest-container h2 {
    font-weight: 600;
    padding-bottom: 8px;
    line-height: 115%;
}

.content .news .news-latest-item {
    border-bottom: 1px solid #444444;
    margin-bottom: 15px;
}

.content .news .news-latest-item.last {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.content .news .news-latest-container p {
    padding-right: 35px;
}

.content .news .date {
    display: block;
    font-size: 0.88em;
}

.content .news .big {
    display: block;
    padding-bottom: 8px;
    font-size: 1.2em;
    font-weight: 700;
}

.content .news a,
.content .news a:hover {
    color: #000000;
    text-decoration: none;
}

.content .news a:hover {
    color: #ff3333;
}

.content .news a.continue {
    padding-left: 30px;
}


/***********************************/
/* N E W S L E T T E R  */
/***********************************/
.content .subscribeNewsletter {
    position: absolute;
    right: 0;
    bottom: -12px;
    display: block;
    width: 180px;
    padding: 5px 0 4px 10px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    background-color: #000000;
}

.content .subscribeNewsletter a,
.content .subscribeNewsletter a:hover {
    color: #ffffff;
    text-decoration: none;
}

.content .subscribeNewsletter a:hover {
    color: #ff3300;
}


/***********************************/
/* PLZSUCHE  */
/***********************************/
.content .input-plz-form,
.content .input-country-form {
    margin-bottom: 20px;
}

.content .input-plz-form #tx_hdretailer_pi1_postcode {
    margin-right: 20px;
}

.content .input-plz-form .send {
    margin-left: 10px;
}

.content .plzSuche { 
    position: absolute;
    left: 21px;
    bottom: 0;
    padding: 10px;
    color: #ffffff;
    background-color: #FF3333;
}

.content .plzSuche input {
    /* background: #ffffff url(images/backgndSucheInput.gif) right center no-repeat; */
    padding: 1px 0 1px 5px !important;
    color: #aaa;
}

.content .plzSuche .search_submit {
    position: absolute;
    top: 15px;
    right: 13px;
}

.content .plzSuche input:hover { background-color: #f2f2f2; }
.content .plzSuche input:focus { background-color: #F0F9FF; }


/***********************************/
/* P L Z - S U C H E   E R G E B N I S L I S T E  */
/***********************************/
.tx-hdretailer-pi1 .address-record {
    margin-bottom: 15px;
}

/***********************************/
/* I R   F A Q  */
/***********************************/
.content .tx-irfaqaz-pi1 {
    padding-right: 22px;
}

.content .irfaq-search-form {
    margin-bottom: 10px;
}

.content .tx-irfaqaz-pi1 p {
    padding: 0 20px 3px 8px;
}
.content .tx-irfaqaz-pi1 ul {
    padding: 10px 20px 15px 15px;
}

.tx-irfaqaz-pi1 .additional-info {
    margin: 10px 20px 15px 10px !important;
    border-top: 1px solid #E6E6E6 !important;
}

/***********************************/
/* F O O T E R  */
/***********************************/
.footer {
    padding: 3px 30px 0 20px;
    font-size: 0.9em;
    width: 970px;
    height: 28px;
    text-align: right;
    color: #ffffff;
    background: url(images/backgndFooter.png) left top no-repeat;
}

.footer a:link, .footer a:visited, .footer a:hover {
    color: #ffffff;
    text-decoration: none;
    padding: 0 5px;
}

.footer a:hover {
    color: #ff3333;
}

