﻿
.da-container{
	width: 100%;
	position: relative;
	z-index: 1;
}

.da-slider{	
	width: 100%;
	min-width: 1000px;
	height: 226px;
	position: relative;
	overflow: hidden;
	z-index: 1;	
}

.da-slide{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 1;
}

.da-slide-content{
	width:1000px;
	height:390px;
	position:absolute;
	top:0px;
	left: 50%;
	margin-left: -500px;
	text-align: center;
	z-index: 1;
}

.da-slider-fb .da-slide{
	left: 100%;
}

.da-dots{
	width: 100%;
	position: absolute;
	text-align: right;
	left: -10px;
	bottom: 20px;
	z-index: 2000;
	-moz-user-select: none;
	-webkit-user-select: none;	
}
.da-dots span{
	display: inline-block;
	position: relative;
	width: 19px;
	height: 19px;
	cursor: pointer;
	background-image: url("/DesktopModules/RTCSlider/Images/dot.png") !important;
}
.da-dots span.da-dots-current{
	background-image: url("/DesktopModules/RTCSlider/Images/dot_current.png") !important;
}

.da-arrows{
	-moz-user-select: none;
	-webkit-user-select: none;
}
.da-arrows span{
	position: absolute;
	top: 50%;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #e4b42d;
	cursor: pointer;
	z-index: 2000;
	opacity: 0;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
	-webkit-transition: opacity 0.4s ease-in-out 0.2s;
	-moz-transition: opacity 0.4s ease-in-out 0.2s;
	-o-transition: opacity 0.4s ease-in-out 0.2s;
	-ms-transition: opacity 0.4s ease-in-out 0.2s;
	transition: opacity 0.4s ease-in-out 0.2s;
}
.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;
}