/* @group Elements - RICHTEXT styles - list */

@media all {}

@media print {

    ul {
        list-style-type: disc;
        padding-left: 1.4em;
        padding-bottom: .2em;
    }
    ol {
        list-style-type: decimal;
        padding-left: 1.8em;
        padding-bottom: .2em;
    }
    li {
        list-style: inherit;
    }
}

@media screen {




    /* Base List */
    ul.base,
    ol.base {
        /* list-style-type: disc;  => inherit does not work on li with IE7 - so use type on li } */
        list-style-position: outside;
        padding-left: 1.2em;
    }
    ol.base {padding-left: 1.4em;}
    ul.base li,
    ol.base li {
        list-style-type: disc;
        background-color: inherit;
        padding: .267em 0 .333em;
    }
    ol.base li { list-style-type: decimal;}




    /*
    Interval List, Ohne Aufzählungszeichen,
    grössere Abstände nach unten, damit container oben bünndig
    */
    ul.interval li {
        padding: 0 0 .6em;
    }



    /*
     Download List
     */
    ul.download {}
    ul.download li {
        line-height: 27px; /* same height as icon (best use as onliner) */
        clear: left;
    }
    ul.download a {
        display: inline-block; /* not full width (not for IE7) */

        text-decoration: none;
        color: #4d4d4d;
    }
    ul.download a:hover {
        text-decoration: none;
        color: #0053a6;
    }
    
    ul.download .icon {
        float: left;
        display: block;
        width: 27px;
        height: 27px;
        margin: 0 10px 0 0;

        background: transparent url(../../img/sprite/icon.png) scroll no-repeat 0 0;
    }
    ul.download .right {float: right; margin: 0 0 0 10px}


    ul.download .pdf {
        background-position: -27px 0;
    }






}




/* @end */
/* Localized */