/*** Allgemeine Regeln ***/

body, html {
    font-family: Arial, sans-serif;
    background-color: #d9d9d9;
    margin: 0px;
    padding: 0px;
    height: 101%;
    font-size: 12px;
}

a {
    font-style: italic;
    color: #000;
    text-decoration: none;
}

img, a img {
    border-color: black;
    border: 0px;
    vertical-align: middle;
}

img.pic {
    border: 1px solid black;
}

h1, h2, h3, h4, h5 {
}
/*** Layout und Aufbau der Seite:
 *
 * #header (fixed)
 *   #banner
 *   #menu <ul>
 *     <li> oder <li.selected>
 * #leftrow
 *   #content
 *     <content> (see: next section)
 * #rightrow (fixed)
 *   <div.rightbox> (<div class="rightbox"><div><div><div>[CONTENT]</div></div></div></div>)
 *   ...
 * #footer
*/

/*** Farben:
 * 
 * #f6f6f6 (hellgrau)    Content-Hintergr?nde
 * #eeeeee (hellgrau2)   Boxen in der rechten Spalte
 * #d9d9d9 (grau)        Hintergrund
 * #737373 (dunkelgrau)  Menu
*/

#header {
    z-index: 99;
    width: 900px;
    height: 120px; /* 70 #banner + 25 #menu + 5px free */
    background-color: #d9d9d9;
    text-align: center;
}

#banner { /* child of #header */
          height: 70px;
          width: 100%;
}

#menu { /* child of #header */
        background-color: #737373;
        height: 25px;
        width: 900px;
        list-style: none;
        padding: 0px;
        margin: 0px;
        font-size: 12px;
}

#menu li {
    float: left;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

#menu li a {
    float: left;
    display: block;
    height: 25px;
    padding: 0px 7px;
    line-height: 25px;
    vertical-align: -10%;
    color: #f2f2f2;
    font-style: normal;
}

#menu li a:hover {
    background-color: #999999;
}

#menu li.selected a {
    background-color: #999999;
    color: black;
}

#submenu { /* child of #header */
           background-color: #999999;
           height: 20px;
           width: 100%;
           list-style: none;
           padding: 0px;
           margin: 0px;
}

#submenu li {
    float: left;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

#submenu li a, #submenu li span {
    float: left;
    display: block;
    height: 20px;
    padding: 0px 7px;
    line-height: 20px;
    vertical-align: -10%;
    color: #f2f2f2;
    font-style: normal;
}

#submenu li a:hover {
    background-color: #d9d9d9;
}

#submenu li.selected a {
    color:black;
    background-color: #d9d9d9;
}

#headline {
    background-color: #f6f6f6;
    margin: 0px;
    z-index: 99;
    width: 100%;
    height: 10px;
}

#headline div {
    background: transparent url('/images/layout/corner_rt.png') no-repeat right top;

}

#headline div div {
    background: transparent url('/images/layout/corner_lt.png') no-repeat left top;
}

td.leftrow {
    background-color: #f6f6f6;
    vertical-align: top;
    width: 750px;
}

#content {
    text-align: justify;
    padding: 0px 10px;
    font-size: 12px;
    margin-top: -10px;
}

#content p {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 10px 5px;
}

#content p.alert {
    font-weight: bold;
}

#content h1 { /* should not be used. Has special meaning within #leftrow. Use only h2-h5 within #content */
              display: none;
}

#content h2 {
    display: block;
    background: transparent url('/images/layout/webscipio_page_header_bg.png') no-repeat left top;
    margin: 0px 0px 10px 0px;
    padding: 4px 10px 4px 10px;
    border: 2px solid #f6f6f6;
    border-width: 10px 0px 2px 0px;
    font-weight: bold;
    font-size: 16px;
}

#content h2 table {
    margin: -2px;
    padding: 0px;
}

#content h2 table tr {
    margin: 0px;
    padding: 0px;
}

#content h2 table tr td {
    margin: 0px;
    padding: 0px;
}

#content h3 {
    display: block;
    background-color: #ddd;
    margin: 10px 0px;
    padding: 3px 10px;
    border: 2px solid #f6f6f6;
    border-width: 5px 0px 2px 0px;
    font-weight: bold;
    font-size: 14px;
}

#content h4 {
    display: block;
    border: 1px solid #aaa;
    border-width: 0px 0px 1px 0px;
    margin: 15px 0px 5px 0px;
    padding: 0px 0px 2px 0px;
    font-weight: bold;
    font-size: 14px;
}

#content h4 table {
    margin: -2px;
    padding: 0px;
}

#content h4 table tr {
    margin: 0px;
    padding: 0px;
}

#content h4 table tr td {
    margin: 0px;
    padding: 0px;
}

#content h5 {
    display: block;
    margin: 0px 0px 2px 0px;
    padding: 0px;
    font-weight: bold;
    font-size: 12px;
}

/*h3 without content border*/
#content h7{
    display: block;
    background-color: #bbb;
    margin: 10px -10px 0px -10px; /* The surrounding #content has padding: 10px */
    padding: 3px 10px;
    border: 2px solid #f6f6f6;
    border-width: 5px 0px 2px 0px;
    font-weight: bold;
    font-size: 14px;
}

#content hr {
    clear: both;
    width: 100%;
    height: 1px;
    border: 1px solid #aaa;
    border-width: 0px 0px 1px 0px;
    margin: 1px;
    padding: 8px 0px;
}

#content hr.dashed {
    border-style: dashed;
}

#content a {
    text-align: left;
}

#content a.anker {
    position: relative;
    top: -153px;
    left: -10000px;
}

#content a.download_scipio {
    color: #006400;
}

#content fieldset {
    margin-top: 10px;
    padding-top: 10px;
}

#content legend {
    font-weight: bold;
}

#content span.option_enabled {
    color: green;
}

#content .complete {
    color: green;
}

#content .incomplete {
    color: red;
}

#content .small_sequence_picture:hover, #content .small_sequence_picture.mouseover {
    background-color: yellow;
    border-bottom: 2px solid #f6f6f6;
}

#content ul li, #content ol li {
    padding-bottom: 8px;
}

td.rightrow {
    width: 150px;
    background-color: #d9d9d9;
    font-size: 10px;
    text-align: center;
    vertical-align: top;
}

#baseline {
    margin: 0px;
    width: 100%;
    height: 10px;
    background-color: #f6f6f6;
}

#baseline div {
    height: 10px;
    background: transparent url('/images/layout/corner_lb.png') no-repeat bottom left;
}

#baseline div div {
    background: transparent url('/images/layout/corner_rb.png') no-repeat bottom right;
    height: 10px;
}

#footer {
    margin: 0px;
    font-size:12px;
    clear: both;
    text-align:center;
    padding: 5px 0px 0px 0px;
}




/*** Main structural elements
 * Use <h2> for headings and surround all content with div.block elements
*/


/* progressbar */
#progress_bar {
    position: fixed;
    top:0px;
    right: 0px;
    background-color:#eee;
    padding:5px 10px;
    -moz-border-radius: 0px 0px 0px 10px;
}

/* screen to prevent clicks during Ajax requests*/
#progress {
    background-image: url(/images/layout/progress_bg.png);
    display:none;
    cursor:wait;
    position:fixed;
    top:0px;
    left:0px;
    z-index:999;
    width:100%;
    height:100%;
}


/*** Formulare ***/

form.disabled {
    color: #808080
}

form.disabled img {
    opacity:0.7;
    filter:alpha(opacity=70);
}

input, textarea {
    background-color: #f2f2f2;
    border: 1px solid #737373;
    border-color: #737373 #aaa #aaa #737373;
    margin: 1px;
}

input.defaulttext, textarea.defaulttext {
    background-color: #DFEEFF;
}

input[type=submit], input[type=button] {
    border-color: #fff #737373 #737373 #fff;
}


input[type=checkbox] {
    border:0px;
    background: transparent;
    padding:0px;
    margin:0px;
}

input[type=image], input[type=image]:hover, input[type=image]:focus{
    background-color: transparent;
    border: 0px;
    vertical-align: middle;
}

input[type=text], textarea {
    vertical-align: middle;
    padding: 1px 3px 1px 3px;
}

input:hover, textarea:hover{
    background-color: #fff;
    border-color: #737373 #aaa #aaa #737373;
}

input:focus, textarea:focus {
    border: 2px solid black;
    border-color: #737373 #aaa #aaa #737373;
    margin: 0px;
}


/* links */
a.external {
    background:url(/images/icons/link.png) no-repeat center right;
    color:#000;
    text-decoration:underline;
    padding-right:18px;
}

a.zip {
    color:#000;
    text-decoration:underline;
    padding: 5px 25px 5px 0;
    background: transparent url(/images/doc_zip.png) no-repeat center right;
}

a.external_small {
    background:url(/images/icons/link_dim.png) no-repeat center right;
    color:#808080;
    font-size:10px;
    text-decoration:underline;
    padding-right:18px;
}

a.internal {
    background:url(/images/icons/anchor.png) no-repeat center right;
    color:#000;
    text-decoration:underline;
    padding-right:18px;
}

a.download {
    background:url(/images/icons/anchor.png) no-repeat center right;
    color:#000;
    text-decoration:underline;
    padding-right:18px;
}

a.tooltip { 
    color:#000;
    text-decoration:none;
    cursor: help;
}

form.disabled a {
    color: #808080
}



/* tab*/

#tabs {
    padding: 0px;
    font-weight:bolder;
}

#tabs ul {
    list-style-type:none;
    list-style:none;
    margin:0px;
    padding:0px;
}

#tabs li {
    float:left;
    height: 25px;
    line-height: 25px;
    margin:0px;
    padding: 0px;
    border-right: 2px solid #f6f6f6;
    background-color: #BBBBBB;
    border-bottom: 2px solid #f6f6f6;
    color: #cccccc;
}

#tabs p {
    position: relative;
    left:5px;
}



#tabs li.unselected {
    background-color: #BBBBBB;
    border-bottom: 2px solid #f6f6f6;
}

#tabs li:hover, #tabs li.mouseover {
    background-color: #DDDDDD;
    border-bottom: 2px solid #f6f6f6;
}


#tabs li.selected  {
    background-color: #f6f6f6;
    border-bottom: 2px solid #f6f6f6;
}

#tabs li.disabled  {
    font-style: normal;
    background-color: #BBBBBB;
    border-bottom: 2px solid #f6f6f6;
    color: #CCCCCC;
}
#tabs a  {
    font-style: normal;
    color: white;
}

#tabs a.selected  {
    color: black;
}

#tabs a.disabled  {
    color: #CCCCCC;
}


#tabs #numbers.complete {
    vertical-align: 4px;
    font-size : 80%;
}

#tabs #numbers.incomplete {
    vertical-align: 4px;
    font-size : 80%;
}



table.file_table td {
    margin: 0px;
    border: 0px hidden #000000;
    text-align: center;
    vertical-align: middle;
    height: auto;
}



td.file_table_header {
    width:16px;
    background-color: #ECECEC;
    color: black;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url(/images/lightWindow/black-30.png); 
    background-repeat: repeat;
    visibility: visible;
    z-index: 500;
}

.second_overlay {
    background-image: url(/images/lightWindow/white-70.png);
    background-repeat: repeat;
    border: solid green;
    border-width: 1px;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 14px;
    width: 500px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

#charbuttons td{
    background:url(/images/icons/char_icon_gen.png) no-repeat;
    padding:1px;
    width:22px;
    height:22px;
    text-align:center;
    font-size:13px;
}

#charbuttons td:hover{
    background:url(/images/icons/char_icon_green.png) no-repeat;

}

#charbuttons a{
    display:block;
    width: 100%;
    height:100%;
    text-align: center;
    line-height:150%;
    text-decoration:none;
    font-style:normal;
    color:#000;
    position:relative;
    left:-1px;
}
