div.offers_slideShow, div.posts_slideShow {
    position: relative;
    overflow: hidden;
   /* background: #e6e6e6;*/
    padding: 0;
    margin: 0;
}
div.posts_slideShow>div.row {
    position: relative;
    display: inline;
}

#features_slideShow {
	max-height:500px;
}


/*
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.
*/
div.offers_slideShow ul.offers_slideShowItems,  div.posts_slideShow ul.posts_slideShowItems {
    /*width: 20000em;*/
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
div.offers_slideShow ul.offers_slideShowItems li, div.posts_slideShow ul.posts_slideShowItems li {
    /* Required only for block elements like <li>'s */
    display: inline;
    float: left;
    clear: none;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    text-align: center;
    padding: 0;
    /*margin: 0;*/
}


div.offers_slideShow ul.offers_slideShowItems li a, div.posts_slideShow ul.posts_slideShowItems li a, div.offers_slideShow ul.offers_slideShowItems li img, div.posts_slideShow ul.posts_slideShowItems li img{
	margin: 0;
	padding: 0;
}

a.jcarousel-prev,
a.jcarousel-next,a.jcarousel-prev:visited,
a.jcarousel-next:visited {
    position: absolute;
    top: 25%;
    width: 30px;
    height: 50%;
    text-align: center;
    background-color: rgba( 100, 100, 100, 0.5 );
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 1px #000;
    font: 24px/27px Arial, sans-serif;
    vertical-align: middle;
   /*
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    */
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
}

.jcarousel-prev {
    /*float: left;*/
    left: 0;
    margin-left: 5px;
}
.jcarousel-prev:before {
    content: '\00AB';
    position: absolute;
    top: 40%;
    left: 30%;
}

.jcarousel-next {
    /*float: right;*/
    right: 0;
    margin-right: 5px;
}
.jcarousel-next:before {
    content: '\00BB';
    position: absolute;
    top: 40%;
    right: 30%;
}
.jcarousel-prev:hover,
.jcarousel-next:hover {
    background-color: rgba( 100, 100, 100, 0.75 );
    border: 1px solid #fff;
    color: #fff;
}
.jcarousel-prev:hover span,
.jcarousel-next:hover span {
    display: block;
}

.jcarousel-prev.inactive,
.jcarousel-next.inactive {
    opacity: .5;
    cursor: default;
}

/** Carousel Pagination **/

div.jcarousel-pagination {
   /*position: absolute;*/
    bottom: 0.75em;
    width: 100%;
    text-align: center;
    height: auto;
}

.jcarousel-pagination a, .jcarousel-pagination a.inactive {
    text-decoration: none;
    display: inline-block;
    
    font-size: 11px;
    line-height: 14px;
    min-width: 14px;
    
    background: #d4d4d4;
    color: #4E443C;
    /*border-radius: 14px;*/
    padding: 3px;
    text-align: center;
    
    margin-right: 2px;
    
    opacity: .75;
    
    
    border: 1px solid #ffbc28;
}

.jcarousel-pagination a:active, .jcarousel-pagination a.active {
    background: #ffbc28;
    color: #fff;
    opacity: 1;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}