.desaturate {
    filter: grayscale(100%); /* Standard CSS */
    -webkit-filter: grayscale(100%); /* CSS for Webkit Browsers */
    filter: url(/images/grayscale.svg#desaturate); /* Firefox 4-34 */
    filter: gray;  /* Internet Explorer IE6-9 */
    -webkit-filter: grayscale(1); /* Old WebKit Browsers */
	transition: all 0.7s ease;
}
.desaturate:hover {
    filter: grayscale(0%);
    filter: none;
    -webkit-filter: grayscale(0); /* Old WebKit */
}
.siteFooter .vcard .tel {
    font-size: 1.5rem;
}
#map {
	width: 100%;
	height: 300px;
}
.gallery2 {
  width: 90%;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.gallery2 .galleryContainer {
  width: 200px;
  height: 200px;
  /* float: left; */
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;  
  margin-bottom: 15px;
  position: relative;
}
.gallery2 .galleryContainer .photoContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.gallery2 .galleryContainer .photoContainer .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);  
}
.gallery2 .galleryContainer .title {
  position: absolute;
  text-align: center;
  bottom: 0px;
  height: 120px;
  right: 0px;
  left: 0px;
  display: block;
  background-color:rgba(25,55,101,0.65);
  color: #FFFFFF;
  font-size: 1.2em;
  padding: 5px;
  margin: 0;
  padding-top: 5px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.gallery2 .galleryContainer .title .description {
  font-size: 0.8em;
  line-height: 1.2em;
  text-align: center;	
}
.gallery2 .galleryContainer:hover .title {
  background-color:rgba(25,55,101,0.65);
  height: auto;
  margin: 0;  
  top: 0px;
  padding-top: 80px;  
}
.gallery2 .galleryContainer:hover .title .zoom {
  font-size: 1.5em;
}
.priceList>.content .box.b .price .info {
  display: block;
  font-size: 0.7em;
}