﻿ol {
    list-style-type: none;
    list-style-type: decimal !ie; /*IE 7- hack*/
    counter-reset: li-counter;
}

    ol li {
    }

    ol > li {
        position: relative;
    }

        ol > li:before {
            position: absolute;
            content: counter(li-counter);
            counter-increment: li-counter;
        }

    ol.simple-list {
        margin-left: 3em;
    }

        ol.simple-list > li {
            margin-bottom: 20px;
            padding-left: 0.5em;
            min-height: 3em;
            border-left: 2px solid #CCCCCC;
        }

            ol.simple-list > li:before {
                left: -1em;
                width: 0.8em;
                font-size: 3em;
                line-height: 1;
                font-weight: bold;
                text-align: right;
                color: #464646;
            }

    ol.tilted-list {
        margin-left: 3em;
    }

        ol.tilted-list > li {
            margin-bottom: 20px;
            padding: 1em;
            border-left: 2px solid #CCCCCC;
            background-color: #f5f5f5;
        }

            ol.tilted-list > li:before {
                left: -0.95em;
                width: 1em;
                font-size: 4em;
                line-height: 1;
                font-weight: bold;
                text-align: right;
                color: #464646;
                transform: rotate(-25deg);
                -ms-transform: rotate(-25deg);
                -webkit-transform: rotate(-25deg);
                z-index: -99;
                overflow: hidden;
            }

    ol.circles-list {
        margin-left: 4em;
    }

        ol.circles-list > li {
            margin-bottom: 20px;
            padding-left: 0.5em;
            min-height: 3em;
        }

            ol.circles-list > li:before {
                left: -1.33em;
                width: 1.2em;
                height: 1.2em;
                font-size: 2.5em;
                line-height: 1.2;
                text-align: center;
                color: #f5f5f5;
                border: 3px solid #c5c5c5;
                border-radius: 50%;
                background-color: #464646;
            }

    ol.circles-list1 {
        position: relative;
        top: 10px;
        left: 20px;
    }

        ol.circles-list1 > li {
            padding-left: 2.0em;
            min-height: 3em;
        }

            ol.circles-list1 > li:before {
                left: -1.33em;
                width: 2.2em;
                height: 2.2em;
                top: -7px;
                line-height: 1.9;
                text-align: center;
                color: #fff;
                border: 3px solid #ccc;
                border-radius: 50%;
                background-color: #249531;
            }

    ol.boxes-list {
        margin-left: 3em;
    }

        ol.boxes-list > li {
            margin-bottom: 15px;
            padding: 1em;
            background-color: #d5d5d5;
        }

            ol.boxes-list > li:before {
                left: -1em;
                width: 0.94em;
                height: 0.94em;
                font-size: 3em;
                line-height: 0.94;
                text-align: center;
                color: #f5f5f5;
                background-color: #464646;
            }

    ol.labels-list {
        margin-left: 1em;
    }

        ol.labels-list > li {
            margin-bottom: 1.5em;
            padding: 1.5em;
            background-color: #eaeaea;
        }

            ol.labels-list > li:before {
                top: -0.3em;
                left: -0.5em;
                width: 1.8em;
                height: 1.2em;
                font-size: 2em;
                line-height: 1.2;
                font-weight: bold;
                text-align: center;
                color: #464646;
                background-color: #d0d0d0;
                transform: rotate(-20deg);
                -ms-transform: rotate(-20deg);
                -webkit-transform: rotate(-20deg);
                z-index: 99;
                overflow: hidden;
            }
