/* root element for scrollable */
.contentsummary .vertical {

    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 665px;
    width: 650px;
    border-top:1px solid #ddd;
}

/* root element for scrollable items */
.contentsummary .items {
    position:absolute;

    /* this time we have very large space for height */
    height:20000em;
    margin: 0px;
    width: 100%;
}

/* single scrollable item */
.contentsummary .item {
    border-bottom:1px solid #ddd;
    margin:10px 0;
    padding:15px;
    font-size:12px;
    height:180px;
}

/* elements inside single item */
.contentsummary .item img {
    float:left;
    margin-right:20px;
    height:180px;
    width:240px;
}

.contentsummary .item h3 {
    margin:0 0 5px 0;
    font-size:16px;
    color:#456;
    font-weight:normal;
}

/* the action buttons above the scrollable */
.contentsummary .actions {
    width:650px;
    margin:30px 0 10px 0;
    text-align:right;
}

.contentsummary .actions a {
    font-size:11px;
    cursor:pointer;
    color:#666;
}

.contentsummary .actions a:hover {
    text-decoration:underline;
    color:#000;
}

.contentsummary .disabled {
    visibility:hidden;
}

.contentsummary .prev, .contentsummary .next, .contentsummary .scrollablePagination
{
    float: left;    
}

.contentsummary .scrollablePagination
{
    padding-left:10px;
    padding-right:10px;
}