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

	/* required settings */
	position:relative;
    margin: 0px;
    float: left;
	overflow:hidden;
	width: 500px;
	height:99px;


}

/*
	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;
}

/* single scrollable item */
.scrollable div.rate {
	float:left;
	margin: 0 5px;
	cursor:pointer;
	width:114px;
	height:75px;
    text-align: center;
    font-weight: bold;
    font-family: Trebuchet MS;
    text-transform: uppercase;
}

.scrollable div.rate .term {
  width: 100%;
  float: left;
  height: 18px;
  padding-top: 7px;
  font-size: 10px;
  color: #245d80;
}

.scrollable div.rate a {
  text-decoration: none; 
}


.scrollable div.rate .logo {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 10px;
  float: left;
  display: block;
  height: 35px;
}

.scrollable div.rate .percent {
  width: 100%;
  float: left;
  padding-top: 4px;
  height: 22px;
  color: #a1c441;
  font-size: 12px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}



