@charset "utf-8";
/* CSS Document */

/**** Gallery Main Image and Sliding Box Caption ****/
	.gallery-img { 
		width: 400px; 
		height: 300px; 
		background: #FFF; 
		border: 5px solid #CCC; 
		overflow: hidden;
		position: relative;
	}
	
	.gallery-img img {
		position: absolute;
		top: 0;
		left: 0;
		border: 0;
	}
	
	.boxcaption {
		position: absolute;
		background: #000;
		height: 100px;
		width: 100%;
		opacity: .8;
		
		/* For IE 5-7 */  
			filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);  
		
		/* For IE 8 */  
			-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";	
	}
	
	.caption .boxcaption {
		top: 275px;
		left: 0;
		padding: 0 5px;
	}
	
	.cover-caption { 
		color: #FFF;
		font-weight: bold;
		font-size: 15px;
	}


/**
 * 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,
.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 {
    z-index: 3;
    display: none;
}

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

.jcarousel-skin-gallery .jcarousel-container {
    background: none;
    border: none;
}

.jcarousel-skin-gallery .jcarousel-container-horizontal {
    width: 337px;
    padding: 20px 36px;
}

.jcarousel-skin-gallery .jcarousel-clip-horizontal {
    width:  337px;
    height: 79px;
}

.jcarousel-skin-gallery .jcarousel-item {
    width: 75px;
    height: 75px;
    border: 2px solid #ccc;
}

.jcarousel-skin-gallery .jcarousel-item:hover {
    border-color: #808080;
	cursor: pointer;
}

.jcarousel-skin-gallery .jcarousel-item-horizontal {
    margin-right: 7px;
}

.jcarousel-skin-gallery .jcarousel-item-placeholder {
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-gallery .jcarousel-next-horizontal {
    position: absolute;
    top: 45px;
    right: 0px;
    width: 23px;
    height: 23px;
    cursor: pointer;
    background: url(../../img/sprite_arrows.png) no-repeat -53px -4px;
}

.jcarousel-skin-gallery .jcarousel-next-horizontal:hover {
    background-position: -53px -34px;
}

.jcarousel-skin-gallery .jcarousel-next-horizontal:active {
    
}

.jcarousel-skin-gallery .jcarousel-next-disabled-horizontal,
.jcarousel-skin-gallery .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-gallery .jcarousel-next-disabled-horizontal:active {
   
}

.jcarousel-skin-gallery .jcarousel-prev-horizontal {
    position: absolute;
    top: 45px;
    left: 0px;
    width: 23px;
    height: 23px;
    cursor: pointer;
    background: url(../../img/sprite_arrows.png) no-repeat -6px -4px;
}

.jcarousel-skin-gallery .jcarousel-prev-horizontal:hover {
    background-position: -6px -34px;
}

.jcarousel-skin-gallery .jcarousel-prev-horizontal:active {
    
}

.jcarousel-skin-gallery .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-gallery .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-gallery .jcarousel-prev-disabled-horizontal:active {
    
}