/* jquery image carousel */


/**
 * This <div> element is wrapped by statically around the list
 * inside the HTML document.
 */
.jcarousel-scope {
    position: relative;
    width: 307px;
    padding:0;
	margin:0 0 2em;
}

/**
 * Similar styles will be applied by jCarousel. But we additionally
 * add it here for better displaying with browsers having
 * javascript disabled.
 */
.jcarousel-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.jcarousel-list li {
    float: left;
    list-style: none;
	margin:0;
	padding:0;
	text-indent:0;
}

/**
 * The button-elements are added statically in the HTML document
 * to illustrate how to cutomize the prev/next controls.
 *
 * We set display:none to hide them from browsers having
 * javascript. jCarousel will show them automatically.
 */
.jcarousel-next {
    position: absolute;
    top: -60px;
    right: -14px;
    cursor: pointer;
}

.jcarousel-next-disabled {
    cursor: default;
    opacity: .2;
    -moz-opacity: .2;
    filter: alpha(opacity=20);
}

.jcarousel-prev {
    position: absolute;
    top: -60px;
    left: -8px;
    cursor: pointer;
}

.jcarousel-prev-disabled {
    cursor: default;
    opacity: .2;
    -moz-opacity: .2;
    filter: alpha(opacity=20);
}

