/**
 * 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-list li {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width:229px;
	height:121px;
	background:url(../../images/service-tab02.png) no-repeat;
}

.jcarousel-item a {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width:auto;
	height:121px;
	padding:25px 10px 0 15px;
	color:#fff;
	text-decoration:none;
}

.jcarousel-item a span.title {
    width:200px;
	margin:0px 5px 0px 0px;
	padding-bottom:20px;
	font-family:"Gill Sans Std Light", "Gill Sans Std Light Shadowed", "Gill Sans Std Condensed";
	font-size: 9pt;
	text-transform:uppercase;
	font-weight:600;
	letter-spacing:1px;
	color:#03194a;
	text-decoration:none;
}


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

.jcarousel-prev {
    z-index: 999;
    display: none;
}

