.dbaySlider {
	overflow:hidden;
	position:relative;
	height:100%;
	background-color:#fff;
}
.dbaySliderWaitbox {
	position:absolute;
	z-index:999;
	background-image:url('../images/waitbox.gif');
	background-position:center center;
	background-repeat:no-repeat;
	background-color:rgba(255, 255, 255, 0.75);
}
.dbaySliderMoveable {
	height:100%;
	position:relative;
	left:0;
	top:0;
}
.dbaySliderElement {
	float:left;
	height:100%;
	position:relative;
}
.dbaySliderImage {
	position:relative;
	overflow:hidden;
}
.dbaySliderImage img {
    position:absolute;
    top:0;
    left:-9999px;
    right:-9999px;
    margin:auto;
    z-index:1;
	width: auto;
	max-width:100%;
	max-height: 97%;
}
.dbaySliderText {
	margin:0;
	padding:10px 20px;
	position:absolute;
	bottom:0;
	background-color:#222;
	color:#fff;
	width:100%;
	height:auto;
	box-sizing:border-box;
    z-index:2;
}
.dbaySliderText h1,
.dbaySliderText h2 {
	margin:0 0 10px 0;
	padding:0;
}
.dbaySliderText h3,
.dbaySliderText h4,
.dbaySliderText h5,
.dbaySliderText h6,
.dbaySliderText p {
	margin:0 0 6px 0;
	padding:0;
}
a.dbaySliderBrowsePrev,
a.dbaySliderBrowseNext {
	width:15%;
	min-width:60px;
	height:100%;
	position:absolute;
	top:0;
	z-index:3;
	background-color:transparent;
	background-position:center center;
	background-repeat:no-repeat;
	display:block;
	filter:alpha(opacity = 0);
	-ms-filter:"alpha(opacity = 0)";
	-moz-opacity:0;
	-khtml-opacity:0;
	opacity:0;
}
a.dbaySliderBrowsePrev {
	background-image:url('../images/prev.png');
	left:0;
}
a.dbaySliderBrowseNext {
	background-image:url('../images/next.png');
	right:0;
}
.dbaySlider:hover a.dbaySliderBrowsePrev,
.dbaySlider:hover a.dbaySliderBrowseNext {
	filter:alpha(opacity = 60);
	-ms-filter:"alpha(opacity = 60)";
	-webkit-opacity:0.60;
	-o-opacity:0.60;
	-moz-opacity:0.60;
	-khtml-opacity:0.60;
	opacity:0.60;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}