/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:24px;
	height:47px;
	float:left;
	cursor:pointer;
	background-repeat: no-repeat;
}

a.prev, a.prevPage {
	margin:80px 5px 0 -8px;
	background-image: url(../Images/Layout/Product-Scroll/Previous-Button.gif);
}

a.next, a.nextPage {
	background-image: url(../Images/Layout/Product-Scroll/Next-Button.gif);
	margin-top: 80px;
	margin-right: -18px;
	margin-bottom: 0px;
	margin-left: 5px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -47px;
}

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

/* next button uses another background image */
a.next, a.nextPage {
	clear:right;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	cursor:pointer;
	background-image: url(../Images/Layout/Product-Scroll/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	



/*********** Products ***********/

/************* My CSS ***********/


/* root element for the whole scrollable setup */
div.scrollable {
	position:relative;
	overflow:hidden;
	width: 716px;
	height:450px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#products {
	position:absolute;
	width:20000em;
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
#products div {
	float:left;
	width:230px;
	height:450px;
	color:#333333;
	cursor:pointer;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(../Images/Layout/Product-Scroll/Products-Background.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	margin: 0 13px 0 0;
}

/* style when mouse is over the item */
#products div.hover {
	background-image: url(../Images/Layout/Product-Scroll/Products-Background-hover.gif);
	background-position: center bottom;
}


/* style when element is active (clicked) */
#products div.active {
	background-color:#FFFFFF;
	cursor:default;
}








#products h2, #products h3, #products p, #products span {
	margin:15px;
	font-family:Arial, Helvetica, sans-serif;
	color:#fff;
}

#products h2 {
	color: #FFFFFF;
	background-color: #FF6600;
	margin: 0px;
	padding: 8px 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFCC;
}

#products h3 {
	color: #FF6600;
	padding: 12px 4px 8px 15px;
	margin: 0px;
}

#products p {
	font-size: 12px;
}

#products h3 em {
	font-style:normal;
	color:yellow;
}

#products div div.InfoBoxDescription, #products div div.InfoBoxDetails {
	font-size: 12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 0px;
	background-image: none;
	color: #462B00;
	height: auto;
}

.InfoBoxDescription, #products div div.InfoBoxDescription {
	width: 90px;
	margin: 0 0 0 15px;
	padding: 0px;
	clear: both;
	float: left;
}
.InfoBoxDetails, #products div div.InfoBoxDetails {
	float: left;
	width: 120px;
	clear: none;
}
.InfoBoxDescription, .InfoBoxDetails {
	line-height: 12px;
	padding-bottom: 8px;
}
.ProductInfoBox {
	width: 230px;
	padding: 10px;
	font-size: 11px;
	color: #333333;
	margin: 0px;
	float: left;
	height: 400px;
	background-color: #FFFFFF;
}
.ProductInfoBox h2 {
	color: #666666;
	margin: 0px;
	padding: 0px;
	background-position: center;
	text-align: center;
}
.ProductInfoBox h3 {
	color: #FFFFFF;
	background-color: #CCCCCC;
	clear: both;
	font-size: 12px;
	width: 192px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 0;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
}

