/*  1. Main containers (carousel size, background) */
.touchcarousel {
	position: relative;
	overflow: hidden; 
}
.touchcarousel .touchcarousel-container{
	position: relative;    
    margin: 0;
    padding: 0;
    list-style: none;    
	left: 0;
}
.touchcarousel .touchcarousel-wrapper{
	position: relative;
	overflow:hidden;
	width: 100%;
	height: 100%;
}
.touchcarousel .touchcarousel-item {
	padding: 0;	
	float: left;
	position: relative;
	margin:0px 10px 0px 0px;
	overflow:hidden;
}
.touchcarousel .touchcarousel-item.last{margin-right:0 !important;}
/*  3. Arrows(direction) navigation */
/* arrow hitstate and icon holder */
.touchcarousel .arrow-holder {
	height: 60px;
	width: 30px;
	position: absolute;
	top: 39%;
	display: block !important;
	cursor: pointer;
	z-index: 25;
	background: white;
	opacity: 1 !important;
}
.touchcarousel .arrow-holder.left {	
	left: 0;	
}
.touchcarousel .arrow-holder.right {	
	right: 0;
}
/* arrow icons */
.touchcarousel .arrow-icon.left { }
.touchcarousel .arrow-icon.right { }
.touchcarousel .arrow-holder:hover .arrow-icon { }
.touchcarousel .arrow-holder.disabled { cursor: default; }
.touchcarousel .arrow-holder.disabled .arrow-icon { cursor: default; }
/*  4. Paging navigation */
.touchcarousel .tc-paging-container {
	width:100%;
	overflow:hidden;
	position:relative;
	z-index:25;
	margin-top: 10px;
}
.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 */
/* Cursor that used when mouse drag is disabled */
.touchcarousel .auto-cursor{ 
	cursor:auto; 
}
/* 1. Arrows (direction) navigation */
.touchcarousel .arrow-icon {
	width: 100%;
	height: 100%;
	float: left;
	cursor: pointer;
}
.touchcarousel .arrow-icon.left{
	left: 0px;
}
.touchcarousel.minimal-light .arrow-icon.right{
	right: 0px;
}
.touchcarousel .arrow-holder.disabled {
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;
}
.touchcarousel .arrow-holder {
	width: 35px;
	-moz-opacity: 0.8;	
	-webkit-opacity: 0.8;	
	opacity: 0.8;	
}
.touchcarousel .arrow-holder:hover {
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;	
}
/* 2. Paging navigation */
.tc-paging-item {
	width: 16px;
	height: 16px;
	-moz-opacity: 0.8;	
	-webkit-opacity: 0.8;	
	opacity: 0.8;	
}
.tc-paging-item:hover {		
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;		
}