#carousel {
  height: 270px;
  width: 900px;
  background-color: #fff;
  position: relative;
  margin-bottom: 0.5em;
  display:inline-block;
}

#carousel .shadow {
  -moz-box-shadow: 0px 6px 26px #888888;
  -webkit-box-shadow: 0px 6px 26px #888888;
  box-shadow: 0px 6px 26px #888888;
}

#carousel .slide {
  position: absolute;
  overflow: hidden;
}

#carousel .slide a:hover img {
  margin-top: 0px;
}

#carousel .slide img {
  width:  100%;
  height: 100%;
}

#carousel .slide p {
  position: relative;
  padding: 0;
  margin:  0;
  height:  100%
}

#carousel .slide span {
  background-color: #000;
  color: #fff;
  font-size: 0.8em;
  font-family: sans-serif;
  position: absolute;
  padding: 5px;
  width: 100%;
  bottom: 0;
  z-index: 99;
}

#carousel .navigate-left {width:16px;height:30px;background:url(arrow-left.png);background-position:0px 0px;
	cursor: pointer; position:absolute;bottom: 120px;left:-20px;z-index:5999;}
#carousel .navigate-left:hover{background-position:-16px 0px;}

#carousel .navigate-right {width:16px;height:30px;background:url(arrow-right.png);background-position:0px 0px;
  cursor: pointer; position: absolute; bottom: 120px; right: -20px;z-index:5999;}
#carousel .navigate-right:hover{background-position:-16px 0px;}

