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

.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: 450px;
    background: #000;
}

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

.iosSlider .slider .item {
	float: left;
	width: 960px;
	margin: 0 17px;
}

.iosSlider .slider .item img {
	width: 960px;
	height: auto;
}

/* controls */
.container .prevContainer {
	position: absolute;
	top: 190px;
	left: 50%;
	width: 34px;
	padding: 0 0 70px 0;
	margin-left: -515px;
	z-index: 10;
}

.container .prevContainer .prev {
	position: absolute;
	left: 0;
	width: 34px;
	height: 70px;
}

.container .nextContainer {
	position: absolute;
	top: 190px;
	right: 50%;
	width: 100px;
	padding: 0 0 70px 0;
	margin-right: -513px;
	z-index: 10;
}

.container .nextContainer .next {
	position: absolute;
	right: 0;
	width: 34px;
	height: 70px;
}

.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: 100%;
	margin: 0 0 0 5%;
	background: #aaa;
}

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

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












@media screen and (max-width: 768px) {

.container {
	/* defaults for resposive height container */
	position: relative;
	width: 100%;
	height: 0;
	
	/* 76.6% being the ratio we are maintaining 
	 * calculated by looking at the image 
	 * ratio: 490/640 = ~0.766 */
	padding: 0 0 76.6% 0;
}

.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: 100%;
}

.iosSlider .slider .item {
	float: left;
	width: 100%;
	margin: 0 0;
}

.iosSlider .slider .item img {
	width: 100%;
	height: auto;
}

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

.container .prevContainer .prev {
	position: absolute;
	bottom: -140%;
	left: 0;
	width: 34px;
	height: 70px;
}

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

.container .nextContainer .next {
	position: absolute;
	bottom: -140%;
	right: 0;
	width: 34px;
	height: 70px;
}

.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: 100%;
	margin: 0 0 0 5%;
	background: #aaa;
}

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

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

}
