/* outmost wrapper element */
#scrollable {
	background-color:#efefef;
	border:1px solid #ddd;
	width:999px;
	height:94px;
	background-image: url(../portfolio/bg.gif);
	background-repeat: repeat-x;
	display: block;
	clear: both;
}

/* container for the scrollable items */
div.items {
	height:96px;		
	float:left;
	width:949px !important;
}



/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:30px;
	background:url(img/item.gif) 0 0 no-repeat;
	font-size:50px;
	color:#ccc;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
	margin-top: 7px;
}

div.items a:hover {
	color:#999;	
}

div.items a.active {	
	cursor:default;
	border: 2px solid #FF00FF;
}


/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:25px;
	height:94px;
	float:left;
	background-repeat:no-repeat;
}

a.prev {
	background-image: url(../portfolio/left.gif);
	background-position: -5px;
}

a.next {
	background:url(../portfolio/right.gif);	
	background-position: -5px;	
}


/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:310px;
	margin-left:-50px;
	width:50px;
	height:0px;
}


/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(img/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -8px;      
}

div.navi span.active {
	background-position:0 -16px;     
} 	

