#slider {  
  margin: 0px 0px;
  padding: 0px;  
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.75);
  -moz-box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.75);
  box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.75);
  
}

@media screen and (min-width:640px) {  
  #slider {  
    float: right;
  }
}

#slider-inner {
  position: relative;
  /*background-color: #fff;*/
  margin: 0px;
  border: 0px solid #fff; 
  border-radius: 5px;
}

#slider-inner ul {
  padding: 0px; 
  list-style: none; 
  border-radius: 5px;
}

#slider-inner  img {
  display: block;
  border: 0px solid #dcdcdc;
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.prev {
  display: none;
  position: absolute; 
  background: url(images/controls.png) no-repeat 0px -32px;
  border: 0px solid #dcdcdc;
  width: 32px;
  height: 32px;
  top: 0; 
  left: 20px; 
  bottom: 0; 
  margin: auto;
  cursor: pointer;
}

.prev:hover {
  background: url(images/controls.png) no-repeat 0 0px;
}

.next { 
  display: none;
  position: absolute;
  background: url(images/controls.png) no-repeat -43px -32px;
  border: 0px solid #dcdcdc;
  width: 32px;
  height: 32px;
  top: 0; 
  right: 20px; 
  bottom: 0; 
  margin: auto;
  cursor: pointer;
}

.next:hover {
  background: url(images/controls.png) no-repeat -43px 0px;
}

.slider-title {
  position: absolute;
  background: #fff;
  padding: 5px 0px 5px 15px; 
  font-weight: bold; 
  font-size: 11px;
  text-align: left;
  bottom: 0px; 
  left: 0px; 
  right: 0px;
  border-radius: 0px 0px 5px 5px;
  text-shadow: 1px 1px 4px #fff; 
  opacity: .7;
  color: #000;
}
