/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 600px; 
    height:114px; 
    background:#eae8e8;
    float:left;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
} 
 
/* 
    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; 
}  
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

.more_box{
width:100%;
margin-top:10px;
float:left;
clear:left;
}

.more_box h1{
float:left;
height:25px;
line-height:25px;
width:100%;
margin:0 0 8px 0;
}

.more_box p.title{
margin:0px;
font-weight:bold;
font-size:11px;
margin:5px 10px 2px 10px;
display:block;
}

.more_box p.title a{
color:#2c3a67;
}

.more_box p.excerpt{
font-size:11px;
margin:0 10px 0 10px;
}

.items div.wrapper{
display:block;
margin:8px 0 0px 10px;
float:left;
width:185px;
height:95px;
background:#fff;
border:1px solid #ccc;
}

.items div.wrapper .postimg{
width:85px;
height:85px;
overflow:hidden;
float:left;
margin:5px 5px 0 5px;
}

.more_box a{
color:#8b8989;
}

div.more_box a.next{
display:block;
background:url(images/left-right-scroller.jpg) no-repeat 0px -1px;
width:30px;
height:116px;
float:left;
}

div.more_box a.prev{
display:block;
background:url(images/left-right-scroller.jpg) no-repeat -30px -1px;
width:30px;
height:116px;
float:left;
}
