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

#content {
height:179px; 
background-color:#fff;
width:700px;
border:1px solid #f0f0f0;
margin-top:15px;
clear:both;
float:left;
}

a.next {
visibility:hidden;
}

a.prev{
display:block;
width:11px;
height:11px;
background:url("../img/scrollable/left.jpg") no-repeat;
float:left;
margin:0;
cursor:pointer;
font-size:1px;
}

a.next, a.prevPage, a.nextPage {
display:block;
width:11px;
height:11px;
background:url("../img/scrollable/left.png") no-repeat;
float:left;
margin:0;
cursor:pointer;
font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
background-position:0px -11px;		
}

/* disabled navigational button */
a.disabled {
visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
background-image:url("../img/scrollable/right.jpg");
clear:right;	
}



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


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url("../img/scrollable/navigator.png") 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
background-position:0 -16px;     
} 	

/* root element for the whole scrollable setup */
div.scrollable {  
position:relative;
overflow:hidden;
width:668px;	 
height:179px;
float:left;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	/*border:1px solid #222;*/
}

/* custom positioning for navigational links */
a.next {
margin:84px 2px 0 3px;	
}

a.prev {
margin:84px 3px 0 2px;	
}



#thumbs div {
float:left;
width:215px;
height:155px;
color:#fff;
cursor:default;
margin:13px 11px 0 0;
padding-bottom:1px;
background:url("../img/scrollable/scrollable_bg.jpg") no-repeat;
}


#thumbs div.strapline {
float:left;
width:215px;
height:47px;
position:relative; 
line-height:12px;
font-size:11px;
text-align:center;
padding:0px !important;
margin:0px !important;
color:#333 !important;
background:none;
}

/* style when mouse is over the item */
#thumbs div.hover {
background-color:#0c51a1;	
}

/* style when element is active (clicked) */
#thumbs div.active {
cursor:default;
}



