/*************************
LAYOUT
**************************/

* /*Set's border, padding and margin to 0 for all values*/
{
    padding: 0;
    margin: 0;
}

body, html {
    color: #68483b; 
    font-family: Tahoma,Verdana,Arial;
    background-color: #000;
    text-align: center; /*** Centers the design in old IE versions ***/
    height: 100%;
}

body {
    font-size: 100.01%;
}

.clear { clear: both; }

#mainContainer {
    width: 950px;
    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 ***/
    font-size: 0.8em;

}

* 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 */

#header {
    display:none;
}



/************* CONTENT AND COLUMNS */

.outer {
    padding-left: 0px;
}
* html .outer {
    padding-right: 0px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
    width: auto; /*** 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: 8.0em;
}
* html .inner {
    width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
    float: left;
    width: 500px;
    margin-left: 0px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
    /*** No need for hacking IE on this layout ***/
}
#content {
    float: right;
    width: 100%;
	padding-top:150px;
	font-size:1.0em;
	line-height:1.3;
	
}

.noprint{display:none;}

#content form{display:none;}

* html #content {
    position: relative;  /*** IE needs this  ***/
}
.contentWrap{
    padding: 0 5px 0px 5px;
    margin-top: 0x;
}

/************* LEFT COLUMN */

/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/

#left {
  display:none;
	
}

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




/************* RIGHT COLUMN */

#right {
  display:none;
}
* html #right {
    position: relative;  /*** IE needs this  ***/
    margin-right: -0px; /*** IE gets this margin. ***/
}



/************* FOOTER */

#footer {
    width: 500px;
    height: 8.0em; /*** 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: -8.0em; /*** 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: left;
	padding-left:0px;
	}
/*
.left{float:left;}
.right{float:right;}*/

/*Inhaltseiten*/
/*Navigation links*/


/*Inhaltsbereich*/
p#rootline {display:none;}
h1{font-family: "Times New Roman", Times, serif;padding:30px 0px;font-size:2.5em;}
h2{padding:20px 0px 10px 0px;font-size:1.5em;}
h3{padding:10px 40px;}
#zitat{float:right;width:200px;margin:10px;background-image:url(../img/bg_zitat.gif);background-position:left 3px;background-repeat:no-repeat;padding:0px 5px 0px 25px;color:#e69422;}
p{margin:10px;}
ul{margin-left:20px;}
*html ul{padding-left:10px;}
#content a{color:#c30000;}
#content a:hover{color:#e69422;}
#content a:visited{color:#e69422;}
#content a.anker{background-image: url(../img/anker_ico.gif);background-position:left 2px; background-repeat:no-repeat;display:block;padding-left:20px;color:#c30000;}
#content a.anker:hover{color:#e69422;}

p.statement {width:500px;}
p.kunde{text-align:right;font-size:0.85em;font-style:italic;width:500px;}

/*Fußzeile*/
#footer{font-size:0.8em;}
#footer p{margin-top:0px;}
#footer a{text-decoration:none;color:#c30000;}
#footer a:hover{color:#e69422;}
#footer a:visited{color:#e69422;}

p#unter1{display:none;}
.apfelblau{font-size:0.7em;color:#68483b;}


/*Formular*/
input {border:1px solid #68483b; background-color: transparent;margin:3px 0px;font-family:Tahoma,Arial,Verdana;color:#68483b;width:100%;padding:3px; }
select{background-color:#f9f3d8;color:#68483b;width:100%;margin:3px 0px;padding:3px;font-family:Tahoma,Arial,Verdana;}
textarea{width:100%;height:100px;background-color:transparent;margin:10px 0px;font-family:Tahoma,Arial,Verdana;color:#68483b;padding:3px;border:1px solid #68483b;}
input.button{background-color:#68483b;color:#f9f3d8;font-size:1.0em;}
