/** CSS Styleshhet for VIVA CAROUSEL - by Tim Waddell - A Worpress Carousel Plugin.
 *  http://www.VivaThumbs.com
 * Based on JCarousel from http://sorgalla.com/jcarousel/
 * This  plugin code is Copyright Tim Waddell ŠApril-2008 and is licensed for single site, multi site and
 * developer use as stated in our License FAQ at http://www.mediatricks.biz
 */


/**
 * This element sets the border container around the sliding items
 * any padding adds to the width to give 'actual' width of the carousel
 */

.jcarousel-container {
    -moz-border-radius: 5px;
}

/* This sets the dimesnions for either a horizontal(default) or vertical carousel
*  You need to set the container size and then the clip (moving element) size
*/

.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 480px;
    padding: 20px 40px;
}

.jcarousel-skin-tango .jcarousel-container-vertical {
    width: 200px;
    height: 900px;
    padding: 40px 0px 20px 0px;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width:  480px;
    height: 200px;
}

.jcarousel-skin-tango .jcarousel-clip-vertical {
    width: 190px;
    height: 900px;
}

/* This sets the dimesnions for the individual elements in the  horizontal(default) or vertical carousel */

.jcarousel-skin-tango .jcarousel-item {
    width: 150px;
    height: 150px;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
    margin-right: 10px;
}

.jcarousel-skin-tango .jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */


/**
 *   Buttons
 */
.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: absolute;
    top: 63px;
    right: 5px;
    width: 33px;
    height: 58px;
    cursor: pointer;
    background: transparent url(next-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 63px;
    left: 5px;
    width: 33px;
    height: 58px;
    cursor: pointer;
    background: transparent url(prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

/**
 *  Vertical Buttons
 */
.jcarousel-skin-tango .jcarousel-next-vertical {
    position: absolute;
    top: 5px;
    right: 23px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(prev-vertical.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-next-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-tango .jcarousel-next-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-tango .jcarousel-next-disabled-vertical,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical {
    position: absolute;
    top: 5px;
    left: 23px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(next-vertical.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-prev-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-vertical,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}


/**
 * The following are used in the div container that makes the
 * carousel placable within your theme
 */



#carousel #carousel {
        background: transparent;
        width: auto;
        padding: 20px;
        margin: 0;
        border: 0;
}

#carousel ul li,
#carousel ol li {
        background: none;
        list-style-type: none;
        padding: 0px 10px 0px 0px;
}

#carousel ul li a { font-weight: normal; text-decoration: none; list-style-type: none;}

#carousel ul li a:hover { text-decoration: none; list-style-type: none;}

#carousel ul ul {
        padding: 0;
        list-style-type: none;
}

#carousel ol {
        margin-left: 30px;
}

#carousel ol li {
        padding-left: 0;
        background-image: none;
        list-style-type: none;
}
