summaryrefslogtreecommitdiff
path: root/lib/mediaelementjs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mediaelementjs')
-rw-r--r--lib/mediaelementjs/flashmediaelement.swfbin27788 -> 0 bytes
-rw-r--r--lib/mediaelementjs/flashmediaelement.swf.php47
-rw-r--r--lib/mediaelementjs/mediaelement.js89
-rw-r--r--lib/mediaelementjs/mediaelementplayer.css2
-rw-r--r--lib/mediaelementjs/mediaelementplayer.js177
5 files changed, 187 insertions, 128 deletions
diff --git a/lib/mediaelementjs/flashmediaelement.swf b/lib/mediaelementjs/flashmediaelement.swf
deleted file mode 100644
index b78fdb65..00000000
--- a/lib/mediaelementjs/flashmediaelement.swf
+++ /dev/null
Binary files differ
diff --git a/lib/mediaelementjs/flashmediaelement.swf.php b/lib/mediaelementjs/flashmediaelement.swf.php
new file mode 100644
index 00000000..cd042f04
--- /dev/null
+++ b/lib/mediaelementjs/flashmediaelement.swf.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * Gallery - a web based photo album viewer and editor
+ * Copyright (C) 2000-2013 Bharat Mediratta
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+// Redirect the initial request to strip off any query parameters or URL fragments
+// We know it's an initial request if the token is missing
+if (empty($_GET["token"])) {
+ // We have not yet redirected
+ $rand = md5(rand());
+ setcookie("mejs_0_token", $rand);
+ header("Location: flashmediaelement.swf.php?token=$rand#.");
+ exit;
+}
+
+// If the token exists but there's no cookie, then this is a bogus token
+// or the user does not support cookies. Ignore this request.
+if (empty($_COOKIE["mejs_0_token"])) {
+ exit;
+}
+
+// If the token exists but it doesn't match our cookie, then this is a bogus
+// request. Ignore this request.
+if ($_GET["token"] != $_COOKIE["mejs_0_token"]) {
+ exit;
+}
+
+// This is a legitimate request. Serve it, but disallow caching.
+header("Content-Type: application/x-shockwave-flash");
+header("Cache-Control: no-cache, no-store, must-revalidate");
+setcookie("mejs_0_token", "", time() - 3600);
+print base64_decode("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"); \ No newline at end of file
diff --git a/lib/mediaelementjs/mediaelement.js b/lib/mediaelementjs/mediaelement.js
index 632a5949..962ce4ff 100644
--- a/lib/mediaelementjs/mediaelement.js
+++ b/lib/mediaelementjs/mediaelement.js
@@ -7,58 +7,61 @@
* for browsers that don't understand HTML5 or can't play the provided codec
* Can play MP4 (H.264), Ogg, WebM, FLV, WMV, WMA, ACC, and MP3
*
-* Copyright 2010-2012, John Dyer (http://j.hn)
+* Copyright 2010-2013, John Dyer (http://j.hn)
* License: MIT
*
-*/var mejs=mejs||{};mejs.version="2.10.3";mejs.meIndex=0;
-mejs.plugins={silverlight:[{version:[3,0],types:["video/mp4","video/m4v","video/mov","video/wmv","audio/wma","audio/m4a","audio/mp3","audio/wav","audio/mpeg"]}],flash:[{version:[9,0,124],types:["video/mp4","video/m4v","video/mov","video/flv","video/rtmp","video/x-flv","audio/flv","audio/x-flv","audio/mp3","audio/m4a","audio/mpeg","video/youtube","video/x-youtube"]}],youtube:[{version:null,types:["video/youtube","video/x-youtube"]}],vimeo:[{version:null,types:["video/vimeo","video/x-vimeo"]}]};
-mejs.Utility={encodeUrl:function(a){return encodeURIComponent(a)},escapeHTML:function(a){return a.toString().split("&").join("&amp;").split("<").join("&lt;").split('"').join("&quot;")},absolutizeUrl:function(a){var b=document.createElement("div");b.innerHTML='<a href="'+this.escapeHTML(a)+'">x</a>';return b.firstChild.href},getScriptPath:function(a){for(var b=0,c,d="",e="",g,f=document.getElementsByTagName("script"),h=f.length,l=a.length;b<h;b++){g=f[b].src;for(c=0;c<l;c++){e=a[c];if(g.indexOf(e)>
--1){d=g.substring(0,g.indexOf(e));break}}if(d!=="")break}return d},secondsToTimeCode:function(a,b,c,d){if(typeof c=="undefined")c=false;else if(typeof d=="undefined")d=25;var e=Math.floor(a/3600)%24,g=Math.floor(a/60)%60,f=Math.floor(a%60);a=Math.floor((a%1*d).toFixed(3));return(b||e>0?(e<10?"0"+e:e)+":":"")+(g<10?"0"+g:g)+":"+(f<10?"0"+f:f)+(c?":"+(a<10?"0"+a:a):"")},timeCodeToSeconds:function(a,b,c,d){if(typeof c=="undefined")c=false;else if(typeof d=="undefined")d=25;a=a.split(":");b=parseInt(a[0],
-10);var e=parseInt(a[1],10),g=parseInt(a[2],10),f=0,h=0;if(c)f=parseInt(a[3])/d;return h=b*3600+e*60+g+f},convertSMPTEtoSeconds:function(a){if(typeof a!="string")return false;a=a.replace(",",".");var b=0,c=a.indexOf(".")!=-1?a.split(".")[1].length:0,d=1;a=a.split(":").reverse();for(var e=0;e<a.length;e++){d=1;if(e>0)d=Math.pow(60,e);b+=Number(a[e])*d}return Number(b.toFixed(c))},removeSwf:function(a){var b=document.getElementById(a);if(b&&b.nodeName=="OBJECT")if(mejs.MediaFeatures.isIE){b.style.display=
+*/var mejs=mejs||{};mejs.version="2.12.0";mejs.meIndex=0;
+mejs.plugins={silverlight:[{version:[3,0],types:["video/mp4","video/m4v","video/mov","video/wmv","audio/wma","audio/m4a","audio/mp3","audio/wav","audio/mpeg"]}],flash:[{version:[9,0,124],types:["video/mp4","video/m4v","video/mov","video/flv","video/rtmp","video/x-flv","audio/flv","audio/x-flv","audio/mp3","audio/m4a","audio/mpeg","video/youtube","video/x-youtube"]}],youtube:[{version:null,types:["video/youtube","video/x-youtube","audio/youtube","audio/x-youtube"]}],vimeo:[{version:null,types:["video/vimeo",
+"video/x-vimeo"]}]};
+mejs.Utility={encodeUrl:function(a){return encodeURIComponent(a)},escapeHTML:function(a){return a.toString().split("&").join("&amp;").split("<").join("&lt;").split('"').join("&quot;")},absolutizeUrl:function(a){var b=document.createElement("div");b.innerHTML='<a href="'+this.escapeHTML(a)+'">x</a>';return b.firstChild.href},getScriptPath:function(a){for(var b=0,c,d="",e="",f,g,h=document.getElementsByTagName("script"),l=h.length,j=a.length;b<l;b++){f=h[b].src;c=f.lastIndexOf("/");if(c>-1){g=f.substring(c+
+1);f=f.substring(0,c+1)}else{g=f;f=""}for(c=0;c<j;c++){e=a[c];e=g.indexOf(e);if(e>-1){d=f;break}}if(d!=="")break}return d},secondsToTimeCode:function(a,b,c,d){if(typeof c=="undefined")c=false;else if(typeof d=="undefined")d=25;var e=Math.floor(a/3600)%24,f=Math.floor(a/60)%60,g=Math.floor(a%60);a=Math.floor((a%1*d).toFixed(3));return(b||e>0?(e<10?"0"+e:e)+":":"")+(f<10?"0"+f:f)+":"+(g<10?"0"+g:g)+(c?":"+(a<10?"0"+a:a):"")},timeCodeToSeconds:function(a,b,c,d){if(typeof c=="undefined")c=false;else if(typeof d==
+"undefined")d=25;a=a.split(":");b=parseInt(a[0],10);var e=parseInt(a[1],10),f=parseInt(a[2],10),g=0,h=0;if(c)g=parseInt(a[3])/d;return h=b*3600+e*60+f+g},convertSMPTEtoSeconds:function(a){if(typeof a!="string")return false;a=a.replace(",",".");var b=0,c=a.indexOf(".")!=-1?a.split(".")[1].length:0,d=1;a=a.split(":").reverse();for(var e=0;e<a.length;e++){d=1;if(e>0)d=Math.pow(60,e);b+=Number(a[e])*d}return Number(b.toFixed(c))},removeSwf:function(a){var b=document.getElementById(a);if(b&&/object|embed/i.test(b.nodeName))if(mejs.MediaFeatures.isIE){b.style.display=
"none";(function(){b.readyState==4?mejs.Utility.removeObjectInIE(a):setTimeout(arguments.callee,10)})()}else b.parentNode.removeChild(b)},removeObjectInIE:function(a){if(a=document.getElementById(a)){for(var b in a)if(typeof a[b]=="function")a[b]=null;a.parentNode.removeChild(a)}}};
-mejs.PluginDetector={hasPluginVersion:function(a,b){var c=this.plugins[a];b[1]=b[1]||0;b[2]=b[2]||0;return c[0]>b[0]||c[0]==b[0]&&c[1]>b[1]||c[0]==b[0]&&c[1]==b[1]&&c[2]>=b[2]?true:false},nav:window.navigator,ua:window.navigator.userAgent.toLowerCase(),plugins:[],addPlugin:function(a,b,c,d,e){this.plugins[a]=this.detectPlugin(b,c,d,e)},detectPlugin:function(a,b,c,d){var e=[0,0,0],g;if(typeof this.nav.plugins!="undefined"&&typeof this.nav.plugins[a]=="object"){if((c=this.nav.plugins[a].description)&&
-!(typeof this.nav.mimeTypes!="undefined"&&this.nav.mimeTypes[b]&&!this.nav.mimeTypes[b].enabledPlugin)){e=c.replace(a,"").replace(/^\s+/,"").replace(/\sr/gi,".").split(".");for(a=0;a<e.length;a++)e[a]=parseInt(e[a].match(/\d+/),10)}}else if(typeof window.ActiveXObject!="undefined")try{if(g=new ActiveXObject(c))e=d(g)}catch(f){}return e}};
+mejs.PluginDetector={hasPluginVersion:function(a,b){var c=this.plugins[a];b[1]=b[1]||0;b[2]=b[2]||0;return c[0]>b[0]||c[0]==b[0]&&c[1]>b[1]||c[0]==b[0]&&c[1]==b[1]&&c[2]>=b[2]?true:false},nav:window.navigator,ua:window.navigator.userAgent.toLowerCase(),plugins:[],addPlugin:function(a,b,c,d,e){this.plugins[a]=this.detectPlugin(b,c,d,e)},detectPlugin:function(a,b,c,d){var e=[0,0,0],f;if(typeof this.nav.plugins!="undefined"&&typeof this.nav.plugins[a]=="object"){if((c=this.nav.plugins[a].description)&&
+!(typeof this.nav.mimeTypes!="undefined"&&this.nav.mimeTypes[b]&&!this.nav.mimeTypes[b].enabledPlugin)){e=c.replace(a,"").replace(/^\s+/,"").replace(/\sr/gi,".").split(".");for(a=0;a<e.length;a++)e[a]=parseInt(e[a].match(/\d+/),10)}}else if(typeof window.ActiveXObject!="undefined")try{if(f=new ActiveXObject(c))e=d(f)}catch(g){}return e}};
mejs.PluginDetector.addPlugin("flash","Shockwave Flash","application/x-shockwave-flash","ShockwaveFlash.ShockwaveFlash",function(a){var b=[];if(a=a.GetVariable("$version")){a=a.split(" ")[1].split(",");b=[parseInt(a[0],10),parseInt(a[1],10),parseInt(a[2],10)]}return b});
-mejs.PluginDetector.addPlugin("silverlight","Silverlight Plug-In","application/x-silverlight-2","AgControl.AgControl",function(a){var b=[0,0,0,0],c=function(d,e,g,f){for(;d.isVersionSupported(e[0]+"."+e[1]+"."+e[2]+"."+e[3]);)e[g]+=f;e[g]-=f};c(a,b,0,1);c(a,b,1,1);c(a,b,2,1E4);c(a,b,2,1E3);c(a,b,2,100);c(a,b,2,10);c(a,b,2,1);c(a,b,3,1);return b});
-mejs.MediaFeatures={init:function(){var a=this,b=document,c=mejs.PluginDetector.nav,d=mejs.PluginDetector.ua.toLowerCase(),e,g=["source","track","audio","video"];a.isiPad=d.match(/ipad/i)!==null;a.isiPhone=d.match(/iphone/i)!==null;a.isiOS=a.isiPhone||a.isiPad;a.isAndroid=d.match(/android/i)!==null;a.isBustedAndroid=d.match(/android 2\.[12]/)!==null;a.isIE=c.appName.toLowerCase().indexOf("microsoft")!=-1;a.isChrome=d.match(/chrome/gi)!==null;a.isFirefox=d.match(/firefox/gi)!==null;a.isWebkit=d.match(/webkit/gi)!==
-null;a.isGecko=d.match(/gecko/gi)!==null&&!a.isWebkit;a.isOpera=d.match(/opera/gi)!==null;a.hasTouch="ontouchstart"in window;a.svg=!!document.createElementNS&&!!document.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect;for(c=0;c<g.length;c++)e=document.createElement(g[c]);a.supportsMediaTag=typeof e.canPlayType!=="undefined"||a.isBustedAndroid;a.hasSemiNativeFullScreen=typeof e.webkitEnterFullscreen!=="undefined";a.hasWebkitNativeFullScreen=typeof e.webkitRequestFullScreen!=="undefined";
-a.hasMozNativeFullScreen=typeof e.mozRequestFullScreen!=="undefined";a.hasTrueNativeFullScreen=a.hasWebkitNativeFullScreen||a.hasMozNativeFullScreen;a.nativeFullScreenEnabled=a.hasTrueNativeFullScreen;if(a.hasMozNativeFullScreen)a.nativeFullScreenEnabled=e.mozFullScreenEnabled;if(this.isChrome)a.hasSemiNativeFullScreen=false;if(a.hasTrueNativeFullScreen){a.fullScreenEventName=a.hasWebkitNativeFullScreen?"webkitfullscreenchange":"mozfullscreenchange";a.isFullScreen=function(){if(e.mozRequestFullScreen)return b.mozFullScreen;
-else if(e.webkitRequestFullScreen)return b.webkitIsFullScreen};a.requestFullScreen=function(f){if(a.hasWebkitNativeFullScreen)f.webkitRequestFullScreen();else a.hasMozNativeFullScreen&&f.mozRequestFullScreen()};a.cancelFullScreen=function(){if(a.hasWebkitNativeFullScreen)document.webkitCancelFullScreen();else a.hasMozNativeFullScreen&&document.mozCancelFullScreen()}}if(a.hasSemiNativeFullScreen&&d.match(/mac os x 10_5/i)){a.hasNativeFullScreen=false;a.hasSemiNativeFullScreen=false}}};mejs.MediaFeatures.init();
+mejs.PluginDetector.addPlugin("silverlight","Silverlight Plug-In","application/x-silverlight-2","AgControl.AgControl",function(a){var b=[0,0,0,0],c=function(d,e,f,g){for(;d.isVersionSupported(e[0]+"."+e[1]+"."+e[2]+"."+e[3]);)e[f]+=g;e[f]-=g};c(a,b,0,1);c(a,b,1,1);c(a,b,2,1E4);c(a,b,2,1E3);c(a,b,2,100);c(a,b,2,10);c(a,b,2,1);c(a,b,3,1);return b});
+mejs.MediaFeatures={init:function(){var a=this,b=document,c=mejs.PluginDetector.nav,d=mejs.PluginDetector.ua.toLowerCase(),e,f=["source","track","audio","video"];a.isiPad=d.match(/ipad/i)!==null;a.isiPhone=d.match(/iphone/i)!==null;a.isiOS=a.isiPhone||a.isiPad;a.isAndroid=d.match(/android/i)!==null;a.isBustedAndroid=d.match(/android 2\.[12]/)!==null;a.isBustedNativeHTTPS=location.protocol==="https:"&&(d.match(/android [12]\./)!==null||d.match(/macintosh.* version.* safari/)!==null);a.isIE=c.appName.toLowerCase().indexOf("microsoft")!=
+-1;a.isChrome=d.match(/chrome/gi)!==null;a.isFirefox=d.match(/firefox/gi)!==null;a.isWebkit=d.match(/webkit/gi)!==null;a.isGecko=d.match(/gecko/gi)!==null&&!a.isWebkit;a.isOpera=d.match(/opera/gi)!==null;a.hasTouch="ontouchstart"in window;a.svg=!!document.createElementNS&&!!document.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect;for(c=0;c<f.length;c++)e=document.createElement(f[c]);a.supportsMediaTag=typeof e.canPlayType!=="undefined"||a.isBustedAndroid;try{e.canPlayType("video/mp4")}catch(g){a.supportsMediaTag=
+false}a.hasSemiNativeFullScreen=typeof e.webkitEnterFullscreen!=="undefined";a.hasWebkitNativeFullScreen=typeof e.webkitRequestFullScreen!=="undefined";a.hasMozNativeFullScreen=typeof e.mozRequestFullScreen!=="undefined";a.hasTrueNativeFullScreen=a.hasWebkitNativeFullScreen||a.hasMozNativeFullScreen;a.nativeFullScreenEnabled=a.hasTrueNativeFullScreen;if(a.hasMozNativeFullScreen)a.nativeFullScreenEnabled=e.mozFullScreenEnabled;if(this.isChrome)a.hasSemiNativeFullScreen=false;if(a.hasTrueNativeFullScreen){a.fullScreenEventName=
+a.hasWebkitNativeFullScreen?"webkitfullscreenchange":"mozfullscreenchange";a.isFullScreen=function(){if(e.mozRequestFullScreen)return b.mozFullScreen;else if(e.webkitRequestFullScreen)return b.webkitIsFullScreen};a.requestFullScreen=function(h){if(a.hasWebkitNativeFullScreen)h.webkitRequestFullScreen();else a.hasMozNativeFullScreen&&h.mozRequestFullScreen()};a.cancelFullScreen=function(){if(a.hasWebkitNativeFullScreen)document.webkitCancelFullScreen();else a.hasMozNativeFullScreen&&document.mozCancelFullScreen()}}if(a.hasSemiNativeFullScreen&&
+d.match(/mac os x 10_5/i)){a.hasNativeFullScreen=false;a.hasSemiNativeFullScreen=false}}};mejs.MediaFeatures.init();
mejs.HtmlMediaElement={pluginType:"native",isFullScreen:false,setCurrentTime:function(a){this.currentTime=a},setMuted:function(a){this.muted=a},setVolume:function(a){this.volume=a},stop:function(){this.pause()},setSrc:function(a){for(var b=this.getElementsByTagName("source");b.length>0;)this.removeChild(b[0]);if(typeof a=="string")this.src=a;else{var c;for(b=0;b<a.length;b++){c=a[b];if(this.canPlayType(c.type)){this.src=c.src;break}}}},setVideoSize:function(a,b){this.width=a;this.height=b}};
mejs.PluginMediaElement=function(a,b,c){this.id=a;this.pluginType=b;this.src=c;this.events={};this.attributes={}};
mejs.PluginMediaElement.prototype={pluginElement:null,pluginType:"",isFullScreen:false,playbackRate:-1,defaultPlaybackRate:-1,seekable:[],played:[],paused:true,ended:false,seeking:false,duration:0,error:null,tagName:"",muted:false,volume:1,currentTime:0,play:function(){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.playVideo():this.pluginApi.playMedia();this.paused=false}},load:function(){if(this.pluginApi!=null){this.pluginType!="youtube"&&this.pluginApi.loadMedia();this.paused=
-false}},pause:function(){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.pauseVideo():this.pluginApi.pauseMedia();this.paused=true}},stop:function(){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.stopVideo():this.pluginApi.stopMedia();this.paused=true}},canPlayType:function(a){var b,c,d,e=mejs.plugins[this.pluginType];for(b=0;b<e.length;b++){d=e[b];if(mejs.PluginDetector.hasPluginVersion(this.pluginType,d.version))for(c=0;c<d.types.length;c++)if(a==d.types[c])return true}return false},
-positionFullscreenButton:function(a,b,c){this.pluginApi!=null&&this.pluginApi.positionFullscreenButton&&this.pluginApi.positionFullscreenButton(a,b,c)},hideFullscreenButton:function(){this.pluginApi!=null&&this.pluginApi.hideFullscreenButton&&this.pluginApi.hideFullscreenButton()},setSrc:function(a){if(typeof a=="string"){this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(a));this.src=mejs.Utility.absolutizeUrl(a)}else{var b,c;for(b=0;b<a.length;b++){c=a[b];if(this.canPlayType(c.type)){this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(c.src));
+false}},pause:function(){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.pauseVideo():this.pluginApi.pauseMedia();this.paused=true}},stop:function(){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.stopVideo():this.pluginApi.stopMedia();this.paused=true}},canPlayType:function(a){var b,c,d,e=mejs.plugins[this.pluginType];for(b=0;b<e.length;b++){d=e[b];if(mejs.PluginDetector.hasPluginVersion(this.pluginType,d.version))for(c=0;c<d.types.length;c++)if(a==d.types[c])return"probably"}return""},
+positionFullscreenButton:function(a,b,c){this.pluginApi!=null&&this.pluginApi.positionFullscreenButton&&this.pluginApi.positionFullscreenButton(Math.floor(a),Math.floor(b),c)},hideFullscreenButton:function(){this.pluginApi!=null&&this.pluginApi.hideFullscreenButton&&this.pluginApi.hideFullscreenButton()},setSrc:function(a){if(typeof a=="string"){this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(a));this.src=mejs.Utility.absolutizeUrl(a)}else{var b,c;for(b=0;b<a.length;b++){c=a[b];if(this.canPlayType(c.type)){this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(c.src));
this.src=mejs.Utility.absolutizeUrl(a);break}}}},setCurrentTime:function(a){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.seekTo(a):this.pluginApi.setCurrentTime(a);this.currentTime=a}},setVolume:function(a){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.setVolume(a*100):this.pluginApi.setVolume(a);this.volume=a}},setMuted:function(a){if(this.pluginApi!=null){if(this.pluginType=="youtube"){a?this.pluginApi.mute():this.pluginApi.unMute();this.muted=a;this.dispatchEvent("volumechange")}else this.pluginApi.setMuted(a);
this.muted=a}},setVideoSize:function(a,b){if(this.pluginElement.style){this.pluginElement.style.width=a+"px";this.pluginElement.style.height=b+"px"}this.pluginApi!=null&&this.pluginApi.setVideoSize&&this.pluginApi.setVideoSize(a,b)},setFullscreen:function(a){this.pluginApi!=null&&this.pluginApi.setFullscreen&&this.pluginApi.setFullscreen(a)},enterFullScreen:function(){this.pluginApi!=null&&this.pluginApi.setFullscreen&&this.setFullscreen(true)},exitFullScreen:function(){this.pluginApi!=null&&this.pluginApi.setFullscreen&&
this.setFullscreen(false)},addEventListener:function(a,b){this.events[a]=this.events[a]||[];this.events[a].push(b)},removeEventListener:function(a,b){if(!a){this.events={};return true}var c=this.events[a];if(!c)return true;if(!b){this.events[a]=[];return true}for(i=0;i<c.length;i++)if(c[i]===b){this.events[a].splice(i,1);return true}return false},dispatchEvent:function(a){var b,c,d=this.events[a];if(d){c=Array.prototype.slice.call(arguments,1);for(b=0;b<d.length;b++)d[b].apply(null,c)}},hasAttribute:function(a){return a in
-this.attributes},removeAttribute:function(a){delete this.attributes[a]},getAttribute:function(a){if(this.hasAttribute(a))return this.attributes[a];return""},setAttribute:function(a,b){this.attributes[a]=b},remove:function(){mejs.Utility.removeSwf(this.pluginElement.id)}};
-mejs.MediaPluginBridge={pluginMediaElements:{},htmlMediaElements:{},registerPluginElement:function(a,b,c){this.pluginMediaElements[a]=b;this.htmlMediaElements[a]=c},initPlugin:function(a){var b=this.pluginMediaElements[a],c=this.htmlMediaElements[a];if(b){switch(b.pluginType){case "flash":b.pluginElement=b.pluginApi=document.getElementById(a);break;case "silverlight":b.pluginElement=document.getElementById(b.id);b.pluginApi=b.pluginElement.Content.MediaElementJS}b.pluginApi!=null&&b.success&&b.success(b,
-c)}},fireEvent:function(a,b,c){var d,e;a=this.pluginMediaElements[a];b={type:b,target:a};for(d in c){a[d]=c[d];b[d]=c[d]}e=c.bufferedTime||0;b.target.buffered=b.buffered={start:function(){return 0},end:function(){return e},length:1};a.dispatchEvent(b.type,b)}};
-mejs.MediaElementDefaults={mode:"auto",plugins:["flash","silverlight","youtube","vimeo"],enablePluginDebug:false,type:"",pluginPath:mejs.Utility.getScriptPath(["mediaelement.js","mediaelement.min.js","mediaelement-and-player.js","mediaelement-and-player.min.js"]),flashName:"flashmediaelement.swf",flashStreamer:"",enablePluginSmoothing:false,silverlightName:"silverlightmediaelement.xap",defaultVideoWidth:480,defaultVideoHeight:270,pluginWidth:-1,pluginHeight:-1,pluginVars:[],timerRate:250,startVolume:0.8,
-success:function(){},error:function(){}};mejs.MediaElement=function(a,b){return mejs.HtmlMediaElementShim.create(a,b)};
-mejs.HtmlMediaElementShim={create:function(a,b){var c=mejs.MediaElementDefaults,d=typeof a=="string"?document.getElementById(a):a,e=d.tagName.toLowerCase(),g=e==="audio"||e==="video",f=g?d.getAttribute("src"):d.getAttribute("href");e=d.getAttribute("poster");var h=d.getAttribute("autoplay"),l=d.getAttribute("preload"),j=d.getAttribute("controls"),k;for(k in b)c[k]=b[k];f=typeof f=="undefined"||f===null||f==""?null:f;e=typeof e=="undefined"||e===null?"":e;l=typeof l=="undefined"||l===null||l==="false"?
-"none":l;h=!(typeof h=="undefined"||h===null||h==="false");j=!(typeof j=="undefined"||j===null||j==="false");k=this.determinePlayback(d,c,mejs.MediaFeatures.supportsMediaTag,g,f);k.url=k.url!==null?mejs.Utility.absolutizeUrl(k.url):"";if(k.method=="native"){if(mejs.MediaFeatures.isBustedAndroid){d.src=k.url;d.addEventListener("click",function(){d.play()},false)}return this.updateNative(k,c,h,l)}else if(k.method!=="")return this.createPlugin(k,c,e,h,l,j);else{this.createErrorMessage(k,c,e);return this}},
-determinePlayback:function(a,b,c,d,e){var g=[],f,h,l,j={method:"",url:"",htmlMediaElement:a,isVideo:a.tagName.toLowerCase()!="audio"},k;if(typeof b.type!="undefined"&&b.type!=="")if(typeof b.type=="string")g.push({type:b.type,url:e});else for(f=0;f<b.type.length;f++)g.push({type:b.type[f],url:e});else if(e!==null){l=this.formatType(e,a.getAttribute("type"));g.push({type:l,url:e})}else for(f=0;f<a.childNodes.length;f++){h=a.childNodes[f];if(h.nodeType==1&&h.tagName.toLowerCase()=="source"){e=h.getAttribute("src");
-l=this.formatType(e,h.getAttribute("type"));h=h.getAttribute("media");if(!h||!window.matchMedia||window.matchMedia&&window.matchMedia(h).matches)g.push({type:l,url:e})}}if(!d&&g.length>0&&g[0].url!==null&&this.getTypeFromFile(g[0].url).indexOf("audio")>-1)j.isVideo=false;if(mejs.MediaFeatures.isBustedAndroid)a.canPlayType=function(m){return m.match(/video\/(mp4|m4v)/gi)!==null?"maybe":""};if(c&&(b.mode==="auto"||b.mode==="auto_plugin"||b.mode==="native")){if(!d){f=document.createElement(j.isVideo?
-"video":"audio");a.parentNode.insertBefore(f,a);a.style.display="none";j.htmlMediaElement=a=f}for(f=0;f<g.length;f++)if(a.canPlayType(g[f].type).replace(/no/,"")!==""||a.canPlayType(g[f].type.replace(/mp3/,"mpeg")).replace(/no/,"")!==""){j.method="native";j.url=g[f].url;break}if(j.method==="native"){if(j.url!==null)a.src=j.url;if(b.mode!=="auto_plugin")return j}}if(b.mode==="auto"||b.mode==="auto_plugin"||b.mode==="shim")for(f=0;f<g.length;f++){l=g[f].type;for(a=0;a<b.plugins.length;a++){e=b.plugins[a];
-h=mejs.plugins[e];for(c=0;c<h.length;c++){k=h[c];if(k.version==null||mejs.PluginDetector.hasPluginVersion(e,k.version))for(d=0;d<k.types.length;d++)if(l==k.types[d]){j.method=e;j.url=g[f].url;return j}}}}if(b.mode==="auto_plugin"&&j.method==="native")return j;if(j.method===""&&g.length>0)j.url=g[0].url;return j},formatType:function(a,b){return a&&!b?this.getTypeFromFile(a):b&&~b.indexOf(";")?b.substr(0,b.indexOf(";")):b},getTypeFromFile:function(a){a=a.split("?")[0];a=a.substring(a.lastIndexOf(".")+
-1);return(/(mp4|m4v|ogg|ogv|webm|webmv|flv|wmv|mpeg|mov)/gi.test(a)?"video":"audio")+"/"+this.getTypeFromExtension(a)},getTypeFromExtension:function(a){switch(a){case "mp4":case "m4v":return"mp4";case "webm":case "webma":case "webmv":return"webm";case "ogg":case "oga":case "ogv":return"ogg";default:return a}},createErrorMessage:function(a,b,c){var d=a.htmlMediaElement,e=document.createElement("div");e.className="me-cannotplay";try{e.style.width=d.width+"px";e.style.height=d.height+"px"}catch(g){}e.innerHTML=
-c!==""?'<a href="'+a.url+'"><img src="'+c+'" width="100%" height="100%" /></a>':'<a href="'+a.url+'"><span>'+mejs.i18n.t("Download File")+"</span></a>";d.parentNode.insertBefore(e,d);d.style.display="none";b.error(d)},createPlugin:function(a,b,c,d,e,g){c=a.htmlMediaElement;var f=1,h=1,l="me_"+a.method+"_"+mejs.meIndex++,j=new mejs.PluginMediaElement(l,a.method,a.url),k=document.createElement("div"),m;j.tagName=c.tagName;for(m=0;m<c.attributes.length;m++){var n=c.attributes[m];n.specified==true&&j.setAttribute(n.name,
-n.value)}for(m=c.parentNode;m!==null&&m.tagName.toLowerCase()!="body";){if(m.parentNode.tagName.toLowerCase()=="p"){m.parentNode.parentNode.insertBefore(m,m.parentNode);break}m=m.parentNode}if(a.isVideo){f=b.videoWidth>0?b.videoWidth:c.getAttribute("width")!==null?c.getAttribute("width"):b.defaultVideoWidth;h=b.videoHeight>0?b.videoHeight:c.getAttribute("height")!==null?c.getAttribute("height"):b.defaultVideoHeight;f=mejs.Utility.encodeUrl(f);h=mejs.Utility.encodeUrl(h)}else if(b.enablePluginDebug){f=
-320;h=240}j.success=b.success;mejs.MediaPluginBridge.registerPluginElement(l,j,c);k.className="me-plugin";k.id=l+"_container";a.isVideo?c.parentNode.insertBefore(k,c):document.body.insertBefore(k,document.body.childNodes[0]);d=["id="+l,"isvideo="+(a.isVideo?"true":"false"),"autoplay="+(d?"true":"false"),"preload="+e,"width="+f,"startvolume="+b.startVolume,"timerrate="+b.timerRate,"flashstreamer="+b.flashStreamer,"height="+h];if(a.url!==null)a.method=="flash"?d.push("file="+mejs.Utility.encodeUrl(a.url)):
-d.push("file="+a.url);b.enablePluginDebug&&d.push("debug=true");b.enablePluginSmoothing&&d.push("smoothing=true");g&&d.push("controls=true");if(b.pluginVars)d=d.concat(b.pluginVars);switch(a.method){case "silverlight":k.innerHTML='<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" id="'+l+'" name="'+l+'" width="'+f+'" height="'+h+'"><param name="initParams" value="'+d.join(",")+'" /><param name="windowless" value="true" /><param name="background" value="black" /><param name="minRuntimeVersion" value="3.0.0.0" /><param name="autoUpgrade" value="true" /><param name="source" value="'+
-b.pluginPath+b.silverlightName+'" /></object>';break;case "flash":if(mejs.MediaFeatures.isIE){a=document.createElement("div");k.appendChild(a);a.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="'+l+'" width="'+f+'" height="'+h+'"><param name="movie" value="'+b.pluginPath+b.flashName+"?x="+new Date+'" /><param name="flashvars" value="'+d.join("&amp;")+'" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /></object>'}else k.innerHTML=
-'<embed id="'+l+'" name="'+l+'" play="true" loop="false" quality="high" bgcolor="#000000" wmode="transparent" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="//www.macromedia.com/go/getflashplayer" src="'+b.pluginPath+b.flashName+'" flashvars="'+d.join("&")+'" width="'+f+'" height="'+h+'"></embed>';break;case "youtube":b=a.url.substr(a.url.lastIndexOf("=")+1);youtubeSettings={container:k,containerId:k.id,pluginMediaElement:j,pluginId:l,videoId:b,
-height:h,width:f};mejs.PluginDetector.hasPluginVersion("flash",[10,0,0])?mejs.YouTubeApi.createFlash(youtubeSettings):mejs.YouTubeApi.enqueueIframe(youtubeSettings);break;case "vimeo":j.vimeoid=a.url.substr(a.url.lastIndexOf("/")+1);k.innerHTML='<iframe src="http://player.vimeo.com/video/'+j.vimeoid+'?portrait=0&byline=0&title=0" width="'+f+'" height="'+h+'" frameborder="0"></iframe>'}c.style.display="none";return j},updateNative:function(a,b){var c=a.htmlMediaElement,d;for(d in mejs.HtmlMediaElement)c[d]=
-mejs.HtmlMediaElement[d];b.success(c,c);return c}};
-mejs.YouTubeApi={isIframeStarted:false,isIframeLoaded:false,loadIframeApi:function(){if(!this.isIframeStarted){var a=document.createElement("script");a.src="http://www.youtube.com/player_api";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b);this.isIframeStarted=true}},iframeQueue:[],enqueueIframe:function(a){if(this.isLoaded)this.createIframe(a);else{this.loadIframeApi();this.iframeQueue.push(a)}},createIframe:function(a){var b=a.pluginMediaElement,c=new YT.Player(a.containerId,
+this.attributes},removeAttribute:function(a){delete this.attributes[a]},getAttribute:function(a){if(this.hasAttribute(a))return this.attributes[a];return""},setAttribute:function(a,b){this.attributes[a]=b},remove:function(){mejs.Utility.removeSwf(this.pluginElement.id);mejs.MediaPluginBridge.unregisterPluginElement(this.pluginElement.id)}};
+mejs.MediaPluginBridge={pluginMediaElements:{},htmlMediaElements:{},registerPluginElement:function(a,b,c){this.pluginMediaElements[a]=b;this.htmlMediaElements[a]=c},unregisterPluginElement:function(a){delete this.pluginMediaElements[a];delete this.htmlMediaElements[a]},initPlugin:function(a){var b=this.pluginMediaElements[a],c=this.htmlMediaElements[a];if(b){switch(b.pluginType){case "flash":b.pluginElement=b.pluginApi=document.getElementById(a);break;case "silverlight":b.pluginElement=document.getElementById(b.id);
+b.pluginApi=b.pluginElement.Content.MediaElementJS}b.pluginApi!=null&&b.success&&b.success(b,c)}},fireEvent:function(a,b,c){var d,e;a=this.pluginMediaElements[a];b={type:b,target:a};for(d in c){a[d]=c[d];b[d]=c[d]}e=c.bufferedTime||0;b.target.buffered=b.buffered={start:function(){return 0},end:function(){return e},length:1};a.dispatchEvent(b.type,b)}};
+mejs.MediaElementDefaults={mode:"auto",plugins:["flash","silverlight","youtube","vimeo"],enablePluginDebug:false,type:"",pluginPath:mejs.Utility.getScriptPath(["mediaelement.js","mediaelement.min.js","mediaelement-and-player.js","mediaelement-and-player.min.js"]),flashName:"flashmediaelement.swf",flashStreamer:"",enablePluginSmoothing:false,enablePseudoStreaming:false,pseudoStreamingStartQueryParam:"start",silverlightName:"silverlightmediaelement.xap",defaultVideoWidth:480,defaultVideoHeight:270,
+pluginWidth:-1,pluginHeight:-1,pluginVars:[],timerRate:250,startVolume:0.8,success:function(){},error:function(){}};mejs.MediaElement=function(a,b){return mejs.HtmlMediaElementShim.create(a,b)};
+mejs.HtmlMediaElementShim={create:function(a,b){var c=mejs.MediaElementDefaults,d=typeof a=="string"?document.getElementById(a):a,e=d.tagName.toLowerCase(),f=e==="audio"||e==="video",g=f?d.getAttribute("src"):d.getAttribute("href");e=d.getAttribute("poster");var h=d.getAttribute("autoplay"),l=d.getAttribute("preload"),j=d.getAttribute("controls"),k;for(k in b)c[k]=b[k];g=typeof g=="undefined"||g===null||g==""?null:g;e=typeof e=="undefined"||e===null?"":e;l=typeof l=="undefined"||l===null||l==="false"?
+"none":l;h=!(typeof h=="undefined"||h===null||h==="false");j=!(typeof j=="undefined"||j===null||j==="false");k=this.determinePlayback(d,c,mejs.MediaFeatures.supportsMediaTag,f,g);k.url=k.url!==null?mejs.Utility.absolutizeUrl(k.url):"";if(k.method=="native"){if(mejs.MediaFeatures.isBustedAndroid){d.src=k.url;d.addEventListener("click",function(){d.play()},false)}return this.updateNative(k,c,h,l)}else if(k.method!=="")return this.createPlugin(k,c,e,h,l,j);else{this.createErrorMessage(k,c,e);return this}},
+determinePlayback:function(a,b,c,d,e){var f=[],g,h,l,j={method:"",url:"",htmlMediaElement:a,isVideo:a.tagName.toLowerCase()!="audio"},k;if(typeof b.type!="undefined"&&b.type!=="")if(typeof b.type=="string")f.push({type:b.type,url:e});else for(g=0;g<b.type.length;g++)f.push({type:b.type[g],url:e});else if(e!==null){l=this.formatType(e,a.getAttribute("type"));f.push({type:l,url:e})}else for(g=0;g<a.childNodes.length;g++){h=a.childNodes[g];if(h.nodeType==1&&h.tagName.toLowerCase()=="source"){e=h.getAttribute("src");
+l=this.formatType(e,h.getAttribute("type"));h=h.getAttribute("media");if(!h||!window.matchMedia||window.matchMedia&&window.matchMedia(h).matches)f.push({type:l,url:e})}}if(!d&&f.length>0&&f[0].url!==null&&this.getTypeFromFile(f[0].url).indexOf("audio")>-1)j.isVideo=false;if(mejs.MediaFeatures.isBustedAndroid)a.canPlayType=function(m){return m.match(/video\/(mp4|m4v)/gi)!==null?"maybe":""};if(c&&(b.mode==="auto"||b.mode==="auto_plugin"||b.mode==="native")&&!mejs.MediaFeatures.isBustedNativeHTTPS){if(!d){g=
+document.createElement(j.isVideo?"video":"audio");a.parentNode.insertBefore(g,a);a.style.display="none";j.htmlMediaElement=a=g}for(g=0;g<f.length;g++)if(a.canPlayType(f[g].type).replace(/no/,"")!==""||a.canPlayType(f[g].type.replace(/mp3/,"mpeg")).replace(/no/,"")!==""){j.method="native";j.url=f[g].url;break}if(j.method==="native"){if(j.url!==null)a.src=j.url;if(b.mode!=="auto_plugin")return j}}if(b.mode==="auto"||b.mode==="auto_plugin"||b.mode==="shim")for(g=0;g<f.length;g++){l=f[g].type;for(a=0;a<
+b.plugins.length;a++){e=b.plugins[a];h=mejs.plugins[e];for(c=0;c<h.length;c++){k=h[c];if(k.version==null||mejs.PluginDetector.hasPluginVersion(e,k.version))for(d=0;d<k.types.length;d++)if(l==k.types[d]){j.method=e;j.url=f[g].url;return j}}}}if(b.mode==="auto_plugin"&&j.method==="native")return j;if(j.method===""&&f.length>0)j.url=f[0].url;return j},formatType:function(a,b){return a&&!b?this.getTypeFromFile(a):b&&~b.indexOf(";")?b.substr(0,b.indexOf(";")):b},getTypeFromFile:function(a){a=a.split("?")[0];
+a=a.substring(a.lastIndexOf(".")+1).toLowerCase();return(/(mp4|m4v|ogg|ogv|webm|webmv|flv|wmv|mpeg|mov)/gi.test(a)?"video":"audio")+"/"+this.getTypeFromExtension(a)},getTypeFromExtension:function(a){switch(a){case "mp4":case "m4v":return"mp4";case "webm":case "webma":case "webmv":return"webm";case "ogg":case "oga":case "ogv":return"ogg";default:return a}},createErrorMessage:function(a,b,c){var d=a.htmlMediaElement,e=document.createElement("div");e.className="me-cannotplay";try{e.style.width=d.width+
+"px";e.style.height=d.height+"px"}catch(f){}e.innerHTML=b.customError?b.customError:c!==""?'<a href="'+a.url+'"><img src="'+c+'" width="100%" height="100%" /></a>':'<a href="'+a.url+'"><span>'+mejs.i18n.t("Download File")+"</span></a>";d.parentNode.insertBefore(e,d);d.style.display="none";b.error(d)},createPlugin:function(a,b,c,d,e,f){c=a.htmlMediaElement;var g=1,h=1,l="me_"+a.method+"_"+mejs.meIndex++,j=new mejs.PluginMediaElement(l,a.method,a.url),k=document.createElement("div"),m;j.tagName=c.tagName;
+for(m=0;m<c.attributes.length;m++){var n=c.attributes[m];n.specified==true&&j.setAttribute(n.name,n.value)}for(m=c.parentNode;m!==null&&m.tagName.toLowerCase()!="body";){if(m.parentNode.tagName.toLowerCase()=="p"){m.parentNode.parentNode.insertBefore(m,m.parentNode);break}m=m.parentNode}if(a.isVideo){g=b.pluginWidth>0?b.pluginWidth:b.videoWidth>0?b.videoWidth:c.getAttribute("width")!==null?c.getAttribute("width"):b.defaultVideoWidth;h=b.pluginHeight>0?b.pluginHeight:b.videoHeight>0?b.videoHeight:
+c.getAttribute("height")!==null?c.getAttribute("height"):b.defaultVideoHeight;g=mejs.Utility.encodeUrl(g);h=mejs.Utility.encodeUrl(h)}else if(b.enablePluginDebug){g=320;h=240}j.success=b.success;mejs.MediaPluginBridge.registerPluginElement(l,j,c);k.className="me-plugin";k.id=l+"_container";a.isVideo?c.parentNode.insertBefore(k,c):document.body.insertBefore(k,document.body.childNodes[0]);d=["id="+l,"isvideo="+(a.isVideo?"true":"false"),"autoplay="+(d?"true":"false"),"preload="+e,"width="+g,"startvolume="+
+b.startVolume,"timerrate="+b.timerRate,"flashstreamer="+b.flashStreamer,"height="+h,"pseudostreamstart="+b.pseudoStreamingStartQueryParam];if(a.url!==null)a.method=="flash"?d.push("file="+mejs.Utility.encodeUrl(a.url)):d.push("file="+a.url);b.enablePluginDebug&&d.push("debug=true");b.enablePluginSmoothing&&d.push("smoothing=true");b.enablePseudoStreaming&&d.push("pseudostreaming=true");f&&d.push("controls=true");if(b.pluginVars)d=d.concat(b.pluginVars);switch(a.method){case "silverlight":k.innerHTML=
+'<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" id="'+l+'" name="'+l+'" width="'+g+'" height="'+h+'" class="mejs-shim"><param name="initParams" value="'+d.join(",")+'" /><param name="windowless" value="true" /><param name="background" value="black" /><param name="minRuntimeVersion" value="3.0.0.0" /><param name="autoUpgrade" value="true" /><param name="source" value="'+b.pluginPath+b.silverlightName+'" /></object>';break;case "flash":if(mejs.MediaFeatures.isIE){a=
+document.createElement("div");k.appendChild(a);a.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="'+l+'" width="'+g+'" height="'+h+'" class="mejs-shim"><param name="movie" value="'+b.pluginPath+b.flashName+"?x="+new Date+'" /><param name="flashvars" value="'+d.join("&amp;")+'" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /></object>'}else k.innerHTML=
+'<embed id="'+l+'" name="'+l+'" play="true" loop="false" quality="high" bgcolor="#000000" wmode="transparent" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="//www.macromedia.com/go/getflashplayer" src="'+b.pluginPath+b.flashName+'" flashvars="'+d.join("&")+'" width="'+g+'" height="'+h+'" class="mejs-shim"></embed>';break;case "youtube":b=a.url.substr(a.url.lastIndexOf("=")+1);youtubeSettings={container:k,containerId:k.id,pluginMediaElement:j,pluginId:l,
+videoId:b,height:h,width:g};mejs.PluginDetector.hasPluginVersion("flash",[10,0,0])?mejs.YouTubeApi.createFlash(youtubeSettings):mejs.YouTubeApi.enqueueIframe(youtubeSettings);break;case "vimeo":j.vimeoid=a.url.substr(a.url.lastIndexOf("/")+1);k.innerHTML='<iframe src="http://player.vimeo.com/video/'+j.vimeoid+'?portrait=0&byline=0&title=0" width="'+g+'" height="'+h+'" frameborder="0" class="mejs-shim"></iframe>'}c.style.display="none";return j},updateNative:function(a,b){var c=a.htmlMediaElement,
+d;for(d in mejs.HtmlMediaElement)c[d]=mejs.HtmlMediaElement[d];b.success(c,c);return c}};
+mejs.YouTubeApi={isIframeStarted:false,isIframeLoaded:false,loadIframeApi:function(){if(!this.isIframeStarted){var a=document.createElement("script");a.src="//www.youtube.com/player_api";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b);this.isIframeStarted=true}},iframeQueue:[],enqueueIframe:function(a){if(this.isLoaded)this.createIframe(a);else{this.loadIframeApi();this.iframeQueue.push(a)}},createIframe:function(a){var b=a.pluginMediaElement,c=new YT.Player(a.containerId,
{height:a.height,width:a.width,videoId:a.videoId,playerVars:{controls:0},events:{onReady:function(){a.pluginMediaElement.pluginApi=c;mejs.MediaPluginBridge.initPlugin(a.pluginId);setInterval(function(){mejs.YouTubeApi.createEvent(c,b,"timeupdate")},250)},onStateChange:function(d){mejs.YouTubeApi.handleStateChange(d.data,c,b)}}})},createEvent:function(a,b,c){c={type:c,target:b};if(a&&a.getDuration){b.currentTime=c.currentTime=a.getCurrentTime();b.duration=c.duration=a.getDuration();c.paused=b.paused;
c.ended=b.ended;c.muted=a.isMuted();c.volume=a.getVolume()/100;c.bytesTotal=a.getVideoBytesTotal();c.bufferedBytes=a.getVideoBytesLoaded();var d=c.bufferedBytes/c.bytesTotal*c.duration;c.target.buffered=c.buffered={start:function(){return 0},end:function(){return d},length:1}}b.dispatchEvent(c.type,c)},iFrameReady:function(){for(this.isIframeLoaded=this.isLoaded=true;this.iframeQueue.length>0;)this.createIframe(this.iframeQueue.pop())},flashPlayers:{},createFlash:function(a){this.flashPlayers[a.pluginId]=
-a;var b,c="http://www.youtube.com/apiplayer?enablejsapi=1&amp;playerapiid="+a.pluginId+"&amp;version=3&amp;autoplay=0&amp;controls=0&amp;modestbranding=1&loop=0";if(mejs.MediaFeatures.isIE){b=document.createElement("div");a.container.appendChild(b);b.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="'+a.pluginId+'" width="'+a.width+'" height="'+a.height+'"><param name="movie" value="'+c+'" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /></object>'}else a.container.innerHTML=
-'<object type="application/x-shockwave-flash" id="'+a.pluginId+'" data="'+c+'" width="'+a.width+'" height="'+a.height+'" style="visibility: visible; "><param name="allowScriptAccess" value="always"><param name="wmode" value="transparent"></object>'},flashReady:function(a){var b=this.flashPlayers[a],c=document.getElementById(a),d=b.pluginMediaElement;d.pluginApi=d.pluginElement=c;mejs.MediaPluginBridge.initPlugin(a);c.cueVideoById(b.videoId);a=b.containerId+"_callback";window[a]=function(e){mejs.YouTubeApi.handleStateChange(e,
-c,d)};c.addEventListener("onStateChange",a);setInterval(function(){mejs.YouTubeApi.createEvent(c,d,"timeupdate")},250)},handleStateChange:function(a,b,c){switch(a){case -1:c.paused=true;c.ended=true;mejs.YouTubeApi.createEvent(b,c,"loadedmetadata");break;case 0:c.paused=false;c.ended=true;mejs.YouTubeApi.createEvent(b,c,"ended");break;case 1:c.paused=false;c.ended=false;mejs.YouTubeApi.createEvent(b,c,"play");mejs.YouTubeApi.createEvent(b,c,"playing");break;case 2:c.paused=true;c.ended=false;mejs.YouTubeApi.createEvent(b,
-c,"pause");break;case 3:mejs.YouTubeApi.createEvent(b,c,"progress")}}};function onYouTubePlayerAPIReady(){mejs.YouTubeApi.iFrameReady()}function onYouTubePlayerReady(a){mejs.YouTubeApi.flashReady(a)}window.mejs=mejs;window.MediaElement=mejs.MediaElement;
-(function(a,b,c){var d={locale:{strings:{}},methods:{}};d.locale.getLanguage=function(){return{language:navigator.language}};d.locale.INIT_LANGUAGE=d.locale.getLanguage();d.methods.checkPlain=function(e){var g,f,h={"&":"&amp;",'"':"&quot;","<":"&lt;",">":"&gt;"};e=String(e);for(g in h)if(h.hasOwnProperty(g)){f=RegExp(g,"g");e=e.replace(f,h[g])}return e};d.methods.formatString=function(e,g){for(var f in g){switch(f.charAt(0)){case "@":g[f]=d.methods.checkPlain(g[f]);break;case "!":break;default:g[f]=
-'<em class="placeholder">'+d.methods.checkPlain(g[f])+"</em>"}e=e.replace(f,g[f])}return e};d.methods.t=function(e,g,f){if(d.locale.strings&&d.locale.strings[f.context]&&d.locale.strings[f.context][e])e=d.locale.strings[f.context][e];if(g)e=d.methods.formatString(e,g);return e};d.t=function(e,g,f){if(typeof e==="string"&&e.length>0){var h=d.locale.getLanguage();f=f||{context:h.language};return d.methods.t(e,g,f)}else throw{name:"InvalidArgumentException",message:"First argument is either not a string or empty."};
-};c.i18n=d})(jQuery,document,mejs);(function(a){a.de={Fullscreen:"Vollbild","Go Fullscreen":"Vollbild an","Turn off Fullscreen":"Vollbild aus",Close:"Schlie\u00dfen"}})(mejs.i18n.locale.strings);
+a;var b,c="//www.youtube.com/apiplayer?enablejsapi=1&amp;playerapiid="+a.pluginId+"&amp;version=3&amp;autoplay=0&amp;controls=0&amp;modestbranding=1&loop=0";if(mejs.MediaFeatures.isIE){b=document.createElement("div");a.container.appendChild(b);b.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="'+a.pluginId+'" width="'+a.width+'" height="'+a.height+'" class="mejs-shim"><param name="movie" value="'+
+c+'" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /></object>'}else a.container.innerHTML='<object type="application/x-shockwave-flash" id="'+a.pluginId+'" data="'+c+'" width="'+a.width+'" height="'+a.height+'" style="visibility: visible; " class="mejs-shim"><param name="allowScriptAccess" value="always"><param name="wmode" value="transparent"></object>'},flashReady:function(a){var b=this.flashPlayers[a],c=
+document.getElementById(a),d=b.pluginMediaElement;d.pluginApi=d.pluginElement=c;mejs.MediaPluginBridge.initPlugin(a);c.cueVideoById(b.videoId);a=b.containerId+"_callback";window[a]=function(e){mejs.YouTubeApi.handleStateChange(e,c,d)};c.addEventListener("onStateChange",a);setInterval(function(){mejs.YouTubeApi.createEvent(c,d,"timeupdate")},250)},handleStateChange:function(a,b,c){switch(a){case -1:c.paused=true;c.ended=true;mejs.YouTubeApi.createEvent(b,c,"loadedmetadata");break;case 0:c.paused=false;
+c.ended=true;mejs.YouTubeApi.createEvent(b,c,"ended");break;case 1:c.paused=false;c.ended=false;mejs.YouTubeApi.createEvent(b,c,"play");mejs.YouTubeApi.createEvent(b,c,"playing");break;case 2:c.paused=true;c.ended=false;mejs.YouTubeApi.createEvent(b,c,"pause");break;case 3:mejs.YouTubeApi.createEvent(b,c,"progress")}}};function onYouTubePlayerAPIReady(){mejs.YouTubeApi.iFrameReady()}function onYouTubePlayerReady(a){mejs.YouTubeApi.flashReady(a)}window.mejs=mejs;window.MediaElement=mejs.MediaElement;
+(function(a,b){var c={locale:{strings:{}},methods:{}};c.locale.getLanguage=function(){return c.locale||{language:navigator.language}};c.locale.INIT_LANGUAGE=c.locale.getLanguage();c.methods.checkPlain=function(d){var e,f,g={"&":"&amp;",'"':"&quot;","<":"&lt;",">":"&gt;"};d=String(d);for(e in g)if(g.hasOwnProperty(e)){f=RegExp(e,"g");d=d.replace(f,g[e])}return d};c.methods.formatString=function(d,e){for(var f in e){switch(f.charAt(0)){case "@":e[f]=c.methods.checkPlain(e[f]);break;case "!":break;default:e[f]=
+'<em class="placeholder">'+c.methods.checkPlain(e[f])+"</em>"}d=d.replace(f,e[f])}return d};c.methods.t=function(d,e,f){if(c.locale.strings&&c.locale.strings[f.context]&&c.locale.strings[f.context][d])d=c.locale.strings[f.context][d];if(e)d=c.methods.formatString(d,e);return d};c.t=function(d,e,f){if(typeof d==="string"&&d.length>0){var g=c.locale.getLanguage();f=f||{context:g.language};return c.methods.t(d,e,f)}else throw{name:"InvalidArgumentException",message:"First argument is either not a string or empty."};
+};b.i18n=c})(document,mejs);(function(a){if(mejs.i18n.locale.language&&mejs.i18n.locale.strings)a[mejs.i18n.locale.language]=mejs.i18n.locale.strings})(mejs.i18n.locale.strings);(function(a){a.de={Fullscreen:"Vollbild","Go Fullscreen":"Vollbild an","Turn off Fullscreen":"Vollbild aus",Close:"Schlie\u00dfen"}})(mejs.i18n.locale.strings);(function(a){a.zh={Fullscreen:"\u5168\u87a2\u5e55","Go Fullscreen":"\u5168\u5c4f\u6a21\u5f0f","Turn off Fullscreen":"\u9000\u51fa\u5168\u5c4f\u6a21\u5f0f",Close:"\u95dc\u9589"}})(mejs.i18n.locale.strings);
diff --git a/lib/mediaelementjs/mediaelementplayer.css b/lib/mediaelementjs/mediaelementplayer.css
index dfc1910b..4746c32c 100644
--- a/lib/mediaelementjs/mediaelementplayer.css
+++ b/lib/mediaelementjs/mediaelementplayer.css
@@ -1 +1 @@
-.mejs-container{position:relative;background:#000;font-family:Helvetica,Arial;text-align:left;vertical-align:top;text-indent:0;}.me-plugin{position:absolute;}.mejs-embed,.mejs-embed body{width:100%;height:100%;margin:0;padding:0;background:#000;overflow:hidden;}.mejs-container-fullscreen{position:fixed;left:0;top:0;right:0;bottom:0;overflow:hidden;z-index:1000;}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{width:100%;height:100%;}.mejs-background{position:absolute;top:0;left:0;}.mejs-mediaelement{position:absolute;top:0;left:0;width:100%;height:100%;}.mejs-poster{position:absolute;top:0;left:0;}.mejs-poster img{border:0;padding:0;border:0;display:block;}.mejs-overlay{position:absolute;top:0;left:0;}.mejs-overlay-play{cursor:pointer;}.mejs-overlay-button{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;background:url(bigplay.svg) no-repeat;}.no-svg .mejs-overlay-button{background-image:url(bigplay.png);}.mejs-overlay:hover .mejs-overlay-button{background-position:0 -100px;}.mejs-overlay-loading{position:absolute;top:50%;left:50%;width:80px;height:80px;margin:-40px 0 0 -40px;background:#333;background:url(background.png);background:rgba(0,0,0,0.9);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.9)),to(rgba(0,0,0,0.9)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-moz-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-o-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-ms-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:linear-gradient(rgba(50,50,50,0.9),rgba(0,0,0,0.9));}.mejs-overlay-loading span{display:block;width:80px;height:80px;background:transparent url(loading.gif) 50% 50% no-repeat;}.mejs-container .mejs-controls{position:absolute;background:none;list-style-type:none;margin:0;padding:0;bottom:0;left:0;background:url(background.png);background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));height:30px;width:100%;}.mejs-container .mejs-controls div{list-style-type:none;background-image:none;display:block;float:left;margin:0;padding:0;width:26px;height:26px;font-size:11px;line-height:11px;background:0;font-family:Helvetica,Arial;border:0;}.mejs-controls .mejs-button button{cursor:pointer;display:block;font-size:0;line-height:0;text-decoration:none;margin:7px 5px;padding:0;position:absolute;height:16px;width:16px;border:0;background:transparent url(controls.svg) no-repeat;}.no-svg .mejs-controls .mejs-button button{background-image:url(controls.png);}.mejs-controls .mejs-button button:focus{outline:solid 1px yellow;}.mejs-container .mejs-controls .mejs-time{color:#fff;display:block;height:17px;width:auto;padding:8px 3px 0 3px;overflow:hidden;text-align:center;padding:auto 4px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.mejs-container .mejs-controls .mejs-time span{font-size:11px;color:#fff;line-height:12px;display:block;float:left;margin:1px 2px 0 0;width:auto;}.mejs-controls .mejs-play button{background-position:0 0;}.mejs-controls .mejs-pause button{background-position:0 -16px;}.mejs-controls .mejs-stop button{background-position:-112px 0;}.mejs-controls div.mejs-time-rail{width:200px;padding-top:5px;}.mejs-controls .mejs-time-rail span{display:block;position:absolute;width:180px;height:10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;cursor:pointer;}.mejs-controls .mejs-time-rail .mejs-time-total{margin:5px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8));}.mejs-controls .mejs-time-rail .mejs-time-buffering{width:100%;background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:15px 15px;-moz-background-size:15px 15px;-o-background-size:15px 15px;background-size:15px 15px;-webkit-animation:buffering-stripes 2s linear infinite;-moz-animation:buffering-stripes 2s linear infinite;-ms-animation:buffering-stripes 2s linear infinite;-o-animation:buffering-stripes 2s linear infinite;animation:buffering-stripes 2s linear infinite;}@-webkit-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-moz-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-ms-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-o-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#3caac8;background:rgba(60,170,200,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(44,124,145,0.8)),to(rgba(78,183,212,0.8)));background:-webkit-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-moz-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-o-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-ms-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:linear-gradient(rgba(44,124,145,0.8),rgba(78,183,212,0.8));width:0;}.mejs-controls .mejs-time-rail .mejs-time-current{width:0;background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));}.mejs-controls .mejs-time-rail .mejs-time-handle{display:none;position:absolute;margin:0;width:10px;background:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;cursor:pointer;border:solid 2px #333;top:-2px;text-align:center;}.mejs-controls .mejs-time-rail .mejs-time-float{position:absolute;display:none;background:#eee;width:36px;height:17px;border:solid 1px #333;top:-26px;margin-left:-18px;text-align:center;color:#111;}.mejs-controls .mejs-time-rail .mejs-time-float-current{margin:2px;width:30px;display:block;text-align:center;left:0;}.mejs-controls .mejs-time-rail .mejs-time-float-corner{position:absolute;display:block;width:0;height:0;line-height:0;border:solid 5px #eee;border-color:#eee transparent transparent transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:15px;left:13px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float{width:48px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current{width:44px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner{left:18px;}.mejs-controls .mejs-fullscreen-button button{background-position:-32px 0;}.mejs-controls .mejs-unfullscreen button{background-position:-32px -16px;}.mejs-controls .mejs-mute button{background-position:-16px -16px;}.mejs-controls .mejs-unmute button{background-position:-16px 0;}.mejs-controls .mejs-volume-button{position:relative;}.mejs-controls .mejs-volume-button .mejs-volume-slider{display:none;height:115px;width:25px;background:url(background.png);background:rgba(50,50,50,0.7);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:-115px;left:0;z-index:1;position:absolute;margin:0;}.mejs-controls .mejs-volume-button:hover{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.5);margin:0;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.9);margin:0;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle{position:absolute;left:4px;top:-3px;width:16px;height:6px;background:#ddd;background:rgba(255,255,255,0.9);cursor:N-resize;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;margin:0;}.mejs-controls div.mejs-horizontal-volume-slider{height:26px;width:60px;position:relative;}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8));}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle{display:none;}.mejs-controls .mejs-captions-button{position:relative;}.mejs-controls .mejs-captions-button button{background-position:-48px 0;}.mejs-controls .mejs-captions-button .mejs-captions-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label{width:100px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px;}.mejs-controls .mejs-captions-button .mejs-captions-translations{font-size:10px;margin:0 0 5px 0;}.mejs-chapters{position:absolute;top:0;left:0;-xborder-right:solid 1px #fff;width:10000px;z-index:1;}.mejs-chapters .mejs-chapter{position:absolute;float:left;background:#222;background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#323232,endColorstr=#000000);overflow:hidden;border:0;}.mejs-chapters .mejs-chapter .mejs-chapter-block{font-size:11px;color:#fff;padding:5px;display:block;border-right:solid 1px #333;border-bottom:solid 1px #333;cursor:pointer;}.mejs-chapters .mejs-chapter .mejs-chapter-block-last{border-right:none;}.mejs-chapters .mejs-chapter .mejs-chapter-block:hover{background:#666;background:rgba(102,102,102,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(102,102,102,0.7)),to(rgba(50,50,50,0.6)));background:-webkit-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-moz-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-o-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-ms-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:linear-gradient(rgba(102,102,102,0.7),rgba(50,50,50,0.6));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#666666,endColorstr=#323232);}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title{font-size:12px;font-weight:bold;display:block;white-space:nowrap;text-overflow:ellipsis;margin:0 0 3px 0;line-height:12px;}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan{font-size:12px;line-height:12px;margin:3px 0 4px 0;display:block;white-space:nowrap;text-overflow:ellipsis;}.mejs-captions-layer{position:absolute;bottom:0;left:0;text-align:center;line-height:22px;font-size:12px;color:#fff;}.mejs-captions-layer a{color:#fff;text-decoration:underline;}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:normal;}.mejs-captions-position{position:absolute;width:100%;bottom:15px;left:0;}.mejs-captions-position-hover{bottom:45px;}.mejs-captions-text{padding:3px 5px;background:url(background.png);background:rgba(20,20,20,0.8);}.mejs-clear{clear:both;}.me-cannotplay a{color:#fff;font-weight:bold;}.me-cannotplay span{padding:15px;display:block;}.mejs-controls .mejs-loop-off button{background-position:-64px -16px;}.mejs-controls .mejs-loop-on button{background-position:-64px 0;}.mejs-controls .mejs-backlight-off button{background-position:-80px -16px;}.mejs-controls .mejs-backlight-on button{background-position:-80px 0;}.mejs-controls .mejs-picturecontrols-button{background-position:-96px 0;}.mejs-contextmenu{position:absolute;width:150px;padding:10px;border-radius:4px;top:0;left:0;background:#fff;border:solid 1px #999;z-index:1001;}.mejs-contextmenu .mejs-contextmenu-separator{height:1px;font-size:0;margin:5px 6px;background:#333;}.mejs-contextmenu .mejs-contextmenu-item{font-family:Helvetica,Arial;font-size:12px;padding:4px 6px;cursor:pointer;color:#333;}.mejs-contextmenu .mejs-contextmenu-item:hover{background:#2C7C91;color:#fff;}.mejs-controls .mejs-sourcechooser-button{position:relative;}.mejs-controls .mejs-sourcechooser-button button{background-position:-128px 0;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label{width:100px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px;}.mejs-postroll-layer{position:absolute;bottom:0;left:0;width:100%;height:100%;background:url(background.png);background:rgba(50,50,50,0.7);z-index:1000;overflow:hidden;}.mejs-postroll-layer-content{width:100%;height:100%;}.mejs-postroll-close{position:absolute;right:0;top:0;background:url(background.png);background:rgba(50,50,50,0.7);color:#fff;padding:4px;z-index:100;cursor:pointer;} \ No newline at end of file
+.mejs-container{position:relative;background:#000;font-family:Helvetica,Arial;text-align:left;vertical-align:top;text-indent:0;}.me-plugin{position:absolute;}.mejs-embed,.mejs-embed body{width:100%;height:100%;margin:0;padding:0;background:#000;overflow:hidden;}.mejs-container-fullscreen{position:fixed;left:0;top:0;right:0;bottom:0;overflow:hidden;z-index:1000;}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{width:100%;height:100%;}.mejs-clear{clear:both;}.mejs-background{position:absolute;top:0;left:0;}.mejs-mediaelement{position:absolute;top:0;left:0;width:100%;height:100%;}.mejs-poster{position:absolute;top:0;left:0;background-size:contain;background-position:50% 50%;background-repeat:no-repeat;}:root .mejs-poster img{display:none;}.mejs-poster img{border:0;padding:0;border:0;}.mejs-overlay{position:absolute;top:0;left:0;}.mejs-overlay-play{cursor:pointer;}.mejs-overlay-button{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;background:url(bigplay.svg) no-repeat;}.no-svg .mejs-overlay-button{background-image:url(bigplay.png);}.mejs-overlay:hover .mejs-overlay-button{background-position:0 -100px;}.mejs-overlay-loading{position:absolute;top:50%;left:50%;width:80px;height:80px;margin:-40px 0 0 -40px;background:#333;background:url(background.png);background:rgba(0,0,0,0.9);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.9)),to(rgba(0,0,0,0.9)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-moz-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-o-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-ms-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:linear-gradient(rgba(50,50,50,0.9),rgba(0,0,0,0.9));}.mejs-overlay-loading span{display:block;width:80px;height:80px;background:transparent url(loading.gif) 50% 50% no-repeat;}.mejs-container .mejs-controls{position:absolute;list-style-type:none;margin:0;padding:0;bottom:0;left:0;background:url(background.png);background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));height:30px;width:100%;}.mejs-container .mejs-controls div{list-style-type:none;background-image:none;display:block;float:left;margin:0;padding:0;width:26px;height:26px;font-size:11px;line-height:11px;font-family:Helvetica,Arial;border:0;}.mejs-controls .mejs-button button{cursor:pointer;display:block;font-size:0;line-height:0;text-decoration:none;margin:7px 5px;padding:0;position:absolute;height:16px;width:16px;border:0;background:transparent url(controls.svg) no-repeat;}.no-svg .mejs-controls .mejs-button button{background-image:url(controls.png);}.mejs-controls .mejs-button button:focus{outline:solid 1px yellow;}.mejs-container .mejs-controls .mejs-time{color:#fff;display:block;height:17px;width:auto;padding:8px 3px 0 3px;overflow:hidden;text-align:center;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.mejs-container .mejs-controls .mejs-time span{color:#fff;font-size:11px;line-height:12px;display:block;float:left;margin:1px 2px 0 0;width:auto;}.mejs-controls .mejs-play button{background-position:0 0;}.mejs-controls .mejs-pause button{background-position:0 -16px;}.mejs-controls .mejs-stop button{background-position:-112px 0;}.mejs-controls div.mejs-time-rail{width:200px;padding-top:5px;}.mejs-controls .mejs-time-rail span{display:block;position:absolute;width:180px;height:10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;cursor:pointer;}.mejs-controls .mejs-time-rail .mejs-time-total{margin:5px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8));}.mejs-controls .mejs-time-rail .mejs-time-buffering{width:100%;background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:15px 15px;-moz-background-size:15px 15px;-o-background-size:15px 15px;background-size:15px 15px;-webkit-animation:buffering-stripes 2s linear infinite;-moz-animation:buffering-stripes 2s linear infinite;-ms-animation:buffering-stripes 2s linear infinite;-o-animation:buffering-stripes 2s linear infinite;animation:buffering-stripes 2s linear infinite;}@-webkit-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-moz-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-ms-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-o-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#3caac8;background:rgba(60,170,200,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(44,124,145,0.8)),to(rgba(78,183,212,0.8)));background:-webkit-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-moz-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-o-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-ms-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:linear-gradient(rgba(44,124,145,0.8),rgba(78,183,212,0.8));width:0;}.mejs-controls .mejs-time-rail .mejs-time-current{background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));width:0;}.mejs-controls .mejs-time-rail .mejs-time-handle{display:none;position:absolute;margin:0;width:10px;background:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;cursor:pointer;border:solid 2px #333;top:-2px;text-align:center;}.mejs-controls .mejs-time-rail .mejs-time-float{position:absolute;display:none;background:#eee;width:36px;height:17px;border:solid 1px #333;top:-26px;margin-left:-18px;text-align:center;color:#111;}.mejs-controls .mejs-time-rail .mejs-time-float-current{margin:2px;width:30px;display:block;text-align:center;left:0;}.mejs-controls .mejs-time-rail .mejs-time-float-corner{position:absolute;display:block;width:0;height:0;line-height:0;border:solid 5px #eee;border-color:#eee transparent transparent transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:15px;left:13px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float{width:48px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current{width:44px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner{left:18px;}.mejs-controls .mejs-fullscreen-button button{background-position:-32px 0;}.mejs-controls .mejs-unfullscreen button{background-position:-32px -16px;}.mejs-controls .mejs-mute button{background-position:-16px -16px;}.mejs-controls .mejs-unmute button{background-position:-16px 0;}.mejs-controls .mejs-volume-button{position:relative;}.mejs-controls .mejs-volume-button .mejs-volume-slider{display:none;height:115px;width:25px;background:url(background.png);background:rgba(50,50,50,0.7);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:-115px;left:0;z-index:1;position:absolute;margin:0;}.mejs-controls .mejs-volume-button:hover{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.5);margin:0;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.9);margin:0;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle{position:absolute;left:4px;top:-3px;width:16px;height:6px;background:#ddd;background:rgba(255,255,255,0.9);cursor:N-resize;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;margin:0;}.mejs-controls div.mejs-horizontal-volume-slider{height:26px;width:60px;position:relative;}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8));}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle{display:none;}.mejs-controls .mejs-captions-button{position:relative;}.mejs-controls .mejs-captions-button button{background-position:-48px 0;}.mejs-controls .mejs-captions-button .mejs-captions-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label{width:100px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px;}.mejs-controls .mejs-captions-button .mejs-captions-translations{font-size:10px;margin:0 0 5px 0;}.mejs-chapters{position:absolute;top:0;left:0;-xborder-right:solid 1px #fff;width:10000px;z-index:1;}.mejs-chapters .mejs-chapter{position:absolute;float:left;background:#222;background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#323232,endColorstr=#000000);overflow:hidden;border:0;}.mejs-chapters .mejs-chapter .mejs-chapter-block{font-size:11px;color:#fff;padding:5px;display:block;border-right:solid 1px #333;border-bottom:solid 1px #333;cursor:pointer;}.mejs-chapters .mejs-chapter .mejs-chapter-block-last{border-right:none;}.mejs-chapters .mejs-chapter .mejs-chapter-block:hover{background:#666;background:rgba(102,102,102,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(102,102,102,0.7)),to(rgba(50,50,50,0.6)));background:-webkit-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-moz-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-o-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-ms-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:linear-gradient(rgba(102,102,102,0.7),rgba(50,50,50,0.6));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#666666,endColorstr=#323232);}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title{font-size:12px;font-weight:bold;display:block;white-space:nowrap;text-overflow:ellipsis;margin:0 0 3px 0;line-height:12px;}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan{font-size:12px;line-height:12px;margin:3px 0 4px 0;display:block;white-space:nowrap;text-overflow:ellipsis;}.mejs-captions-layer{position:absolute;bottom:0;left:0;text-align:center;line-height:22px;font-size:12px;color:#fff;}.mejs-captions-layer a{color:#fff;text-decoration:underline;}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:normal;}.mejs-captions-position{position:absolute;width:100%;bottom:15px;left:0;}.mejs-captions-position-hover{bottom:45px;}.mejs-captions-text{padding:3px 5px;background:url(background.png);background:rgba(20,20,20,0.8);}.me-cannotplay a{color:#fff;font-weight:bold;}.me-cannotplay span{padding:15px;display:block;}.mejs-controls .mejs-loop-off button{background-position:-64px -16px;}.mejs-controls .mejs-loop-on button{background-position:-64px 0;}.mejs-controls .mejs-backlight-off button{background-position:-80px -16px;}.mejs-controls .mejs-backlight-on button{background-position:-80px 0;}.mejs-controls .mejs-picturecontrols-button{background-position:-96px 0;}.mejs-contextmenu{position:absolute;width:150px;padding:10px;border-radius:4px;top:0;left:0;background:#fff;border:solid 1px #999;z-index:1001;}.mejs-contextmenu .mejs-contextmenu-separator{height:1px;font-size:0;margin:5px 6px;background:#333;}.mejs-contextmenu .mejs-contextmenu-item{font-family:Helvetica,Arial;font-size:12px;padding:4px 6px;cursor:pointer;color:#333;}.mejs-contextmenu .mejs-contextmenu-item:hover{background:#2C7C91;color:#fff;}.mejs-controls .mejs-sourcechooser-button{position:relative;}.mejs-controls .mejs-sourcechooser-button button{background-position:-128px 0;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label{width:100px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px;}.mejs-postroll-layer{position:absolute;bottom:0;left:0;width:100%;height:100%;background:url(background.png);background:rgba(50,50,50,0.7);z-index:1000;overflow:hidden;}.mejs-postroll-layer-content{width:100%;height:100%;}.mejs-postroll-close{position:absolute;right:0;top:0;background:url(background.png);background:rgba(50,50,50,0.7);color:#fff;padding:4px;z-index:100;cursor:pointer;} \ No newline at end of file
diff --git a/lib/mediaelementjs/mediaelementplayer.js b/lib/mediaelementjs/mediaelementplayer.js
index 16f1aa27..0706b7d4 100644
--- a/lib/mediaelementjs/mediaelementplayer.js
+++ b/lib/mediaelementjs/mediaelementplayer.js
@@ -5,90 +5,99 @@
* Creates a controller bar for HTML5 <video> add <audio> tags
* using jQuery and MediaElement.js (HTML5 Flash/Silverlight wrapper)
*
- * Copyright 2010-2012, John Dyer (http://j.hn/)
+ * Copyright 2010-2013, John Dyer (http://j.hn/)
* License: MIT
*
*/if(typeof jQuery!="undefined")mejs.$=jQuery;else if(typeof ender!="undefined")mejs.$=ender;
-(function(f){mejs.MepDefaults={poster:"",defaultVideoWidth:480,defaultVideoHeight:270,videoWidth:-1,videoHeight:-1,defaultAudioWidth:400,defaultAudioHeight:30,defaultSeekBackwardInterval:function(a){return a.duration*0.05},defaultSeekForwardInterval:function(a){return a.duration*0.05},audioWidth:-1,audioHeight:-1,startVolume:0.8,loop:false,autoRewind:true,enableAutosize:true,alwaysShowHours:false,showTimecodeFrameCount:false,framesPerSecond:25,autosizeProgress:true,alwaysShowControls:false,clickToPlayPause:true,
-iPadUseNativeControls:false,iPhoneUseNativeControls:false,AndroidUseNativeControls:false,features:["playpause","current","progress","duration","tracks","volume","fullscreen"],isVideo:true,enableKeyboard:true,pauseOtherPlayers:true,keyActions:[{keys:[32,179],action:function(a,b){b.paused||b.ended?b.play():b.pause()}},{keys:[38],action:function(a,b){b.setVolume(Math.min(b.volume+0.1,1))}},{keys:[40],action:function(a,b){b.setVolume(Math.max(b.volume-0.1,0))}},{keys:[37,227],action:function(a,b){if(!isNaN(b.duration)&&
-b.duration>0){if(a.isVideo){a.showControls();a.startControlsTimer()}var c=Math.max(b.currentTime-a.options.defaultSeekBackwardInterval(b),0);b.setCurrentTime(c)}}},{keys:[39,228],action:function(a,b){if(!isNaN(b.duration)&&b.duration>0){if(a.isVideo){a.showControls();a.startControlsTimer()}var c=Math.min(b.currentTime+a.options.defaultSeekForwardInterval(b),b.duration);b.setCurrentTime(c)}}},{keys:[70],action:function(a){if(typeof a.enterFullScreen!="undefined")a.isFullScreen?a.exitFullScreen():a.enterFullScreen()}}]};
-mejs.mepIndex=0;mejs.players=[];mejs.MediaElementPlayer=function(a,b){if(!(this instanceof mejs.MediaElementPlayer))return new mejs.MediaElementPlayer(a,b);this.$media=this.$node=f(a);this.node=this.media=this.$media[0];if(typeof this.node.player!="undefined")return this.node.player;else this.node.player=this;if(typeof b=="undefined")b=this.$node.data("mejsoptions");this.options=f.extend({},mejs.MepDefaults,b);mejs.players.push(this);this.init();return this};mejs.MediaElementPlayer.prototype={hasFocus:false,
-controlsAreVisible:true,init:function(){var a=this,b=mejs.MediaFeatures,c=f.extend(true,{},a.options,{success:function(e,g){a.meReady(e,g)},error:function(e){a.handleError(e)}}),d=a.media.tagName.toLowerCase();a.isDynamic=d!=="audio"&&d!=="video";a.isVideo=a.isDynamic?a.options.isVideo:d!=="audio"&&a.options.isVideo;if(b.isiPad&&a.options.iPadUseNativeControls||b.isiPhone&&a.options.iPhoneUseNativeControls){a.$media.attr("controls","controls");if(b.isiPad&&a.media.getAttribute("autoplay")!==null){a.media.load();
-a.media.play()}}else if(!(b.isAndroid&&a.options.AndroidUseNativeControls)){a.$media.removeAttr("controls");a.id="mep_"+mejs.mepIndex++;a.container=f('<div id="'+a.id+'" class="mejs-container '+(mejs.MediaFeatures.svg?"svg":"no-svg")+'"><div class="mejs-inner"><div class="mejs-mediaelement"></div><div class="mejs-layers"></div><div class="mejs-controls"></div><div class="mejs-clear"></div></div></div>').addClass(a.$media[0].className).insertBefore(a.$media);a.container.addClass((b.isAndroid?"mejs-android ":
-"")+(b.isiOS?"mejs-ios ":"")+(b.isiPad?"mejs-ipad ":"")+(b.isiPhone?"mejs-iphone ":"")+(a.isVideo?"mejs-video ":"mejs-audio "));if(b.isiOS){b=a.$media.clone();a.container.find(".mejs-mediaelement").append(b);a.$media.remove();a.$node=a.$media=b;a.node=a.media=b[0]}else a.container.find(".mejs-mediaelement").append(a.$media);a.controls=a.container.find(".mejs-controls");a.layers=a.container.find(".mejs-layers");b=a.isVideo?"video":"audio";d=b.substring(0,1).toUpperCase()+b.substring(1);a.width=a.options[b+
-"Width"]>0||a.options[b+"Width"].toString().indexOf("%")>-1?a.options[b+"Width"]:a.media.style.width!==""&&a.media.style.width!==null?a.media.style.width:a.media.getAttribute("width")!==null?a.$media.attr("width"):a.options["default"+d+"Width"];a.height=a.options[b+"Height"]>0||a.options[b+"Height"].toString().indexOf("%")>-1?a.options[b+"Height"]:a.media.style.height!==""&&a.media.style.height!==null?a.media.style.height:a.$media[0].getAttribute("height")!==null?a.$media.attr("height"):a.options["default"+
-d+"Height"];a.setPlayerSize(a.width,a.height);c.pluginWidth=a.height;c.pluginHeight=a.width}mejs.MediaElement(a.$media[0],c);a.container.trigger("controlsshown")},showControls:function(a){var b=this;a=typeof a=="undefined"||a;if(!b.controlsAreVisible){if(a){b.controls.css("visibility","visible").stop(true,true).fadeIn(200,function(){b.controlsAreVisible=true;b.container.trigger("controlsshown")});b.container.find(".mejs-control").css("visibility","visible").stop(true,true).fadeIn(200,function(){b.controlsAreVisible=
-true})}else{b.controls.css("visibility","visible").css("display","block");b.container.find(".mejs-control").css("visibility","visible").css("display","block");b.controlsAreVisible=true;b.container.trigger("controlsshown")}b.setControlsSize()}},hideControls:function(a){var b=this;a=typeof a=="undefined"||a;if(b.controlsAreVisible)if(a){b.controls.stop(true,true).fadeOut(200,function(){f(this).css("visibility","hidden").css("display","block");b.controlsAreVisible=false;b.container.trigger("controlshidden")});
-b.container.find(".mejs-control").stop(true,true).fadeOut(200,function(){f(this).css("visibility","hidden").css("display","block")})}else{b.controls.css("visibility","hidden").css("display","block");b.container.find(".mejs-control").css("visibility","hidden").css("display","block");b.controlsAreVisible=false;b.container.trigger("controlshidden")}},controlsTimer:null,startControlsTimer:function(a){var b=this;a=typeof a!="undefined"?a:1500;b.killControlsTimer("start");b.controlsTimer=setTimeout(function(){b.hideControls();
-b.killControlsTimer("hide")},a)},killControlsTimer:function(){if(this.controlsTimer!==null){clearTimeout(this.controlsTimer);delete this.controlsTimer;this.controlsTimer=null}},controlsEnabled:true,disableControls:function(){this.killControlsTimer();this.hideControls(false);this.controlsEnabled=false},enableControls:function(){this.showControls(false);this.controlsEnabled=true},meReady:function(a,b){var c=this,d=mejs.MediaFeatures,e=b.getAttribute("autoplay");e=!(typeof e=="undefined"||e===null||
-e==="false");var g;if(!c.created){c.created=true;c.media=a;c.domNode=b;if(!(d.isAndroid&&c.options.AndroidUseNativeControls)&&!(d.isiPad&&c.options.iPadUseNativeControls)&&!(d.isiPhone&&c.options.iPhoneUseNativeControls)){c.buildposter(c,c.controls,c.layers,c.media);c.buildkeyboard(c,c.controls,c.layers,c.media);c.buildoverlays(c,c.controls,c.layers,c.media);c.findTracks();for(g in c.options.features){d=c.options.features[g];if(c["build"+d])try{c["build"+d](c,c.controls,c.layers,c.media)}catch(k){}}c.container.trigger("controlsready");
-c.setPlayerSize(c.width,c.height);c.setControlsSize();if(c.isVideo){if(mejs.MediaFeatures.hasTouch)c.$media.bind("touchstart",function(){if(c.controlsAreVisible)c.hideControls(false);else c.controlsEnabled&&c.showControls(false)});else{c.media.addEventListener("click",function(){if(c.options.clickToPlayPause)c.media.paused?c.media.play():c.media.pause()});c.container.bind("mouseenter mouseover",function(){if(c.controlsEnabled)if(!c.options.alwaysShowControls){c.killControlsTimer("enter");c.showControls();
-c.startControlsTimer(2500)}}).bind("mousemove",function(){if(c.controlsEnabled){c.controlsAreVisible||c.showControls();c.options.alwaysShowControls||c.startControlsTimer(2500)}}).bind("mouseleave",function(){c.controlsEnabled&&!c.media.paused&&!c.options.alwaysShowControls&&c.startControlsTimer(1E3)})}e&&!c.options.alwaysShowControls&&c.hideControls();c.options.enableAutosize&&c.media.addEventListener("loadedmetadata",function(h){if(c.options.videoHeight<=0&&c.domNode.getAttribute("height")===null&&
-!isNaN(h.target.videoHeight)){c.setPlayerSize(h.target.videoWidth,h.target.videoHeight);c.setControlsSize();c.media.setVideoSize(h.target.videoWidth,h.target.videoHeight)}},false)}a.addEventListener("play",function(){for(var h=0,o=mejs.players.length;h<o;h++){var n=mejs.players[h];n.id!=c.id&&c.options.pauseOtherPlayers&&!n.paused&&!n.ended&&n.pause();n.hasFocus=false}c.hasFocus=true},false);c.media.addEventListener("ended",function(){if(c.options.autoRewind)try{c.media.setCurrentTime(0)}catch(h){}c.media.pause();
-c.setProgressRail&&c.setProgressRail();c.setCurrentRail&&c.setCurrentRail();if(c.options.loop)c.media.play();else!c.options.alwaysShowControls&&c.controlsEnabled&&c.showControls()},false);c.media.addEventListener("loadedmetadata",function(){c.updateDuration&&c.updateDuration();c.updateCurrent&&c.updateCurrent();if(!c.isFullScreen){c.setPlayerSize(c.width,c.height);c.setControlsSize()}},false);setTimeout(function(){c.setPlayerSize(c.width,c.height);c.setControlsSize()},50);f(window).resize(function(){c.isFullScreen||
-mejs.MediaFeatures.hasTrueNativeFullScreen&&document.webkitIsFullScreen||c.setPlayerSize(c.width,c.height);c.setControlsSize()});c.media.pluginType=="youtube"&&c.container.find(".mejs-overlay-play").hide()}if(e&&a.pluginType=="native"){a.load();a.play()}if(c.options.success)typeof c.options.success=="string"?window[c.options.success](c.media,c.domNode,c):c.options.success(c.media,c.domNode,c)}},handleError:function(a){this.controls.hide();this.options.error&&this.options.error(a)},setPlayerSize:function(a,
-b){if(typeof a!="undefined")this.width=a;if(typeof b!="undefined")this.height=b;if(this.height.toString().indexOf("%")>0||this.$node.css("max-width")==="100%"||this.$node[0].currentStyle&&this.$node[0].currentStyle.maxWidth==="100%"){var c=this.isVideo?this.media.videoWidth&&this.media.videoWidth>0?this.media.videoWidth:this.options.defaultVideoWidth:this.options.defaultAudioWidth,d=this.isVideo?this.media.videoHeight&&this.media.videoHeight>0?this.media.videoHeight:this.options.defaultVideoHeight:
-this.options.defaultAudioHeight,e=this.container.parent().closest(":visible").width();c=this.isVideo||!this.options.autosizeProgress?parseInt(e*d/c,10):d;if(this.container.parent()[0].tagName.toLowerCase()==="body"){e=f(window).width();c=f(window).height()}if(c!=0&&e!=0){this.container.width(e).height(c);this.$media.width("100%").height("100%");this.container.find("object, embed, iframe").width("100%").height("100%");this.isVideo&&this.media.setVideoSize&&this.media.setVideoSize(e,c);this.layers.children(".mejs-layer").width("100%").height("100%")}}else{this.container.width(this.width).height(this.height);
-this.layers.children(".mejs-layer").width(this.width).height(this.height)}},setControlsSize:function(){var a=0,b=0,c=this.controls.find(".mejs-time-rail"),d=this.controls.find(".mejs-time-total");this.controls.find(".mejs-time-current");this.controls.find(".mejs-time-loaded");var e=c.siblings();if(this.options&&!this.options.autosizeProgress)b=parseInt(c.css("width"));if(b===0||!b){e.each(function(){if(f(this).css("position")!="absolute")a+=f(this).outerWidth(true)});b=this.controls.width()-a-(c.outerWidth(true)-
-c.width())}c.width(b);d.width(b-(d.outerWidth(true)-d.width()));this.setProgressRail&&this.setProgressRail();this.setCurrentRail&&this.setCurrentRail()},buildposter:function(a,b,c,d){var e=f('<div class="mejs-poster mejs-layer"></div>').appendTo(c);b=a.$media.attr("poster");if(a.options.poster!=="")b=a.options.poster;b!==""&&b!=null?this.setPoster(b):e.hide();d.addEventListener("play",function(){e.hide()},false)},setPoster:function(a){var b=this.container.find(".mejs-poster"),c=b.find("img");if(c.length==
-0)c=f('<img width="100%" height="100%" />').appendTo(b);c.attr("src",a)},buildoverlays:function(a,b,c,d){var e=this;if(a.isVideo){var g=f('<div class="mejs-overlay mejs-layer"><div class="mejs-overlay-loading"><span></span></div></div>').hide().appendTo(c),k=f('<div class="mejs-overlay mejs-layer"><div class="mejs-overlay-error"></div></div>').hide().appendTo(c),h=f('<div class="mejs-overlay mejs-layer mejs-overlay-play"><div class="mejs-overlay-button"></div></div>').appendTo(c).click(function(){if(e.options.clickToPlayPause)d.paused?
-d.play():d.pause()});d.addEventListener("play",function(){h.hide();g.hide();b.find(".mejs-time-buffering").hide();k.hide()},false);d.addEventListener("playing",function(){h.hide();g.hide();b.find(".mejs-time-buffering").hide();k.hide()},false);d.addEventListener("seeking",function(){g.show();b.find(".mejs-time-buffering").show()},false);d.addEventListener("seeked",function(){g.hide();b.find(".mejs-time-buffering").hide()},false);d.addEventListener("pause",function(){mejs.MediaFeatures.isiPhone||h.show()},
-false);d.addEventListener("waiting",function(){g.show();b.find(".mejs-time-buffering").show()},false);d.addEventListener("loadeddata",function(){g.show();b.find(".mejs-time-buffering").show()},false);d.addEventListener("canplay",function(){g.hide();b.find(".mejs-time-buffering").hide()},false);d.addEventListener("error",function(){g.hide();b.find(".mejs-time-buffering").hide();k.show();k.find("mejs-overlay-error").html("Error loading this resource")},false)}},buildkeyboard:function(a,b,c,d){f(document).keydown(function(e){if(a.hasFocus&&
-a.options.enableKeyboard)for(var g=0,k=a.options.keyActions.length;g<k;g++)for(var h=a.options.keyActions[g],o=0,n=h.keys.length;o<n;o++)if(e.keyCode==h.keys[o]){e.preventDefault();h.action(a,d,e.keyCode);return false}return true});f(document).click(function(e){if(f(e.target).closest(".mejs-container").length==0)a.hasFocus=false})},findTracks:function(){var a=this,b=a.$media.find("track");a.tracks=[];b.each(function(c,d){d=f(d);a.tracks.push({srclang:d.attr("srclang").toLowerCase(),src:d.attr("src"),
-kind:d.attr("kind"),label:d.attr("label")||"",entries:[],isLoaded:false})})},changeSkin:function(a){this.container[0].className="mejs-container "+a;this.setPlayerSize(this.width,this.height);this.setControlsSize()},play:function(){this.media.play()},pause:function(){this.media.pause()},load:function(){this.media.load()},setMuted:function(a){this.media.setMuted(a)},setCurrentTime:function(a){this.media.setCurrentTime(a)},getCurrentTime:function(){return this.media.currentTime},setVolume:function(a){this.media.setVolume(a)},
-getVolume:function(){return this.media.volume},setSrc:function(a){this.media.setSrc(a)},remove:function(){if(this.media.pluginType==="flash")this.media.remove();else this.media.pluginType==="native"&&this.$media.prop("controls",true);this.isDynamic||this.$node.insertBefore(this.container);this.container.remove()}};if(typeof jQuery!="undefined")jQuery.fn.mediaelementplayer=function(a){return this.each(function(){new mejs.MediaElementPlayer(this,a)})};f(document).ready(function(){f(".mejs-player").mediaelementplayer()});
-window.MediaElementPlayer=mejs.MediaElementPlayer})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{playpauseText:"Play/Pause"});f.extend(MediaElementPlayer.prototype,{buildplaypause:function(a,b,c,d){var e=f('<div class="mejs-button mejs-playpause-button mejs-play" ><button type="button" aria-controls="'+this.id+'" title="'+this.options.playpauseText+'"></button></div>').appendTo(b).click(function(g){g.preventDefault();d.paused?d.play():d.pause();return false});d.addEventListener("play",function(){e.removeClass("mejs-play").addClass("mejs-pause")},false);
-d.addEventListener("playing",function(){e.removeClass("mejs-play").addClass("mejs-pause")},false);d.addEventListener("pause",function(){e.removeClass("mejs-pause").addClass("mejs-play")},false);d.addEventListener("paused",function(){e.removeClass("mejs-pause").addClass("mejs-play")},false)}})})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{stopText:"Stop"});f.extend(MediaElementPlayer.prototype,{buildstop:function(a,b,c,d){f('<div class="mejs-button mejs-stop-button mejs-stop"><button type="button" aria-controls="'+this.id+'" title="'+this.options.stopText+'"></button></div>').appendTo(b).click(function(){d.paused||d.pause();if(d.currentTime>0){d.setCurrentTime(0);d.pause();b.find(".mejs-time-current").width("0px");b.find(".mejs-time-handle").css("left","0px");b.find(".mejs-time-float-current").html(mejs.Utility.secondsToTimeCode(0));
-b.find(".mejs-currenttime").html(mejs.Utility.secondsToTimeCode(0));c.find(".mejs-poster").show()}})}})})(mejs.$);
-(function(f){f.extend(MediaElementPlayer.prototype,{buildprogress:function(a,b,c,d){f('<div class="mejs-time-rail"><span class="mejs-time-total"><span class="mejs-time-buffering"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-handle"></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div>').appendTo(b);b.find(".mejs-time-buffering").hide();var e=
-b.find(".mejs-time-total");c=b.find(".mejs-time-loaded");var g=b.find(".mejs-time-current"),k=b.find(".mejs-time-handle"),h=b.find(".mejs-time-float"),o=b.find(".mejs-time-float-current"),n=function(m){m=m.pageX;var q=e.offset(),i=e.outerWidth(true),j=0,l=j=0;if(d.duration){if(m<q.left)m=q.left;else if(m>i+q.left)m=i+q.left;l=m-q.left;j=l/i;j=j<=0.02?0:j*d.duration;p&&j!==d.currentTime&&d.setCurrentTime(j);if(!mejs.MediaFeatures.hasTouch){h.css("left",l);o.html(mejs.Utility.secondsToTimeCode(j));
-h.show()}}},p=false;e.bind("mousedown",function(m){if(m.which===1){p=true;n(m);f(document).bind("mousemove.dur",function(q){n(q)}).bind("mouseup.dur",function(){p=false;h.hide();f(document).unbind(".dur")});return false}}).bind("mouseenter",function(){f(document).bind("mousemove.dur",function(m){n(m)});mejs.MediaFeatures.hasTouch||h.show()}).bind("mouseleave",function(){if(!p){f(document).unbind(".dur");h.hide()}});d.addEventListener("progress",function(m){a.setProgressRail(m);a.setCurrentRail(m)},
-false);d.addEventListener("timeupdate",function(m){a.setProgressRail(m);a.setCurrentRail(m)},false);this.loaded=c;this.total=e;this.current=g;this.handle=k},setProgressRail:function(a){var b=a!=undefined?a.target:this.media,c=null;if(b&&b.buffered&&b.buffered.length>0&&b.buffered.end&&b.duration)c=b.buffered.end(0)/b.duration;else if(b&&b.bytesTotal!=undefined&&b.bytesTotal>0&&b.bufferedBytes!=undefined)c=b.bufferedBytes/b.bytesTotal;else if(a&&a.lengthComputable&&a.total!=0)c=a.loaded/a.total;if(c!==
-null){c=Math.min(1,Math.max(0,c));this.loaded&&this.total&&this.loaded.width(this.total.width()*c)}},setCurrentRail:function(){if(this.media.currentTime!=undefined&&this.media.duration)if(this.total&&this.handle){var a=this.total.width()*this.media.currentTime/this.media.duration,b=a-this.handle.outerWidth(true)/2;this.current.width(a);this.handle.css("left",b)}}})})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{duration:-1,timeAndDurationSeparator:" <span> | </span> "});f.extend(MediaElementPlayer.prototype,{buildcurrent:function(a,b,c,d){f('<div class="mejs-time"><span class="mejs-currenttime">'+(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00")+"</span></div>").appendTo(b);this.currenttime=this.controls.find(".mejs-currenttime");d.addEventListener("timeupdate",function(){a.updateCurrent()},false)},buildduration:function(a,
-b,c,d){if(b.children().last().find(".mejs-currenttime").length>0)f(this.options.timeAndDurationSeparator+'<span class="mejs-duration">'+(this.options.duration>0?mejs.Utility.secondsToTimeCode(this.options.duration,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25):(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00"))+"</span>").appendTo(b.find(".mejs-time"));else{b.find(".mejs-currenttime").parent().addClass("mejs-currenttime-container");
-f('<div class="mejs-time mejs-duration-container"><span class="mejs-duration">'+(this.options.duration>0?mejs.Utility.secondsToTimeCode(this.options.duration,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25):(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00"))+"</span></div>").appendTo(b)}this.durationD=this.controls.find(".mejs-duration");d.addEventListener("timeupdate",function(){a.updateDuration()},
-false)},updateCurrent:function(){if(this.currenttime)this.currenttime.html(mejs.Utility.secondsToTimeCode(this.media.currentTime,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25))},updateDuration:function(){this.container.toggleClass("mejs-long-video",this.media.duration>3600);if(this.media.duration&&this.durationD)this.durationD.html(mejs.Utility.secondsToTimeCode(this.media.duration,this.options.alwaysShowHours,this.options.showTimecodeFrameCount,
-this.options.framesPerSecond||25))}})})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{muteText:"Mute Toggle",hideVolumeOnTouchDevices:true,audioVolume:"horizontal",videoVolume:"vertical"});f.extend(MediaElementPlayer.prototype,{buildvolume:function(a,b,c,d){if(!(mejs.MediaFeatures.hasTouch&&this.options.hideVolumeOnTouchDevices)){var e=this.isVideo?this.options.videoVolume:this.options.audioVolume,g=e=="horizontal"?f('<div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="'+this.id+'" title="'+this.options.muteText+
-'"></button></div><div class="mejs-horizontal-volume-slider"><div class="mejs-horizontal-volume-total"></div><div class="mejs-horizontal-volume-current"></div><div class="mejs-horizontal-volume-handle"></div></div>').appendTo(b):f('<div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="'+this.id+'" title="'+this.options.muteText+'"></button><div class="mejs-volume-slider"><div class="mejs-volume-total"></div><div class="mejs-volume-current"></div><div class="mejs-volume-handle"></div></div></div>').appendTo(b),
-k=this.container.find(".mejs-volume-slider, .mejs-horizontal-volume-slider"),h=this.container.find(".mejs-volume-total, .mejs-horizontal-volume-total"),o=this.container.find(".mejs-volume-current, .mejs-horizontal-volume-current"),n=this.container.find(".mejs-volume-handle, .mejs-horizontal-volume-handle"),p=function(j,l){if(!k.is(":visible")&&typeof l=="undefined"){k.show();p(j,true);k.hide()}else{j=Math.max(0,j);j=Math.min(j,1);j==0?g.removeClass("mejs-mute").addClass("mejs-unmute"):g.removeClass("mejs-unmute").addClass("mejs-mute");
-if(e=="vertical"){var r=h.height(),s=h.position(),t=r-r*j;n.css("top",Math.round(s.top+t-n.height()/2));o.height(r-t);o.css("top",s.top+t)}else{r=h.width();s=h.position();r=r*j;n.css("left",Math.round(s.left+r-n.width()/2));o.width(Math.round(r))}}},m=function(j){var l=null,r=h.offset();if(e=="vertical"){l=h.height();parseInt(h.css("top").replace(/px/,""),10);l=(l-(j.pageY-r.top))/l;if(r.top==0||r.left==0)return}else{l=h.width();l=(j.pageX-r.left)/l}l=Math.max(0,l);l=Math.min(l,1);p(l);l==0?d.setMuted(true):
-d.setMuted(false);d.setVolume(l)},q=false,i=false;g.hover(function(){k.show();i=true},function(){i=false;!q&&e=="vertical"&&k.hide()});k.bind("mouseover",function(){i=true}).bind("mousedown",function(j){m(j);f(document).bind("mousemove.vol",function(l){m(l)}).bind("mouseup.vol",function(){q=false;f(document).unbind(".vol");!i&&e=="vertical"&&k.hide()});q=true;return false});g.find("button").click(function(){d.setMuted(!d.muted)});d.addEventListener("volumechange",function(){if(!q)if(d.muted){p(0);
-g.removeClass("mejs-mute").addClass("mejs-unmute")}else{p(d.volume);g.removeClass("mejs-unmute").addClass("mejs-mute")}},false);if(this.container.is(":visible")){p(a.options.startVolume);d.pluginType==="native"&&d.setVolume(a.options.startVolume)}}}})})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{usePluginFullScreen:true,newWindowCallback:function(){return""},fullscreenText:mejs.i18n.t("Fullscreen")});f.extend(MediaElementPlayer.prototype,{isFullScreen:false,isNativeFullScreen:false,docStyleOverflow:null,isInIframe:false,buildfullscreen:function(a,b,c,d){if(a.isVideo){a.isInIframe=window.location!=window.parent.location;if(mejs.MediaFeatures.hasTrueNativeFullScreen){c=null;c=mejs.MediaFeatures.hasMozNativeFullScreen?f(document):a.container;c.bind(mejs.MediaFeatures.fullScreenEventName,
-function(){if(mejs.MediaFeatures.isFullScreen()){a.isNativeFullScreen=true;a.setControlsSize()}else{a.isNativeFullScreen=false;a.exitFullScreen()}})}var e=this,g=f('<div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="'+e.id+'" title="'+e.options.fullscreenText+'"></button></div>').appendTo(b);if(e.media.pluginType==="native"||!e.options.usePluginFullScreen&&!mejs.MediaFeatures.isFirefox)g.click(function(){mejs.MediaFeatures.hasTrueNativeFullScreen&&mejs.MediaFeatures.isFullScreen()||
-a.isFullScreen?a.exitFullScreen():a.enterFullScreen()});else{var k=null;if(function(){var i=document.createElement("x"),j=document.documentElement,l=window.getComputedStyle;if(!("pointerEvents"in i.style))return false;i.style.pointerEvents="auto";i.style.pointerEvents="x";j.appendChild(i);l=l&&l(i,"").pointerEvents==="auto";j.removeChild(i);return!!l}()&&!mejs.MediaFeatures.isOpera){var h=false,o=function(){if(h){n.hide();p.hide();m.hide();g.css("pointer-events","");e.controls.css("pointer-events",
-"");h=false}},n=f('<div class="mejs-fullscreen-hover" />').appendTo(e.container).mouseover(o),p=f('<div class="mejs-fullscreen-hover" />').appendTo(e.container).mouseover(o),m=f('<div class="mejs-fullscreen-hover" />').appendTo(e.container).mouseover(o),q=function(){var i={position:"absolute",top:0,left:0};n.css(i);p.css(i);m.css(i);n.width(e.container.width()).height(e.container.height()-e.controls.height());i=g.offset().left-e.container.offset().left;fullScreenBtnWidth=g.outerWidth(true);p.width(i).height(e.controls.height()).css({top:e.container.height()-
-e.controls.height()});m.width(e.container.width()-i-fullScreenBtnWidth).height(e.controls.height()).css({top:e.container.height()-e.controls.height(),left:i+fullScreenBtnWidth})};f(document).resize(function(){q()});g.mouseover(function(){if(!e.isFullScreen){var i=g.offset(),j=a.container.offset();d.positionFullscreenButton(i.left-j.left,i.top-j.top,false);g.css("pointer-events","none");e.controls.css("pointer-events","none");n.show();m.show();p.show();q();h=true}});d.addEventListener("fullscreenchange",
-function(){o()})}else g.mouseover(function(){if(k!==null){clearTimeout(k);delete k}var i=g.offset(),j=a.container.offset();d.positionFullscreenButton(i.left-j.left,i.top-j.top,true)}).mouseout(function(){if(k!==null){clearTimeout(k);delete k}k=setTimeout(function(){d.hideFullscreenButton()},1500)})}a.fullscreenBtn=g;f(document).bind("keydown",function(i){if((mejs.MediaFeatures.hasTrueNativeFullScreen&&mejs.MediaFeatures.isFullScreen()||e.isFullScreen)&&i.keyCode==27)a.exitFullScreen()})}},enterFullScreen:function(){var a=
-this;if(!(a.media.pluginType!=="native"&&(mejs.MediaFeatures.isFirefox||a.options.usePluginFullScreen))){docStyleOverflow=document.documentElement.style.overflow;document.documentElement.style.overflow="hidden";normalHeight=a.container.height();normalWidth=a.container.width();if(a.media.pluginType==="native")if(mejs.MediaFeatures.hasTrueNativeFullScreen){mejs.MediaFeatures.requestFullScreen(a.container[0]);a.isInIframe&&setTimeout(function c(){if(a.isNativeFullScreen)f(window).width()!==screen.width?
-a.exitFullScreen():setTimeout(c,500)},500)}else if(mejs.MediaFeatures.hasSemiNativeFullScreen){a.media.webkitEnterFullscreen();return}if(a.isInIframe){var b=a.options.newWindowCallback(this);if(b!=="")if(mejs.MediaFeatures.hasTrueNativeFullScreen)setTimeout(function(){if(!a.isNativeFullScreen){a.pause();window.open(b,a.id,"top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+",resizable=yes,scrollbars=no,status=no,toolbar=no")}},250);else{a.pause();window.open(b,a.id,"top=0,left=0,width="+
-screen.availWidth+",height="+screen.availHeight+",resizable=yes,scrollbars=no,status=no,toolbar=no");return}}a.container.addClass("mejs-container-fullscreen").width("100%").height("100%");setTimeout(function(){a.container.css({width:"100%",height:"100%"});a.setControlsSize()},500);if(a.pluginType==="native")a.$media.width("100%").height("100%");else{a.container.find("object, embed, iframe").width("100%").height("100%");a.media.setVideoSize(f(window).width(),f(window).height())}a.layers.children("div").width("100%").height("100%");
-a.fullscreenBtn&&a.fullscreenBtn.removeClass("mejs-fullscreen").addClass("mejs-unfullscreen");a.setControlsSize();a.isFullScreen=true}},exitFullScreen:function(){if(this.media.pluginType!=="native"&&mejs.MediaFeatures.isFirefox)this.media.setFullscreen(false);else{if(mejs.MediaFeatures.hasTrueNativeFullScreen&&(mejs.MediaFeatures.isFullScreen()||this.isFullScreen))mejs.MediaFeatures.cancelFullScreen();document.documentElement.style.overflow=docStyleOverflow;this.container.removeClass("mejs-container-fullscreen").width(normalWidth).height(normalHeight);
-if(this.pluginType==="native")this.$media.width(normalWidth).height(normalHeight);else{this.container.find("object embed").width(normalWidth).height(normalHeight);this.media.setVideoSize(normalWidth,normalHeight)}this.layers.children("div").width(normalWidth).height(normalHeight);this.fullscreenBtn.removeClass("mejs-unfullscreen").addClass("mejs-fullscreen");this.setControlsSize();this.isFullScreen=false}}})})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{startLanguage:"",tracksText:"Captions/Subtitles"});f.extend(MediaElementPlayer.prototype,{hasChapters:false,buildtracks:function(a,b,c,d){if(a.isVideo)if(a.tracks.length!=0){var e;a.chapters=f('<div class="mejs-chapters mejs-layer"></div>').prependTo(c).hide();a.captions=f('<div class="mejs-captions-layer mejs-layer"><div class="mejs-captions-position"><span class="mejs-captions-text"></span></div></div>').prependTo(c).hide();a.captionsText=a.captions.find(".mejs-captions-text");
-a.captionsButton=f('<div class="mejs-button mejs-captions-button"><button type="button" aria-controls="'+this.id+'" title="'+this.options.tracksText+'"></button><div class="mejs-captions-selector"><ul><li><input type="radio" name="'+a.id+'_captions" id="'+a.id+'_captions_none" value="none" checked="checked" /><label for="'+a.id+'_captions_none">None</label></li></ul></div></div>').appendTo(b).hover(function(){f(this).find(".mejs-captions-selector").css("visibility","visible")},function(){f(this).find(".mejs-captions-selector").css("visibility",
-"hidden")}).delegate("input[type=radio]","click",function(){lang=this.value;if(lang=="none")a.selectedTrack=null;else for(e=0;e<a.tracks.length;e++)if(a.tracks[e].srclang==lang){a.selectedTrack=a.tracks[e];a.captions.attr("lang",a.selectedTrack.srclang);a.displayCaptions();break}});a.options.alwaysShowControls?a.container.find(".mejs-captions-position").addClass("mejs-captions-position-hover"):a.container.bind("controlsshown",function(){a.container.find(".mejs-captions-position").addClass("mejs-captions-position-hover")}).bind("controlshidden",
-function(){d.paused||a.container.find(".mejs-captions-position").removeClass("mejs-captions-position-hover")});a.trackToLoad=-1;a.selectedTrack=null;a.isLoadingTrack=false;for(e=0;e<a.tracks.length;e++)a.tracks[e].kind=="subtitles"&&a.addTrackButton(a.tracks[e].srclang,a.tracks[e].label);a.loadNextTrack();d.addEventListener("timeupdate",function(){a.displayCaptions()},false);d.addEventListener("loadedmetadata",function(){a.displayChapters()},false);a.container.hover(function(){if(a.hasChapters){a.chapters.css("visibility",
-"visible");a.chapters.fadeIn(200).height(a.chapters.find(".mejs-chapter").outerHeight())}},function(){a.hasChapters&&!d.paused&&a.chapters.fadeOut(200,function(){f(this).css("visibility","hidden");f(this).css("display","block")})});a.node.getAttribute("autoplay")!==null&&a.chapters.css("visibility","hidden")}},loadNextTrack:function(){this.trackToLoad++;if(this.trackToLoad<this.tracks.length){this.isLoadingTrack=true;this.loadTrack(this.trackToLoad)}else this.isLoadingTrack=false},loadTrack:function(a){var b=
-this,c=b.tracks[a];f.ajax({url:c.src,dataType:"text",success:function(d){c.entries=typeof d=="string"&&/<tt\s+xml/ig.exec(d)?mejs.TrackFormatParser.dfxp.parse(d):mejs.TrackFormatParser.webvvt.parse(d);c.isLoaded=true;b.enableTrackButton(c.srclang,c.label);b.loadNextTrack();c.kind=="chapters"&&b.media.addEventListener("play",function(){b.media.duration>0&&b.displayChapters(c)},false)},error:function(){b.loadNextTrack()}})},enableTrackButton:function(a,b){if(b==="")b=mejs.language.codes[a]||a;this.captionsButton.find("input[value="+
-a+"]").prop("disabled",false).siblings("label").html(b);this.options.startLanguage==a&&f("#"+this.id+"_captions_"+a).click();this.adjustLanguageBox()},addTrackButton:function(a,b){if(b==="")b=mejs.language.codes[a]||a;this.captionsButton.find("ul").append(f('<li><input type="radio" name="'+this.id+'_captions" id="'+this.id+"_captions_"+a+'" value="'+a+'" disabled="disabled" /><label for="'+this.id+"_captions_"+a+'">'+b+" (loading)</label></li>"));this.adjustLanguageBox();this.container.find(".mejs-captions-translations option[value="+
-a+"]").remove()},adjustLanguageBox:function(){this.captionsButton.find(".mejs-captions-selector").height(this.captionsButton.find(".mejs-captions-selector ul").outerHeight(true)+this.captionsButton.find(".mejs-captions-translations").outerHeight(true))},displayCaptions:function(){if(typeof this.tracks!="undefined"){var a,b=this.selectedTrack;if(b!=null&&b.isLoaded)for(a=0;a<b.entries.times.length;a++)if(this.media.currentTime>=b.entries.times[a].start&&this.media.currentTime<=b.entries.times[a].stop){this.captionsText.html(b.entries.text[a]);
-this.captions.show().height(0);return}this.captions.hide()}},displayChapters:function(){var a;for(a=0;a<this.tracks.length;a++)if(this.tracks[a].kind=="chapters"&&this.tracks[a].isLoaded){this.drawChapters(this.tracks[a]);this.hasChapters=true;break}},drawChapters:function(a){var b=this,c,d,e=d=0;b.chapters.empty();for(c=0;c<a.entries.times.length;c++){d=a.entries.times[c].stop-a.entries.times[c].start;d=Math.floor(d/b.media.duration*100);if(d+e>100||c==a.entries.times.length-1&&d+e<100)d=100-e;b.chapters.append(f('<div class="mejs-chapter" rel="'+
-a.entries.times[c].start+'" style="left: '+e.toString()+"%;width: "+d.toString()+'%;"><div class="mejs-chapter-block'+(c==a.entries.times.length-1?" mejs-chapter-block-last":"")+'"><span class="ch-title">'+a.entries.text[c]+'</span><span class="ch-time">'+mejs.Utility.secondsToTimeCode(a.entries.times[c].start)+"&ndash;"+mejs.Utility.secondsToTimeCode(a.entries.times[c].stop)+"</span></div></div>"));e+=d}b.chapters.find("div.mejs-chapter").click(function(){b.media.setCurrentTime(parseFloat(f(this).attr("rel")));
-b.media.paused&&b.media.play()});b.chapters.show()}});mejs.language={codes:{af:"Afrikaans",sq:"Albanian",ar:"Arabic",be:"Belarusian",bg:"Bulgarian",ca:"Catalan",zh:"Chinese","zh-cn":"Chinese Simplified","zh-tw":"Chinese Traditional",hr:"Croatian",cs:"Czech",da:"Danish",nl:"Dutch",en:"English",et:"Estonian",tl:"Filipino",fi:"Finnish",fr:"French",gl:"Galician",de:"German",el:"Greek",ht:"Haitian Creole",iw:"Hebrew",hi:"Hindi",hu:"Hungarian",is:"Icelandic",id:"Indonesian",ga:"Irish",it:"Italian",ja:"Japanese",
-ko:"Korean",lv:"Latvian",lt:"Lithuanian",mk:"Macedonian",ms:"Malay",mt:"Maltese",no:"Norwegian",fa:"Persian",pl:"Polish",pt:"Portuguese",ro:"Romanian",ru:"Russian",sr:"Serbian",sk:"Slovak",sl:"Slovenian",es:"Spanish",sw:"Swahili",sv:"Swedish",tl:"Tagalog",th:"Thai",tr:"Turkish",uk:"Ukrainian",vi:"Vietnamese",cy:"Welsh",yi:"Yiddish"}};mejs.TrackFormatParser={webvvt:{pattern_identifier:/^([a-zA-z]+-)?[0-9]+$/,pattern_timecode:/^([0-9]{2}:[0-9]{2}:[0-9]{2}([,.][0-9]{1,3})?) --\> ([0-9]{2}:[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,
-parse:function(a){var b=0;a=mejs.TrackFormatParser.split2(a,/\r?\n/);for(var c={text:[],times:[]},d,e;b<a.length;b++)if(this.pattern_identifier.exec(a[b])){b++;if((d=this.pattern_timecode.exec(a[b]))&&b<a.length){b++;e=a[b];for(b++;a[b]!==""&&b<a.length;){e=e+"\n"+a[b];b++}e=f.trim(e).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig,"<a href='$1' target='_blank'>$1</a>");c.text.push(e);c.times.push({start:mejs.Utility.convertSMPTEtoSeconds(d[1])==0?0.2:mejs.Utility.convertSMPTEtoSeconds(d[1]),
-stop:mejs.Utility.convertSMPTEtoSeconds(d[3]),settings:d[5]})}}return c}},dfxp:{parse:function(a){a=f(a).filter("tt");var b=0;b=a.children("div").eq(0);var c=b.find("p");b=a.find("#"+b.attr("style"));var d,e;a={text:[],times:[]};if(b.length){e=b.removeAttr("id").get(0).attributes;if(e.length){d={};for(b=0;b<e.length;b++)d[e[b].name.split(":")[1]]=e[b].value}}for(b=0;b<c.length;b++){var g;e={start:null,stop:null,style:null};if(c.eq(b).attr("begin"))e.start=mejs.Utility.convertSMPTEtoSeconds(c.eq(b).attr("begin"));
-if(!e.start&&c.eq(b-1).attr("end"))e.start=mejs.Utility.convertSMPTEtoSeconds(c.eq(b-1).attr("end"));if(c.eq(b).attr("end"))e.stop=mejs.Utility.convertSMPTEtoSeconds(c.eq(b).attr("end"));if(!e.stop&&c.eq(b+1).attr("begin"))e.stop=mejs.Utility.convertSMPTEtoSeconds(c.eq(b+1).attr("begin"));if(d){g="";for(var k in d)g+=k+":"+d[k]+";"}if(g)e.style=g;if(e.start==0)e.start=0.2;a.times.push(e);e=f.trim(c.eq(b).html()).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig,
-"<a href='$1' target='_blank'>$1</a>");a.text.push(e);if(a.times.start==0)a.times.start=2}return a}},split2:function(a,b){return a.split(b)}};if("x\n\ny".split(/\n/gi).length!=3)mejs.TrackFormatParser.split2=function(a,b){var c=[],d="",e;for(e=0;e<a.length;e++){d+=a.substring(e,e+1);if(b.test(d)){c.push(d.replace(b,""));d=""}}c.push(d);return c}})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{contextMenuItems:[{render:function(a){if(typeof a.enterFullScreen=="undefined")return null;return a.isFullScreen?"Turn off Fullscreen":"Go Fullscreen"},click:function(a){a.isFullScreen?a.exitFullScreen():a.enterFullScreen()}},{render:function(a){return a.media.muted?"Unmute":"Mute"},click:function(a){a.media.muted?a.setMuted(false):a.setMuted(true)}},{isSeparator:true},{render:function(){return"Download Video"},click:function(a){window.location.href=a.media.currentSrc}}]});
-f.extend(MediaElementPlayer.prototype,{buildcontextmenu:function(a){a.contextMenu=f('<div class="mejs-contextmenu"></div>').appendTo(f("body")).hide();a.container.bind("contextmenu",function(b){if(a.isContextMenuEnabled){b.preventDefault();a.renderContextMenu(b.clientX-1,b.clientY-1);return false}});a.container.bind("click",function(){a.contextMenu.hide()});a.contextMenu.bind("mouseleave",function(){a.startContextMenuTimer()})},isContextMenuEnabled:true,enableContextMenu:function(){this.isContextMenuEnabled=
-true},disableContextMenu:function(){this.isContextMenuEnabled=false},contextMenuTimeout:null,startContextMenuTimer:function(){var a=this;a.killContextMenuTimer();a.contextMenuTimer=setTimeout(function(){a.hideContextMenu();a.killContextMenuTimer()},750)},killContextMenuTimer:function(){var a=this.contextMenuTimer;if(a!=null){clearTimeout(a);delete a}},hideContextMenu:function(){this.contextMenu.hide()},renderContextMenu:function(a,b){for(var c=this,d="",e=c.options.contextMenuItems,g=0,k=e.length;g<
-k;g++)if(e[g].isSeparator)d+='<div class="mejs-contextmenu-separator"></div>';else{var h=e[g].render(c);if(h!=null)d+='<div class="mejs-contextmenu-item" data-itemindex="'+g+'" id="element-'+Math.random()*1E6+'">'+h+"</div>"}c.contextMenu.empty().append(f(d)).css({top:b,left:a}).show();c.contextMenu.find(".mejs-contextmenu-item").each(function(){var o=f(this),n=parseInt(o.data("itemindex"),10),p=c.options.contextMenuItems[n];typeof p.show!="undefined"&&p.show(o,c);o.click(function(){typeof p.click!=
-"undefined"&&p.click(c);c.contextMenu.hide()})});setTimeout(function(){c.killControlsTimer("rev3")},100)}})})(mejs.$);
-(function(f){f.extend(mejs.MepDefaults,{postrollCloseText:mejs.i18n.t("Close")});f.extend(MediaElementPlayer.prototype,{buildpostroll:function(a,b,c){var d=this.container.find('link[rel="postroll"]').attr("href");if(typeof d!=="undefined"){a.postroll=f('<div class="mejs-postroll-layer mejs-layer"><a class="mejs-postroll-close" onclick="$(this).parent().hide();return false;">'+this.options.postrollCloseText+'</a><div class="mejs-postroll-layer-content"></div></div>').prependTo(c).hide();this.media.addEventListener("ended",
-function(){f.ajax({dataType:"html",url:d,success:function(e){c.find(".mejs-postroll-layer-content").html(e)}});a.postroll.show()},false)}}})})(mejs.$);
+(function(f){mejs.MepDefaults={poster:"",defaultVideoWidth:480,defaultVideoHeight:270,videoWidth:-1,videoHeight:-1,defaultAudioWidth:400,defaultAudioHeight:30,defaultSeekBackwardInterval:function(a){return a.duration*0.05},defaultSeekForwardInterval:function(a){return a.duration*0.05},audioWidth:-1,audioHeight:-1,startVolume:0.8,loop:false,autoRewind:true,enableAutosize:true,alwaysShowHours:false,showTimecodeFrameCount:false,framesPerSecond:25,autosizeProgress:true,alwaysShowControls:false,hideVideoControlsOnLoad:false,
+clickToPlayPause:true,iPadUseNativeControls:false,iPhoneUseNativeControls:false,AndroidUseNativeControls:false,features:["playpause","current","progress","duration","tracks","volume","fullscreen"],isVideo:true,enableKeyboard:true,pauseOtherPlayers:true,keyActions:[{keys:[32,179],action:function(a,b){b.paused||b.ended?b.play():b.pause()}},{keys:[38],action:function(a,b){b.setVolume(Math.min(b.volume+0.1,1))}},{keys:[40],action:function(a,b){b.setVolume(Math.max(b.volume-0.1,0))}},{keys:[37,227],action:function(a,
+b){if(!isNaN(b.duration)&&b.duration>0){if(a.isVideo){a.showControls();a.startControlsTimer()}var c=Math.max(b.currentTime-a.options.defaultSeekBackwardInterval(b),0);b.setCurrentTime(c)}}},{keys:[39,228],action:function(a,b){if(!isNaN(b.duration)&&b.duration>0){if(a.isVideo){a.showControls();a.startControlsTimer()}var c=Math.min(b.currentTime+a.options.defaultSeekForwardInterval(b),b.duration);b.setCurrentTime(c)}}},{keys:[70],action:function(a){if(typeof a.enterFullScreen!="undefined")a.isFullScreen?
+a.exitFullScreen():a.enterFullScreen()}}]};mejs.mepIndex=0;mejs.players={};mejs.MediaElementPlayer=function(a,b){if(!(this instanceof mejs.MediaElementPlayer))return new mejs.MediaElementPlayer(a,b);this.$media=this.$node=f(a);this.node=this.media=this.$media[0];if(typeof this.node.player!="undefined")return this.node.player;else this.node.player=this;if(typeof b=="undefined")b=this.$node.data("mejsoptions");this.options=f.extend({},mejs.MepDefaults,b);this.id="mep_"+mejs.mepIndex++;mejs.players[this.id]=
+this;this.init();return this};mejs.MediaElementPlayer.prototype={hasFocus:false,controlsAreVisible:true,init:function(){var a=this,b=mejs.MediaFeatures,c=f.extend(true,{},a.options,{success:function(d,g){a.meReady(d,g)},error:function(d){a.handleError(d)}}),e=a.media.tagName.toLowerCase();a.isDynamic=e!=="audio"&&e!=="video";a.isVideo=a.isDynamic?a.options.isVideo:e!=="audio"&&a.options.isVideo;if(b.isiPad&&a.options.iPadUseNativeControls||b.isiPhone&&a.options.iPhoneUseNativeControls){a.$media.attr("controls",
+"controls");if(b.isiPad&&a.media.getAttribute("autoplay")!==null){a.media.load();a.media.play()}}else if(!(b.isAndroid&&a.options.AndroidUseNativeControls)){a.$media.removeAttr("controls");a.container=f('<div id="'+a.id+'" class="mejs-container '+(mejs.MediaFeatures.svg?"svg":"no-svg")+'"><div class="mejs-inner"><div class="mejs-mediaelement"></div><div class="mejs-layers"></div><div class="mejs-controls"></div><div class="mejs-clear"></div></div></div>').addClass(a.$media[0].className).insertBefore(a.$media);
+a.container.addClass((b.isAndroid?"mejs-android ":"")+(b.isiOS?"mejs-ios ":"")+(b.isiPad?"mejs-ipad ":"")+(b.isiPhone?"mejs-iphone ":"")+(a.isVideo?"mejs-video ":"mejs-audio "));if(b.isiOS){b=a.$media.clone();a.container.find(".mejs-mediaelement").append(b);a.$media.remove();a.$node=a.$media=b;a.node=a.media=b[0]}else a.container.find(".mejs-mediaelement").append(a.$media);a.controls=a.container.find(".mejs-controls");a.layers=a.container.find(".mejs-layers");b=a.isVideo?"video":"audio";e=b.substring(0,
+1).toUpperCase()+b.substring(1);a.width=a.options[b+"Width"]>0||a.options[b+"Width"].toString().indexOf("%")>-1?a.options[b+"Width"]:a.media.style.width!==""&&a.media.style.width!==null?a.media.style.width:a.media.getAttribute("width")!==null?a.$media.attr("width"):a.options["default"+e+"Width"];a.height=a.options[b+"Height"]>0||a.options[b+"Height"].toString().indexOf("%")>-1?a.options[b+"Height"]:a.media.style.height!==""&&a.media.style.height!==null?a.media.style.height:a.$media[0].getAttribute("height")!==
+null?a.$media.attr("height"):a.options["default"+e+"Height"];a.setPlayerSize(a.width,a.height);c.pluginWidth=a.width;c.pluginHeight=a.height}mejs.MediaElement(a.$media[0],c);typeof a.container!="undefined"&&a.container.trigger("controlsshown")},showControls:function(a){var b=this;a=typeof a=="undefined"||a;if(!b.controlsAreVisible){if(a){b.controls.css("visibility","visible").stop(true,true).fadeIn(200,function(){b.controlsAreVisible=true;b.container.trigger("controlsshown")});b.container.find(".mejs-control").css("visibility",
+"visible").stop(true,true).fadeIn(200,function(){b.controlsAreVisible=true})}else{b.controls.css("visibility","visible").css("display","block");b.container.find(".mejs-control").css("visibility","visible").css("display","block");b.controlsAreVisible=true;b.container.trigger("controlsshown")}b.setControlsSize()}},hideControls:function(a){var b=this;a=typeof a=="undefined"||a;if(b.controlsAreVisible)if(a){b.controls.stop(true,true).fadeOut(200,function(){f(this).css("visibility","hidden").css("display",
+"block");b.controlsAreVisible=false;b.container.trigger("controlshidden")});b.container.find(".mejs-control").stop(true,true).fadeOut(200,function(){f(this).css("visibility","hidden").css("display","block")})}else{b.controls.css("visibility","hidden").css("display","block");b.container.find(".mejs-control").css("visibility","hidden").css("display","block");b.controlsAreVisible=false;b.container.trigger("controlshidden")}},controlsTimer:null,startControlsTimer:function(a){var b=this;a=typeof a!="undefined"?
+a:1500;b.killControlsTimer("start");b.controlsTimer=setTimeout(function(){b.hideControls();b.killControlsTimer("hide")},a)},killControlsTimer:function(){if(this.controlsTimer!==null){clearTimeout(this.controlsTimer);delete this.controlsTimer;this.controlsTimer=null}},controlsEnabled:true,disableControls:function(){this.killControlsTimer();this.hideControls(false);this.controlsEnabled=false},enableControls:function(){this.showControls(false);this.controlsEnabled=true},meReady:function(a,b){var c=this,
+e=mejs.MediaFeatures,d=b.getAttribute("autoplay");d=!(typeof d=="undefined"||d===null||d==="false");var g;if(!c.created){c.created=true;c.media=a;c.domNode=b;if(!(e.isAndroid&&c.options.AndroidUseNativeControls)&&!(e.isiPad&&c.options.iPadUseNativeControls)&&!(e.isiPhone&&c.options.iPhoneUseNativeControls)){c.buildposter(c,c.controls,c.layers,c.media);c.buildkeyboard(c,c.controls,c.layers,c.media);c.buildoverlays(c,c.controls,c.layers,c.media);c.findTracks();for(g in c.options.features){e=c.options.features[g];
+if(c["build"+e])try{c["build"+e](c,c.controls,c.layers,c.media)}catch(k){}}c.container.trigger("controlsready");c.setPlayerSize(c.width,c.height);c.setControlsSize();if(c.isVideo){if(mejs.MediaFeatures.hasTouch)c.$media.bind("touchstart",function(){if(c.controlsAreVisible)c.hideControls(false);else c.controlsEnabled&&c.showControls(false)});else{mejs.MediaElementPlayer.prototype.clickToPlayPauseCallback=function(){console.log("media clicked",c.media,c.media.paused);if(c.options.clickToPlayPause)c.media.paused?
+c.media.play():c.media.pause()};c.media.addEventListener("click",c.clickToPlayPauseCallback);c.container.bind("mouseenter mouseover",function(){if(c.controlsEnabled)if(!c.options.alwaysShowControls){c.killControlsTimer("enter");c.showControls();c.startControlsTimer(2500)}}).bind("mousemove",function(){if(c.controlsEnabled){c.controlsAreVisible||c.showControls();c.options.alwaysShowControls||c.startControlsTimer(2500)}}).bind("mouseleave",function(){c.controlsEnabled&&!c.media.paused&&!c.options.alwaysShowControls&&
+c.startControlsTimer(1E3)})}c.options.hideVideoControlsOnLoad&&c.hideControls(false);d&&!c.options.alwaysShowControls&&c.hideControls();c.options.enableAutosize&&c.media.addEventListener("loadedmetadata",function(j){if(c.options.videoHeight<=0&&c.domNode.getAttribute("height")===null&&!isNaN(j.target.videoHeight)){c.setPlayerSize(j.target.videoWidth,j.target.videoHeight);c.setControlsSize();c.media.setVideoSize(j.target.videoWidth,j.target.videoHeight)}},false)}a.addEventListener("play",function(){for(var j in mejs.players){var m=
+mejs.players[j];m.id!=c.id&&c.options.pauseOtherPlayers&&!m.paused&&!m.ended&&m.pause();m.hasFocus=false}c.hasFocus=true},false);c.media.addEventListener("ended",function(){if(c.options.autoRewind)try{c.media.setCurrentTime(0)}catch(j){}c.media.pause();c.setProgressRail&&c.setProgressRail();c.setCurrentRail&&c.setCurrentRail();if(c.options.loop)c.media.play();else!c.options.alwaysShowControls&&c.controlsEnabled&&c.showControls()},false);c.media.addEventListener("loadedmetadata",function(){c.updateDuration&&
+c.updateDuration();c.updateCurrent&&c.updateCurrent();if(!c.isFullScreen){c.setPlayerSize(c.width,c.height);c.setControlsSize()}},false);setTimeout(function(){c.setPlayerSize(c.width,c.height);c.setControlsSize()},50);c.globalBind("resize",function(){c.isFullScreen||mejs.MediaFeatures.hasTrueNativeFullScreen&&document.webkitIsFullScreen||c.setPlayerSize(c.width,c.height);c.setControlsSize()});c.media.pluginType=="youtube"&&c.container.find(".mejs-overlay-play").hide()}if(d&&a.pluginType=="native"){a.load();
+a.play()}if(c.options.success)typeof c.options.success=="string"?window[c.options.success](c.media,c.domNode,c):c.options.success(c.media,c.domNode,c)}},handleError:function(a){this.controls.hide();this.options.error&&this.options.error(a)},setPlayerSize:function(a,b){if(typeof a!="undefined")this.width=a;if(typeof b!="undefined")this.height=b;if(this.height.toString().indexOf("%")>0||this.$node.css("max-width")==="100%"||this.$node[0].currentStyle&&this.$node[0].currentStyle.maxWidth==="100%"){var c=
+this.isVideo?this.media.videoWidth&&this.media.videoWidth>0?this.media.videoWidth:this.options.defaultVideoWidth:this.options.defaultAudioWidth,e=this.isVideo?this.media.videoHeight&&this.media.videoHeight>0?this.media.videoHeight:this.options.defaultVideoHeight:this.options.defaultAudioHeight,d=this.container.parent().closest(":visible").width();c=this.isVideo||!this.options.autosizeProgress?parseInt(d*e/c,10):e;if(this.container.parent()[0].tagName.toLowerCase()==="body"){d=f(window).width();c=
+f(window).height()}if(c!=0&&d!=0){this.container.width(d).height(c);this.$media.add(this.container.find(".mejs-shim")).width("100%").height("100%");this.isVideo&&this.media.setVideoSize&&this.media.setVideoSize(d,c);this.layers.children(".mejs-layer").width("100%").height("100%")}}else{this.container.width(this.width).height(this.height);this.layers.children(".mejs-layer").width(this.width).height(this.height)}d=this.layers.find(".mejs-overlay-play");c=d.find(".mejs-overlay-button");d.height(this.container.height()-
+this.controls.height());c.css("margin-top","-"+(c.height()/2-this.controls.height()/2).toString()+"px")},setControlsSize:function(){var a=0,b=0,c=this.controls.find(".mejs-time-rail"),e=this.controls.find(".mejs-time-total");this.controls.find(".mejs-time-current");this.controls.find(".mejs-time-loaded");var d=c.siblings();if(this.options&&!this.options.autosizeProgress)b=parseInt(c.css("width"));if(b===0||!b){d.each(function(){var g=f(this);if(g.css("position")!="absolute"&&g.is(":visible"))a+=f(this).outerWidth(true)});
+b=this.controls.width()-a-(c.outerWidth(true)-c.width())}c.width(b);e.width(b-(e.outerWidth(true)-e.width()));this.setProgressRail&&this.setProgressRail();this.setCurrentRail&&this.setCurrentRail()},buildposter:function(a,b,c,e){var d=f('<div class="mejs-poster mejs-layer"></div>').appendTo(c);b=a.$media.attr("poster");if(a.options.poster!=="")b=a.options.poster;b!==""&&b!=null?this.setPoster(b):d.hide();e.addEventListener("play",function(){d.hide()},false)},setPoster:function(a){var b=this.container.find(".mejs-poster"),
+c=b.find("img");if(c.length==0)c=f('<img width="100%" height="100%" />').appendTo(b);c.attr("src",a);b.css({"background-image":"url("+a+")"})},buildoverlays:function(a,b,c,e){var d=this;if(a.isVideo){var g=f('<div class="mejs-overlay mejs-layer"><div class="mejs-overlay-loading"><span></span></div></div>').hide().appendTo(c),k=f('<div class="mejs-overlay mejs-layer"><div class="mejs-overlay-error"></div></div>').hide().appendTo(c),j=f('<div class="mejs-overlay mejs-layer mejs-overlay-play"><div class="mejs-overlay-button"></div></div>').appendTo(c).click(function(){if(d.options.clickToPlayPause)e.paused?
+e.play():e.pause()});e.addEventListener("play",function(){j.hide();g.hide();b.find(".mejs-time-buffering").hide();k.hide()},false);e.addEventListener("playing",function(){j.hide();g.hide();b.find(".mejs-time-buffering").hide();k.hide()},false);e.addEventListener("seeking",function(){g.show();b.find(".mejs-time-buffering").show()},false);e.addEventListener("seeked",function(){g.hide();b.find(".mejs-time-buffering").hide()},false);e.addEventListener("pause",function(){mejs.MediaFeatures.isiPhone||j.show()},
+false);e.addEventListener("waiting",function(){g.show();b.find(".mejs-time-buffering").show()},false);e.addEventListener("loadeddata",function(){g.show();b.find(".mejs-time-buffering").show()},false);e.addEventListener("canplay",function(){g.hide();b.find(".mejs-time-buffering").hide()},false);e.addEventListener("error",function(){g.hide();b.find(".mejs-time-buffering").hide();k.show();k.find("mejs-overlay-error").html("Error loading this resource")},false)}},buildkeyboard:function(a,b,c,e){this.globalBind("keydown",
+function(d){if(a.hasFocus&&a.options.enableKeyboard)for(var g=0,k=a.options.keyActions.length;g<k;g++)for(var j=a.options.keyActions[g],m=0,q=j.keys.length;m<q;m++)if(d.keyCode==j.keys[m]){d.preventDefault();j.action(a,e,d.keyCode);return false}return true});this.globalBind("click",function(d){if(f(d.target).closest(".mejs-container").length==0)a.hasFocus=false})},findTracks:function(){var a=this,b=a.$media.find("track");a.tracks=[];b.each(function(c,e){e=f(e);a.tracks.push({srclang:e.attr("srclang")?
+e.attr("srclang").toLowerCase():"",src:e.attr("src"),kind:e.attr("kind"),label:e.attr("label")||"",entries:[],isLoaded:false})})},changeSkin:function(a){this.container[0].className="mejs-container "+a;this.setPlayerSize(this.width,this.height);this.setControlsSize()},play:function(){this.media.play()},pause:function(){this.media.pause()},load:function(){this.media.load()},setMuted:function(a){this.media.setMuted(a)},setCurrentTime:function(a){this.media.setCurrentTime(a)},getCurrentTime:function(){return this.media.currentTime},
+setVolume:function(a){this.media.setVolume(a)},getVolume:function(){return this.media.volume},setSrc:function(a){this.media.setSrc(a)},remove:function(){var a,b;for(a in this.options.features){b=this.options.features[a];if(this["clean"+b])try{this["clean"+b](this)}catch(c){}}this.media.pluginType==="native"?this.$media.prop("controls",true):this.media.remove();this.isDynamic||this.$node.insertBefore(this.container);delete mejs.players[this.id];this.container.remove();this.globalUnbind();delete this.node.player}};
+(function(){function a(c,e){var d={d:[],w:[]};f.each((c||"").split(" "),function(g,k){var j=k+"."+e;if(j.indexOf(".")===0){d.d.push(j);d.w.push(j)}else d[b.test(k)?"w":"d"].push(j)});d.d=d.d.join(" ");d.w=d.w.join(" ");return d}var b=/^((after|before)print|(before)?unload|hashchange|message|o(ff|n)line|page(hide|show)|popstate|resize|storage)\b/;mejs.MediaElementPlayer.prototype.globalBind=function(c,e,d){c=a(c,this.id);c.d&&f(document).bind(c.d,e,d);c.w&&f(window).bind(c.w,e,d)};mejs.MediaElementPlayer.prototype.globalUnbind=
+function(c,e){c=a(c,this.id);c.d&&f(document).unbind(c.d,e);c.w&&f(window).unbind(c.w,e)}})();if(typeof jQuery!="undefined")jQuery.fn.mediaelementplayer=function(a){a===false?this.each(function(){var b=jQuery(this).data("mediaelementplayer");b&&b.remove();jQuery(this).removeData("mediaelementplayer")}):this.each(function(){jQuery(this).data("mediaelementplayer",new mejs.MediaElementPlayer(this,a))});return this};f(document).ready(function(){f(".mejs-player").mediaelementplayer()});window.MediaElementPlayer=
+mejs.MediaElementPlayer})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{playpauseText:mejs.i18n.t("Play/Pause")});f.extend(MediaElementPlayer.prototype,{buildplaypause:function(a,b,c,e){var d=f('<div class="mejs-button mejs-playpause-button mejs-play" ><button type="button" aria-controls="'+this.id+'" title="'+this.options.playpauseText+'" aria-label="'+this.options.playpauseText+'"></button></div>').appendTo(b).click(function(g){g.preventDefault();e.paused?e.play():e.pause();return false});e.addEventListener("play",function(){d.removeClass("mejs-play").addClass("mejs-pause")},
+false);e.addEventListener("playing",function(){d.removeClass("mejs-play").addClass("mejs-pause")},false);e.addEventListener("pause",function(){d.removeClass("mejs-pause").addClass("mejs-play")},false);e.addEventListener("paused",function(){d.removeClass("mejs-pause").addClass("mejs-play")},false)}})})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{stopText:"Stop"});f.extend(MediaElementPlayer.prototype,{buildstop:function(a,b,c,e){f('<div class="mejs-button mejs-stop-button mejs-stop"><button type="button" aria-controls="'+this.id+'" title="'+this.options.stopText+'" aria-label="'+this.options.stopText+'"></button></div>').appendTo(b).click(function(){e.paused||e.pause();if(e.currentTime>0){e.setCurrentTime(0);e.pause();b.find(".mejs-time-current").width("0px");b.find(".mejs-time-handle").css("left",
+"0px");b.find(".mejs-time-float-current").html(mejs.Utility.secondsToTimeCode(0));b.find(".mejs-currenttime").html(mejs.Utility.secondsToTimeCode(0));c.find(".mejs-poster").show()}})}})})(mejs.$);
+(function(f){f.extend(MediaElementPlayer.prototype,{buildprogress:function(a,b,c,e){f('<div class="mejs-time-rail"><span class="mejs-time-total"><span class="mejs-time-buffering"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-handle"></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div>').appendTo(b);b.find(".mejs-time-buffering").hide();var d=
+this,g=b.find(".mejs-time-total");c=b.find(".mejs-time-loaded");var k=b.find(".mejs-time-current"),j=b.find(".mejs-time-handle"),m=b.find(".mejs-time-float"),q=b.find(".mejs-time-float-current"),p=function(h){h=h.pageX;var l=g.offset(),r=g.outerWidth(true),n=0,o=n=0;if(e.duration){if(h<l.left)h=l.left;else if(h>r+l.left)h=r+l.left;o=h-l.left;n=o/r;n=n<=0.02?0:n*e.duration;t&&n!==e.currentTime&&e.setCurrentTime(n);if(!mejs.MediaFeatures.hasTouch){m.css("left",o);q.html(mejs.Utility.secondsToTimeCode(n));
+m.show()}}},t=false;g.bind("mousedown",function(h){if(h.which===1){t=true;p(h);d.globalBind("mousemove.dur",function(l){p(l)});d.globalBind("mouseup.dur",function(){t=false;m.hide();d.globalUnbind(".dur")});return false}}).bind("mouseenter",function(){d.globalBind("mousemove.dur",function(h){p(h)});mejs.MediaFeatures.hasTouch||m.show()}).bind("mouseleave",function(){if(!t){d.globalUnbind(".dur");m.hide()}});e.addEventListener("progress",function(h){a.setProgressRail(h);a.setCurrentRail(h)},false);
+e.addEventListener("timeupdate",function(h){a.setProgressRail(h);a.setCurrentRail(h)},false);d.loaded=c;d.total=g;d.current=k;d.handle=j},setProgressRail:function(a){var b=a!=undefined?a.target:this.media,c=null;if(b&&b.buffered&&b.buffered.length>0&&b.buffered.end&&b.duration)c=b.buffered.end(0)/b.duration;else if(b&&b.bytesTotal!=undefined&&b.bytesTotal>0&&b.bufferedBytes!=undefined)c=b.bufferedBytes/b.bytesTotal;else if(a&&a.lengthComputable&&a.total!=0)c=a.loaded/a.total;if(c!==null){c=Math.min(1,
+Math.max(0,c));this.loaded&&this.total&&this.loaded.width(this.total.width()*c)}},setCurrentRail:function(){if(this.media.currentTime!=undefined&&this.media.duration)if(this.total&&this.handle){var a=Math.round(this.total.width()*this.media.currentTime/this.media.duration),b=a-Math.round(this.handle.outerWidth(true)/2);this.current.width(a);this.handle.css("left",b)}}})})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{duration:-1,timeAndDurationSeparator:" <span> / </span> "});f.extend(MediaElementPlayer.prototype,{buildcurrent:function(a,b,c,e){f('<div class="mejs-time"><span class="mejs-currenttime">'+(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00")+"</span></div>").appendTo(b);this.currenttime=this.controls.find(".mejs-currenttime");e.addEventListener("timeupdate",function(){a.updateCurrent()},false)},buildduration:function(a,
+b,c,e){if(b.children().last().find(".mejs-currenttime").length>0)f(this.options.timeAndDurationSeparator+'<span class="mejs-duration">'+(this.options.duration>0?mejs.Utility.secondsToTimeCode(this.options.duration,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25):(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00"))+"</span>").appendTo(b.find(".mejs-time"));else{b.find(".mejs-currenttime").parent().addClass("mejs-currenttime-container");
+f('<div class="mejs-time mejs-duration-container"><span class="mejs-duration">'+(this.options.duration>0?mejs.Utility.secondsToTimeCode(this.options.duration,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25):(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00"))+"</span></div>").appendTo(b)}this.durationD=this.controls.find(".mejs-duration");e.addEventListener("timeupdate",function(){a.updateDuration()},
+false)},updateCurrent:function(){if(this.currenttime)this.currenttime.html(mejs.Utility.secondsToTimeCode(this.media.currentTime,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25))},updateDuration:function(){this.container.toggleClass("mejs-long-video",this.media.duration>3600);if(this.durationD&&(this.options.duration>0||this.media.duration))this.durationD.html(mejs.Utility.secondsToTimeCode(this.options.duration>0?this.options.duration:
+this.media.duration,this.options.alwaysShowHours,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25))}})})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{muteText:mejs.i18n.t("Mute Toggle"),hideVolumeOnTouchDevices:true,audioVolume:"horizontal",videoVolume:"vertical"});f.extend(MediaElementPlayer.prototype,{buildvolume:function(a,b,c,e){if(!(mejs.MediaFeatures.hasTouch&&this.options.hideVolumeOnTouchDevices)){var d=this,g=d.isVideo?d.options.videoVolume:d.options.audioVolume,k=g=="horizontal"?f('<div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="'+d.id+'" title="'+d.options.muteText+
+'" aria-label="'+d.options.muteText+'"></button></div><div class="mejs-horizontal-volume-slider"><div class="mejs-horizontal-volume-total"></div><div class="mejs-horizontal-volume-current"></div><div class="mejs-horizontal-volume-handle"></div></div>').appendTo(b):f('<div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="'+d.id+'" title="'+d.options.muteText+'" aria-label="'+d.options.muteText+'"></button><div class="mejs-volume-slider"><div class="mejs-volume-total"></div><div class="mejs-volume-current"></div><div class="mejs-volume-handle"></div></div></div>').appendTo(b),
+j=d.container.find(".mejs-volume-slider, .mejs-horizontal-volume-slider"),m=d.container.find(".mejs-volume-total, .mejs-horizontal-volume-total"),q=d.container.find(".mejs-volume-current, .mejs-horizontal-volume-current"),p=d.container.find(".mejs-volume-handle, .mejs-horizontal-volume-handle"),t=function(n,o){if(!j.is(":visible")&&typeof o=="undefined"){j.show();t(n,true);j.hide()}else{n=Math.max(0,n);n=Math.min(n,1);n==0?k.removeClass("mejs-mute").addClass("mejs-unmute"):k.removeClass("mejs-unmute").addClass("mejs-mute");
+if(g=="vertical"){var s=m.height(),u=m.position(),v=s-s*n;p.css("top",Math.round(u.top+v-p.height()/2));q.height(s-v);q.css("top",u.top+v)}else{s=m.width();u=m.position();s=s*n;p.css("left",Math.round(u.left+s-p.width()/2));q.width(Math.round(s))}}},h=function(n){var o=null,s=m.offset();if(g=="vertical"){o=m.height();parseInt(m.css("top").replace(/px/,""),10);o=(o-(n.pageY-s.top))/o;if(s.top==0||s.left==0)return}else{o=m.width();o=(n.pageX-s.left)/o}o=Math.max(0,o);o=Math.min(o,1);t(o);o==0?e.setMuted(true):
+e.setMuted(false);e.setVolume(o)},l=false,r=false;k.hover(function(){j.show();r=true},function(){r=false;!l&&g=="vertical"&&j.hide()});j.bind("mouseover",function(){r=true}).bind("mousedown",function(n){h(n);d.globalBind("mousemove.vol",function(o){h(o)});d.globalBind("mouseup.vol",function(){l=false;d.globalUnbind(".vol");!r&&g=="vertical"&&j.hide()});l=true;return false});k.find("button").click(function(){e.setMuted(!e.muted)});e.addEventListener("volumechange",function(){if(!l)if(e.muted){t(0);
+k.removeClass("mejs-mute").addClass("mejs-unmute")}else{t(e.volume);k.removeClass("mejs-unmute").addClass("mejs-mute")}},false);if(d.container.is(":visible")){t(a.options.startVolume);a.options.startVolume===0&&e.setMuted(true);e.pluginType==="native"&&e.setVolume(a.options.startVolume)}}}})})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{usePluginFullScreen:true,newWindowCallback:function(){return""},fullscreenText:mejs.i18n.t("Fullscreen")});f.extend(MediaElementPlayer.prototype,{isFullScreen:false,isNativeFullScreen:false,docStyleOverflow:null,isInIframe:false,buildfullscreen:function(a,b,c,e){if(a.isVideo){a.isInIframe=window.location!=window.parent.location;if(mejs.MediaFeatures.hasTrueNativeFullScreen){c=function(){if(mejs.MediaFeatures.isFullScreen()){a.isNativeFullScreen=true;a.setControlsSize()}else{a.isNativeFullScreen=
+false;a.exitFullScreen()}};mejs.MediaFeatures.hasMozNativeFullScreen?a.globalBind(mejs.MediaFeatures.fullScreenEventName,c):a.container.bind(mejs.MediaFeatures.fullScreenEventName,c)}var d=this,g=f('<div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="'+d.id+'" title="'+d.options.fullscreenText+'" aria-label="'+d.options.fullscreenText+'"></button></div>').appendTo(b);if(d.media.pluginType==="native"||!d.options.usePluginFullScreen&&!mejs.MediaFeatures.isFirefox)g.click(function(){mejs.MediaFeatures.hasTrueNativeFullScreen&&
+mejs.MediaFeatures.isFullScreen()||a.isFullScreen?a.exitFullScreen():a.enterFullScreen()});else{var k=null;if(function(){var h=document.createElement("x"),l=document.documentElement,r=window.getComputedStyle;if(!("pointerEvents"in h.style))return false;h.style.pointerEvents="auto";h.style.pointerEvents="x";l.appendChild(h);r=r&&r(h,"").pointerEvents==="auto";l.removeChild(h);return!!r}()&&!mejs.MediaFeatures.isOpera){var j=false,m=function(){if(j){for(var h in q)q[h].hide();g.css("pointer-events",
+"");d.controls.css("pointer-events","");d.media.removeEventListener("click",d.clickToPlayPauseCallback);j=false}},q={};b=["top","left","right","bottom"];var p,t=function(){var h=g.offset().left-d.container.offset().left,l=g.offset().top-d.container.offset().top,r=g.outerWidth(true),n=g.outerHeight(true),o=d.container.width(),s=d.container.height();for(p in q)q[p].css({position:"absolute",top:0,left:0});q.top.width(o).height(l);q.left.width(h).height(n).css({top:l});q.right.width(o-h-r).height(n).css({top:l,
+left:h+r});q.bottom.width(o).height(s-n-l).css({top:l+n})};d.globalBind("resize",function(){t()});p=0;for(c=b.length;p<c;p++)q[b[p]]=f('<div class="mejs-fullscreen-hover" />').appendTo(d.container).mouseover(m).hide();g.on("mouseover",function(){if(!d.isFullScreen){var h=g.offset(),l=a.container.offset();e.positionFullscreenButton(h.left-l.left,h.top-l.top,false);g.css("pointer-events","none");d.controls.css("pointer-events","none");d.media.addEventListener("click",d.clickToPlayPauseCallback);for(p in q)q[p].show();
+t();j=true}});e.addEventListener("fullscreenchange",function(){d.isFullScreen=!d.isFullScreen;d.isFullScreen?d.media.removeEventListener("click",d.clickToPlayPauseCallback):d.media.addEventListener("click",d.clickToPlayPauseCallback);m()});d.globalBind("mousemove",function(h){if(j){var l=g.offset();if(h.pageY<l.top||h.pageY>l.top+g.outerHeight(true)||h.pageX<l.left||h.pageX>l.left+g.outerWidth(true)){g.css("pointer-events","");d.controls.css("pointer-events","");j=false}}})}else g.on("mouseover",
+function(){if(k!==null){clearTimeout(k);delete k}var h=g.offset(),l=a.container.offset();e.positionFullscreenButton(h.left-l.left,h.top-l.top,true)}).on("mouseout",function(){if(k!==null){clearTimeout(k);delete k}k=setTimeout(function(){e.hideFullscreenButton()},1500)})}a.fullscreenBtn=g;d.globalBind("keydown",function(h){if((mejs.MediaFeatures.hasTrueNativeFullScreen&&mejs.MediaFeatures.isFullScreen()||d.isFullScreen)&&h.keyCode==27)a.exitFullScreen()})}},cleanfullscreen:function(a){a.exitFullScreen()},
+containerSizeTimeout:null,enterFullScreen:function(){var a=this;if(!(a.media.pluginType!=="native"&&(mejs.MediaFeatures.isFirefox||a.options.usePluginFullScreen))){docStyleOverflow=document.documentElement.style.overflow;document.documentElement.style.overflow="hidden";normalHeight=a.container.height();normalWidth=a.container.width();if(a.media.pluginType==="native")if(mejs.MediaFeatures.hasTrueNativeFullScreen){mejs.MediaFeatures.requestFullScreen(a.container[0]);a.isInIframe&&setTimeout(function c(){if(a.isNativeFullScreen)f(window).width()!==
+screen.width?a.exitFullScreen():setTimeout(c,500)},500)}else if(mejs.MediaFeatures.hasSemiNativeFullScreen){a.media.webkitEnterFullscreen();return}if(a.isInIframe){var b=a.options.newWindowCallback(this);if(b!=="")if(mejs.MediaFeatures.hasTrueNativeFullScreen)setTimeout(function(){if(!a.isNativeFullScreen){a.pause();window.open(b,a.id,"top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+",resizable=yes,scrollbars=no,status=no,toolbar=no")}},250);else{a.pause();window.open(b,a.id,
+"top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+",resizable=yes,scrollbars=no,status=no,toolbar=no");return}}a.container.addClass("mejs-container-fullscreen").width("100%").height("100%");a.containerSizeTimeout=setTimeout(function(){a.container.css({width:"100%",height:"100%"});a.setControlsSize()},500);if(a.media.pluginType==="native")a.$media.width("100%").height("100%");else{a.container.find(".mejs-shim").width("100%").height("100%");a.media.setVideoSize(f(window).width(),
+f(window).height())}a.layers.children("div").width("100%").height("100%");a.fullscreenBtn&&a.fullscreenBtn.removeClass("mejs-fullscreen").addClass("mejs-unfullscreen");a.setControlsSize();a.isFullScreen=true}},exitFullScreen:function(){clearTimeout(this.containerSizeTimeout);if(this.media.pluginType!=="native"&&mejs.MediaFeatures.isFirefox)this.media.setFullscreen(false);else{if(mejs.MediaFeatures.hasTrueNativeFullScreen&&(mejs.MediaFeatures.isFullScreen()||this.isFullScreen))mejs.MediaFeatures.cancelFullScreen();
+document.documentElement.style.overflow=docStyleOverflow;this.container.removeClass("mejs-container-fullscreen").width(normalWidth).height(normalHeight);if(this.media.pluginType==="native")this.$media.width(normalWidth).height(normalHeight);else{this.container.find(".mejs-shim").width(normalWidth).height(normalHeight);this.media.setVideoSize(normalWidth,normalHeight)}this.layers.children("div").width(normalWidth).height(normalHeight);this.fullscreenBtn.removeClass("mejs-unfullscreen").addClass("mejs-fullscreen");
+this.setControlsSize();this.isFullScreen=false}}})})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{startLanguage:"",tracksText:mejs.i18n.t("Captions/Subtitles"),hideCaptionsButtonWhenEmpty:true,toggleCaptionsButtonWhenOnlyOne:false,slidesSelector:""});f.extend(MediaElementPlayer.prototype,{hasChapters:false,buildtracks:function(a,b,c,e){if(a.tracks.length!=0){a.chapters=f('<div class="mejs-chapters mejs-layer"></div>').prependTo(c).hide();a.captions=f('<div class="mejs-captions-layer mejs-layer"><div class="mejs-captions-position mejs-captions-position-hover"><span class="mejs-captions-text"></span></div></div>').prependTo(c).hide();a.captionsText=
+a.captions.find(".mejs-captions-text");a.captionsButton=f('<div class="mejs-button mejs-captions-button"><button type="button" aria-controls="'+this.id+'" title="'+this.options.tracksText+'" aria-label="'+this.options.tracksText+'"></button><div class="mejs-captions-selector"><ul><li><input type="radio" name="'+a.id+'_captions" id="'+a.id+'_captions_none" value="none" checked="checked" /><label for="'+a.id+'_captions_none">'+mejs.i18n.t("None")+"</label></li></ul></div></div>").appendTo(b);for(b=
+c=0;b<a.tracks.length;b++)a.tracks[b].kind=="subtitles"&&c++;this.options.toggleCaptionsButtonWhenOnlyOne&&c==1?a.captionsButton.on("click",function(){a.setTrack(a.selectedTrack==null?a.tracks[0].srclang:"none")}):a.captionsButton.hover(function(){f(this).find(".mejs-captions-selector").css("visibility","visible")},function(){f(this).find(".mejs-captions-selector").css("visibility","hidden")}).on("click","input[type=radio]",function(){lang=this.value;a.setTrack(lang)});a.options.alwaysShowControls?
+a.container.find(".mejs-captions-position").addClass("mejs-captions-position-hover"):a.container.bind("controlsshown",function(){a.container.find(".mejs-captions-position").addClass("mejs-captions-position-hover")}).bind("controlshidden",function(){e.paused||a.container.find(".mejs-captions-position").removeClass("mejs-captions-position-hover")});a.trackToLoad=-1;a.selectedTrack=null;a.isLoadingTrack=false;for(b=0;b<a.tracks.length;b++)a.tracks[b].kind=="subtitles"&&a.addTrackButton(a.tracks[b].srclang,
+a.tracks[b].label);a.loadNextTrack();e.addEventListener("timeupdate",function(){a.displayCaptions()},false);if(a.options.slidesSelector!=""){a.slidesContainer=f(a.options.slidesSelector);e.addEventListener("timeupdate",function(){a.displaySlides()},false)}e.addEventListener("loadedmetadata",function(){a.displayChapters()},false);a.container.hover(function(){if(a.hasChapters){a.chapters.css("visibility","visible");a.chapters.fadeIn(200).height(a.chapters.find(".mejs-chapter").outerHeight())}},function(){a.hasChapters&&
+!e.paused&&a.chapters.fadeOut(200,function(){f(this).css("visibility","hidden");f(this).css("display","block")})});a.node.getAttribute("autoplay")!==null&&a.chapters.css("visibility","hidden")}},setTrack:function(a){var b;if(a=="none"){this.selectedTrack=null;this.captionsButton.removeClass("mejs-captions-enabled")}else for(b=0;b<this.tracks.length;b++)if(this.tracks[b].srclang==a){this.selectedTrack==null&&this.captionsButton.addClass("mejs-captions-enabled");this.selectedTrack=this.tracks[b];this.captions.attr("lang",
+this.selectedTrack.srclang);this.displayCaptions();break}},loadNextTrack:function(){this.trackToLoad++;if(this.trackToLoad<this.tracks.length){this.isLoadingTrack=true;this.loadTrack(this.trackToLoad)}else{this.isLoadingTrack=false;this.checkForTracks()}},loadTrack:function(a){var b=this,c=b.tracks[a];f.ajax({url:c.src,dataType:"text",success:function(e){c.entries=typeof e=="string"&&/<tt\s+xml/ig.exec(e)?mejs.TrackFormatParser.dfxp.parse(e):mejs.TrackFormatParser.webvvt.parse(e);c.isLoaded=true;
+b.enableTrackButton(c.srclang,c.label);b.loadNextTrack();c.kind=="chapters"&&b.media.addEventListener("play",function(){b.media.duration>0&&b.displayChapters(c)},false);c.kind=="slides"&&b.setupSlides(c)},error:function(){b.loadNextTrack()}})},enableTrackButton:function(a,b){if(b==="")b=mejs.language.codes[a]||a;this.captionsButton.find("input[value="+a+"]").prop("disabled",false).siblings("label").html(b);this.options.startLanguage==a&&f("#"+this.id+"_captions_"+a).click();this.adjustLanguageBox()},
+addTrackButton:function(a,b){if(b==="")b=mejs.language.codes[a]||a;this.captionsButton.find("ul").append(f('<li><input type="radio" name="'+this.id+'_captions" id="'+this.id+"_captions_"+a+'" value="'+a+'" disabled="disabled" /><label for="'+this.id+"_captions_"+a+'">'+b+" (loading)</label></li>"));this.adjustLanguageBox();this.container.find(".mejs-captions-translations option[value="+a+"]").remove()},adjustLanguageBox:function(){this.captionsButton.find(".mejs-captions-selector").height(this.captionsButton.find(".mejs-captions-selector ul").outerHeight(true)+
+this.captionsButton.find(".mejs-captions-translations").outerHeight(true))},checkForTracks:function(){var a=false;if(this.options.hideCaptionsButtonWhenEmpty){for(i=0;i<this.tracks.length;i++)if(this.tracks[i].kind=="subtitles"){a=true;break}if(!a){this.captionsButton.hide();this.setControlsSize()}}},displayCaptions:function(){if(typeof this.tracks!="undefined"){var a,b=this.selectedTrack;if(b!=null&&b.isLoaded)for(a=0;a<b.entries.times.length;a++)if(this.media.currentTime>=b.entries.times[a].start&&
+this.media.currentTime<=b.entries.times[a].stop){this.captionsText.html(b.entries.text[a]);this.captions.show().height(0);return}this.captions.hide()}},setupSlides:function(a){this.slides=a;this.slides.entries.imgs=[this.slides.entries.text.length];this.showSlide(0)},showSlide:function(a){if(!(typeof this.tracks=="undefined"||typeof this.slidesContainer=="undefined")){var b=this,c=b.slides.entries.text[a],e=b.slides.entries.imgs[a];if(typeof e=="undefined"||typeof e.fadeIn=="undefined")b.slides.entries.imgs[a]=
+e=f('<img src="'+c+'">').on("load",function(){e.appendTo(b.slidesContainer).hide().fadeIn().siblings(":visible").fadeOut()});else if(!e.is(":visible")&&!e.is(":animated")){console.log("showing existing slide");e.fadeIn().siblings(":visible").fadeOut()}}},displaySlides:function(){if(typeof this.slides!="undefined"){var a=this.slides,b;for(b=0;b<a.entries.times.length;b++)if(this.media.currentTime>=a.entries.times[b].start&&this.media.currentTime<=a.entries.times[b].stop){this.showSlide(b);break}}},
+displayChapters:function(){var a;for(a=0;a<this.tracks.length;a++)if(this.tracks[a].kind=="chapters"&&this.tracks[a].isLoaded){this.drawChapters(this.tracks[a]);this.hasChapters=true;break}},drawChapters:function(a){var b=this,c,e,d=e=0;b.chapters.empty();for(c=0;c<a.entries.times.length;c++){e=a.entries.times[c].stop-a.entries.times[c].start;e=Math.floor(e/b.media.duration*100);if(e+d>100||c==a.entries.times.length-1&&e+d<100)e=100-d;b.chapters.append(f('<div class="mejs-chapter" rel="'+a.entries.times[c].start+
+'" style="left: '+d.toString()+"%;width: "+e.toString()+'%;"><div class="mejs-chapter-block'+(c==a.entries.times.length-1?" mejs-chapter-block-last":"")+'"><span class="ch-title">'+a.entries.text[c]+'</span><span class="ch-time">'+mejs.Utility.secondsToTimeCode(a.entries.times[c].start)+"&ndash;"+mejs.Utility.secondsToTimeCode(a.entries.times[c].stop)+"</span></div></div>"));d+=e}b.chapters.find("div.mejs-chapter").click(function(){b.media.setCurrentTime(parseFloat(f(this).attr("rel")));b.media.paused&&
+b.media.play()});b.chapters.show()}});mejs.language={codes:{af:"Afrikaans",sq:"Albanian",ar:"Arabic",be:"Belarusian",bg:"Bulgarian",ca:"Catalan",zh:"Chinese","zh-cn":"Chinese Simplified","zh-tw":"Chinese Traditional",hr:"Croatian",cs:"Czech",da:"Danish",nl:"Dutch",en:"English",et:"Estonian",tl:"Filipino",fi:"Finnish",fr:"French",gl:"Galician",de:"German",el:"Greek",ht:"Haitian Creole",iw:"Hebrew",hi:"Hindi",hu:"Hungarian",is:"Icelandic",id:"Indonesian",ga:"Irish",it:"Italian",ja:"Japanese",ko:"Korean",
+lv:"Latvian",lt:"Lithuanian",mk:"Macedonian",ms:"Malay",mt:"Maltese",no:"Norwegian",fa:"Persian",pl:"Polish",pt:"Portuguese",ro:"Romanian",ru:"Russian",sr:"Serbian",sk:"Slovak",sl:"Slovenian",es:"Spanish",sw:"Swahili",sv:"Swedish",tl:"Tagalog",th:"Thai",tr:"Turkish",uk:"Ukrainian",vi:"Vietnamese",cy:"Welsh",yi:"Yiddish"}};mejs.TrackFormatParser={webvvt:{pattern_identifier:/^([a-zA-z]+-)?[0-9]+$/,pattern_timecode:/^([0-9]{2}:[0-9]{2}:[0-9]{2}([,.][0-9]{1,3})?) --\> ([0-9]{2}:[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,
+parse:function(a){var b=0;a=mejs.TrackFormatParser.split2(a,/\r?\n/);for(var c={text:[],times:[]},e,d;b<a.length;b++)if(this.pattern_identifier.exec(a[b])){b++;if((e=this.pattern_timecode.exec(a[b]))&&b<a.length){b++;d=a[b];for(b++;a[b]!==""&&b<a.length;){d=d+"\n"+a[b];b++}d=f.trim(d).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig,"<a href='$1' target='_blank'>$1</a>");c.text.push(d);c.times.push({start:mejs.Utility.convertSMPTEtoSeconds(e[1])==0?0.2:mejs.Utility.convertSMPTEtoSeconds(e[1]),
+stop:mejs.Utility.convertSMPTEtoSeconds(e[3]),settings:e[5]})}}return c}},dfxp:{parse:function(a){a=f(a).filter("tt");var b=0;b=a.children("div").eq(0);var c=b.find("p");b=a.find("#"+b.attr("style"));var e,d;a={text:[],times:[]};if(b.length){d=b.removeAttr("id").get(0).attributes;if(d.length){e={};for(b=0;b<d.length;b++)e[d[b].name.split(":")[1]]=d[b].value}}for(b=0;b<c.length;b++){var g;d={start:null,stop:null,style:null};if(c.eq(b).attr("begin"))d.start=mejs.Utility.convertSMPTEtoSeconds(c.eq(b).attr("begin"));
+if(!d.start&&c.eq(b-1).attr("end"))d.start=mejs.Utility.convertSMPTEtoSeconds(c.eq(b-1).attr("end"));if(c.eq(b).attr("end"))d.stop=mejs.Utility.convertSMPTEtoSeconds(c.eq(b).attr("end"));if(!d.stop&&c.eq(b+1).attr("begin"))d.stop=mejs.Utility.convertSMPTEtoSeconds(c.eq(b+1).attr("begin"));if(e){g="";for(var k in e)g+=k+":"+e[k]+";"}if(g)d.style=g;if(d.start==0)d.start=0.2;a.times.push(d);d=f.trim(c.eq(b).html()).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig,
+"<a href='$1' target='_blank'>$1</a>");a.text.push(d);if(a.times.start==0)a.times.start=2}return a}},split2:function(a,b){return a.split(b)}};if("x\n\ny".split(/\n/gi).length!=3)mejs.TrackFormatParser.split2=function(a,b){var c=[],e="",d;for(d=0;d<a.length;d++){e+=a.substring(d,d+1);if(b.test(e)){c.push(e.replace(b,""));e=""}}c.push(e);return c}})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{contextMenuItems:[{render:function(a){if(typeof a.enterFullScreen=="undefined")return null;return a.isFullScreen?mejs.i18n.t("Turn off Fullscreen"):mejs.i18n.t("Go Fullscreen")},click:function(a){a.isFullScreen?a.exitFullScreen():a.enterFullScreen()}},{render:function(a){return a.media.muted?mejs.i18n.t("Unmute"):mejs.i18n.t("Mute")},click:function(a){a.media.muted?a.setMuted(false):a.setMuted(true)}},{isSeparator:true},{render:function(){return mejs.i18n.t("Download Video")},
+click:function(a){window.location.href=a.media.currentSrc}}]});f.extend(MediaElementPlayer.prototype,{buildcontextmenu:function(a){a.contextMenu=f('<div class="mejs-contextmenu"></div>').appendTo(f("body")).hide();a.container.bind("contextmenu",function(b){if(a.isContextMenuEnabled){b.preventDefault();a.renderContextMenu(b.clientX-1,b.clientY-1);return false}});a.container.bind("click",function(){a.contextMenu.hide()});a.contextMenu.bind("mouseleave",function(){a.startContextMenuTimer()})},cleancontextmenu:function(a){a.contextMenu.remove()},
+isContextMenuEnabled:true,enableContextMenu:function(){this.isContextMenuEnabled=true},disableContextMenu:function(){this.isContextMenuEnabled=false},contextMenuTimeout:null,startContextMenuTimer:function(){var a=this;a.killContextMenuTimer();a.contextMenuTimer=setTimeout(function(){a.hideContextMenu();a.killContextMenuTimer()},750)},killContextMenuTimer:function(){var a=this.contextMenuTimer;if(a!=null){clearTimeout(a);delete a}},hideContextMenu:function(){this.contextMenu.hide()},renderContextMenu:function(a,
+b){for(var c=this,e="",d=c.options.contextMenuItems,g=0,k=d.length;g<k;g++)if(d[g].isSeparator)e+='<div class="mejs-contextmenu-separator"></div>';else{var j=d[g].render(c);if(j!=null)e+='<div class="mejs-contextmenu-item" data-itemindex="'+g+'" id="element-'+Math.random()*1E6+'">'+j+"</div>"}c.contextMenu.empty().append(f(e)).css({top:b,left:a}).show();c.contextMenu.find(".mejs-contextmenu-item").each(function(){var m=f(this),q=parseInt(m.data("itemindex"),10),p=c.options.contextMenuItems[q];typeof p.show!=
+"undefined"&&p.show(m,c);m.click(function(){typeof p.click!="undefined"&&p.click(c);c.contextMenu.hide()})});setTimeout(function(){c.killControlsTimer("rev3")},100)}})})(mejs.$);
+(function(f){f.extend(mejs.MepDefaults,{postrollCloseText:mejs.i18n.t("Close")});f.extend(MediaElementPlayer.prototype,{buildpostroll:function(a,b,c){var e=this.container.find('link[rel="postroll"]').attr("href");if(typeof e!=="undefined"){a.postroll=f('<div class="mejs-postroll-layer mejs-layer"><a class="mejs-postroll-close" onclick="$(this).parent().hide();return false;">'+this.options.postrollCloseText+'</a><div class="mejs-postroll-layer-content"></div></div>').prependTo(c).hide();this.media.addEventListener("ended",
+function(){f.ajax({dataType:"html",url:e,success:function(d){c.find(".mejs-postroll-layer-content").html(d)}});a.postroll.show()},false)}}})})(mejs.$);