﻿/*
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;
    width: 100%;
    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 {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
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 */
}
.jcarousel-item {
  width: 137px; /* width for each individual item needs to be greater than the width the item will actually occupy */
}
a.jcarousel-control-next {
    position: absolute;
    top: 100px;
    left: 100%;
    text-align: center;
    color: #244289;
    text-decoration: none;
    font-size: 2rem;
    padding: 0;
    padding-left: 20px;
    z-index: 100;
}
a.jcarousel-control-next:hover {
    color: #c01e2e;

}
a.jcarousel-control-prev {
    position: absolute;
    top: 100px;
    right: 100%;
    text-align: center;
    color: #244289;
    text-decoration: none;
    font-size: 2rem;
    padding: 0;
    padding-right: 20px;
}
a.jcarousel-control-prev:hover {
    color: #c01e2e;
}
.jcarousel-wrapper
{position: relative;}
#carousel
{ height: 200px;}
