/* .scrollable {
	 POSITION: relative; WIDTH: 850px;  HEIGHT: 120px; OVERFLOW: hidden; 
}
.scrollable .items {
	POSITION: relative;
	WIDTH: 2000em;
	CLEAR: both;
	left: -7px;
	height: 103px;
	top: 3px;
}
.scrollable IMG {
	PADDING-BOTTOM: 2px;  MARGIN: 5px 5px;  WIDTH: 200px; PADDING-RIGHT: 5px; FLOAT: left; HEIGHT: 85px;  CURSOR: pointer;  PADDING-TOP: 2px; -moz-border-radius: 4px; -webkit-border-radius: 4px
}
.scrollable .active {
	Z-INDEX: 9999;  POSITION: relative; 
}


    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div#scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 850px; 
    height:120px; 
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div#scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
		left: -7px;
	height: 103px;
	top: 3px;
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div#scrollable div.items div { 
    float:left; 
} 
 div#scrollable div.items img {
	padding-bottom: 2px;  margin: 5px 5px;  width: 200px; padding-right: 5px; height: 85px;  cursor: pointer;  padding-top: 2px; 
}
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}