/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:14px;
	height:14px;
	background:url("../img/thumbscroll/left.gif") no-repeat;
	float:left;
	cursor:pointer;
}
a.prev{
	margin:20px 5px 20px 0;
}
a.next{
	margin:20px 0 20px 5px;
}
/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -14px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url("../img/thumbscroll/right.gif");
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:19px;
	width:200px;
	height:5px;
margin-bottom:5px;
}


/* items inside navigator */
div.navi a {
	width:30px;
	height:5px;
	float:left;
	margin-right:5px;
	background:url("../img/thumbscroll/navigator.gif") 0 0 no-repeat;     
	cursor:pointer;
overflow:hidden;
}

/* mouseover state */
div.navi a:hover {
	width:30px;
	height:5px;
	background-position:0 -5px;      
}

/* active state (current page state) */
div.navi a.active {
	width:30px;
	height:5px;
	background-position:0 -10px;     
} 	
/*------------------------------------------------*/
/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 732px;	 
	height:89px;
}
* html div.scrollable {/*IE6*/
	width: 729px;	 
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
.thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
height:89px;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:40px;
}



/* single item */
.thumbs div {
	float:left;
	width:197px;
	height:87px;
	cursor:pointer;
position:relative;
margin-right:10px;
border:1px solid #E5E3E3;
}
.thumbs div a {
	display:block;
	width:197px;
	height:87px;
	background:url("../img/thumbscroll/h100.gif") repeat-x;
color:#2e2e2e;
}
/* style when mouse is over the item */
.thumbs div a:hover {
	background:url("../img/thumbscroll/h100.gif") repeat-x;
color:#3F5E1D;
text-decoration:none;
}
.thumbs div strong{
display:block;
height:15px;
text-indent:-9999px;
border:none;
margin:0;
}
.thumbs div strong.radio{
background:url("../img/thumbscroll/Radio.gif") no-repeat;
}
.thumbs div strong.music{
background:url("../img/thumbscroll/Music.gif") no-repeat;
}
.thumbs div strong.tv{
background:url("../img/thumbscroll/TV.gif") no-repeat;
}
.thumbs div strong.movie{
background:url("../img/thumbscroll/Movie.gif") no-repeat;
}
.thumbs div img{
float:left;
margin:5px;
}
.thumbs div em,.thumbs div span.ts_desc{
display:block;
width:95px;
padding-top:5px;
margin-left:96px;
cursor:pointer;
}
.thumbs div em{
font-weight:bold;
font-size:0.9em;
padding-bottom:2px;
border-bottom:1px solid #7CB456;
line-height:1em;
}
.thumbs div span.ts_desc{
font-size:0.8em;
line-height:1em;
}
/*.thumbs div a span.ts_disc{
display:none;
}
.thumbs div a:hover span.ts_disc{
display:block;
position:absolute;
width:187px;
bottom:0;
left:0;
padding:5px 5px 10px 5px;
font-size:0.9em;
background:#333;
cursor:pointer;
line-height:1.1em;
}*/
