/******************************************************\
*
*  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)
*
\******************************************************/

.touchcarousel-estados {
	position: relative;
	width: 440px;
	height: 95px;			
	/* style is removed after carousel is inited, use !important if you want to keep it*/
	overflow: hidden; 
}
.touchcarousel-estados .touchcarousel-container {
	position: relative;    
    margin: 0;
    padding: 0;
    list-style: none;    
	left: 0;
}
.touchcarousel-estados .touchcarousel-wrapper {
	position: relative;
	overflow:hidden;
	width: 100%;
	height: 100%;
}





/******************************************************\
*
*  2. Carousel items (item styling, spacing between items)
*
\******************************************************/

.touchcarousel-estados .touchcarousel-item {
	/* use margin-right for spacing between items */
	margin: 0 1px 0 0;
	padding:0;	
	float: left;
}

.touchcarousel-estados .touchcarousel-item a{
	display:block;
	width: 109px;
	height:70px;
	padding:8px 0 0 2px;
	background:url(carousel/bg-item.jpg);
	}

.touchcarousel-estados a.item-selecionado{
	background:url(carousel/bg-selecionado.jpg);
	}

/* Last carousel item  */
.touchcarousel-estados .touchcarousel-item.last {
	margin-right: 0 !important;		
}

.touchcarousel-estados .touchcarousel-item span{
	display:block;
	text-align:center;
	color:white;
}

.touchcarousel-estados .touchcarousel-item span.uf{
	font-size:32px;
	font-weight:600;
	}

/******************************************************\
*
*  3. Arrows(direction) navigation
*
\******************************************************/

/* arrow hitstate and icon holder */
.touchcarousel-estados .arrow-holder {
	height: 100%;
	width: 45px;
	position: absolute;
	display: block;
	cursor: pointer;	
	z-index: 25;	
}
.touchcarousel-estados .arrow-holder.left {	
	left: 0;	
}
.touchcarousel-estados .arrow-holder.right {	
	right: 0;
}

/* arrow icons */
.touchcarousel-estados .arrow-icon{		
	width: 45px;
	height: 90px;
	top:50%;
	margin-top:-45px;	
	position: absolute;	
	cursor: pointer;	
}
.touchcarousel-estados .arrow-icon.left { }
.touchcarousel-estados .arrow-icon.right { }
.touchcarousel-estados .arrow-holder:hover .arrow-icon { }
.touchcarousel-estados .arrow-holder.disabled { cursor: default; }
.touchcarousel-estados .arrow-holder.disabled .arrow-icon { cursor: default; }





/******************************************************\
*
*  4. Paging navigation
*
\******************************************************/

.touchcarousel-estados .tc-paging-container {
	width:100%;
	overflow:hidden;
	position:absolute;
	margin-top:-20px;
	z-index:25;
}
.touchcarousel-estados .tc-paging-centerer {	
	float: left;
	position: relative;
	left: 50%;		
}
.touchcarousel-estados .tc-paging-centerer-inside {
	float: left;
	position: relative;
	left: -50%;
}

/* Paging items */
.touchcarousel-estados .tc-paging-item {			
	float:left;	
	cursor:pointer;		
	position:relative;
	display:block;	
	text-indent: -9999px;	
}
.touchcarousel-estados .tc-paging-item.current { }
.touchcarousel-estados .tc-paging-item:hover { }


/******************************************************\
*
*  5. Scrollbar
*
\******************************************************/
.touchcarousel-estados .scrollbar-holder {
	position: absolute;
	z-index: 30;
	left: 0px;
	right: 0px;	
	bottom: 5px;
	height:4px;
	overflow: hidden;
}
.touchcarousel-estados .scrollbar {
	position: absolute;
	left:0;	
	height:2px;
	bottom: 0px;
	background-color:#57baf0;
}

/******************************************************\
*
*  6. Arrows Tema
*
\******************************************************/

.touchcarousel-estados .arrow-icon {	
	width: 19px;
	height: 61px;
}
.touchcarousel-estados .arrow-holder {
	width: 19px;
	height: 100%;
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;
	top:7px;
}
.touchcarousel-estados .arrow-holder.left {
	left: -23px;
}
.touchcarousel-estados .arrow-holder.right {	
	right: -23px;
}

.touchcarousel-estados .arrow-icon.left {
	left: 0;
	background:url(carousel/prev-estados.jpg);
}
.touchcarousel-estados .arrow-icon.right {
	right: 0;
	background:url(carousel/next-estados.jpg);
}

.touchcarousel-estados .arrow-holder.disabled {
	display:none;
}


/******************************************************\
*
*  7. Cursors
*
\******************************************************/

/* IE and Opera use "move", FF uses -moz-grab */
.touchcarousel-estados .grab-cursor{ cursor:url(carousel/grab.png) 8 8, move; }
.touchcarousel-estados .grabbing-cursor{ cursor:url(carousel/grabbing.png) 8 8, move; }

/* Cursor that used when mouse drag is disabled */
.touchcarousel-estados .auto-cursor{ cursor:auto; }