/*
  CSS-file for Strictly CSS three column layout 2006
  http://www.strictlycss.com
  Developed by Eivind Savio
*/

body, html {
 text-align: center; /*** Centers the design in old IE versions ***/
 height: 100%;
}

.clear { clear: both; }

#mainContainer {
 width: 897px;									/* TA: main_content */
 margin: 0 auto; /*** Centers the design ***/
 min-height: 100%;
 text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}

* html #mainContainer {
 height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

#header {
 height:195px;
 position:relative;
}

.outer {
 padding-left: 177px;								/* TA: P_OUTER */
}

* html .outer {
 padding-right: 0px; 								/* TA: IE_P_OUTER */			/* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}

.inner {
 width: 720px; 									/* TA: middle_inner */			/*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
 padding-bottom: 45px;
}

* html .inner {
 width: 100%;
}

.float-wrap {
 float: left;
 width: 897px;									/* TA: left_and_middle_content*/
 margin-left: -177px; 								/* TA: float_margin_left */				/*** Same length as .outer padding-left but with negative value ***/
}


#content {
 float: right;
 width: 720px;  								/* TA: middle_content */
}

* html #content {
 position: relative;  /*** IE needs this  ***/
}

.contentWrap {
 padding: 0px 10px 0px 10px;
}


* html .contentWrap {
  height: auto !important; /* for the FiFo */
  height: 386px;  /* for the IE (7) */
}


#left {
 float: left;
 width: 177px;									/* TA: left */
 min-height: 386px;								/* TA: pix-lin höhe */
}

* html #left {
 position: relative;  /*** IE needs this  ***/
 height: 386px;									/* TA: pix-lin höhe */
}



#right {
 float: right;
 width: 0px;									/* TA: right */
 min-height: 130px;
 background-position:0px;
}

* html #right {
 position: relative;  /*** IE needs this  ***/
 margin-right: 0px; /*** IE gets this margin. ***/ 				/* TA: html_right_margin   */
 height: 242px;
}



#footer {
 width: 897px;									/* TA: footer */
 height: 45px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
 margin: 0 auto;
 margin-top: -45px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
 text-align: center;
 position:relative;
}

/* COOKIE */
.cc_container .cc_more_info {
    color: #b5b8e3 !important;
    font-size: 1em !important;
    text-decoration: underline !important;
}
.cc_container .cc_more_info:hover {
    text-decoration: none !important;
}
.cc_container .cc_btn {
    background-color: #b5b8e3 !important;
    color: #fff !important;
}
