/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 150px;	 
	width: 256px;
	z-index:1;
}

/* root element for scrollable items */
.items {	
	position:absolute;	
	/* this time we have very large space for height */	
	height:50em;	
	margin: 0px;
}

/* single scrollable item */
.item {
	margin:0;
	padding:0;
	font-size:12px;
	height:150px;
	
}
.item ul {
	margin:0;
	padding:0;
}
.item ul li {
	margin:0 6px 0 0 ;
	padding:0;
	width:250px;
	height:30px;
	float:left;
	list-style:none;
	font-size:18px;
	color:#9C8B5D;	
	list-style:none;
	line-height:30px;
	text-align:right;
	background:url(../images-main/aundh_li_bg.gif) no-repeat left center;
}
.item ul li a{
	margin:0;
	padding:0 0 0 15px;
	width:235px;
	height:30px;
	float:left;
	list-style:none;
	font-size:18px;
	color:#9C8B5D;	
	list-style:none;
	line-height:30px;
	text-decoration:none;
}

.item ul li a:hover {
	color:#cdc09f;
}
/* the action buttons above the scrollable */
#actions {
	width:100px;
	height:21px;
	padding:0 12px;
	margin-left:130px;
	font-size:14px;
}

#actions a {
	font-size:14px;		
	cursor:pointer;
	color:#9C8B5D;
	text-decoration:none;
}

#actions a:hover {
	text-decoration:underline;
	color:#cdc09f;
	text-decoration:none;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
	text-decoration:none;
}	

