
/* this makes it possible to add next button beside scrollable */

div.bgScroll	{
	float:none;
	position: relative;
	width: 560px;
	height: 170px;
	margin: 0;
	background-color: #EEEBED;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#EEEBED), to(#CBC3CE));
	background-image: -webkit-linear-gradient(top, #EEEBED, #CBC3CE);
	background-image:    -moz-linear-gradient(top, #EEEBED, #CBC3CE);
	background-image:     -ms-linear-gradient(top, #EEEBED, #CBC3CE);
	background-image:      -o-linear-gradient(top, #EEEBED, #CBC3CE);
	background-image:         linear-gradient(top, #EEEBED, #CBC3CE);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#EEEBED', EndColorStr='#CBC3CE'); 
	clear: both;
	display: none;
}
div.scrollable { 
	position: relative;
	overflow: hidden;
	width: 500px;
	margin: 0 23px 0 27px;
	height: 160px;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	position: absolute;
	top: 50px;
	left: 10px;
	width: 24px;
	height: 43px;
	background: url(../images/shell/arrow-left.png) no-repeat;
	background-position: 0 0;
	cursor: pointer;
	transition: none!important;
}
/* prev, next, prevPage and nextPage buttons */
a.next, a.nextPage {
	position: absolute;
	top: 50px;
	right: 10px;
	width: 24px;
	height: 43px;
	background: url(../images/shell/arrow-right.png) no-repeat;
	background-position: 0 0;
	cursor: pointer;
	transition: none!important;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0 -43px!important;
	transition: none!important;
}

/* disabled navigational button */
a.disabled {
	/*  visibility: hidden!important;  */
    filter: alpha(opacity=50);
    opacity: 0.5;	}		
*+html a.disabled	{
	visibility: hidden;
	}
a.disabled {
    visibility: hidden\0/; 
}

/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	position: absolute;
	left: 260px;
	bottom: 5px;
	height: 18px;
	clear: both;
	overflow:hidden;
	z-index: 1000;
}
/* items inside navigator */
div.navi a {
	width: 13px;
	height: 13px;
	float: left;
	margin: 3px;
	background-image: url(../images/shell/dots.png);
	background-repeat: no-repeat;
	background-position: 0 0;     
	cursor: pointer;
	z-index: 1000;	
}
/* mouseover state */
div.navi a:hover, div.navi:hover {
	background-position:0 -13px!important;      
}
/* active state (current page state) */
div.navi a.active {
	background-position:0 -26px;     
} 

img	{
	border: 0;
	}/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	}
#thumbs div img	{
	width: 140px;
	height: 80px;
	display: block;
	-moz-box-shadow: 0px 1px 3px #666;	
	-webkit-box-shadow: 0px 1px 3px #666;	
	box-shadow: 0px 1px 3px #333;
	}
/* single item */
#thumbs div {
	float: left;
	display: inline;
	width: 140px;
	height: 80px;
	color: #fff;
	cursor: pointer;
	margin: 25px 12px 15px 14px;	
}

/* style when mouse is over the item */
#thumbs div a:hover img.defaultOff {
	border: 1px solid #CBC3CE;	
}

/* style when element is active (clicked) */
/*  #thumbs div.active {
	background-color: #fff;
	cursor: default;
}  */
#thumbs div a img.defaultOn  {	
	border: 1px solid #fff;
}
#thumbs div a img.defaultOff  {
	border: 1px solid #993399;
}