/******************************************************\
*
*  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)
*
\*****************************************************

div.touchcarousel {
width: 100%;		
height: 240px;
padding: 0px;
margin: 0px;
z-index:575;
}

*/
	
li.touchcarousel-item {
	border-right:solid #EEE 4px;
	height: 320px;		

}

.touchcarousel {
	position: relative;
	width: 100%;
	height: 320px;		
	
	/* style is removed after carousel is inited, use !important if you want to keep it*/
	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: 320px;
}

/* Large devices (desktops, less than 1600px) */
@media (max-width: 1600.02px) {li.touchcarousel-item, div.touchcarousel, img.touchcarousel-img, .touchcarousel-wrapper, #touchcarousel-1 ul li div.grid-block { height: 280px; width:auto; max-height:280px;}}

/* Large devices (desktops, less than 1366px) */
@media (max-width: 1366.02px) {li.touchcarousel-item, div.touchcarousel, img.touchcarousel-img, .touchcarousel-wrapper, #touchcarousel-1 ul li div.grid-block { height: 260px; width:auto; max-height:260px;}}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {li.touchcarousel-item, div.touchcarousel, img.touchcarousel-img, .touchcarousel-wrapper, #touchcarousel-1 ul li div.grid-block { height: 240px; width:auto; max-height:240px;}}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {li.touchcarousel-item, div.touchcarousel, img.touchcarousel-img, .touchcarousel-wrapper, #touchcarousel-1 ul li div.grid-block { height: 220px; width:auto; max-height:220px;}}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {li.touchcarousel-item, div.touchcarousel, img.touchcarousel-img, .touchcarousel-wrapper, #touchcarousel-1 ul li div.grid-block { height: 180px; width:auto; max-height:180px;}
}

/* Small devices (landscape phones, less than 576px) */
@media (max-width: 575.98px) {li.touchcarousel-item, div.touchcarousel, img.touchcarousel-img, .touchcarousel-wrapper, #touchcarousel-1 ul li div.grid-block { height: 100px; width:auto; max-height:100px;}
}







/******************************************************\
*
*  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;		
}

/* Last carousel item  */
.touchcarousel .touchcarousel-item.last {
	margin-right: 0 !important;		
}





/******************************************************\
*
*  3. Arrows(direction) navigation
*
\******************************************************/

/* arrow hitstate and icon holder */
.touchcarousel .arrow-holder {
	height: 100%;
	width: 45px;
	position: absolute;
	top: 0;
	display: block;
	cursor: pointer;	
	z-index: 25;	
}
.touchcarousel .arrow-holder.left {	
	left: 0;	
}
.touchcarousel .arrow-holder.right {	
	right: 0;
}

/* arrow icons */
.touchcarousel .arrow-icon{		
	width: 45px;
	height: 90px;
	top:50%;
	margin-top:-45px;	
	position: absolute;	
	cursor: pointer;	
}
.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:absolute;
	margin-top:-20px;
	z-index:25;
}
.touchcarousel .tc-paging-centerer {	
	float: left;
	position: relative;
	left: 50%;		
}
.touchcarousel .tc-paging-centerer-inside {
	float: left;
	position: relative;
	left: -50%;
	opacity: 0.05;
}

/* 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 { }





/******************************************************\
*
*  5. Scrollbar
*
\******************************************************/
.touchcarousel .scrollbar-holder {
	position: absolute;
	z-index: 30;
	left: 1px;
	right: 1px;	
	bottom: 0px;
	height:4px;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.6);	
}
.touchcarousel .scrollbar {
	position: absolute;
	left:0;	
	height:4px;
	bottom: 0px;
}
.touchcarousel .scrollbar.dark {
	background-color: #9B8350;	
/*	background-color: rgba(126, 126, 126, 0.75);*/
}
.touchcarousel .scrollbar.light_zzz {
	background-color: rgb(210, 210, 210);	
	background-color: rgba(255, 255, 255, 0.5);	
}
.touchcarousel .scrollbar.light {
	background-color: rgb(100, 70, 200);	
	background-color: rgba(100, 70, 200, 0.9);	
}





/******************************************************\
*
*  6. Cursors
*
\******************************************************/

/* IE and Opera use "move", FF uses -moz-grab */
.touchcarousel .grab-cursor{ cursor:url(grab.png) 8 8, move; }
.touchcarousel .grabbing-cursor{ cursor:url(grabbing.png) 8 8, move; }

/* Cursor that used when mouse drag is disabled */
.touchcarousel .auto-cursor{ cursor:auto; }

img.touchcarousel-img { height:320px !important;}


/* Copyright 2011, Dmitry Semenov, http://dimsemenov.com */