/* root element for scrollable */
#company_bottom .vertical {  
    
    /* required settings */
    position:relative;
    overflow:hidden;    

    /* vertical scrollers have typically larger height than width */    
    /*
    height: 665px;     
    width: 700px;
    */
    border-top:1px solid #ddd;    
}

/* root element for scrollable items */
#company_bottom .items {
    position:absolute;
    left: 30px;
    /* this time we have very large space for height */    
    /*
    height: 210px;
    overflow: hidden;    
    */
    width: 188px;
    margin: 0px;
}

#company_bottom .item {    
    float: none;
}

/* single scrollable item */
#company_bottom .items div {
    border-bottom:1px solid #ddd;
    font-size:12px;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    /*
    height:180px;
    */
}

/* elements inside single item */
#company_bottom .items img {
    margin-right:20px;
    /*
    float:left;
    height:180px;
    width:240px;
    */
}

#company_bottom .items h3 {
    margin:0 0 5px 0;
    font-size:16px;
    color:#456;
    font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
    width:700px;
    margin:30px 0 10px 0;    
}

#actions a {
    font-size:11px;        
    cursor:pointer;
    color:#666;
}

#actions a:hover {
    text-decoration:underline;
    color:#000;
}

#company_bottom .disabled {
    visibility:hidden;        
}

#company_bottom .nextPage {
    float:right;
}    

