/* root element for scrollable */
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 260px;
	width: 480px;
	/* decoration */
	padding:0px 10px;/*	border-top:1px solid #ececec;
	border-bottom:1px solid #ececec;*/
}

div.scrollable#customer-scroll {
	height:200px;
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	width:480px;
	/* decoration */
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	text-align:left;
	width:480px;
	height:270px;
	padding:15px 0;
}

/*div.scrollable#customer-scroll div.items div*/ {
	height:170px;
}

/*div.scrollable#customer-scroll div.items div div,*/
div.scrollable div.items div div {
	height:auto;
	width:auto;
	padding:0;
}
	


div.scrollable div.items div div.column-left {
	width:140px;
	float:left;
	height:270px;
	padding:0;
}

div.scrollable div.items div div.column-right {
	width:325px;
	float:right;
	padding:0;
	line-height:13px;
	font-size:11px;
}

div.scrollable div.items div div.column-right ul {
	margin-top:-5px;
}

div.scrollable div.items div div.column-right li {
	margin-bottom:3px;
}


a.customer-logo {
	height:75px;
	width:140px;
	background-repeat:no-repeat;
	background-position:left top;
	display:block;
	overflow:hidden;
	text-indent:-9999px;
	margin-bottom:30px;
}

a.customer-logo#logo-akamai {
	background-image:url(/images/customer-logos/akamai.gif);
}

a.customer-logo#logo-allurent {
	background-image:url(/images/customer-logos/allurent.gif);
}	

a.customer-logo#logo-altruik {
	background-image:url(/images/customer-logos/altruik.gif);
}

a.customer-logo#logo-conversys {
	background-image:url(/images/customer-logos/conversys.gif);
}

a.customer-logo#logo-liveperson {
	background-image:url(/images/customer-logos/liveperson.gif);
}	

a.customer-logo#logo-powerreviews {
	background-image:url(/images/customer-logos/power-reviews.gif);
}

a.customer-logo#logo-edialog {
	background-image:url(/images/customer-logos/e-dialog.gif);
}

a.customer-logo#logo-compendium {
	background-image:url(/images/customer-logos/compendium.gif);
}

a.customer-logo#logo-ebillme {
	background-image:url(/images/customer-logos/ebillme.gif);
}

a.customer-logo#logo-hp {
	background-image:url(/images/customer-logos/hp.gif);
}

a.customer-logo#logo-microsoft {
	background-image:url(/images/customer-logos/microsoft.gif);
}

a.customer-logo#logo-verizon {
	background-image:url(/images/customer-logos/verizon.gif);
}

a.customer-logo#logo-leons {
	background-image:url(/images/customer-logos/leons.gif);
}

a.customer-logo#logo-roomstore {
	background-image:url(/images/customer-logos/room-store.gif);
}

a.customer-logo#logo-prosource {
	background-image:url(/images/customer-logos/prosource-store.gif);
}

a.customer-logo#logo-roomplace {
	background-image:url(/images/customer-logos/room-place.gif);
}

a.customer-logo#logo-roomplace {
	background-image:url(/images/customer-logos/room-place.gif);
}

a.customer-logo#logo-flooringamerica {
	background-image:url(/images/customer-logos/flooring-america.gif);
}

a.customer-logo#logo-lightingone {
	background-image:url(/images/customer-logos/lighting-one.gif);
}
a.customer-logo#logo-qualys {
	background-image:url(/images/customer-logos/qualys.gif);
}
a.customer-logo#logo-carpetone {
	background-image:url(/images/customer-logos/carpetone.gif);
}
a.customer-logo#logo-ars-interactive {
	background-image:url(/images/customer-logos/ars.png);
}
a.customer-logo#logo-avalara {
	background-image:url(/images/customer-logos/avalara.png);
}
a.customer-logo#logo-cardinal-commerce {
	background-image:url(/images/customer-logos/cardinal-commerce.gif);
}
a.customer-logo#logo-markley-group {
	background-image:url(/images/customer-logos/markley-group.gif);
}
a.customer-logo#logo-paypal {
	background-image:url(/images/customer-logos/paypal.gif);
}
a.customer-logo#logo-overdrive {
	background-image:url(/images/customer-logos/overdrive-interactive.gif);
}
div.customer-title {
	color:#007fcc;
	font-size:13px;
	font-weight:bold;
	margin-bottom:5px;
}

div.scrollable ul {
	margin-bottom:5px;
	margin-left:30px !important;	
	padding:0;
}

p.ind-served {
	margin:0 !important;
	padding:0;
}


/* active item */
div.scrollable div.items div.active {
}

a.up, a.down {
	text-align:center;
	cursor:pointer;
	display:block;
}

a.up {
	background:url(/images/scrollable2/up-on.gif) no-repeat;
	height:32px;
	overflow:hidden;
}



a.down {
	background:url(/images/scrollable2/down-on.gif) no-repeat;
	height:32px;
	overflow:hidden;
}

a.up:hover {
	background:url(/images/scrollable2/up-over.gif) no-repeat;
}

a.down:hover {
	background:url(/images/scrollable2/down-over.gif) no-repeat;
}


a.up.disabled {
	background:url(/images/scrollable2/up-disabled.gif) no-repeat;
	cursor:default;
	
}

a.down.disabled {
	background:url(/images/scrollable2/down-disabled.gif) no-repeat;
	cursor:default;
}
