.view {
    width: 100%;
    height: 250px;
    margin: 10px 0;
    float: left;
    border: 10px solid #ece9e9;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 0px 5px 8px 1px #aca4a4;
    -moz-box-shadow: 0px 5px 8px 1px #aca4a4;
    box-shadow: 0px 5px 8px 1px #aca4a4;
    cursor: default;
    background: #fff url(../images/bgimg.jpg) no-repeat center center;
}
.view .mask,.view .content {
   width: 100%;
   height: 250px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
.view h2 {
   text-transform: uppercase;
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 17px;
   padding: 10px;
   background: rgb(181, 133, 21);
   margin: 20px 0 0 0;
}
.view p {
   font-family: Georgia, serif;
   font-style: italic;
   font-size: 12px;
   position: relative;
   color: #fff;
   padding: 10px 20px 20px;
   text-align: center;
}
.view a.info {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  background: rgb(181, 133, 21);
  color: #fff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 1px #aa7c10;
  -moz-box-shadow: 0 0 1px #aa7c10;
  box-shadow: 0 0 1px #aa7c10;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 19px;
  right: 0;
  font-style: italic;
}
.view a.info: hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}