/* REQUIRED STYLES (be careful overriding)
================================================================================ */

/* Box containing video, controls, and download links.
   If you want to add some kind of frame, use another containing element, not this one. */
.video-js-box { overflow:hidden; position:relative; text-align:left; }

/* Video Element */
video.video-js { background-color:#000000; cursor:pointer; position:relative; }

/* Fullscreen styles for main elements */
.video-js-box.vjs-fullscreen { position: fixed; left: 0; top: 0; right: 0; bottom: 0; overflow: hidden; z-index: 1000; }
.video-js-box.vjs-fullscreen video.video-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1001; }
.video-js-box.vjs-fullscreen .vjs-controls { z-index: 1002; }

/* Poster styles */
.vjs-poster { display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }


/* DEFAULT SKIN (override in another file)
================================================================================
Using all CSS to draw the controls. Images could be used if desired.
Instead of editing this file, I recommend creating your own skin CSS file to be included after this file,
so you can upgrade to newer versions easier. */

/* Replay Button */

.replay {  opacity: 0; background:none repeat scroll 0 0 #333333; border:2px solid #FFFFFF; height:90px; left:50%; margin:-47px 0 0 -59px; position:absolute; top:50%; width:115px; cursor: pointer;

	/* CSS Curved Corners */
	border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;
	
	/* CSS Gradient BG (With Fallback) */
	background:none repeat scroll 0 0 #757575;
	background:-webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(117,117,117)), color-stop(1, rgb(11,11,11)) );
	background:-moz-linear-gradient( center bottom, rgb(117,117,117) 0%, rgb(11,11,11) 100% );
}
.replayArrow { background:url("/images/video_player.png") repeat scroll 0 -13px transparent; height:40px; left:39px; position:absolute; top:26px; width:42px; }

/* Controls Layout
   Using a Holy Grail type method to allow the progress bar holder to expand into all available space,
   but using abosolute positioning for individual controls. http://www.alistapart.com/articles/holygrail */
   
.vjs-controls {
	background:none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
	list-style: none; position: absolute; margin: 0; border: none; opacity: 0.85; color: #7b7b7b;
	display: none; /* Start hidden */
	left: 0; right: 0; /* 100% width of video-js-box */
	height: 35px; /* Including any margin you want above or below control items */
	padding-left: 35px; /* Width of play button + margin */
	padding-right: 115px; /* Width of all the controls to the right of the progress control + margins */
}
/* Controls styles when below the video */
.video-js-box.vjs-controls-below .vjs-controls { background-color: #000; }

.vjs-controls > li { /* Direct li children of control bar */
	position: absolute; list-style: none; float: left; padding: 0; text-align: center;
	height: 20px; /* Default height of individual controls */
	margin: 7px 0 0; /* Top margin to put space between video and controls when controls are below */
	
	/* CSS Background Gradients */
	/* Default */ background-color: #DB6A19;
	/* Webkit  */ background: #1F3744 -webkit-gradient( linear, left bottom, left top, color-stop(0.28, rgb(219,106,25)), color-stop(0.63, rgb(234,166,88)) );
	/* Firefox */ background: rgb(219,106,25) -moz-linear-gradient( center bottom, rgb(219,106,25) 28%, rgb(234,166,88) 63% );
	
	/* CSS Curved Corners */
	border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px;
	
	/* CSS Shadows */
	box-shadow: 1px 1px 1px #F2C895 inset; -webkit-box-shadow: 1px 1px 1px #F2C895 inset; -moz-box-shadow: 1px 1px 1px #F2C895 inset;
}

/* Placement of Control Items */

.vjs-controls > li.vjs-play-control       	{ width: 31px; left: 9px; }
.vjs-controls > li.vjs-progress-control   	{ width: 100%; position: relative; }
.vjs-controls > li.vjs-time-control       	{ width: 75px; right: 38px; }
.vjs-controls > li.vjs-volume-control 		{ height:12px; margin:11px 0 0; right:15px; width:11px; }
.vjs-controls > li.vjs-fullscreen-control 	{ width: 25px; right: 5px; }

/* Removing curves on progress control and time control to join them. */
.vjs-controls > li.vjs-progress-control {
	background:none repeat scroll 0 0 transparent;
	box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none;
	border-top-right-radius: 0; -webkit-border-top-right-radius: 0; -moz-border-radius-topright: 0;
	border-bottom-right-radius: 0; -webkit-border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0;
}
.vjs-controls > li.vjs-time-control { 
	background:none repeat scroll 0 0 transparent;
	box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none;
	border-top-left-radius: 0; -webkit-border-top-left-radius: 0; -moz-border-radius-topleft: 0;
	border-bottom-left-radius: 0; -webkit-border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0;
	margin:6px 0 0;
}
.vjs-controls > li.vjs-volume-control {
	background:url("/images/video_player.png") repeat scroll 0 0 transparent;
	box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none;
	border-top-right-radius: 0; -webkit-border-top-right-radius: 0; -moz-border-radius-topright: 0;
	border-bottom-right-radius: 0; -webkit-border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0;
}

.vjs-controls > li.vjs-volume-control.muted { background:url("/images/video_player.png") repeat scroll -11px 0 transparent; }

/* Play/Pause
-------------------------------------------------------------------------------- */
.vjs-play-control { cursor: pointer !important; }
.vjs-play-control span { display: block; font-size: 0; line-height: 0; }
.vjs-play-control.vjs-play span {
	width: 0; height: 0; margin: 5px 0 0 11px;
	/* Drawing the play triangle with borders - http://www.infimum.dk/HTML/slantinfo.html */
	border-left: 10px solid #fff; /* Width & Color of play icon */
	/* Height of play icon is total top & bottom border widths. Color is transparent. */
	border-top: 5px solid rgba(0,0,0,0); border-bottom: 5px solid rgba(0,0,0,0);
}
.vjs-play-control.vjs-pause span {
	width: 3px; height: 10px; margin: 5px 0 0 11px;
	/* Drawing the pause bars with borders */
	border-top: 0px; border-left: 3px solid #fff; border-bottom: 0px; border-right: 3px solid #fff;
}

/* Progress
-------------------------------------------------------------------------------- */
.vjs-progress-holder { /* Box containing play and load progresses */
	border:medium none;
	cursor:pointer !important;
	height:9px;
	list-style:none outside none;
	margin:10px 17px 0 26px;
	padding:0;
	position:relative;
}
.vjs-progress-holder li { /* Progress Bars */
  	position: absolute; display: block; width: 0; height: 2px; 
}

.vjs-play-progress {
	/* Default */ background: #fff;
	/* Webkit  */ background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#777));
	/* Firefox */ background: -moz-linear-gradient(top,  #fff,  #777);
}
.vjs-load-progress {
	opacity: 0.8;
	/* Default */ background-color: #505151;
}

li.vjs-play-scrubber { color:#FFFFFF; font-size:5px; font-weight:bold; height:9px; left:16px; letter-spacing:-0.15em; line-height:9px; margin:-3px 0 0 -16px; width:35px;

	/* CSS Background Gradients */
	/* Default */ background-color: #DB6A19;
	/* Webkit  */ background: #1F3744 -webkit-gradient( linear, left bottom, left top, color-stop(0.28, rgb(219,106,25)), color-stop(0.63, rgb(234,166,88)) );
	/* Firefox */ background: rgb(219,106,25) -moz-linear-gradient( center bottom, rgb(219,106,25) 28%, rgb(234,166,88) 63% );
	
	/* CSS Curved Corners */
	border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px;
	
	/* CSS Shadows */
	box-shadow: 1px 1px 1px #F2C895 inset; -webkit-box-shadow: 1px 1px 1px #F2C895 inset; -moz-box-shadow: 1px 1px 1px #F2C895 inset;
}

li.vjs-play-scrubber .scrubOverlay { height:100%; left:0; position:absolute; top:0; width:100%; }

/* Time Display
-------------------------------------------------------------------------------- */
.vjs-controls .vjs-time-control { font-size: 12px; line-height: 1; font-weight: normal; font-family: Helvetica, Arial, sans-serif; }
.vjs-controls .vjs-time-control span { line-height: 25px; /* Centering vertically */ }

/* Volume
-------------------------------------------------------------------------------- */
.vjs-volume-control { cursor: pointer !important; }
.vjs-volume-control ul { list-style: none; display: block; margin: 0 5px 0 5px; padding: 4px 0 0 0; }
/* Drawing the volume icon using 6 li elements */
.vjs-volume-control ul li { /* Individual volume bars */
	list-style: none; float: left; padding: 0;
	margin: 0 2px 0 0; /* Space between */
	width: 5px; height: 0px; /* Total height is height + bottom border */
	border-bottom: 18px solid #555; /* Default (off) color and height of visible portion */
}
.vjs-volume-control ul li.vjs-volume-level-on { border-color: #fff; /* Volume on bar color */ }
/* Creating differnt bar heights through height (transparent) and bottom border (visible). */
.vjs-volume-control ul li:nth-child(1) { border-bottom-width: 2px; height: 16px; }
.vjs-volume-control ul li:nth-child(2) { border-bottom-width: 4px; height: 14px; }
.vjs-volume-control ul li:nth-child(3) { border-bottom-width: 7px; height: 11px; }
.vjs-volume-control ul li:nth-child(4) { border-bottom-width: 10px; height: 8px; }
.vjs-volume-control ul li:nth-child(5) { border-bottom-width: 14px; height: 4px; }
.vjs-volume-control ul li:nth-child(6) { margin-right: 0; }

/* Fullscreen
-------------------------------------------------------------------------------- */
.vjs-fullscreen-control { cursor: pointer !important; }
.vjs-fullscreen-control ul {
	list-style: none; padding: 0; text-align: left; vertical-align: top; cursor: pointer !important; 
	margin: 5px 0 0 5px; /* Placement within the fullscreen control item */
	width: 20px; height: 20px;
}
/* Drawing the fullscreen icon using 4 li elements */
.vjs-fullscreen-control ul li { list-style: none; float: left; margin: 0; padding: 0; font-size: 0; line-height: 0; width: 0; text-align: left; vertical-align: top; }
.vjs-fullscreen-control ul li:nth-child(1) { /* Top-left triangle */
	margin-right: 3px; /* Space between top-left and top-right */
	margin-bottom: 3px; /* Space between top-left and bottom-left */
	border-top: 6px solid #fff; /* Height and color */
	border-right: 6px solid rgba(0,0,0,0);  /* Width */
}
.vjs-fullscreen-control ul li:nth-child(2) { border-top: 6px solid #fff; border-left: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen-control ul li:nth-child(3) { clear: both; margin: 0 3px 0 0; border-bottom: 6px solid #fff; border-right: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen-control ul li:nth-child(4) { border-bottom: 6px solid #fff; border-left: 6px solid rgba(0,0,0,0); }
/* Icon when video is in fullscreen mode */
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(1) { border: none; border-bottom: 6px solid #fff; border-left: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(2) { border: none; border-bottom: 6px solid #fff; border-right: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(3) { border: none; border-top: 6px solid #fff; border-left: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(4) { border: none; border-top: 6px solid #fff; border-right: 6px solid rgba(0,0,0,0); }

/* Download Links - Used for browsers that don't support any video.
-------------------------------------------------------------------------------- */
.vjs-no-video { font-size: small; }
