﻿
.wrapper
{
    margin              : auto;
}
    
.jcarousel-wrapper
{
    position            : relative;
}
    
/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel 
{
    position            : relative;
    overflow            : hidden;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul 
{
    position            : relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style          : none;
    margin              : 0px;
    padding             : 0px;
}
    
.jcarousel-horizontal ul 
{
    width               : 20000em;
    left: 0px;
}
    
.jcarousel-vertical ul
{
    height              : 20000em;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li 
{
    /* Required only for block elements like <li>'s */
    text-align          : center;
}
    
.jcarousel-horizontal li 
{
    /* Required only for block elements like <li>'s */
    float               : left;
}
    
.jcarousel-vertical li 
{
    /* Required only for block elements like <li>'s */
    float               : none;
}
    
div.wrapper ul.carousel li div.img-wrapper 
{        
    display             : table-cell;
	vertical-align      : middle;			       
	padding             : 0px;
    overflow            : hidden;			
} 
    
div.wrapper div.nextHorizontal
{
    position            : absolute;
    left                : 0px;
    top                 : 0px;
}    
    
div.wrapper div.defaultNextHorizontal
{
    height              : 100%;
    top                 : 50%;
    width               : 15px;
}

    div.wrapper div.defaultNextHorizontal a
    {
        /*padding-right   : 6px;*/
    }
        
    div.wrapper div.nextHorizontal span
    {
        display         : inline-block;
        height          : 100%;
        vertical-align  : middle;   
    } 
        
div.wrapper div.nextVertical
{
    position            : absolute;
    top                 : 0px;
    width               : 100%;
    text-align          : center;
}

    div.wrapper div.defaultNextVertical a
    {
        display         : block;
        padding-bottom  : 6px;
    }
    
div.wrapper div.prevVertical
{
    position            : absolute;
    bottom              : 0px;
    width               : 100%;
    text-align          : center;
}

    div.wrapper div.defaultPrevVertical a
    {
        display         : block;
        padding-top     : 6px;
    }
        
div.wrapper div.prevHorizontal
{
    position            : absolute;
    right               : 0px;
    top                 : 0px;
}
    
div.wrapper div.defaultPrevHorizontal
{
    height              : 100%;
    top                 : 50%;
    width               : 15px;
}

    div.wrapper div.defaultPrevHorizontal a
    {
        /*padding-left    : 6px;*/
    }
    
    div.wrapper div.prevHorizontal span
    {
        display         : inline-block;
        height          : 100%;
        vertical-align  : middle;   
    } 
    