/* container for slides */
.images {
	position:relative;
	height:425px;
	width:892px;
	float:left;
	margin:0 0 0 0;
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:0;
	-webkit-border-radius:0;
	-moz-box-shadow:0 0 0 #666;
	-webkit-box-shadow:0 0 0 #666;
}
/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;
	margin:0;
	padding:0 0 0 0;
	height:425px;
	font-size:12px;
}

/* prev and next buttons */
.forward {
	float:left;
	margin-top:185px;
	background:url(https://assets.advancedautodealers.com/images/commons/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
}
.backward {
	float:right;
	margin-top:185px;
	background:url(https://assets.advancedautodealers.com/images/commons/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
}

/* next */
.forward { background-position: 0 -30px; clear:right; }
.forward:hover { background-position:-30px -30px; }
.forward:active { background-position:-60px -30px; }
/* prev */
.backward:hover { background-position:-30px 0; }
.backward:active { background-position:-60px 0; }
/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;
}
