.simpleSlider * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.simpleSlider {
	position: relative;
	overflow: hidden;

	background-color: #E3E5E7;

	background-image: -webkit-linear-gradient(#E3E5E7, #FFFFFF 60%, #E7E8E9);
	background-image: -moz-linear-gradient(#E3E5E7, #FFFFFF 60%, #E7E8E9);
	background-image: linear-gradient(#E3E5E7, #FFFFFF 60%, #E7E8E9);

	-ms-touch-action: none;
}
.simpleSlider ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.simpleSlider li {
	width: 100%;
	display: none;
}
.simpleSlider li:first-of-type {
	display: block;
}
.simpleSlider li a {
	display: block;
	width: 100%;
	text-decoration: none;
}
.simpleSlider li img {
	display: block;
	max-height: 225px;
	width: auto;
	margin: auto;
}
.simpleSlider .caption {
	font-size: 12px;
	padding: 5px;
}
.simpleSlider .title {
	display: block;
	padding: 5px 0;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1em;
	font-family: "stratum-1-web","Lucida Sans Unicode","Lucida Grande",sans-serif;
	font-weight: 700;
	color: #4D7123;
	text-decoration: none;
	border-bottom: 6px solid #4D7123;
}
.simpleSlider .description {
	display: block;
	line-height: 1.25em;
}

.simpleSlider .tabs {
	position: absolute;
	right: 0;
	padding: 10px;
}
.simpleSlider .tabs li {
	cursor: pointer;
	display: block;
	float: left;
	height: 10px;
	width: 10px;
	margin: 5px;
	background-color: #779A0B;
}
.simpleSlider .tabs .active {
	background-color: #A1DED3;
}

.simpleSlider .tabs li:hover {
	background-color: #4D7123;
}
.simpleSlider .slide {
	position: absolute;
	display: none;
	opacity: 0;
	height: 100%;
}
.no-opacity .simpleSlider .slide {
	display: none; /* ie8 - fix */
}
.simpleSlider .active{
	opacity: 1;
	display: block;
}
.simpleSlider.animating .slide {
	display: block;
	
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.no-opacity .simpleSlider .active {
	display: block; /* id8 - fix */
}
.simpleSlider .nav {
	width: 100%;
	height: 100%;
}
.simpleSlider .nav .prev, .simpleSlider .nav .next {
	font-family: arial;
	font-size: 48px;
	font-weight: bolder;
	display: block;
	text-align: center;
	position: absolute;
	width: 100px;
	top: 50%;
	cursor: pointer;
	opacity: 0;

	-webkit-transition: all 500ms;
	-moz-transition: all 500ms;
	-ms-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
}
.simpleSlider .nav .prev span, .simpleSlider .nav .next span {
	position: absolute;
	display: block;
	top: 50%;
	height: 25px;
	padding: 5px 20px;

	text-shadow: 1px 1px rgba(255,255,255,0.3);
}
.simpleSlider .nav .prev {
	left: -100px;
}
.simpleSlider .nav .next {
	right: -100px;
}
.simpleSlider .nav .next span {
	right: 0;
}
.simpleSlider:hover .nav .prev, .touch .simpleSlider .nav .prev, .simpleSlider .touch .prev {
	left: 0;
	opacity: 0.5;
}
.simpleSlider:hover .nav .next, .touch .simpleSlider .nav .next, .simpleSlider .touch .next {
	right: 0;
	opacity: 0.5;
}
.simpleSlider .nav .prev:hover, .simpleSlider .nav .next:hover {
	opacity: 1;
}

@media only screen and (min-width: 600px) {
	.simpleSlider .caption {
		height: 85px;
	}
}

@media only screen and (min-width: 760px) {
	.simpleSlider {
		height: 220px;
	}
	.simpleSlider li a {
		padding-left: 70%;
		height: 100%;
		width: auto;
	}
	.simpleSlider li img {
		width: 70%;
		height: auto;
		max-height: none;
		left: 0;
		position: absolute;
	}
	.simpleSlider .caption {
		height: 100%;
		padding: 10px;
	}

	.simpleSlider .title {
		font-size: 18px;
	}
	.simpleSlider .tabs {
		bottom: 0;
	}

}

@media only screen and (min-width: 900px) {
	.simpleSlider {
		height: 250px;
	}
	.simpleSlider li a {
		padding-left: 435px;
	}
	.simpleSlider li img {
		width: auto;
		height: 100%;
		max-width: 435px;
	}
	.simpleSlider .title {
		font-size: 20px;
		margin: 0 0 10px;
		padding: 15px 0 10px;
	}
}
@media only screen and (min-width: 1100px) {
	.simpleSlider {
		height: 310px;
		max-width: 810px;
	}
	.simpleSlider li a {
		padding-left: 540px;
	}
	.simpleSlider li img{
		max-width: 540px;
	}
	.simpleSlider .caption {
		padding: 20px;
	}
	.simpleSlider .title {
		font-size: 26px;
		margin: 0 0 20px;
		padding: 30px 0 20px;
	}

}
