
/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable
{
    /* required settings */
float:left;
    overflow: hidden;
    width: 100%;
    display:block;
  

    
    border: 1px solid #ccc;
    background: url(/images/h300.png) repeat-x;
}

/*
   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 */
    
   
    clear: both;
    top:0;
    right:0;
    cursor:pointer;
           
    
}



/* single scrollable item */
.scrollable img
{
    max-width:250px;
    width: 30%;
    margin: 10px 5px 10px 10px;
    background-color: #fff;
    padding: 1px;
    border: 1px solid #ccc;
  
    padding:10px;
  /*-webkit-border-radius: 1em 0em 1em 0em;
    -moz-border-radius: 1em 0em 1em 0em;
    border-radius: 1em 0em 1em 0em;*/
}


/* active item */
.scrollable .active
{
    border: 1px solid yellow;
        cursor:wait;

}

