.da-slider {
	width: 100%;
	padding-bottom:50%;
	position: relative;
	margin: 0;
	overflow: hidden;
	transition: background-position 1s ease-out 0.3s;
}
.da-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: left;
}
.da-slide-current{
	z-index: 1000;
}
.da-slide h2,
.da-slide p,
.da-slide .da-link,
.da-slide .da-img{
	position: absolute;
	opacity: 0;
	left: 0;
}

.da-slide h2 {
	color: #fff;
	font-size: 20px;
	width: auto;
	max-width: 95%;
	top: 0;
	overflow: hidden;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	background: rgba(0,0,0,0.65);
	font-weight: bold;
	padding: 1% 2%;
}
.da-slide p {
	bottom: -16px;
	color: #fff;
	font-size: 15px;
	line-height: 140%;
	overflow: hidden;
	background: rgba(0,0,0,0.65);
	max-width: 78%;
	font-weight: normal;
	padding: 1% 1.5%;
}
.da-slide .da-img {
	width: 100%;
	top: 0;
}
.da-slide .da-img img {
	width: 100%;
}
.da-slide .da-link{
	width: 100%;
	height: 100%;
}
.da-dots {
	width: 100%;
	position: absolute;
	text-align: left;
	left: 0;
	bottom: 0;
	z-index: 2000;
	opacity: 1;
	padding: 3px;
	/*background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.7));*/
}
.da-dots span{
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #ff6600;
	margin: 3px 3px 1px 1px;
	cursor: pointer;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
}
.da-dots span.da-dots-current:after{
	content: '';
	width: 12px;
	height: 12px;
	position: absolute;
	top: 2px;
	left: 2px;
	border-radius: 50%;
	background: rgb(255,255,255);
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
}

.da-slider:hover .da-arrows span{
	opacity: 1;
}
.da-arrows span:after{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;	top: 5px;
	left: 5px;
	background: transparent url(../images/arrows.png) no-repeat top left;
	border-radius: 50%;

	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.da-arrows span:hover:after{
	box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.da-arrows span:active:after{
	box-shadow: 1px 1px 1px rgba(255,255,255,0.1);
}
.da-arrows span.da-arrows-next:after{
	background-position: top right;
}
.da-arrows span.da-arrows-prev{
	left: 15px;
}
.da-arrows span.da-arrows-next{
	right: 15px;
}

.da-slide-current h2 {
	left: 0;
	opacity: 1;
}
.da-slide-current p {
	left: 22%;
	opacity: 1;
}
.da-slide-current .da-img{
	left: 0;
	opacity: 1;
}
/* Animation classes and animations */

/* Slide in from the right*/
.da-slide-fromright h2 {
	animation: fromRightAnim1 0.6s ease-in-out 0.6s both;
}
.da-slide-fromright p {
	animation: fromRightAnim2 0.3s ease-in-out 1.2s both;
}
.da-slide-fromright .da-img {
	animation: fromRightAnim4 1.0s ease-in-out 0.5s both;
}

@keyframes fromRightAnim1{
	0%{ left: 30%; opacity: 0; }
	100%{ left: 0; opacity: 1; }
}
@keyframes fromRightAnim2{
	0%{ left: 22%; opacity: 0; }
	100%{ left: 22%; opacity: 1; }
}
@keyframes fromRightAnim4{
	0%{ left: 0; opacity: 0; }
	100%{ left: 0; opacity: 1; }
}
/* Slide in from the left*/
.da-slide-fromleft h2{
	animation: fromLeftAnim1 0.6s ease-in-out 0.6s both;
}
.da-slide-fromleft p{
	animation: fromLeftAnim2 0.3s ease-in-out 1.2s both;
}
.da-slide-fromleft .da-img{
	animation: fromLeftAnim4 1.0s ease-in-out 0.5s both;
}

@keyframes fromLeftAnim1{
	0%{ left: -30%; opacity: 0; }
	100%{ left: 0; opacity: 1; }
}
@keyframes fromLeftAnim2{
	0%{ left: 22%; opacity: 0; }
	100%{ left: 22%; opacity: 1; }
}
@keyframes fromLeftAnim4{
	0%{ left: 0; opacity: 0; }
	100%{ left: 0; opacity: 1; }
}
/* Slide out to the right */
.da-slide-toright h2{
	animation: toRightAnim1 0.6s ease-in-out both;
}
.da-slide-toright p{
	animation: toRightAnim2 0.6s ease-in-out both;
}
.da-slide-toright .da-img{
	animation: toRightAnim4 1.0s ease-in-out 0.5s both;
}
@keyframes toRightAnim1{
	0%{ left: 0;  opacity: 1; }
	100%{ left: 40%; opacity: 0; }
}
@keyframes toRightAnim2{
	0%{ left: 22%;  opacity: 1; }
	100%{ left: 22%; opacity: 0; }
}
@keyframes toRightAnim4{
	0%{ left: 0;  opacity: 1; }
	100%{ left: 0; opacity: 0; }
}
/* Slide out to the left*/
.da-slide-toleft h2{
	animation: toLeftAnim1 0.8s ease-in-out both;
}
.da-slide-toleft p{
	animation: toLeftAnim2 0.6s ease-in-out both;
}
.da-slide-toleft .da-img{
	animation: toLeftAnim4 1.0s ease-in-out 0.5s both;
}

@keyframes toLeftAnim1{
	0%{ left: 0;  opacity: 1; }
	/*20%{ left: 10%;  opacity: 1; }*/
	100%{ left: -80%; opacity: 0; }
}
@keyframes toLeftAnim2{
	0%{ left: 22%;  opacity: 1; }
	/*10%{ left: 25%;  opacity: 1; }*/
	100%{ left: 22%; opacity: 0; }
}
@keyframes toLeftAnim4{
	0%{ left: 0;  opacity: 1; }
	100%{ left: 0; opacity: 0; }
}

@media all and (max-width: 500px) {
	.da-slide h2 {
		font-size: 17px;
	}
	.da-slide p {
		font-size: 13px;
		bottom: 18%;
	}
}