.visibleNearby {
  width: 100%;
  background: #FFFFFF;
  color: #000000;
  padding-top: 25px;
}
.visibleNearby .rsGCaption {
  font-size: 16px;
  line-height: 18px;
  padding: 12px 0 16px;
  background: #FFFFFF;
  width: 100%;
  position: static;
  float: left;
  left: auto;
  bottom: auto;
  text-align: center;
}
.visibleNearby .rsGCaption span {
  display: block;
  clear: both;
  color: #bbb;
  font-size: 14px;
  line-height: 22px;
}

/* Scaling transforms */
.visibleNearby .rsSlide {
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;

  -webkit-transform: scale(0.8);  
  -moz-transform: scale(0.8); 
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.visibleNearby .rsActiveSlide {
  opacity: 1;
  -webkit-transform: scale(1);  
  -moz-transform: scale(1); 
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* Non-linear resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 900px) { 
  #gallery-1 {
    padding: 12px 0 12px;
  }
  #gallery-1 .rsOverflow,
  .royalSlider#gallery-1 {
    height: 400px !important;
  }
}
@media screen and (min-width: 0px) and (max-width: 500px) { 
  #gallery-1 .rsOverflow,
  .royalSlider#gallery-1 {
    height: 300px !important;
  }
}  

.rsImg {
  display: none;
}
.visibleNearby .rsGCaption {
  padding: 3px 0px 16px;
}    

.rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: -100px;
  width: 100%;
  height: auto;
  margin: 0 auto; 

  background: #000;
  background: rgba(0,0,0,0);

  text-align: center;
  line-height: 8px;
  overflow: hidden;
}
.rsBullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  *display:inline; 
  *zoom:1;
  padding: 6px 5px 6px;
}
.rsBullet span {
  cursor: pointer;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCC;
}
.rsBullet.rsNavSelected span {
  background-color: #333;
}   