
#image_selector {
  margin-top: 40px;
  height: 160px; /* this is just a default */
  position: relative;
  /*overflow: hidden;*/
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#image_selector > a {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 23px;
  background-repeat: no-repeat;
  background-color: #21913f;
  background-position: center center;
  cursor: pointer;
}

#image_selector > .left-arrow   {
  background-image: url(left2.png ); 
  left : 0;
  margin-top: 8;
}

#image_selector > .right-arrow { 
  background-image: url(right2.png); 
  right: 0; 
}

#image_selector > .container {
  /*background-color: yellow;*/
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  right: 40px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#image_selector > .container > .band {
  position: absolute;
  z-index: 0;
  width: 10000px;
  /*background-color: pink;*/
}

#image_selector > .container > .band > .sequence {
  /*background-color: red;*/
  float: left;
}

#image_selector > .container > .band > .sequence > img {
  margin: 0;
  padding: 0;  
  cursor: pointer;
}

#image_selector > .container > .band > .sequence > img:not(:first-child) {
  /* margin-left: 16px; DONE THROUGH CODE NOW */
}

#picture_container {
  position: relative;
}

#picture_container > img {
  position: relative;
  z-index: 0;
}

div.east-west {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 40px;
  bottom: 0;
  /*pointer-events: none;*/
  background-color: black;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
  filter: alpha(opacity=0); /* IE 5-7 */
  opacity: 0;
}

div.east-west > div {
  position: absolute;
  top: 0;
  bottom: 0;
  /*height: 100%;*/
  width: 33%;
  opacity: 0.2;
  cursor: pointer;
}

div.east-west > .west {
  left: 0;
  /*
  float: left;
  */
  /*background-color: #AA0;*/
}

div.east-west > .east {
  right: 0;
  /*
  float: right;
  */
  /*background-color: red;*/
}