/* root element for scrollable */
.vertical {
	
	/* required settings */
	position:relative;
	overflow:hidden;	
    float:left;
	/* vertical scrollers have typically larger height than width */	
	height: 95px;
	width: 354px;
    background: url(../../images/bg_recent_vscroll.png) no-repeat left top;
    margin-top: 10px;
}

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

/* single scrollable item */
.vertical .items div {
	font-size:13px;
	height:27px;
    padding: 3px;
    padding-bottom: 1px;
    color: #fff;
}

/* elements inside single item */

.vertical .items div .rate {
  float: left;
  width: 73px;
  padding-left: 20px;
}

.vertical .items div .rate a {
  color: #245d80;
  font-weight: bold;
  text-decoration: none;
}


.vertical .items div .term {
  float: left;
  width: 119px;
}

.vertical .items div .term a, .vertical .items div .city a {
  color: #fff;
  text-decoration: none;
}


.vertical .items div .city{
  float: left;
  width: 100px;
}

/* the action buttons above the scrollable */
.vertical #actions {
	width:270px;
	margin:30px 0 10px 0;	
}

.vertical #actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

.vertical #actions a:hover {
	text-decoration:underline;
	color:#000;
}

.vertical .disabled {
	visibility:hidden;		
}

.vertical .nextPage {
	float:right;
}	


