/******************************************************\
*
*  1. Main containers (carousel size, background)
*
\******************************************************/

.touchcarousel {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden; 
	margin-top: 60px;
}

.touchcarousel .touchcarousel-container {
	position: relative;    
    margin: 0;
    padding: 0;
    list-style: none;    
	left: 0;
	float: left;
	width: 100%;
	
}
.touchcarousel .touchcarousel-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	left:50%;
	margin-left:-585px;
}


/******************************************************\
*
*  2. Carousel items (item styling, spacing between items)
*
\******************************************************/

.touchcarousel .touchcarousel-item {
	/* use margin-right for spacing between items */
	margin: 0 0 0 0;
	padding: 0;	
	float: left;	
	width: 1170px;	
	list-style: none;
	margin-right: 375px;
}

/* Last carousel item  */
.touchcarousel .touchcarousel-item.last {
	margin-right: 750px;	
}

.touchcarousel .touchcarousel-item .tc-container {
	position: relative;
}


/******************************************************\
*
*  4. Paging navigation
*
\******************************************************/

.touchcarousel .tc-paging-container {
	width:100%;
	overflow:hidden;
	position:absolute;
	z-index:25;
}
.touchcarousel .tc-paging-centerer {	
	float: left;
	position: relative;
	left: 50%;		
}
.touchcarousel .tc-paging-centerer-inside {
	float: left;
	position: relative;
	left: -50%;
}

/* Paging items */
.touchcarousel .tc-paging-item {			
	float:left;	
	cursor:pointer;		
	position:relative;
	display:block;	
	text-indent: -9999px;	
}
.touchcarousel .tc-paging-item.current { }
.touchcarousel .tc-paging-item:hover { }


/******************************************************\
*
*  6. Cursors
*
\******************************************************/

/* IE and Opera use "move", FF uses -moz-grab */
.touchcarousel .grab-cursor{ cursor:url(grab.html) 8 8, move; }
.touchcarousel .grabbing-cursor{ cursor:url(grabbing.html) 8 8, move; }

/* Cursor that used when mouse drag is disabled */
.touchcarousel .auto-cursor{ cursor:auto; }




/* Touch Carousel CSS */

#carousel-single-image {
	width: 300px;
	height: 240px;
	margin: 0 auto;			
	background: #242021;
}
#carousel-single-image .touchcarousel-container {
	height: 240px;
}
#carousel-single-image .touchcarousel-item {
	margin-right: 0;
	width: 300px;
	height: 240px;
}
#carousel-single-image img {
	width: 300px;
	height: 138px;
	margin: 47px 0 0 47px;	
	
	float:left;
	position: relative;
	display: block;
	padding: 3px;
	background: #FFF;
	border: 0;
	
	-webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.6);
	-moz-box-shadow: 0 1px 6px rgba(0,0,0,0.6);
	box-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
#carousel-single-image .tc-paging-container {
	margin-top: -29px;
}