@charset "utf-8";
/* CSS Document */



.flowplayer {
  background-color: #333;
}
#buttons {
/*  position: absolute;
  right: 2%;
  bottom: 8%;
*/ 
 z-index: 2;  make clickable 
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.is-mouseout.flowplayer #buttons {
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
   same transition as other ui elements like fullscreen */
  -webkit-transition: opacity .15s .3s;
  -moz-transition: opacity .15s .3s;
  transition: opacity .15s .3s;
}
#buttons span {
  padding: 1ex;
 /* margin: 0.5ex;*/		/*JTL Changed - makes them stack left/right*/
  font-weight: bold;
  background-color: #eee;
  cursor: pointer;
  -webkit-border-radius: 1ex;
  -moz-border-radius: 1ex;
  border-radius: 1ex;
}
#buttons span.active {
  color: #00a7c8;
  background-color: #666;
  cursor: default;
}

