.jms-slideshow {
	position: absolute;
	width: 100%;
	margin: 0 auto;
	display:block;
	font-family: 'Open Sans Condensed','Arial Narrow', serif;
	font-weight:400;
}

.jms-wrapper {
	position:absolute;
	width: 100%;
	height: 400px;
	margin-left:0px;
	border-bottom:1px solid #c5c5c5;
}

.step {
	display: block;
	height: 350px;
	margin: 0 auto;
	position: relative;
	width: 980px;
}

.step:not(.active) {
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
}

.jms-content{
	position: relative;
}

.step h3{
	color: #fff;
	font-size: 43px;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	margin: 0;
	padding: 20px 0 10px 0;
	color: #999;
	text-shadow: 1px 1px 1px white;
}
.step p {
	color: #999;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	font-size: 34px;
	font-weight: normal;
	position: relative;
	margin: 0;
	text-shadow: 1px 1px 1px white;
}

a.jms-link{
	font-family: 'Open Sans Condensed','Arial Narrow', serif;
	color: #fff;
	text-transform: uppercase;
	background: #ec4f2c; /* Old browsers */
	padding: 8px 15px;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	opacity: 1;
	margin-top: 40px;
	clear: both;
	-webkit-transition: all 0.4s ease-in-out 1s;
	-moz-transition: all 0.4s ease-in-out 1s;
	-ms-transition: all 0.4s ease-in-out 1s;
	-o-transition: all 0.4s ease-in-out 1s;
	transition: all 0.4s ease-in-out 1s;
}

.step:not(.active) a.jms-link{
	opacity: 0;
	margin-top: 80px;
}

.step img{
	position: absolute;
	right:0px;
	bottom:-45px;
}

.jms-dots{
	width: 100%;
	position: absolute;
	text-align: center;
	left: 0px;
	bottom: 10px;
	z-index: 2000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.jms-dots span{
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #282828;
	margin: 3px;
	cursor: pointer;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.3);
}

.jms-dots span.jms-dots-current:after{
	content: '';
	width: 18px;
	height: 18px;
	position: absolute;
	top: -1px;
	left: -1px;
	border-radius: 50%;
	background: #ec502a; /* Old browsers */
}

.jms-arrows{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	opacity:0;
	-webkit-transition: all 0.4s ease-in-out 1s;
	-moz-transition: all 0.4s ease-in-out 1s;
	-ms-transition: all 0.4s ease-in-out 1s;
	-o-transition: all 0.4s ease-in-out 1s;
	transition: all 0.4s ease-in-out 1s;
}

.jms-arrows span{
	position: absolute;
	top: 50%;
	/*margin-top: -40px;*/
	height: 80px;
	width: 30px;
	cursor: pointer;
	z-index: 2000;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.jms-arrows span.jms-arrows-prev{
	background: #fff url(images/arrow_left.png) no-repeat 50% 50%;
	left: 0px;
}

.jms-arrows span.jms-arrows-next{
	background: #fff url(images/arrow_right.png) no-repeat 50% 50%;
	right: 0px;
}

/* Not supported style */
.jms-wrapper.not-supported:after{
	/*content: 'The slideshow functionality is not supported on your device.';*/
	padding: 0px 0px 30px 0px;
	text-align: center;
	display: block;
}

.jms-wrapper.not-supported .step{
	display: none;
	position: relative;
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; /*IE8*/
	margin: 20px auto;
}

.jms-wrapper.not-supported .step:first-of-type{
	display: block;
}

.jms-wrapper.not-supported .step:not(.active) a.jms-link{
	opacity: 1;
	margin-top: 40px;
}