/*
	AnythingSlider v1.7+ Default (base) theme
	By Chris Coyier: http://css-tricks.com
	with major improvements by Doug Neiner: http://pixelgraphics.us/
	based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

/*****************************
  SET DEFAULT DIMENSIONS HERE
 *****************************/
/* change the ID to match your slider */
#mainbanner {
	width: 960px;
	height: 300px !important;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}

	#mainbanner .panel img {
		display: block;
	}

#new-products {
	width: 320px;
	min-height: 300px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}

	#new-products .panel {
		min-height: 300px;
	}

/***********************
  COMMON SLIDER STYLING
 ***********************/
.anythingSlider {
	display: block;
	margin: 0 auto;
	overflow: visible !important; /* needed for Opera and Safari */
	position: relative;
	height: auto;
}
/* anythingSlider viewport window */
.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* anythingSlider base (original element) */
.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
/* all panels inside the slider */
.anythingBase .panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
.anythingBase .panel.vertical {
	float: none;
}

/* Navigation Arrows */
.anythingSlider .arrow {
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 3;
}
.anythingSlider .arrow a, .mainbanner .anythingControls {
	display: block;
	background: url("../img/bg-sprite.png");
}
	.mainbanner .anythingControls {
		height: 49px;
		width: 140px;
		background-position: -588px 0;
		position: absolute;
		right: 0;
		bottom: 0;
		font-size: 18px;
		color: #009ddb;
	}
.anythingSlider .forward { right: 0; }

	.mainbanner .arrow {
		bottom: 2px;
	}

	.mainbanner .arrow a {
		height: 33px;
		width: 33px;
	}

	.mainbanner .back {
		right: 95px;
	}

		.mainbanner .back a {
			background-position: -360px 0;
		}

		.mainbanner .back a:hover, .mainbanner .back a:focus {
			background-position: -360px -33px;
		}

	.mainbanner .forward {
		right: 5px;
	}

		.mainbanner .forward a {
			background-position: -402px 0;
		}

		.mainbanner .forward a:hover, .mainbanner .forward a:focus {
			background-position: -402px -33px;
		}

	.new-products .arrow {
		top: 70px;
	}

	.new-products .arrow a {
		height: 33px;
		width: 33px;
	}

	.new-products .back {
		left: 15px;
	}

		.new-products .back a {
			background-position: -445px 0;
		}

		.new-products .back a:hover, .new-products .back a:focus {
			background-position: -445px -33px;
		}

	.new-products .forward {
		right: 15px;
	}

		.new-products .forward a {
			background-position: -487px 0;
		}

		.new-products .forward a:hover, .new-products .forward a:focus {
			background-position: -487px -33px;
		}

.anythingSlider .arrow a span { display: block; visibility: hidden; 
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }
.anythingSlider .back.disabled { display: none; }
.anythingSlider .forward.disabled { display: none; }