/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 892px;
	height:220px;
	margin-top:10px;
	float:left;
	/* custom decorations */
		/*border:1px solid #ccc;
		background-image: url(../img/h300.gif);
		background-repeat: repeat-x;*/
}

/*
	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;
}

/* single scrollable item 
.scrollable img {
	float:left;
	margin:10px 5px 10px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

.scrollable img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
.scrollable a {
	float:left;
	background-color:#fff;
	padding:2px;
	border-left:1px solid #ccc; /*border-right:1px solid #ccc;*/margin:10px 0px 10px 0px; padding:0px 8px 0px 8px;
	cursor:pointer;
	width:131px;
	height:210px;
	/*-moz-border-radius:4px;*/
	-webkit-border-radius:4px;
	text-align: center;
	text-decoration: none;
	position:relative;
	}
	
	.scrollable a:hover
	{
	    text-decoration:none;
	}
.scrollable a .item-title
{
    padding:4px 0px 4px 0px; 
    margin:0px 0px 0px 0px; 
    font-size:13px; color:#0033CC; 
    text-decoration:underline;
    display:block;
    }	
.scrollable a .item-author {
	cursor:pointer;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	padding-bottom: 2px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	display:block;
}

.scrollable a .list-price {
	cursor:pointer;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #666;
	padding-bottom: 2px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: bold;
	text-decoration: line-through;
	padding-top: 0px;
	display:block;
}
.scrollable a .our-price{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #C00;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	display:block;
}
.scrollable a .deal-price
{
    font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #333;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	display:block;
}
/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin-top: 83px;
	margin-right: 10px;
	margin-bottom: 40px;
	margin-left: 10px;
	background-image: url(../../images/common/hori_large.gif);
	background-repeat: no-repeat;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../../images/common/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; } 


/* disabled navigational button 
a.disabled {
	visibility:hidden !important;		
} 	*/


