@charset "utf-8";
/*
 * first import Eric Meyer's CSS-Reset
 * or any any other css-reset is needed, otherwise border, margins, paddings etc. have to be set to 0 for every element
 */
@import url('reset.css');
/*
 * Colorset
 * dark blue: #170247
 * orange: #e87301
 */

body {
  background-color: #e87301;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

/* suppress the dotted box around links after clicking */
a:focus {
  outline: none;
} 


/* ***************************** layout styles ***************************** */

#wrapper {
  width: 1000px;
}

#header {
  width: 1000px;
  height: 74px;
  background-image: url("../layout_images/bg_header.jpg");
  background-repeat: no-repeat;
  position: relative;
}

  #title {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #170247;
    text-align: right;
    line-height: 24px;
  }

  #logo {
    width: 184px;
    height: 74px;
  }
    
  #topnav {
    position: absolute;
    left: 250px;
    bottom: 3px;
  }
    #topnav ul {
      font-size: 11px;
      font-weight: bold;
      text-transform: uppercase;
    }
      #topnav li {
        display: inline;
      }
        #topnav li a {
          color: #000;
          padding-right: 6px;
          padding-left: 6px;
          padding-top: 2px;
          padding-bottom: 2px;
          text-decoration: none;
          display: inline-block;
        }
      #topnav li.active {
      }
        #topnav li.active a {
          color: #fff;
          border: 1px solid #fff;
          padding-left: 5px;
          padding-right: 5px;
          background-color: #a61818;
        }

#headerimage {
  margin-bottom: 40px;
}

#sidenav {
  float: left;
  width: 160px;
  margin-left: 20px; /* fixed in ie6.css */
  margin-right: 20px;
}
  #sidenav h2 {
    color: #170247;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.3em;
  }
  #sidenav ul {
    margin-left: 20px;
  }
    #sidenav li {
      padding-bottom: 2px;
      padding-top: 10px;
      border-bottom: 1px solid #fff;
      color: #fff;
      font-size: 11px;
    }
      #sidenav li a {
        color: #fff;
        display: block;
        text-decoration: none;
        margin-left: -10px;
        padding-left: 10px;
      }
      #sidenav li a:hover,
      #sidenav li.active a {
        background-image: url("../layout_images/bullet_arrow_active.gif");
        background-position: 0px 5px;
        background-repeat: no-repeat;
      }


#main_content {
  float: left;
	width:580px;
	height:484px;
	background-color: #fff;
	color: #000000;
	padding: 5px 20px 20px 20px;
	overflow: auto;
}

body#sparflug #main_content {
  float: left;
  width: 615px;
  background-color: transparent;
  color: #000000;
  padding: 0;
  overflow: auto;
}


#sidebar {
  float: left;
	width: 148px;
	visibility: visible;
	overflow: visible;
  margin-left: 20px;
}
  #sidebar .sidebarbox {
    width:148px;
    height:240px;
    background-color: #fff;
    margin-bottom: 29px;
  }
    #sidebar .sidebarbox h3.boxheader {
      background-image: url("../layout_images/bg_boxheader_sidebarbox_rendered.gif");
      background-repeat: no-repeat;
      height: 18px;
      font-size: 12px;
      font-weight: bold;
      color: #fff;
      text-align: center;
      padding-top: 5px;
      margin-bottom: 2px;
    }
    #sidebar .sidebarbox h3.boxheader a {
      color: #fff;
      text-decoration: none;
    }
    #sidebar .sidebarbox img {
      display: block;
      margin: 0 auto 2px auto;
    }
    #sidebar .sidebarbox p {
      font-size: 10px;
      font-weight: 200;
      color: #170247;
      margin: 5px 5px 5px 5px;
      line-height: 1.3em;
    }


#footer {
  clear: both;
}


/* ***************************** content styles ***************************** */

#main_content h2 {
  color: #170247;
  font-size: 18px;
  font-weight: bold;
  margin-top: 13px;
  margin-bottom: 18px;
}

#main_content p,
#main_content .p {
  line-height: 1.3em;
  margin-bottom: 1em;
}

#main_content a {
  color: #170046;
}

#main_content h3 {
  font-size: 12px;
  font-weight: bold;
  color: #140043;
  line-height:16px;
  margin-bottom:10px;
}

#main_content ul, ol {
  font-size: 12px;
  line-height: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 40px;
}

table.issuertable th,
table.issuertable td {
  border-left:1px solid #bbbbbb;
  text-align: left;
  padding:4px;
}
  table.issuertable tr.oddrow {
    background-color: #e87301;
  }

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.noFloatLeft {
  float: none;
  text-align: left;
}

.noFloatCenter {
  float: none;
  text-align: center;
}

.noFloatRight {
  float: none;
  text-align: right;
}

.errormessage {
  color: #8e1e04;
}

.infopackageform_selector_checkbox {
  clear: left;
  float: left;
  width: 40px;
}

.infopackageform_selector_label {
  margin-left: 40px;
}