div.scrollable
{
	/* required settings */
    position: relative;
	overflow: hidden;
	width: 575px;
	height: 116px; /* custom decorations */
	padding: 5px 0px 0px 0px;
	background-image:url(../images/scollableclientsbg.jpg);    
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super 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.clientstext
{
 color: #ffffff;
 font-family: Arial; 
 font-size: 10pt; 
 text-decoration: none;

}

div.scrollable div.items
{
    /* this cannot be too large */
    width: 10000em;
    position: absolute;
    clear: both; /* decoration */
    margin-left: 60px;
}

/* single scrollable item */
div.scrollable div.items div
{
    float: left; /* custom decoration */
    text-align: center;
    width: 110px;
    padding: 45px 0px;
    font-size: 30px;
    font-family: 'bitstream vera sans';
    margin-right: 20px;
}

div.clientstext 
{
    float: left; /* custom decoration */
    text-align: left;
    width:300px;
    padding: 0px 0px 0px 17px;
	
}

div.more 
{
    float: right; /* custom decoration */
    text-align: right;
    width: 247px;
    padding: 7px;
	

}




div.scrollable div.items div a img
{
    border: none;
}


/* active item */
#top-banner
{
    width: 660px;
}

div.scrollable div.items div.active
{
}

/* top banner */
#top-banner div.scrollable
{
    width: 500px;
    height: 300px;
    background: #fff;
    padding: 0;
    margin: 0;
    float: left;
}

#top-banner div.scrollable div.items
{
    margin: 0;
}

#top-banner div.scrollable div.items div
{
    text-align: left;
    width: 150px;
    position: relative; /* Set the absolute positioning base coordinate */
    height: 250px;
}

#top-banner div.scrollable div.items div img
{
    width: 100px;
    margin: 0;
    -ms-interpolation-mode: bicubic;
    position: absolute;
    left: 25px;
    top: 20px;
}

#top-banner div.scrollable div.items div canvas
{
    width: 100px;
    margin: 0 25px;
}


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next
{
    display: block;
    width: 32px;
    height: 32px;
    background: url(centerslideiconleft.png) no-repeat;
    float: left;
    margin: 60px 10px;
    cursor: pointer;
    font-size: 1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover
{
}

/* disabled navigational button */
a.disabled
{
    visibility: hidden !important;
}

/* next button uses another background image */
a.next
{
    background-image: url(centerslideiconright.png);
    clear: right;
}
 button uses another background image */
a.next {
	background-image:url(centerslideiconright.png);
	clear:right;	
}
