/*
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;
    float: left;
    width: 55%;
    height: 70%;
}

/*
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;
    height: 100%;
    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 */
    float: left;
    height: 100%;
    display: block;
}
.jcarousel li img {
    height: 100%;
    width: auto;
}
.jcarousel-prev,
.jcarousel-next {
    font-size: 7rem;
    text-decoration: none;
    color: black;
    position: absolute;
    top: 40%;
    background-color: rgba(255,255,255,.5);
    font-family: 'Poiret One', cursive, Helvetica, Arial, sans-serif;
}
.jcarousel-nav {
    position: relative;
    overflow: hidden;
    float: left;
    width: 55%;
    height: 16%;
    margin: 1% 0;
}
.jcarousel-nav ul {
    width: 20000em;
    height: 100%;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcarousel-nav li {
    /* Required only for block elements like <li>'s */
    float: left;
    height: 100%;
    display: block;
    padding: 0 .3rem;
}
.jcarousel-nav li:first-child {
    padding-left: 0;
}
.jcarousel-nav li:last-child {
    padding-right: 0;
}
.jcarousel-nav li img {
    height: 100%;
    width: auto;
}
.jcarousel-nav-prev,
.jcarousel-nav-next {
    font-size: 3rem;
    text-decoration: none;
    color: black;
    position: absolute;
    top: 33%;
    background-color: white;
    padding: 0 .3rem 0 .1rem;
    height: 33%;
    line-height: 100%;
    font-family: 'Poiret One', cursive, Helvetica, Arial, sans-serif;
}
.jcarousel-nav-prev,
.jcarousel-prev {
    left: 1%;
}
.jcarousel-nav-next,
.jcarousel-next {
    right: 1%;
}