/*\
 * Allgemeine Block-Elemente
\*/

html
{
    overflow: auto;

    height: 100%;
}

body
{
    font-family: 'Sans-Serif';

    vertical-align: top;
    text-align: left;

    padding: 0px;
    margin: 0px;

    height: 100%;

    border-width: 0px;
}

h1, h2, h3, h4, h4, h6, p
{
    font-family: 'Serif';

    padding: 0px;
    margin: 0px;
}

p
{
}

p.img
{
    font-size: 1px;

    padding: 0px;
    margin: 0px;
}

pre
{
    font-family: 'Monospace';
}

iframe
{
    overflow: hidden;

    padding: 0px;
    margin: 0px;
    border: 0px;
}


/*\
 * Allgemeine Inline-Elemente
\*/

strong
{
    font-weight: bold;
}

em
{
    text-decoration: underline;
    font-style: normal;
}

cite
{
    font-style: italic;
}

code
{
    font-family: 'Monospace';
}


/*\
 * Tabellen
\*/

table
{
    empty-cells: show;
}

td, th
{
    vertical-align: top;
    text-align: left;
}

table, td, th
{
    padding: 0px;
    margin: 0px;
    
    border-width: 0px;
    border-collapse: collapse;
    border-spacing: 0px;
}

table.layout, table.layout tr td, table.layout tr th
{
    padding: 0px;
    margin: 0px;
}

table.left
{
    margin-left: 0px;
    margin-right: auto;
}

table.center
{
    margin-left: auto;
    margin-right: auto;
}

table.right
{
    margin-left: auto;
    margin-right: 0px;
}

table.top
{
    margin-top: 0px;
    margin-bottom: auto;
}

table.middle
{
    margin-top: auto;
    margin-bottom: auto;
}

table.bottom
{
    margin-top: auto;
    margin-bottom: 0px;
}

table.debug
{
    background-color: transparent;
}

table.debug td
{
    border: dotted #7F7F7F 1px;
}


/*\
 * Listen
\*/

ul
{
    padding: 0px;
    margin: 0px 0px 0px 30px;
    
    list-style-type: disc;
    
    list-style-position: outside;
}

li
{
    padding: 0px;
    margin: 0px;
}


/*\
 * Bilder
\*/

img
{
    vertical-align: baseline;
    text-align: left;

    padding: 0px;
    margin: 0px;

    border-width: 0px;
}

img.text
{
    padding-left: 2px;
    padding-right: 2px;
}

img.float-left
{
    float: left;
}

img.float-right
{
    float: right;
    margin-right: 0px;
}


/*\
 * Hyperlinks
\*/

a:link, a:visited, a:active, a:hover, a:focus
{
    text-decoration: none;
}


/*\
 * Allgemeine Styles
\*/

.b, .strong
{
    font-weight: bold;
}

.u, .em
{
    text-decoration: underline;
}

.i, .cite
{
    font-style: italic;
}

.exact
{
    padding: 0px;
}

.top
{
    vertical-align: top;
}

.middle
{
    vertical-align: middle;
}

.bottom
{
    vertical-align: bottom;
}

.left
{
    text-align: left;
}

.center
{
    text-align: center;
}

.right
{
    text-align: right;
}

.float-left
{
    float: left;
}

.float-right
{
    float: right;
}

.float-end
{
    clear: both;
}

.nowrap
{
    white-space: nowrap;
}

.scroll
{
    overflow: scroll;
}

.scroll-on-demand
{
    overflow: auto;
}

.no-scroll
{
    overflow: hidden;
}

.hidden
{
    display: none;
}

.wide
{
    width: 100%;
}

.high
{
    height: 100%;
}

.pointer
{
    cursor: pointer;
}

.debug
{
    background-color: #FFFF00;
}


/*\
 * Bildschirm und Drucker
\*/

.absolute
{
    position: absolute;
    z-index: 1;
    
    left: 0px;
    top: 0px;
}


/*\
 * Bildschirm und Drucker
\*/

@media screen
{
    .noscreen
    {
        display: none;
    }
    
    .noprint
    {
    }
}

@media print
{
    .noscreen
    {
    }
    
    .noprint
    {
        display: none;
    }
}

  
