/** jQuery Gallery Plugin **/
.gallery{
  position: relative;
  overflow: hidden;
  background-color: #666;
  padding: 0px;
  height: 450px;
}

.gallery img{
  width: 100%;
}

.galleryBar {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0 3px;
  display:none;
}

.galleryBar li {
  position: relative;
  margin: 3px 3px 0 0;
  padding: 0;
  overflow: hidden;
  float: left;
  list-style: none;
  background-color: #222;
}
.galleryScreen, .galleryInfo {
  position: absolute;
}
.galleryScreen {
 background-color: #222;
}
.galleryInfo, .galleryInfo a:link, .galleryInfo a:visited, .galleryInfo a:active{
 background-color: transparent;
 color: #fff;
 padding: 3px;
 font-size: 110%;
 text-decoration: none;
 font-weight: normal;
}
.galleryInfo a:hover{
	text-decoration: underline;
}
.galleryInfo h1{
 padding: 3px;
 color: orange;
 font-size: 110%;
 text-decoration: none;
}
.galleryTitle {
 color: #fff;
 font-size: 135%;
 /* font-weight: bold; */
}

