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

    /* required settings */
    height: 130px;
    overflow: hidden;
    position: relative;
    width: 525px;
}


.scrollable2 {

    /* required settings */
    height: 300px;
    overflow: hidden;
    position: relative;
    width: 960px;
}
/*
   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 */
    position: absolute;
    width: 20000em;
}
.scrollable2 .items {
	/* this cannot be too large */
    position: absolute;
    width: 20000em;
}

.items div {
	float: left;
    /*width: 525px;*/
	width:176px;
}
.items div h4 { min-height: 30px; font-size:12px; line-height:1.2em; }
/* single scrollable item */

.scrollable img {
    margin:0px auto;
    background-color:#fff;
    padding:0px;
	display:block;
	border:0px solid #ccc;
    -moz-border-radius:0px;
    -webkit-border-radius:0px;
	max-width: 214px;
}

.scrollable2 img {
    float:left;
    margin:0px 0px 0 0px;
    background-color:#fff;
    padding:0px;
    border:0px solid #ccc;
    -moz-border-radius:0px;
    -webkit-border-radius:0px;
}

/* active item */
.scrollable .active {
    position:relative;
    cursor:default;
	border:1px solid #fff;
}

.scrollable2 .active {
    position:relative;
    cursor:default;
	border:1px solid #fff;
}

