/*--------------------------------------------------------------------------------------------------------------------------------------------------
SCROLLABLE
---------------------------------------------------------------------------------------------------------------------------------------------------*/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable{

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 956px;
	height:342px;

}

/*
	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 -the bigger the better */
	width:20000em;
	position:absolute;
	clear:both;
	
}

/* single scrollable item in this case they are images */
.scrollable .items > div{
	float:left;
	width: 956px;
	height:342px;

	

}

/* active item */
.scrollable .active {
	
	position:relative;
}

/*buttons*/
.scrollButton
{
	width:18px;
	height:100px;
	float:left;
}
.scrollButton a.prev, .scrollButton a.next
{
	position:relative;
	z-index:9999;
	top:40px;
	width:18px;
	height:18px;
	background-position:0 0;
	display:block;
	text-indent:-999em;
}
.scrollButton a.prev
{
	background:url(arrow/left.png) no-repeat 0 0;

}
.scrollButton a.next
{
	background:url(arrow/right.png) no-repeat 0 0;

}
.scrollButton a.prev:hover,.scrollButton a.next:hover
{
	cursor:pointer;
	background-position:0 -18px;
}
/* position and dimensions of the navigator */
.navi {
	margin-left:136px;
	width:200px;
	height:20px;
}


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

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

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


/*--------------------------------------------------------------------------------------------------------------------------------------------------
VERTICAL SCROLLABLE
---------------------------------------------------------------------------------------------------------------------------------------------------*/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.vScrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	
    /* vertical scrollers have typically larger height than width */ 
    height: 665px; 
    width: 185px; 
	/*Styling */
	background:#f8f8f8;
	border:1px solid #EEE;
}

/*
	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.
*/
.vScrollable .items {
	/* this cannot be too large -the bigger the better */
	height:20000em;
	position:absolute;

}

/* single scrollable item */
.vScrollable div{
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:180px;
	
}

/* active item */
.vScrollable div.active {
	border:2px solid #f8f8f8;
	z-index:9999;
	position:relative;
}

/*vertcal buttons*/
.vButtons
{
	width:185px;
	height:18px;
}
.vButtons a.up, .vButtons a.down
{
	background-position:0 0;
	height:18px;
	line-height:18px;
	display:block;
	padding-left:24px;
	width:3.5em;
	cursor:pointer;
	background-color:#f8f8f8;
	background-repeat:no-repeat;
	background-position:0 0;
	border:1px solid #DDD;
	text-decoration:none;
	color:#333;
}
.vButtons a.up
{
	background-image:url(arrow/up.png);	
	float:right;
}
.vButtons a.down
{
	background-image:url(arrow/down.png);
	float:left;
}
.vButtons a.up:hover, .vButtons a.down:hover
{
	background-position:0 -18px;	
	border:1px solid #CCC;
	color:#666;
}
