.scrollable_wrap {width:710px; height: 130px;position: relative;}
.scrollable {
    height: 130px;
    overflow: hidden;
    position: relative;
    width: 660px;
    margin-left:25px;
}

.scrollable_left, .scrollable_right {
    /*background: red;*/
    height: 32px;
    position: absolute;
    top: 49px;
    width: 15px;
}

.scrollable_left {left: 0;}
.scrollable_right {right: 0;}




/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items > div {
	float:left;
	width:660px;
}



.scrollable .items ul{
margin:0;
padding:0;
width:660px;
}




.scrollable .items ul li {
    float: left;
    height: 130px;
    list-style: none outside none;
    text-align: center;
    width: 220px;
}


.scrollable .items a{
color: #676767;
}

.scrollable .items a:hover{
color: #000;
text-decoration: none;
}


.scrollable .items ul li:hover{

}

.scrollable .items ul li:hover img{

}



/* single scrollable item */
.scrollable img {
border:0;


}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}







/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:15px;
	height:32px;
   	background:url("../images/scrollable_a.png");
	cursor:pointer;
}

/* right */
a.right 			{ background-position:-15px 0;}
a.right:hover 		{ }
a.right:active  	{ }


/* left */
a.left				{ }
a.left:hover  		{ }
a.left:active  	{ }

/* up and down */
a.up, a.down		{
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat;
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; }


/* disabled navigational button */
a.disabled {
	background: none;
}





