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

    /* required settings */
    position:relative;
    overflow:hidden;
    width:97.7%;
    margin-left:1%;
    /*width: 550px;*/
    height:16em;
    /* custom decorations */
    border:1px solid #ccc;
    background-color:#F7F6FB;
}

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

.items section {
    float:left;
    width:1.26%;
}
.items > section div{width:7.3%;float:left;margin:0.4% 0.5%;}
.items > section div h3{width:100%;}
.items > section div h3 a{color:#F35F09;font-size:1.5em;font-family:PT Sans Narrow;font-weight:normal;}
.items > section div p{color:#444444;font-size:1.2em;width:100%;font-family:lora;margin-top:2%;line-height:1.5em;}
/* single scrollable item */
.scrollable img {
    padding:2px;
    border:1px solid #ccc;
    max-width:200px;
    height:70px;
    display:block;
    margin-bottom:1%;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

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

