/* root element for scrollable */
div.scrollable.vertical {  
	
	/* required settings */
	overflow:hidden;	
	position:relative;
	clear:both;	

	/* vertical scrollers have typically larger height than width */	
	height: 160px;	 
	width: 180px;	
}

/* root element for scrollable items */
div.scrollable.vertical div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	margin: 0px;
}

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
	margin:1px 0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* text/font settings */
	padding: 5px 0px 5px 0px;
	line-height:1.6em;
	padding-left:10px;
	width: 160px;
	cursor:pointer;
}

/* single scrollable item */
div.scrollable div.items div a{
	font-family:Arial, Helvetica, sans-serif;
	font-size:9pt;
	text-decoration:none;
	color:#333;
	text-decoration:none;
	font-weight:bold;
}

div.scrollable div.items div a:hover{
	color:#990000;
}


/* mouseover state */
div.scrollable div.items div:hover {	
	background-position:-178px 0px;
}

/* clicked state */
div.scrollable div.items div:active {	
	background-position:-356px 0;
}

/* active item */
div.scrollable div.items div.active {	
	background-position:-534px 0;
	cursor:default;
}


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	float:left;
	display: block;
	background-image: url(../images/brandarrowtop.gif);
	background-repeat:no-repeat;
	height:25px;
	width:150px;
	padding-left:10px;
}



a.prev:hover, a.prevPage:hover {
	background-image: url(../images/brandarrowtop-roll.gif);
	background-repeat:no-repeat;
}

a.next:hover, a.nextPage:hover {
	background-image: url(../images/brandarrowbottom-roll.gif);
	background-repeat:no-repeat;
}

/* disabled navigational button */
a.disabled {
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/brandarrowbottom.gif);
	clear:right;
}

