/* CSS3 STYLE GENERIC */
.view {
   width: 320px;
   height: 200px;
   margin: 10px;
   float: left;
   border: 3px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   box-shadow: 0px 0px 10px #aaa;
   cursor: default;
}
.view .mask, .view .content {
   width: 320px;
   height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
