/* this makes it possible to add next button beside scrollable */
div.scrollable {
	position:relative;
	overflow:hidden;
	width: 646px;
	height:300px;
	margin-bottom:60px;
	float:left;
}

/* custom positioning for navigational links */
a.prev, a.next {
	display:block;
	width:30px;
	height:30px;
	background-image:url(../images/left-right-sprite.png);
	float:left;
	margin:118px 10px 43px 10px;
	cursor:pointer;
	font-size:1px;
}

a.prev:hover {
	background-position:30px 0;
}

a.next{
	background-position:0 30px;
}
/*create seperate hover images so that pngfix works when width/height is aplied */
a.next:hover {
	background-position:30px 30px;
}

#thumbs {
	position:absolute;
	width:20000em;
	clear:both;
	border:1px solid #222;
}

/* single item */
#thumbs div {
	float:left;
	width:214px;
	height:300px;
	background:#333 url(../images/scroll-bg.png) repeat-x 0 146px;
	color:#fff;
	border-left:1px solid #333;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;
}
/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#003745;
	cursor:default;
}
#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;
	font-size:13px;
	color:#fff;
}
#thumbs h3 em {
	font-style:normal;
	color:yellow;
}
#thumbs div span {margin:0;padding:0;}

/* disabled navigational button */
a.disabled {visibility:hidden !important;}

/*********** 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(../images/navigator-default.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	/*background-position:0 -8px;*/
	background:url(../images/navigator-over.png);      
}

/* active state (current page state) */
div.navi a.active {
	/*background-position:0 -16px; */
	background:url(../images/navigator-active.png);
	outline:none;
	border:none;   
} 