body, html{padding:0px; margin: 0px;}
/*
    Structure
    ----------------------------------- */

    #slideshow
    {
        position: relative;
        overflow: hidden;

        margin: 0 auto;
        max-width: 220px;

        /* No iOS tap highlight */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

        /* No text selection */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        /* No IE10 default touch actions */
        -ms-touch-action: none;
    }

    #slideshow .strip
    {
        position: relative;
    }

    #slideshow .strip,
    #slideshow .slide
    {
        left: 0;
        top: 0;

        width: 100%;
        height: 100%;
    }

    #slideshow .strip,
    #slideshow .slide,
    #slideshow > button
    {
        -webkit-perspective: 1000;
        -webkit-backface-visibility: hidden;
    }

    #slideshow .slide
    {
        position: absolute;
        display: none;
        text-align: center;
        outline: none;
    }

    #slideshow .slide.sticky
    {
        display: block;
    }

    #slideshow > button
    {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;

        padding: 0;
    }

    #slideshow button.next
    {
        left: auto;
        right: 0;
    }

    #slideshow .markers
    {
        text-align: right;
    }

    #slideshow ul,
    #slideshow li
    {
        display: block;
        overflow: hidden;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    #slideshow li
    {
        float: left;
    }

    #slideshow li + li
    {
        margin-left: 10px;
    }

    .advanced #slideshow ul
    {
        display: inline-block;
    }


/*
    Theme
    ----------------------------------- */

    #slideshow .strip
    {
        padding-bottom: 75%;
    }

    #slideshow .slide
    {
        background: #f4f4f2;
    }

    #slideshow .slide:nth-child(even)
    {
        background: #f4f4f2;
    }

    #slideshow .slide p
    {
        position: absolute;
        top: 12%;
        left: 0;

        width: 100%;
        height: 40px;
        margin-top: -20px;

        font-weight: bold;
        font-size: 2em;
        line-height: 40px;
    }

    #slideshow button
    {
        margin: 0;

        background: none;
        border: 0;
        cursor: pointer;

        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .advanced #slideshow > button
    {
        position: absolute;
        top: 50%;

        display: block;

        width: 40px;
        height: 36px;

        margin-top: -40px;
        padding-right: 10px;
        padding-left: 7px;
    }

    #slideshow > button::-moz-focus-inner
    {
        margin: -1px;
        padding: 0;
    }

    #slideshow > button b
    {
        display: block;

        width: 23px;
        height: 36px;

        background: transparent url(../img/arrow.png) no-repeat 0 -36px;
        background: rgba(0, 0, 0, 0) url(../img/arrow.svg) no-repeat 0 -36px;
        background-size: 23px 72px;

        text-indent: -10000px;
    }

    #slideshow button.next
    {
        padding-right: 7px;
        padding-left: 10px;
    }

    #slideshow button.next b
    {
        left: 10px;
    }

    #slideshow button.next b
    {
        background-position: 0 0;
    }

    #slideshow .markers
    {
        height: 15px;
        padding: 15px 10px;

        text-align: center;
        font-size: 0.8em;
    }

    /* Hide buttons when disabled */
    #slideshow.disabled > button
    {
        display: none;
    }

    #slideshow .markers button
    {
        display: inline-block;

        *display: block;
        *float: left;

        padding: 0;

        width: 10px;
        height: 10px;

        background: #575757;
        border-radius: 5px;

        text-indent: -10000px;
        opacity: 0.3;
    }

    #slideshow .markers button + button
    {
        margin-left: 10px;
    }

    #slideshow .markers button.sticky
    {
        background-color: #3172dd;
        opacity: 0.75;
    }

    /* Bigger markers for touch */
    #slideshow.touch .markers button
    {
        width: 16px;
        height: 16px;

        border-radius: 8px;
    }

    #slideshow.touch .markers button + button
    {
        margin-left: 10px;
    }