/******************************************************\
*
*  Base TouchCarousel stylesheet
*   
*  Contents:
*
*   1. Main containers
*   2. Carousel items
*   3. Arrows(direction) navigation
*   4. Paging navigation
*   5. Scrollbar
*   6. Cursors
*
\******************************************************/





/******************************************************\
*
*  1. Main containers (carousel size, background)
*
\******************************************************/

.touchcarousel2 {
	position: relative;
	width: 882px;
	height: 200px;
	margin-left:40px;	
	
	/* style is removed after carousel is inited, use !important if you want to keep it*/
	overflow: hidden; 
}
.touchcarousel2 .touchcarousel-container {
	position: relative;    
    margin: 0;
    padding: 0;
    list-style: none;    
	left: 0;
}
.touchcarousel2 .touchcarousel-wrapper {
	position: relative;
	overflow:hidden;
	width: 100%;
	height: 100%;
}





/******************************************************\
*
*  2. Carousel items (item styling, spacing between items)
*
\******************************************************/

.touchcarousel2 .touchcarousel-item {
	/* use margin-right for spacing between items */
	margin: 0 1px 0 0;
	padding:2px 7px 7px 7px;	
	float: left;
	width:280px;
	background:#57baf0;
}

/* Last carousel item  */
.touchcarousel2 .touchcarousel-item.last {
	margin-right: 0 !important;		
}

.touchcarousel2 .touchcarousel-item div{
	background:white;
	padding:3px 5px 5px 5px;
	}

.touchcarousel2 .touchcarousel-item h5{
	width:270px;
	color:white;
	font-size:15px;
	font-weight:600;
	margin:0 0 5px 0;
	height:20px;
	overflow:hidden;
	}

.touchcarousel2 .touchcarousel-item img {
	float:left;
	margin:3px 7px 0 0;
	border:1px solid #4db3ea;
	}

.touchcarousel2 .touchcarousel-item p.frase{
	color:#3aa6e1;
	font-size:15px;
	margin:0 0 10px 0;
	font-style:italic;
	height:60px;
	overflow:hidden;
	line-height:20px;
	}

.touchcarousel2 .touchcarousel-item p.infos{
	color:#e7578b;
	font-size:12px;
	height:26px;
	line-height:13px;
	overflow:hidden;
	margin:0 0 11px 0;
	}

.touchcarousel2 .touchcarousel-item a {
	display:block;
	float:left;
	font-size:12px;
	font-weight:600;
	width:152px;
	line-height:25px;
	color:white;
	padding:3px 0px 3px 8px;
	background:#e7578b;
	}


/******************************************************\
*
*  3. Arrows(direction) navigation
*
\******************************************************/

/* arrow hitstate and icon holder */
.touchcarousel2 .arrow-holder {
	height: 100%;
	width: 32px;
	position: absolute;
	top: 0;
	display: block;
	cursor: pointer;	
	z-index: 25;	
}
.touchcarousel2 .arrow-holder.left {	
	left: 0;	
}
.touchcarousel2 .arrow-holder.right {	
	right: 0;
}

/* arrow icons */
.touchcarousel2 .arrow-icon{		
	width: 32px;
	height: 105px;
	top:45%;
	margin-top:-45px;	
	position: absolute;	
	cursor: pointer;	
}
.touchcarousel2 .arrow-icon.left { }
.touchcarousel2 .arrow-icon.right { }
.touchcarousel2 .arrow-holder:hover .arrow-icon { }
.touchcarousel2 .arrow-holder.disabled { cursor: default; }
.touchcarousel2 .arrow-holder.disabled .arrow-icon { cursor: default; }





/******************************************************\
*
*  4. Paging navigation
*
\******************************************************/

.touchcarousel2 .tc-paging-container {
	width:100%;
	overflow:hidden;
	position:absolute;
	margin-top:-20px;
	z-index:25;
}
.touchcarousel2 .tc-paging-centerer {	
	float: left;
	position: relative;
	left: 50%;		
}
.touchcarousel2 .tc-paging-centerer-inside {
	float: left;
	position: relative;
	left: -50%;
}

/* Paging items */
.touchcarousel2 .tc-paging-item {			
	float:left;	
	cursor:pointer;		
	position:relative;
	display:block;	
	text-indent: -9999px;	
}
.touchcarousel2 .tc-paging-item.current { }
.touchcarousel2 .tc-paging-item:hover { }


/******************************************************\
*
*  5. Scrollbar
*
\******************************************************/
.touchcarousel2 .scrollbar-holder {
	position: absolute;
	z-index: 30;
	left: 0px;
	right: 0px;	
	bottom: 5px;
	height:4px;
	overflow: hidden;
}
.touchcarousel2 .scrollbar {
	position: absolute;
	left:0;	
	height:2px;
	bottom: 0px;
	background-color:#57baf0;
}

/******************************************************\
*
*  6. Arrows Tema
*
\******************************************************/

.touchcarousel2.arrow-icon {	
	width: 32px;
	height: 105px;
}
.touchcarousel2 .arrow-holder {
	width: 32px;
	height: 100%;
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;
}
.touchcarousel2 .arrow-holder.left {
	left: 0px;
}
.touchcarousel2 .arrow-holder.right {	
	right: 0px;
}

.touchcarousel2 .arrow-icon.left {
	left: -40px;
	background:url(carousel/prev-depoimentos.png);
}
.touchcarousel2 .arrow-icon.right {
	right: -40px;
	background:url(carousel/next-depoimentos.png);
}

.touchcarousel2 .arrow-holder.disabled {
	display:none;
}


/******************************************************\
*
*  7. Cursors
*
\******************************************************/

/* IE and Opera use "move", FF uses -moz-grab */
.touchcarousel2 .grab-cursor{ cursor:url(carousel/grab.png) 8 8, move; }
.touchcarousel2 .grabbing-cursor{ cursor:url(carousel/grabbing.png) 8 8, move; }

/* Cursor that used when mouse drag is disabled */
.touchcarousel2 .auto-cursor{ cursor:auto; }