/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 75px;
    height: 150px;
}

.jcarousel-item  a:link, .jcarousel-item  a:visited{text-decoration:none}
.jcarousel-item  a:hover, .jcarousel-item  a:active{text-decoration:underline}
.jcarousel-special-offer  a:link, .jcarousel-special-offer  a:visited {color:#fff}

/**
 * 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;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}
.jcarousel-container {
    background: none;
}

.jcarousel-container-horizontal {
    width: 840px;
    padding: 10px 40px;
}

.jcarousel-clip-horizontal {
   width: 840px;
    height: 150px;
}

.jcarousel-item {
    width: 125px;
    height: 130px;
	padding:5px;
	
	background: transparent url(images/carousel-godine-icon.png) no-repeat;
}
.jcarousel-special-offer {
    background: transparent url(images/carousel-hover.png) no-repeat 0 0;
}
.jcarousel-item img{
	border:1px solid #c5c5c5;
	height: 84px;
	width: 126px;
	
    border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.jcarousel-item-hover img{
	border:none;
}
.jcarousel-item span, .jcarousel-item strong {
	display:block;
	color:#288acb;
	font-size:1.1em;
}
.jcarousel-special-offer span, .jcarousel-special-offer strong{
	color:#fff;
}
.jcarousel-item span.phone{
	font-family:Georgia, Arial, Verdana, sans-serif;
}
.jcarousel-item-horizontal {
    margin-right: 6px !important;
	margin-right: 3px;
}

.jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
    position: absolute;
    top: 43px;
    right: 5px;
    width: 19px;
    height: 72px;
    cursor: pointer;
    background: transparent url(images/carousel-next.png) no-repeat 0 0;
}


.jcarousel-prev-horizontal {
    position: absolute;
    top: 43px;
    left: 2px;
    width: 19px;
    height: 72px;
    cursor: pointer;
    background: transparent url(images/carousel-prev.png) no-repeat 0 0;
}


