/** jQuery Gallery Plugin **/
/* http://www.mudaimemo.com/p/gallery/ */

.gallery{
  position: relative;
  overflow: hidden;
  background-color: #999;
  padding: 6px;
  height: 358px;
  width: 358px;
}
.galleryBar {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0 7px;
  display:none;
}

.galleryBar li {
  position: relative;
  margin: 0 7px 0 0;
  padding: 0;
  overflow: hidden;
  float: left;
  list-style: none;
}
.galleryScreen, .galleryInfo {
  position: absolute;
}
.galleryScreen {
 background-color: #222;
}
.galleryInfo {
 background-color: transparent;
 color: #fff;
 padding: 12px;
}
.galleryTitle {
 font-size: 135%;
 font-weight: bold;
}
/* IE fixes */
.galleryBar img {border:none;}
/* if you decide to re enstate the gallery title then you should remove this forced height restriction */
.galleryDesc {height:38px !important;}