/* jCarousel CSS  */



/* @group JCarousel Core */

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
   
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
   
    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: 75px;
}

/**
 * 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 {
   
    display: none;
}

.jcarousel-prev {
    
    display: none;
}

/* @end */

/* @group JCarousel Recipes */

.jcarousel-skin-recipes.jcarousel-container {
    font-size: 10px;
}

.jcarousel-skin-recipes.jcarousel-container a{
    border: none;
    padding: 0;
    margin: 0;
}

.jcarousel-skin-recipes.jcarousel-container img{
    padding-bottom: 3px;
}

.jcarousel-skin-recipes.jcarousel-container-horizontal {
    width: 238px;
    padding: 0 32px 0 32px;
}

.jcarousel-skin-recipes .jcarousel-clip-horizontal {
    width:  238px;
    height: 140px;
    padding-left: 2px;
    overflow: hidden;
}

.jcarousel-skin-recipes .jcarousel-item {
    width: 128px;
    text-align: center;
    padding-top: 4px;
    height: 130px;
}

.jcarousel-skin-recipes .jcarousel-item-horizontal {
    margin-right:10px;
    padding: 4px 1px;
}

.jcarousel-skin-recipes .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

.jcarousel-item .recipe-trim {
	margin-bottom: 2px;
   height: 82px;
   display: block;
   overflow: hidden;
}


/* Horizontal Buttons */

.jcarousel-skin-recipes .jcarousel-next-horizontal {
    position: absolute;
    right: 0;
    width: 28px;
    height: 130px;
    cursor: pointer;
    background: #EEECE0 url(../img/img-design/next-horizontal.jpg) no-repeat 3px 40px;
}
/*
.jcarousel-skin-recipes .jcarousel-next-horizontal:hover {
    background-position: -32px 60px;
}

.jcarousel-skin-recipes .jcarousel-next-horizontal:active {
    background-position: -64px 60px;
}

.jcarousel-skin-recipes .jcarousel-next-disabled-horizontal,
.jcarousel-skin-recipes .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-recipes .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 60px;
}*/

.jcarousel-skin-recipes .jcarousel-prev-horizontal {
    position: absolute;
    left: 0;
    width: 28px;
    height: 130px;
    cursor: pointer;
    background: #EEECE0 url(../img/img-design/prev-horizontal.jpg) no-repeat 3px 40px;
}

/*.jcarousel-skin-recipes .jcarousel-prev-horizontal:hover {
    background-position: -32px 60px;
}

.jcarousel-skin-recipes .jcarousel-prev-horizontal:active {
    background-position: -64px 60px;
}

.jcarousel-skin-recipes .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-recipes .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-recipes .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 60px;
}*/

/* @end */


