.ver
{
 display: inline-block;
 margin: 1em;
}
.ver a:not([class]) img
{
 image-rendering: auto;
 width: 288px;
 height: 180px;
 line-height: 85px;
 display: inline-block;
 white-space: pre;
}
.ver a:not([class]) .screen
{
 overflow: hidden;
 position: relative;
 display: inline-block;
 border: 1px solid #FFFFFF;
 background-color: #BFBFBF;
 color: #000000;
 border-top-width: 0.3em;
 border-bottom-width: 1em;
 border-radius: 0.3em;
 width: 288px;
 height: 180px;
}
.ver a:not([class]) .glass
{
 position: absolute;
 top: 0;
 left: -75%;
 z-index: 2;
 display: block;
 width: 50%;
 height: 100%;
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,.3)));
 background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
 background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
 -webkit-transform: skewX(-25deg);
 transform: skewX(-25deg);
}
.ver a:not([class]):hover .glass
{
 -webkit-animation: shine .75s;
 animation: shine .75s;
}
@-webkit-keyframes shine
{
 0%
 {
  left: -75%;
 }
 100%
 {
  left: 125%;
 }
}
@keyframes shine
{
 100%
 {
  left: 125%;
 }
}