.view {
    border: 10px solid #FFDAB9;
    overflow: hidden;
    position: absolute;
    text-align: center;
    box-shadow: 1px 1px 2px #e6e6e6;
	margin-left: 9%;
	margin-top: 0;
	background: #ee9966;
   }
   
.view .mask, .view .content {
    width: 340px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

 
.view h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.8);
    margin: 20px 0 0 0
}

.view p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.75em;
    position: relative;
    color: #fff;
    padding: 3px 20px 20px;
    text-align: center
}

.view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000;
}

.view a.info:hover {
    box-shadow: 0 0 5px #000;}
	
.view img { 
    transform: scaleY(1);
    transition: all 0.7s ease-in-out;
}

.view .mask { 
    transition: all 0.5s linear;
    opacity: 0;
	}   
	
.view h2{
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 20px 40px 0px 40px;
    color: #333;
    transition: all 0.5s linear;
    opacity: 0;
}

.view p {
    color: #333;
    opacity: 0;
    transition: all 0.5s linear;
}
.view a.info {
    transition: all 0.5s linear;
}
.view:hover img { 
    opacity: 0;
}
.view:hover .mask { 
    opacity: 1;
}                                                                            
.view:hover h2,
.view:hover p,
.view:hover a.info{ 
    opacity: 1;
}
