﻿/*
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;
	height:27em;
	font-size:0.8em;
}

/*
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: 10000em;*/
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0.3em;
}

/*
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;*/
	/* border-color:#eee; */
	border-width: 0.1em;
	border-style: dotted;
	border-top-right-radius: 1em;
	border-bottom-left-radius: 1em;
	margin-bottom: 0.5em;
	padding: 0.5em;
	display: block;
	width: auto;
}
.jcarousel li > h3 {
	margin-top: 0.2em;
}
.jcarousel li > p {
	margin-bottom: 0.2em;
}

.jcarousel-next-vertical {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1em;
    cursor: pointer;
    border-top: 1px solid #fff;
    background: rgba(255,255,255,0.2) url(../images/arrow-down.png) no-repeat center;

}

.jcarousel-next-disabled-vertical {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.jcarousel-prev-vertical {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 1em;
    cursor: pointer;
    border-bottom: 1px solid #fff;
    background: rgba(255,255,255,0.2) url(../images/arrow-up.png) no-repeat center;
}

.jcarousel-prev-disabled-vertical {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

