/* root element for scrollable */
.vertical {

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

    /* vertical scrollers have typically larger height than width */
    height: 440px;
    width: 650px;
    /*border-top:5px solid #ddd;*/
    background-color: #E0E0E0;
   
}

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

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

/* single scrollable item */
.item {
   /* border-bottom:2px solid #ccc;*/
    margin:10px 0;
    padding:15px;
    font-size:12px;
    height:180px;
    width:650px;
}

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

.item h3 {
    margin:0 0 5px 0;
    font-size:14px;
    color:#456;
    font-weight:bold;
    width: 600px;
}

.item h4 {
    margin:0 0 5px 0;
    font-size:12px;
    color:#456;
    font-weight:bold;
    width: 600px;
}

.item p 
{
	
    margin:0 0 5px 0;
    font-size:11px;
    color:#456;
    font-weight:normal;
    width: 600px;
}

/* the action buttons above the scrollable */
#actions {
    width:650px;
    margin:30px 0 10px 0;
}

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

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

.disabled {
    visibility:hidden;
}

.next {
    float:right;
}
