/*************************
LAYOUT
**************************/

* /*Set's border, padding and margin to 0 for all values*/
{
    padding: 0;
    margin: 0;
}

body, html {
    color: #000; 
    font-family: Arial,Helvetica;
  font-size:12px;
    background:url(images/bg.gif) repeat-y top center #ededee;
    text-align: center; /*** Centers the design in old IE versions ***/
    height: 100%;
}

body {
    font-size: 100.01%;
}

.clear { clear: both; }

#mainContainer {
    width: 960px;
    margin: 0 auto; /*** Centers the design ***/
    min-height: 100%;
    background-color: #b4d0f4;
    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 */

#header {
    height: 165px;
  overflow: hidden;
  background-image: url(images/top.jpg);
  background-repeat: no-repeat;
  width: 960px;
  background-color:#fff;
  position:relative;
}

#logo{
  position:absolute;
  top:20px;
  left:13px;
}

#logotext{
  position:absolute;
  top:142px;
  left:13px;
  width:212px;
  text-align:center;
  font-size:16px;
  font-weight:bold;
}
#logotext a, #logotext a:link, #logotext a:visited, #logotext a:active{
  color:#0e3083;
  text-decoration:none;
}

#topnav{
  position:absolute;
  top:140px;
  right:15px;
  color:#fff;
  font-size:10px;
  font-weight:bold;
}
#topnav a, #topnav a:link, #topnav a:visited, #topnav a:active{
  color:#fff;
  font-weight:bold;
  text-decoration:none;
}
#topnav a:hover{
  text-decoration:underline;
}

#flagmenu{
  position:absolute;
  top:13px;
  right:15px;
  color:#fff;
  font-weight:bold;
}
.flags{
  float:right;
  position:relative;
}
.flags img{
  margin-top:1px;
}
.flag-text{
  position:relative;
  top:-2px;
}
.tx-srlanguagemenu-pi1{float:left;}

#temp{
  position:absolute;
  top:98px;
  right:45px;
  width:140px;
  color:#fff;
}
#temp-left{
  width:80px;
  float:left;
  font-weight:bold;
  font-size:12px;
}

#temp-right{
  width:60px;
  float:right;
  font-size:30px;
  font-weight:bold;
}

/************* CONTENT AND COLUMNS */

.outer {
    padding-left: 212px;
  background:url(images/cbg.gif) top center no-repeat;
}
* html .outer {
    padding-right: 212px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
    width: 748px; /*** 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: 20px;
}
* 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: 748px;
    margin-left: -212px; /*** 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: 536px;
}
* html #content {
    position: relative;  /*** IE needs this  ***/
}
.contentWrap{
    padding: 16px 8px 10px 8px;
    margin-top: 0px;
}

/************* 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: 212px;
    overflow: hidden;
}

* html #left {
    position: relative;  /*** IE needs this  ***/
}

#leftWrap{
  padding:6px;
}

#leftmenubut{
  margin-top:8px;
}

#leftmenu{
  margin-bottom:10px;
}

#leftmenu ul{
  list-style-type:none;
  margin-top:10px;
  margin-left:10px;
}

#leftmenu li{
  padding:3px 0 2px 0px;
  border-bottom:1px dotted #0e3083;
}

#leftmenu a, #leftmenu a:link, #leftmenu a:visited, #leftmenu a:active{
  color:#0e3083;
  text-decoration:none;
  font-size:13px;
  background:url(images/bull_men.gif) left center no-repeat;
  padding-left:12px;
  font-weight:normal;
}
#leftmenu a:hover{
  color:#1b5dff;
  text-decoration:none;
  font-size:13px;
  background:url(images/bull_men_act2.gif) left center no-repeat;
  padding-left:12px;
}

#leftmenu ul ul{
  list-style-type:none;
  margin-top:0px;
  margin-left:10px;
}
#leftmenu ul ul li{
  padding:2px 0 1px 0px;
  border-bottom:0px;
}

/************* RIGHT COLUMN */

#right {
    float: right; 
    width: 212px;
}
* html #right {
    position: relative;  /*** IE needs this  ***/
    margin-right: -212px; /*** IE gets this margin. ***/
}

#rightWrap{
  padding:6px;
}


/************* FOOTER */

#footer {
    width: 960px;
    height: 20px; /*** 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: -20px; /*** 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. ***/
    
}



/*************************
INHALTE
**************************/

h1{
  color:#0e3083;
  font-size:18px;
  padding-bottom:10px;
}
h2{
  color:#0e3083;
  font-size:15px;
  padding-bottom:6px;
}
h3{
  color:#0e3083;
  font-size:12px;
  padding-bottom:3px;
}

h4{
  color:#e30101;
  font-size:12px;
  font-weight:bold;
  padding-bottom:3px;
}

ul,ol{
  margin-left:25px;
  padding:0 0 5px 0;
}

p{
  padding:0 0 10px 0;
}

a, a:link, a:visited, a:active{
  color:#0e3083;
  font-weight:bold;
}
a:hover{
  color:#fff;
}

table{
  font-size:12px;
  border-collapse:collapse;
  margin-bottom:10px;
}
th{
  padding:0 5px 2px 0;
}
td{
  border:0px solid #fff;
  padding:3px 5px;
  background:#c5dbf7;
  margin:0;
}
td p{
  padding:0px;
}


.teambox{
  background:#c5dbf7;
  padding:5px;
  float:left;
  margin-bottom:10px;
}

.teambox-links{
  background:#c5dbf7;
  padding:5px;
  float:left;
  width:160px;
  margin-right:10px;
  margin-bottom:10px;
}

.teambox-rechts{
  background:#c5dbf7;
  padding:5px;
  float:right;
  width:160px;
  margin-bottom:10px;
}

.teambox p, .teambox-links p, .teambox-rechts p{
  margin:0;
  padding:0;
}
.teambox h5, .teambox-links h5, .teambox-rechts h5{
  font-weight:normal;
  font-size:10px;
  margin:0;
  padding:0;
}

.csc-frame-rulerBefore{
  border-top:1px dotted #0e3083;
  margin-top:10px;
  padding-top:5px;
}
