/**************** ROYAL SLIDER ****************/
.visibleNearby {
  width:100%;
  height:190px !important;
  background:#141414;
  color:#fff;
  position:absolute;
  top:-45px;
}
.visibleNearby .rsGCaption {
  font-size:1em;
  line-height:1.25em;
  padding:0 0 10px 0;
  background:#000;
  width:100%;
  position:absolute;
  left:0;
  bottom:0;
  text-align:center;
  height:2.5em;
}

/* Scaling transforms */
.visibleNearby .rsSlide img {
  opacity: 0.45;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;

  -webkit-transform: scale(0.9);  
  -moz-transform: scale(0.9); 
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  border:solid 1px #ccc;  
}
.visibleNearby .rsActiveSlide img {
  opacity: 1;
  -webkit-transform: scale(1);  
  -moz-transform: scale(1); 
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  border:solid 1px #fff;
}

