/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }


.clear {
  clear: left;
}

#container {
  padding: 5px;
  min-width: 800px;
}

/**
 * tables etc.
 */
 
div.avisiertmarker {
    float:left;
    color:red;
    font-weight:bold;
}

.basetable {
  border: 1px solid rgb(204,204,204);
  /*padding: 5px;*/
  background: white;
  box-shadow: 2px 2px 7px #777;
  -webkit-box-shadow: 2px 2px 7px #777;
  filter: progid:DXImageTransform.Microsoft.Shadow(color='#777777', Direction=135, Strength=4);
  margin-bottom: 20px;
  width: 100%;
}

.resultlist {
/*    height: 500px;*/
}

td {
    vertical-align:top;
}

table.active {
    background: #D2DDFA;
}

table.basetable td.active {
    background: #D2DDFA;
}

table.error {
    background: #FBD3D5;
}

table.resultlist.error th {
    background: #E59B9B;
}

table.basetable th {
  /*border: 1px solid rgb(204,204,204);*/
  border-bottom: 1px solid rgb(204,204,204);
  background:rgb(238,238,238);
  color: rgb(34,34,34);
  text-align: left;
  padding: 2px 4px;
}

table.basetable td {
  /*border: 1px solid rgb(204,204,204);*/
  color: black;
  background: transparent;
  text-align: left;
  padding: 2px 4px;
}

table.basetable td.lbl1 {
  width: 100px;
  font-style:italic;
  font-weight:bold;
}
table.basetable td.lbl2 {
  width: 150px;
  font-style:italic;
  font-weight:bold;
}

div.scrollit {
  height:300px;
  overflow:auto;
/*  overflow-y:scroll;*/
/*  padding-right: 20px;*/
/*  margin-right: 20px;*/
}

.innertable {
/*  border: 1px solid rgb(204,204,204);*/
  /*padding: 5px;*/
  background: white;
/*  box-shadow: 2px 2px 7px #777;
  margin-bottom: 20px;*/
  width: 100%;
  width: 97%\9; /*ie8 and below*/
}

table.innertable th {
  border-bottom: 1px solid rgb(204,204,204);
  background:rgb(238,238,238);
  color: rgb(34,34,34);
  text-align: left;
  padding: 2px 4px;
}

table.innertable td {
  color: black;
  background: #D8E0FF;
/*  background: white;*/
  text-align: left;
  padding: 2px 4px;
}

table.innertable tr.separator td {
  border-top: 2px solid #505050;
  height:0px;
  padding:0px;
}

table.innertable tr.title td {
  background: #B1BCE3;
  text-align: center;
  font-weight: bold;
/*#95ACFF #9FB3FF #7995FF #577BFF*/
}

table.innertable tr.new td{
    color: #C00E0E;
    font-weight:bold;
}


table.innertable tr.highlight:hover {
    background: rgb(204,204,204);
    cursor: pointer;
}

table.innertable tbody.highlight:hover {
    background: rgb(204,204,204);
    cursor: pointer;
}

table.innertable tr.highlight:hover td {
    background: rgb(204,204,204); /*ie8*/
/*    background: transparent;*/
}

table.innertable tbody.highlight:hover td {
    background: rgb(204,204,204); /*ie8*/
/*    background: transparent;*/
}

table.buttontab {
    border-collapse: collapse;
}
table.buttontab td {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
}

table.buttontab td.leftbuttons {
    padding-left: 0px;
    text-align: left;
}

table.buttontab td.rightbuttons {
    padding-right: 0px;
    text-align: right;
}

table.nestedbuttontab {
/*    border-collapse: collapse;*/
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}
table.nestedbuttontab td {
    width: 50%;
/*    padding-top: 0px;
    padding-bottom: 0px;*/
}

table.nestedbuttontab td.leftbuttons {
    padding-left: 0px;
    text-align: left;
}

table.nestedbuttontab td.rightbuttons {
    padding-right: 0px;
/*    text-align: right;*/
}



.form_button {
    background-color: #E7E7E7;
    border: 1px solid #BCBCBC;
    color: black;
    font-weight: bold;
    margin: 0;
    padding: 2px 10px;
}
.form_button:hover {
    background-color: white;
    cursor: pointer;
    padding-top: 2px;
}

input.new_pdfs {
    color: #C00E0E;
    border: 2px solid #C00E0E;
}


/**
 * headers
 */

h1, h2, h3, .tagline {
  font-family: Verdana, Helvetica, Arial, FreeSans, sans-serif;
}

h1 {
  margin: 0;
  padding-top: 10px;
  font-size: 35px;
  font-weight: 700;
  font-style: normal;
}

h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
}

h3 {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

/**
 * text
 */

a {
  text-decoration: none;
  color: #4267B6;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

.tagline {
  font-size: 15px;
  margin-bottom: 20px;
  width: 300px;
  color: #646464;
}

h1 .small {
  font-size: 16px;
  font-weight: normal;
}

p .small {
  font-size: 13px;
  margin-top: 60px;
}

.nobreak {
  white-space: nowrap;
}

pre {
  clear: left;
}

ul, ol, p {
  margin-bottom: 2em;
  clear: left;
}

/**
 * warning
 */

.warning {
  border: 1px solid #D4D8EB;
  padding: 10px;
  background: #F0F1F8;
  box-shadow: 2px 2px 7px #777;
  margin-bottom: 40px;
}

.warning strong {
  background: #747477;
  color: #FFF;
  border-radius: 4px;
  padding: 2px 4px;
}

/**
 * home page
 */
body {
  margin: 0;
/*  padding: 5px;*/
  background-color: #F5F5FF;
  font-family: Helvetica, Arial, FreeSans, sans-serif;
  color: #454545;
  font-size: 14px;
}

html, body {
    height: 100%;
}

html, body, .centerLayout, #container, .col1, .col2, .col2content {
/*    height: 100%;*/
/*    min-height: 100%;*/
}

body.home .columns {
/*    height: 500px;
    width:100%;
    position: fixed;
    min-width: 700px;
    top: 84px;
    bottom: 10px;*/
}


body.home {
  background: #FFF;
}

body.home h1 {
  position: relative;
/*  width: 800px;*/
}

body.home .centerLayout {
  max-width: 1200px;
  margin: 0 auto;
}

body.home .col1 {
  width: 30%;
  float:left;
  clear:both;
}

body.home .col2 {
  width: 70%;
  float:left;
}

.col2content {
  margin-left: 10px; 
}


body.home .linkColumn {
  width: 266px;
  float: left;
}

body.home ul {
  list-style-type: none;
  padding: 0;
}

body.home ul li {
  margin: 0 0 10px 0;
}

/*progress*/

.modal {
display:    none;
position:   fixed;
z-index:    1000;
top:        0;
left:       0;
height:     100%;
width:      100%;
background: rgb( 255, 255, 255 ) 
            url('../images/progress.gif') 
            50% 50% 
            no-repeat;
background: rgba( 255, 255, 255, .8 ) 
            url('../images/progress.gif') 
            50% 50% 
            no-repeat;
opacity: 0.80;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 80);
filter: alpha(opacity = 80);
}
body.loading {
    overflow: hidden;
}
body.loading .modal {
    display: block;
}

/*dialog*/
/* Z-index of #mask must lower than #boxes .window */
#dlgmask {
  position:absolute;
  z-index:100;
  background-color:#000;
  display:none;
  left:0px;
  top:0px;
}
   
#boxes .window {
  position:fixed;
  width:750px;
  height:400px;
  display:none;
  z-index:110;
  padding:20px;
  background-color:white;
}

 
/* Customize your modal window here, you can add background image too */
#boxes #dialog {
  width:705px;
  height:403px;
}

/* Customize your modal window here, you can add background image too */
#boxes #dialoglief {
  width:685px;
  height:153px;
}


#behaelterliste {
  height:310px;
  width:665px;
  font-size: 13px;
  font-family: 'Lucida Console','Courier New',Monaco,monospace;
}
#behaelterliste option {
  padding-left: 2px;
}
#behaelterlistentitel {
  padding-left: 3px;/*option padding wird in IE ignoriert*/
  font-size: 13px;
  font-family: 'Lucida Console','Courier New',Monaco,monospace;
}

/* date picker icon*/
a.dp-choose-date {
        float: left;
        width: 16px;
        height: 16px;
        padding: 0;
        margin: 5px 3px 0;
        display: block;
        text-indent: -2000px;
        overflow: hidden;
        background: url(../images/calendar.png) no-repeat;
}
a.dp-choose-date.dp-disabled {
        background-position: 0 -20px;
        cursor: default;
}
input.dp-applied {
/*    width: 140px;*/
    float: left;
}