/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #000; 
font-family: Tahoma, Arial, Helvetica, sans-serif;
background-color: #ffffff; 
text-align: center; /*** Centers the design in old IE versions ***/
height: 100%;
}
body {
font-size: 10pt;
line-height: 150%;
}
.clear { clear: both; }
#mainContainer {
width: 770px;
margin: 0 auto; /*** Centers the design ***/
min-height: 100%;
background: url(../images/faux-3-2-col.gif); /*** This is our faux columns ***/
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 ***/
}

html {overflow-y: scroll;}
/**************************
HEADER
**************************/
#header {
color: #333;
width: 750px;
padding: 10px;
height: 105px;
background: url(../images/header.jpg);
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 150px;  
}
* 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: 620px; /*** 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 ***/
}
* 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: 770px;
margin-left: -150px; /*** 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: 610px;
background: #fff;
padding-top: 5px;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin-left: 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
#contentspalte1{ /*** Beim Einsatz dieser Spalten braucht es kein .contentwrap ***/
float: left;
width: 184px;
padding: 5px;
text-align:justify;
word-wrap: ;
}
#contentspalte2{
float: left;
width: 184px;
padding: 5px;
text-align:justify;
margin-left: 14px;
margin-right: 14px;
}
#contentspalte3{
float: left;
width: 184px;
padding: 5px;
text-align:justify;
}

/**************************
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 {
float: left;
width: 140px;
padding-left: 10px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}

A:link           {color: #cc0000; text-decoration: none }
A:visited        {color: #cc0000; text-decoration: none }
A:hover          {color: #cc0000; text-decoration: underline }
A:visited:hover  {color: #cc0000; text-decoration: underline }
A:active         {color: #cc0000; text-decoration: none }

a.button {
 text-decoration:	none; 
 display: block; width: 110px; 
 text-align: right; 
 border-bottom-width: 1px;
 color: black; 
 border-bottom-color: #ffffff; 
 border-bottom-style: solid; 
} 

a.button:hover { border-bottom-color: #cc0000; text-decoration:	none; color: #cc0000;} 

li.button {list-style-type: none; margin: 10px;}

.seitentitel {color: #cc0000; font-weight: bold;}

.bilderlinks {float: left; margin-right: 20px; margin-top: 5px; margin-bottom: 50px;}

.teambild {margin-top: 5px; margin-left: 5px; margin-right: 10px;}

/**************************
tabcontents
**************************/

#a1,#a2,#a3,#a4,#a5 {margin-top: 10px; margin-left: 10px;}