.container {
	/* defaults for resposive height container */
	position: relative;
	/*width: 100%;*/
	/*height: 0;*/
	
	/* 39% being the ratio we are maintaining 
	 * calculated by looking at the image 
	 * ratio: 400/1024 = ~0.39 */
	padding: 0 0 39% 0;
	width:500px;
	height: 155px !important;
}

.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 */
	width:500px;
	height: 500px;
}

.iosSlider .slider {
	/*width: 100%;
	height: 100%;*/
	height: 330px;
}

.iosSlider .slider .item {
	float: left;
	height: 330px;
	/*width: 100%;*/
}

.iosSlider .slider .item img {
	/*width: 100%;
	height: auto;*/
	height: 330px;
}

/* legendes captions */ 

.legende{
	margin-top:8px;
	font-size:9px;
}

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

.container .prevContainer .prev {
	position: absolute;
	/*bottom: -10%;*/
	left: 10px;;
	width: 100%;
	height: 70%;
	background: url(../images/left-arrow.png) no-repeat left;
}

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

.container .nextContainer .next {
	position: absolute;
	/*bottom: -10%;*/
	right: 10px;
	width: 100%;
	height: 70%;
	background: url(../images/right-arrow.png) no-repeat right;
}
.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;
}


