
/* this makes it possible to add next button beside scrollable */

div.bgScroll	{
	float:left;
	position: relative;
	width: 580px;
	height: 133px;
	margin: 0;
	background: url(../images/bg-scroller.gif) no-repeat;
	clear: both;
	}
div.scrollable { 
	position: relative;
	overflow: hidden;
	width: 500px;
	margin: 0 23px 0 37px;
	height: 110px;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	position: absolute;
	top: 50px;
	left: 15px;
	width: 24px;
	height: 43px;
	background: url(../images/shell/arrow-left.png) no-repeat;
	background-position: 0 0;
	cursor: pointer;
}
/* 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;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0 -43px!important;
}

/* disabled navigational button */
a.disabled {
	/*  visibility: hidden!important;  */
    filter: alpha(opacity=50);
    opacity: 0.5;	}		


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	text-align: center;
	height: 12px;
	clear: both;
	overflow: hidden;
	width: 30px;/*  will need to be increased to accomodate more navi dots if over 6 thumbs are needed  */
	margin: 0 auto;
}

/* items inside navigator */
div.navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background-image: url(../images/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;     
	cursor: pointer;	
	text-decoration: none;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 
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 13px 15px 13px;	
}

/* style when mouse is over the item */
#thumbs div a:hover img.defaultOff {
	border: 1px solid #fff;	
}

/* style when element is active (clicked) */
/*  #thumbs div.active {
	background-color: #fff;
	cursor: default;
}  */
#thumbs div a img.defaultOn  {	
	border: 1px solid #f00;
}
#thumbs div a img.defaultOff  {
	border: 1px solid #666;
}