/*
	========================
	Featured Products Scroll
	========================
*/

/* This is the main wrapper. Put backgrounds here. */
#fpslider {
	height: 240px !important;
	margin: 0 auto;
	padding: 16px 32px 0;
	position: relative;
}

/* Generic wrapper class*/
#fpslider .wrap {
	overflow: hidden !important;
	height: 100%;
	width: 100%;
}

/* This is the 'window' that your .innerwrap is confined to */
#fpslider .outerwrap {
	background-color: #fff;
	position: relative !important;
}

/* This is a big long div that will contain all your featured products */
#fpslider .innerwrap {
	position: absolute !important;
}

/* The block fo each item w/ its details */
#fpslider .item {
	display: block !important;
	float: left !important;
	font: 400 12px Sans-serif;
	/* Add line-height to keep everything even */
	line-height: 15px;
	padding: 5px;
	text-align: center;
}

#fpslider .item a {text-decoration: none;}

/* The image container */
#fpslider .item .image {
	/* Change the 100px to whatever the height you need your image to be */
	line-height: 150px;
	height: 150px;
	margin-bottom: 10px;
	text-align: center;
}

/* The actual image - centered horizontally and vertically */
#fpslider .item .image img {
	display: inline-block;
	*display: inline;
	/* Use your best judgement on min-height and max-height */
	max-height: 100%;
	max-width: 90%;
	vertical-align: middle;
	zoom: 1;
}

/* The item title */
#fpslider .item .name a {
	color: #4e4039;
	/* Use set line-height from .item to set a break for long titles */
	height: 15px;
	/* The just keeps things from overflowing */
	overflow: hidden;
	-o-text-overflow: ellipsis-word;
	-ms-text-overflow: ellipsis-word;
	text-overflow: ellipsis-word;
}

/* The price */
#fpslider .item .price {
	color: #4e4039;
}

/* The priceBefore text */
#fpslider .item .pricetext {
	color: #4e4039;
}

/* The sale price */
#fpslider .item .sale {
	color: #3d5d8a;
}

/* the saleBefore text */
#fpslider .item .saletext {
	color: #4e4039;
}

/* The description - hidden by default in JS and here */
#fpslider .item .desc {
	display: none;}

/* Style buttons together or separately */
#fpslider .prev_btn,
#fpslider .next_btn {
	display: none; /* keep this! */
	height: 41px;
	right: 0px;
	margin-top: -60px;
	position: absolute;
	top: 50%;
	width: 40px;
	z-index: 999;
	background:url("../images/homepage/btn-right.jpg") 0 0 no-repeat;
}

#fpslider .prev_btn {
	right: auto;
	left: 0px;
	background:url("../images/homepage/btn-left.jpg") 0 0 no-repeat;
}