
/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {
	/* required settings */
    position:relative;
	overflow:hidden;
	width: 90%;
	height: 152px;
	margin-right: 5%;
	margin-left: 5%;
	margin-top:8px;
	direction:ltr!important;
}

/*
   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;
	height: 150px;
}

/* single scrollable item */

.scrollable .scrollItem {
	float:right;
	width: 132px;
	height: 124px;
	margin: 4px 9px;
	text-align: center;
	border: 8px solid #EDEDED;
}


/* active item */
.scrollable .active {
    position:relative;
    cursor:default;
}
.scrollItemPic ,.scrollItemPic img{
	width: 132px;
	height: 124px;
	font-family: 'Droid Arabic Kufi';   
	font-size: 15px;   font-weight: bold;
	color: #4566a0;
}
.scrollItemPic img{
    margin-bottom: 10px;
  
}
.scrollItemData {
	width: 167px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	behavior: url(pie/PIE.htc);
	background-image: url(../images/blue-bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 24px;
	padding-top: 3px;
}
.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: #FFF;
	text-decoration: none;
	font-family: Tahoma, Geneva, sans-serif;
	text-shadow:#006 1px 0px 0px;
	/* transition */
	-o-transition:.2s;
	-ms-transition:.2s;
	-moz-transition:.2s;
	-webkit-transition:.2s;
	/* ...and now for the proper property */
	transition:.2s;
}
.scrollItemName a:hover{color:#000;text-shadow: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;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
    float:right;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
	background-image: url(hori_large.png);
	background-repeat: no-repeat;
	margin-top: 0px;
}

/* right */
a.right {
	background-position: center center;
	/* margin-left: 17px; */
	/* float: right; */
	background-image: url(../images/small-arrow-right.png);
	width: 39px;
	height: 39px;
	right: 250px;
	position: absolute;
	top: 100px;
}
a.right:hover {background-image: url(../images/small-arrow-right2.png);
}


/* left */
a.left {
	background-image: url(../images/small-arrow-left.png);
	background-repeat: no-repeat;
	background-position: center center;
	width: 41px;
	height: 39px;
	position: absolute;
	top: 110px;
	left: 0px;
}
a.left:hover  {background-image: url(../images/small-arrow-left2.png);
}

/* up and down */
a.up, a.down  {
    background:url(/media/img/scrollable/arrow/vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}

/* up */
a.up:hover { background-position:-30px 0; }
a.up:active { background-position:-60px 0; }

/* down */
a.down { background-position: 0 -30px; }
a.down:hover { background-position:-30px -30px; }
a.down:active { background-position:-60px -30px; }
