/** ===========================================================================
 * jCan - a jQuery image carousel
 * Copyright 2008 suprfish <http://suprfish.wordpress.com>
 *
 * Licensed under the MIT License (../MIT-LICENSE.txt)
=========================================================================== **/

/** ===========================================================================
 * Basic, essential CSS for jCan.
=========================================================================== **/

.jCan
{
    overflow: hidden;
    position: relative;
}

    .jCan ul
    {
        list-style: none;
        padding: 0;
        position: relative;
    }

        .jCan ul li
        {
            display: inline;
            overflow: hidden;
            text-align: center;
			float:left;
        } 
    
    .jCan .prev, 
    .jCan .next
    {
        position: absolute;
        text-align: center;
        z-index: 1;
    }

    .jCan .prev
    {
    }

    .jCan .next
    {
    }

    .jCan .off
    {
    }
