
.video_link {
	display: block;	
}

.video_play_big_button {
    background: url("/static/images/play_big.png") no-repeat scroll 22px center transparent;
    content: "";
    font-family: VideoJS;
    font-size: 3em;
    height: 100%;
    left: 0;
    line-height: 2.66;
    position: absolute;
    text-align: center;
    text-shadow: 0.05em 0.05em 0.1em #000000;
    width: 100%;
}

.video_play_big {
  display: block;
  z-index: 2;
  position: relative;
  top: 315px;
  left: 150px;
  width: 80px;
  height: 80px;
  text-align: center;
  vertical-align: middle;
  opacity: 1;

  /* Need a slightly gray bg so it can be seen on black backgrounds */
  background-color: rgb(40, 40, 40);
  background-color: rgba(255, 255, 255, 0.7);

  border: 0.3em solid rgb(50, 50, 50);
  border-color: rgba(255, 255, 255, 0.25);

  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;

  -webkit-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
     -moz-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
          box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);

  -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s, -webkit-transform 0.4s;
     -moz-transition: border 0.4s,    -moz-box-shadow 0.4s,    -moz-transform 0.4s;
       -o-transition: border 0.4s,      -o-box-shadow 0.4s,      -o-transform 0.4s;
          transition: border 0.4s,         box-shadow 0.4s,         transform 0.4s;
}
