.container {
	/* defaults for resposive height container */
	position: relative;
	width: 100%;
	height: 405px;
	padding: 0px;
	overflow: hidden;
}

.iosSlider {
	width: 100%;
	
	/* this height ends up being your maximum height, 
	 * if you want it to scale forever, set it to 
	 * a very high number */
	height: 1500px;

}

.iosSlider .slider {
	width: 100%;
	height: 405px
}

.iosSlider .slider .item {
	float: left;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: auto 100%;
	height: 405px
}


.iosSlider .slider .item a.item_link {
	width: 100%;
	height: 405px;
	display: block;
}


/* controls */
.container .prevContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 48px;
	z-index: 10;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 19.5%;
	padding-left: 0;
}

.container .prevContainer .prev {
	position: absolute;
	bottom: 40px;
	left: 30px;
	width: 100%;
	height: 20%;
}

.container .nextContainer {
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	z-index: 10;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 19.5%;
	padding-left: 0;
}

.container .nextContainer .next {
	position: absolute;
	bottom: 40px;
	left: -60px;
	width: 100%;
	height: 20%;
}

.container .selectorsBlock {
	position: absolute;
	bottom: 10px;
	width: 100%;
	height: 5%;
}

.container .selectorsBlock .selectors {
	position: relative;
	top: 0;
	left: 0;
	margin: 0 auto;
	width: 12%;
	height: 100%;
}

.container .selectorsBlock .selectors .item {
	position: relative;
	top: 0;
	left: 0;
	float: left;
	width: 16%;
	height: 405px;
	margin: 0 0 0 5%;
	background: #aaa;
}

.container .selectorsBlock .selectors .selected {
	background: #333;
}

.container .selectorsBlock .selectors .first {
	margin-left: 0;
}