.jms-slideshow {
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: 490px;
}
.jms-wrapper {
	width: auto;
	height: 490px;
	background-color: #fff;
	-webkit-background-clip: padding;
	-moz-background-clip: padding;     
	background-clip: padding-box;
	outline: none;
	-webkit-transition: background-color 1s linear;
	-moz-transition: background-color 1s linear;
	-o-transition: background-color 1s linear;
	-ms-transition: background-color 1s linear;
	transition: background-color 1s linear;
}
.color-1 {
	background-color: #acf4ff;
}
.color-2 {
	background-color: #EBBBBC;
	background-color: rgba(235, 187, 188, 1);
}
.color-3 {
	background-color: #EED9C0;
	background-color: rgba(238, 217, 192, 1);
}
.color-4 {
	background-color: #DFEBB1;
	background-color: rgba(223, 235, 177, 1);
}
.color-5{
	background-color: #C1E6E5;
	background-color: rgba(193, 230, 229, 1);
}
.step {	
	width: 1920px;
    height: 490px;
	display: block;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	z-index: 2;
}
.step:not(.active) {
	z-index: 0;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
}
.jms-content{
	margin: 0px;
	position: relative;
	clear: both;
	top: 140px;
	left: 30px;
	z-index: 3;
	width: 100%;
	max-width: 500px;
}
a.jms-link{
	color: #3271b8;
	padding: 10px 13px 10px 19px;
	display: inline-block;
	font-size: 14px;
	border: 2px solid #3271b8;
	border-radius: 5px;
	opacity: 1;
	margin-top: 30px;
	clear: both;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.jms-link:hover {
	color: #fff;
	background-color: #3271b8;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.jms-link .icon {
	font-size: 17px;
	margin-left: 9px;
	top: 1px;
}
.step img{
	position: absolute;
	left: 50%;
	margin-left: -960px;
	top: 0;
}
.jms-dots{
	width: 100%;
	position: absolute;
	text-align: center;
	left: 0px;
	bottom: 12px;
	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: 9px;
	height: 9px;
	border-radius: 50%;
	margin: 11px;
	cursor: pointer;
	background: #2bb98d;
}

.jms-dots span:hover:before {
	display: block;
}

.jms-dots span.jms-dots-current:hover:before {
	display: none;
}

.jms-dots span:before {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	top: -3px;
	left: -3px;
	border-radius: 50%;
	background: #fff;
	display: none;
	z-index: -1;
}

.jms-dots span.jms-dots-current:after{
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	top: -4px;
	left: -4px;
	border-radius: 50%;
	background: #2bb98d;
}

/* Not supported style */
.jms-wrapper.not-supported{
	background-color: #E3D8FF;
	background-color: rgba(227, 216, 268, 1);
}
.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;
}