﻿/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container * {padding: 0 !important; margin: 0 !important;}

.jcarousel-container {
    position: relative;
}

.jcarousel-container-vertical {
    width: 65px;
    height: 230px;
    padding: 26px 0;
    margin-left: 0;
    overflow: hidden;
    float: right;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    /*overflow: hidden;*/
    position: relative;
    width: 65px;
    height: 172px;
}

.jcarousel-clip-vertical {
    width:  65px;
}

.jcarousel-list {
    z-index: 1;
    position: relative;
    display: block;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 65px !important;
}

.jcarousel-list li,
.jcarousel-item 
{
    display: block;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 65px;
    height: 43px;
    float: left;
    overflow: hidden;
    padding: 0;
    margin: 0 0 3px 0 !important;
}

.jcarousel-list li a,
.jcarousel-item a{
	display: block;
	margin:0; 
	padding:0;
	width: 63px;
    height: 41px;
    overflow: hidden;
    border: 1px solid #b5b5b5;
}

.jcarousel-list li a:hover,
.jcarousel-item a:hover
{
	border-color: #284b35;
}

.jcarousel-item  a img
{
    width: 63px;
    height: 42px;
	display: block;
	margin: 0; 
	padding: 0;
	font-size: 0.8em;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
}

.jcarousel-prev {
    z-index: 3;
}

/**
 *  vertical Buttons
 */
.jcarousel-next-vertical {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 65px;
    height: 26px;
    cursor: pointer;
    background: url('../images/layout/carousel_next.jpg') no-repeat 0px 0px;
}

.jcarousel-next-vertical:hover {}

.jcarousel-next-vertical:active {}

.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active { cursor: default;}

.jcarousel-prev-vertical {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 65px;
    height: 26px;
    cursor: pointer;
    background: url('../images/layout/carousel_previous.jpg') no-repeat 0px 0px;
}

.jcarousel-prev-vertical:hover {}

.jcarousel-prev-vertical:active {}

.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
}

