/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {
	/* required settings */
    position:relative;
	overflow:hidden;
	width: 670px;
	height:180px;
}

/*
   root element for scrollable items. Must be absolutely positioned
   and it should have a extremely large width to accomodate scrollable
   items.  it's enough that you set the width and height for the root
   element and not for this element.
*/
.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}
.items .scrollD {
	float:left;
	width:670px;
}

/* single scrollable item */

.scrollable .scrollItem {
	float:left;
	background-color:#f4f4f4;
	padding:10px;
	border:1px solid #e5e5e5;
	width:183px;
	height:140px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	box-shadow:#ccc 0px 0px 3px;
	margin-top: 8px;
	margin-right: 9px;
	margin-bottom: 8px;
	margin-left: 9px;
	color: #878787;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
}


/* active item */
.scrollable .active {
    border:2px solid #000;
    position:relative;
    cursor:default;
}
.scrollItemPic {
	width: 180px;
	margin-top: 5px;
}
.scrollItemData {
	width: 180px;
	margin-top: 10px;
}
.scrollItemName {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #3a8bb4;
	text-decoration: none;
	text-align: center;
}
.scrollItemName a {
	font-size: 12px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
}
.scrollItemDescription {
	text-align: left;
	margin-bottom: 15px;
	display:none;
}
.scrollItemPrice {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #3A8BB4;
	margin-bottom: 12px;
	display:none;
}
.scrollItemMore {
	text-align: right;
	display:none;
}
.scrollItemMore a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #2581b0;
	text-decoration: none;
	text-transform: capitalize;
}
