Showing 37 changed files with 2198 additions and 0 deletions
+1
img
... ...
@@ -0,0 +1 @@
1
+skin/img
+34
js/jplayer.playlist.min.js
... ...
@@ -0,0 +1,34 @@
1
+/*
2
+ * Playlist Object for the jPlayer Plugin
3
+ * http://www.jplayer.org
4
+ *
5
+ * Copyright (c) 2009 - 2014 Happyworm Ltd
6
+ * Licensed under the MIT license.
7
+ * http://www.opensource.org/licenses/MIT
8
+ *
9
+ * Author: Mark J Panaghiston
10
+ * Version: 2.4.0
11
+ * Date: 1st September 2014
12
+ *
13
+ * Requires:
14
+ *  - jQuery 1.7.0+
15
+ *  - jPlayer 2.7.0+
16
+ */
17
+
18
+(function(b,f){jPlayerPlaylist=function(a,c,d){var e=this;this.current=0;this.removing=this.shuffled=this.loop=!1;this.cssSelector=b.extend({},this._cssSelector,a);this.options=b.extend(!0,{keyBindings:{next:{key:39,fn:function(){e.next()}},previous:{key:37,fn:function(){e.previous()}}},stateClass:{shuffled:"jp-state-shuffled"}},this._options,d);this.playlist=[];this.original=[];this._initPlaylist(c);this.cssSelector.details=this.cssSelector.cssSelectorAncestor+" .jp-details";this.cssSelector.playlist=
19
+this.cssSelector.cssSelectorAncestor+" .jp-playlist";this.cssSelector.next=this.cssSelector.cssSelectorAncestor+" .jp-next";this.cssSelector.previous=this.cssSelector.cssSelectorAncestor+" .jp-previous";this.cssSelector.shuffle=this.cssSelector.cssSelectorAncestor+" .jp-shuffle";this.cssSelector.shuffleOff=this.cssSelector.cssSelectorAncestor+" .jp-shuffle-off";this.options.cssSelectorAncestor=this.cssSelector.cssSelectorAncestor;this.options.repeat=function(a){e.loop=a.jPlayer.options.loop};b(this.cssSelector.jPlayer).bind(b.jPlayer.event.ready,
20
+function(){e._init()});b(this.cssSelector.jPlayer).bind(b.jPlayer.event.ended,function(){e.next()});b(this.cssSelector.jPlayer).bind(b.jPlayer.event.play,function(){b(this).jPlayer("pauseOthers")});b(this.cssSelector.jPlayer).bind(b.jPlayer.event.resize,function(a){a.jPlayer.options.fullScreen?b(e.cssSelector.details).show():b(e.cssSelector.details).hide()});b(this.cssSelector.previous).click(function(a){a.preventDefault();e.previous();e.blur(this)});b(this.cssSelector.next).click(function(a){a.preventDefault();
21
+e.next();e.blur(this)});b(this.cssSelector.shuffle).click(function(a){a.preventDefault();e.shuffled&&b(e.cssSelector.jPlayer).jPlayer("option","useStateClassSkin")?e.shuffle(!1):e.shuffle(!0);e.blur(this)});b(this.cssSelector.shuffleOff).click(function(a){a.preventDefault();e.shuffle(!1);e.blur(this)}).hide();this.options.fullScreen||b(this.cssSelector.details).hide();b(this.cssSelector.playlist+" ul").empty();this._createItemHandlers();b(this.cssSelector.jPlayer).jPlayer(this.options)};jPlayerPlaylist.prototype=
22
+{_cssSelector:{jPlayer:"#jquery_jplayer_1",cssSelectorAncestor:"#jp_container_1"},_options:{playlistOptions:{autoPlay:!1,loopOnPrevious:!1,shuffleOnLoop:!0,enableRemoveControls:!1,displayTime:"slow",addTime:"fast",removeTime:"fast",shuffleTime:"slow",itemClass:"jp-playlist-item",freeGroupClass:"jp-free-media",freeItemClass:"jp-playlist-item-free",removeItemClass:"jp-playlist-item-remove"}},option:function(a,b){if(b===f)return this.options.playlistOptions[a];this.options.playlistOptions[a]=b;switch(a){case "enableRemoveControls":this._updateControls();
23
+break;case "itemClass":case "freeGroupClass":case "freeItemClass":case "removeItemClass":this._refresh(!0),this._createItemHandlers()}return this},_init:function(){var a=this;this._refresh(function(){a.options.playlistOptions.autoPlay?a.play(a.current):a.select(a.current)})},_initPlaylist:function(a){this.current=0;this.removing=this.shuffled=!1;this.original=b.extend(!0,[],a);this._originalPlaylist()},_originalPlaylist:function(){var a=this;this.playlist=[];b.each(this.original,function(b){a.playlist[b]=
24
+a.original[b]})},_refresh:function(a){var c=this;if(a&&!b.isFunction(a))b(this.cssSelector.playlist+" ul").empty(),b.each(this.playlist,function(a){b(c.cssSelector.playlist+" ul").append(c._createListItem(c.playlist[a]))}),this._updateControls();else{var d=b(this.cssSelector.playlist+" ul").children().length?this.options.playlistOptions.displayTime:0;b(this.cssSelector.playlist+" ul").slideUp(d,function(){var d=b(this);b(this).empty();b.each(c.playlist,function(a){d.append(c._createListItem(c.playlist[a]))});
25
+c._updateControls();b.isFunction(a)&&a();c.playlist.length?b(this).slideDown(c.options.playlistOptions.displayTime):b(this).show()})}},_createListItem:function(a){var c=this,d="<li><div>",d=d+("<a href='javascript:;' class='"+this.options.playlistOptions.removeItemClass+"'>&times;</a>");if(a.free){var e=!0,d=d+("<span class='"+this.options.playlistOptions.freeGroupClass+"'>(");b.each(a,function(a,f){b.jPlayer.prototype.format[a]&&(e?e=!1:d+=" | ",d+="<a class='"+c.options.playlistOptions.freeItemClass+
26
+"' href='"+f+"' tabindex='-1'>"+a+"</a>")});d+=")</span>"}d+="<a href='javascript:;' class='"+this.options.playlistOptions.itemClass+"' tabindex='0'>"+a.title+(a.artist?" <span class='jp-artist'>by "+a.artist+"</span>":"")+"</a>";return d+="</div></li>"},_createItemHandlers:function(){var a=this;b(this.cssSelector.playlist).off("click","a."+this.options.playlistOptions.itemClass).on("click","a."+this.options.playlistOptions.itemClass,function(c){c.preventDefault();c=b(this).parent().parent().index();
27
+a.current!==c?a.play(c):b(a.cssSelector.jPlayer).jPlayer("play");a.blur(this)});b(this.cssSelector.playlist).off("click","a."+this.options.playlistOptions.freeItemClass).on("click","a."+this.options.playlistOptions.freeItemClass,function(c){c.preventDefault();b(this).parent().parent().find("."+a.options.playlistOptions.itemClass).click();a.blur(this)});b(this.cssSelector.playlist).off("click","a."+this.options.playlistOptions.removeItemClass).on("click","a."+this.options.playlistOptions.removeItemClass,
28
+function(c){c.preventDefault();c=b(this).parent().parent().index();a.remove(c);a.blur(this)})},_updateControls:function(){this.options.playlistOptions.enableRemoveControls?b(this.cssSelector.playlist+" ."+this.options.playlistOptions.removeItemClass).show():b(this.cssSelector.playlist+" ."+this.options.playlistOptions.removeItemClass).hide();this.shuffled?b(this.cssSelector.jPlayer).jPlayer("addStateClass","shuffled"):b(this.cssSelector.jPlayer).jPlayer("removeStateClass","shuffled");b(this.cssSelector.shuffle).length&&
29
+b(this.cssSelector.shuffleOff).length&&(this.shuffled?(b(this.cssSelector.shuffleOff).show(),b(this.cssSelector.shuffle).hide()):(b(this.cssSelector.shuffleOff).hide(),b(this.cssSelector.shuffle).show()))},_highlight:function(a){this.playlist.length&&a!==f&&(b(this.cssSelector.playlist+" .jp-playlist-current").removeClass("jp-playlist-current"),b(this.cssSelector.playlist+" li:nth-child("+(a+1)+")").addClass("jp-playlist-current").find(".jp-playlist-item").addClass("jp-playlist-current"))},setPlaylist:function(a){this._initPlaylist(a);
30
+this._init()},add:function(a,c){b(this.cssSelector.playlist+" ul").append(this._createListItem(a)).find("li:last-child").hide().slideDown(this.options.playlistOptions.addTime);this._updateControls();this.original.push(a);this.playlist.push(a);c?this.play(this.playlist.length-1):1===this.original.length&&this.select(0)},remove:function(a){var c=this;if(a===f)return this._initPlaylist([]),this._refresh(function(){b(c.cssSelector.jPlayer).jPlayer("clearMedia")}),!0;if(this.removing)return!1;a=0>a?c.original.length+
31
+a:a;0<=a&&a<this.playlist.length&&(this.removing=!0,b(this.cssSelector.playlist+" li:nth-child("+(a+1)+")").slideUp(this.options.playlistOptions.removeTime,function(){b(this).remove();if(c.shuffled){var d=c.playlist[a];b.each(c.original,function(a){if(c.original[a]===d)return c.original.splice(a,1),!1})}else c.original.splice(a,1);c.playlist.splice(a,1);c.original.length?a===c.current?(c.current=a<c.original.length?c.current:c.original.length-1,c.select(c.current)):a<c.current&&c.current--:(b(c.cssSelector.jPlayer).jPlayer("clearMedia"),
32
+c.current=0,c.shuffled=!1,c._updateControls());c.removing=!1}));return!0},select:function(a){a=0>a?this.original.length+a:a;0<=a&&a<this.playlist.length?(this.current=a,this._highlight(a),b(this.cssSelector.jPlayer).jPlayer("setMedia",this.playlist[this.current])):this.current=0},play:function(a){a=0>a?this.original.length+a:a;0<=a&&a<this.playlist.length?this.playlist.length&&(this.select(a),b(this.cssSelector.jPlayer).jPlayer("play")):a===f&&b(this.cssSelector.jPlayer).jPlayer("play")},pause:function(){b(this.cssSelector.jPlayer).jPlayer("pause")},
33
+next:function(){var a=this.current+1<this.playlist.length?this.current+1:0;this.loop?0===a&&this.shuffled&&this.options.playlistOptions.shuffleOnLoop&&1<this.playlist.length?this.shuffle(!0,!0):this.play(a):0<a&&this.play(a)},previous:function(){var a=0<=this.current-1?this.current-1:this.playlist.length-1;(this.loop&&this.options.playlistOptions.loopOnPrevious||a<this.playlist.length-1)&&this.play(a)},shuffle:function(a,c){var d=this;a===f&&(a=!this.shuffled);(a||a!==this.shuffled)&&b(this.cssSelector.playlist+
34
+" ul").slideUp(this.options.playlistOptions.shuffleTime,function(){(d.shuffled=a)?d.playlist.sort(function(){return.5-Math.random()}):d._originalPlaylist();d._refresh(!0);c||!b(d.cssSelector.jPlayer).data("jPlayer").status.paused?d.play(0):d.select(0);b(this).slideDown(d.options.playlistOptions.shuffleTime)})},blur:function(a){b(this.cssSelector.jPlayer).jPlayer("option","autoBlur")&&b(a).blur()}}})(jQuery);
+120
js/jquery.jplayer.min.js
... ...
@@ -0,0 +1,120 @@
1
+/*
2
+ * jPlayer Plugin for jQuery JavaScript Library
3
+ * http://www.jplayer.org
4
+ *
5
+ * Copyright (c) 2009 - 2014 Happyworm Ltd
6
+ * Licensed under the MIT license.
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ * Author: Mark J Panaghiston
10
+ * Version: 2.7.0
11
+ * Date: 1st September 2014
12
+ */
13
+
14
+(function(b,f){"function"===typeof define&&define.amd?define(["jquery"],f):b.jQuery?f(b.jQuery):f(b.Zepto)})(this,function(b,f){b.fn.jPlayer=function(a){var c="string"===typeof a,d=Array.prototype.slice.call(arguments,1),e=this;a=!c&&d.length?b.extend.apply(null,[!0,a].concat(d)):a;if(c&&"_"===a.charAt(0))return e;c?this.each(function(){var c=b(this).data("jPlayer"),h=c&&b.isFunction(c[a])?c[a].apply(c,d):c;if(h!==c&&h!==f)return e=h,!1}):this.each(function(){var c=b(this).data("jPlayer");c?c.option(a||
15
+{}):b(this).data("jPlayer",new b.jPlayer(a,this))});return e};b.jPlayer=function(a,c){if(arguments.length){this.element=b(c);this.options=b.extend(!0,{},this.options,a);var d=this;this.element.bind("remove.jPlayer",function(){d.destroy()});this._init()}};"function"!==typeof b.fn.stop&&(b.fn.stop=function(){});b.jPlayer.emulateMethods="load play pause";b.jPlayer.emulateStatus="src readyState networkState currentTime duration paused ended playbackRate";b.jPlayer.emulateOptions="muted volume";b.jPlayer.reservedEvent=
16
+"ready flashreset resize repeat error warning";b.jPlayer.event={};b.each("ready setmedia flashreset resize repeat click error warning loadstart progress suspend abort emptied stalled play pause loadedmetadata loadeddata waiting playing canplay canplaythrough seeking seeked timeupdate ended ratechange durationchange volumechange".split(" "),function(){b.jPlayer.event[this]="jPlayer_"+this});b.jPlayer.htmlEvent="loadstart abort emptied stalled loadedmetadata loadeddata canplay canplaythrough".split(" ");
17
+b.jPlayer.pause=function(){b.each(b.jPlayer.prototype.instances,function(a,c){c.data("jPlayer").status.srcSet&&c.jPlayer("pause")})};b.jPlayer.timeFormat={showHour:!1,showMin:!0,showSec:!0,padHour:!1,padMin:!0,padSec:!0,sepHour:":",sepMin:":",sepSec:""};var l=function(){this.init()};l.prototype={init:function(){this.options={timeFormat:b.jPlayer.timeFormat}},time:function(a){var c=new Date(1E3*(a&&"number"===typeof a?a:0)),b=c.getUTCHours();a=this.options.timeFormat.showHour?c.getUTCMinutes():c.getUTCMinutes()+
18
+60*b;c=this.options.timeFormat.showMin?c.getUTCSeconds():c.getUTCSeconds()+60*a;b=this.options.timeFormat.padHour&&10>b?"0"+b:b;a=this.options.timeFormat.padMin&&10>a?"0"+a:a;c=this.options.timeFormat.padSec&&10>c?"0"+c:c;b=""+(this.options.timeFormat.showHour?b+this.options.timeFormat.sepHour:"");b+=this.options.timeFormat.showMin?a+this.options.timeFormat.sepMin:"";return b+=this.options.timeFormat.showSec?c+this.options.timeFormat.sepSec:""}};var n=new l;b.jPlayer.convertTime=function(a){return n.time(a)};
19
+b.jPlayer.uaBrowser=function(a){a=a.toLowerCase();var c=/(opera)(?:.*version)?[ \/]([\w.]+)/,b=/(msie) ([\w.]+)/,e=/(mozilla)(?:.*? rv:([\w.]+))?/;a=/(webkit)[ \/]([\w.]+)/.exec(a)||c.exec(a)||b.exec(a)||0>a.indexOf("compatible")&&e.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}};b.jPlayer.uaPlatform=function(a){var c=a.toLowerCase(),b=/(android)/,e=/(mobile)/;a=/(ipad|iphone|ipod|android|blackberry|playbook|windows ce|webos)/.exec(c)||[];c=/(ipad|playbook)/.exec(c)||!e.exec(c)&&b.exec(c)||
20
+[];a[1]&&(a[1]=a[1].replace(/\s/g,"_"));return{platform:a[1]||"",tablet:c[1]||""}};b.jPlayer.browser={};b.jPlayer.platform={};var k=b.jPlayer.uaBrowser(navigator.userAgent);k.browser&&(b.jPlayer.browser[k.browser]=!0,b.jPlayer.browser.version=k.version);k=b.jPlayer.uaPlatform(navigator.userAgent);k.platform&&(b.jPlayer.platform[k.platform]=!0,b.jPlayer.platform.mobile=!k.tablet,b.jPlayer.platform.tablet=!!k.tablet);b.jPlayer.getDocMode=function(){var a;b.jPlayer.browser.msie&&(document.documentMode?
21
+a=document.documentMode:(a=5,document.compatMode&&"CSS1Compat"===document.compatMode&&(a=7)));return a};b.jPlayer.browser.documentMode=b.jPlayer.getDocMode();b.jPlayer.nativeFeatures={init:function(){var a=document,c=a.createElement("video"),b={w3c:"fullscreenEnabled fullscreenElement requestFullscreen exitFullscreen fullscreenchange fullscreenerror".split(" "),moz:"mozFullScreenEnabled mozFullScreenElement mozRequestFullScreen mozCancelFullScreen mozfullscreenchange mozfullscreenerror".split(" "),
22
+webkit:" webkitCurrentFullScreenElement webkitRequestFullScreen webkitCancelFullScreen webkitfullscreenchange ".split(" "),webkitVideo:"webkitSupportsFullscreen webkitDisplayingFullscreen webkitEnterFullscreen webkitExitFullscreen  ".split(" ")},e=["w3c","moz","webkit","webkitVideo"],g,h;this.fullscreen=c={support:{w3c:!!a[b.w3c[0]],moz:!!a[b.moz[0]],webkit:"function"===typeof a[b.webkit[3]],webkitVideo:"function"===typeof c[b.webkitVideo[2]]},used:{}};g=0;for(h=e.length;g<h;g++){var f=e[g];if(c.support[f]){c.spec=
23
+f;c.used[f]=!0;break}}if(c.spec){var m=b[c.spec];c.api={fullscreenEnabled:!0,fullscreenElement:function(c){c=c?c:a;return c[m[1]]},requestFullscreen:function(a){return a[m[2]]()},exitFullscreen:function(c){c=c?c:a;return c[m[3]]()}};c.event={fullscreenchange:m[4],fullscreenerror:m[5]}}else c.api={fullscreenEnabled:!1,fullscreenElement:function(){return null},requestFullscreen:function(){},exitFullscreen:function(){}},c.event={}}};b.jPlayer.nativeFeatures.init();b.jPlayer.focus=null;b.jPlayer.keyIgnoreElementNames=
24
+"A INPUT TEXTAREA SELECT BUTTON";var p=function(a){var c=b.jPlayer.focus,d=document.activeElement,e;c&&("undefined"!==typeof d?null!==d&&"BODY"!==d.nodeName.toUpperCase()&&(e=!0):b.each(b.jPlayer.keyIgnoreElementNames.split(/\s+/g),function(c,b){if(a.target.nodeName.toUpperCase()===b.toUpperCase())return e=!0,!1}),e||b.each(c.options.keyBindings,function(d,e){if(e&&a.which===e.key&&b.isFunction(e.fn))return a.preventDefault(),e.fn(c),!1}))};b.jPlayer.keys=function(a){b(document.documentElement).unbind("keydown.jPlayer");
25
+a&&b(document.documentElement).bind("keydown.jPlayer",p)};b.jPlayer.keys(!0);b.jPlayer.prototype={count:0,version:{script:"2.7.0",needFlash:"2.7.0",flash:"unknown"},options:{swfPath:"js",solution:"html, flash",supplied:"mp3",preload:"metadata",volume:.8,muted:!1,remainingDuration:!1,toggleDuration:!1,captureDuration:!0,playbackRate:1,defaultPlaybackRate:1,minPlaybackRate:.5,maxPlaybackRate:4,wmode:"opaque",backgroundColor:"#000000",cssSelectorAncestor:"#jp_container_1",cssSelector:{videoPlay:".jp-video-play",
26
+play:".jp-play",pause:".jp-pause",stop:".jp-stop",seekBar:".jp-seek-bar",playBar:".jp-play-bar",mute:".jp-mute",unmute:".jp-unmute",volumeBar:".jp-volume-bar",volumeBarValue:".jp-volume-bar-value",volumeMax:".jp-volume-max",playbackRateBar:".jp-playback-rate-bar",playbackRateBarValue:".jp-playback-rate-bar-value",currentTime:".jp-current-time",duration:".jp-duration",title:".jp-title",fullScreen:".jp-full-screen",restoreScreen:".jp-restore-screen",repeat:".jp-repeat",repeatOff:".jp-repeat-off",gui:".jp-gui",
27
+noSolution:".jp-no-solution"},stateClass:{playing:"jp-state-playing",seeking:"jp-state-seeking",muted:"jp-state-muted",looped:"jp-state-looped",fullScreen:"jp-state-full-screen"},useStateClassSkin:!1,autoBlur:!0,smoothPlayBar:!1,fullScreen:!1,fullWindow:!1,autohide:{restored:!1,full:!0,fadeIn:200,fadeOut:600,hold:1E3},loop:!1,repeat:function(a){a.jPlayer.options.loop?b(this).unbind(".jPlayerRepeat").bind(b.jPlayer.event.ended+".jPlayer.jPlayerRepeat",function(){b(this).jPlayer("play")}):b(this).unbind(".jPlayerRepeat")},
28
+nativeVideoControls:{},noFullWindow:{msie:/msie [0-6]\./,ipad:/ipad.*?os [0-4]\./,iphone:/iphone/,ipod:/ipod/,android_pad:/android [0-3]\.(?!.*?mobile)/,android_phone:/android.*?mobile/,blackberry:/blackberry/,windows_ce:/windows ce/,iemobile:/iemobile/,webos:/webos/},noVolume:{ipad:/ipad/,iphone:/iphone/,ipod:/ipod/,android_pad:/android(?!.*?mobile)/,android_phone:/android.*?mobile/,blackberry:/blackberry/,windows_ce:/windows ce/,iemobile:/iemobile/,webos:/webos/,playbook:/playbook/},timeFormat:{},
29
+keyEnabled:!1,audioFullScreen:!1,keyBindings:{play:{key:32,fn:function(a){a.status.paused?a.play():a.pause()}},fullScreen:{key:13,fn:function(a){(a.status.video||a.options.audioFullScreen)&&a._setOption("fullScreen",!a.options.fullScreen)}},muted:{key:8,fn:function(a){a._muted(!a.options.muted)}},volumeUp:{key:38,fn:function(a){a.volume(a.options.volume+.1)}},volumeDown:{key:40,fn:function(a){a.volume(a.options.volume-.1)}}},verticalVolume:!1,verticalPlaybackRate:!1,globalVolume:!1,idPrefix:"jp",
30
+noConflict:"jQuery",emulateHtml:!1,consoleAlerts:!0,errorAlerts:!1,warningAlerts:!1},optionsAudio:{size:{width:"0px",height:"0px",cssClass:""},sizeFull:{width:"0px",height:"0px",cssClass:""}},optionsVideo:{size:{width:"480px",height:"270px",cssClass:"jp-video-270p"},sizeFull:{width:"100%",height:"100%",cssClass:"jp-video-full"}},instances:{},status:{src:"",media:{},paused:!0,format:{},formatType:"",waitForPlay:!0,waitForLoad:!0,srcSet:!1,video:!1,seekPercent:0,currentPercentRelative:0,currentPercentAbsolute:0,
31
+currentTime:0,duration:0,remaining:0,videoWidth:0,videoHeight:0,readyState:0,networkState:0,playbackRate:1,ended:0},internal:{ready:!1},solution:{html:!0,flash:!0},format:{mp3:{codec:'audio/mpeg',flashCanPlay:!0,media:"audio"},m4a:{codec:'audio/mp4; codecs="mp4a.40.2"',flashCanPlay:!0,media:"audio"},m3u8a:{codec:'application/vnd.apple.mpegurl; codecs="mp4a.40.2"',flashCanPlay:!1,media:"audio"},m3ua:{codec:"audio/mpegurl",flashCanPlay:!1,media:"audio"},oga:{codec:'audio/ogg; codecs="vorbis, opus"',
32
+flashCanPlay:!1,media:"audio"},flac:{codec:"audio/x-flac",flashCanPlay:!1,media:"audio"},wav:{codec:'audio/wav; codecs="1"',flashCanPlay:!1,media:"audio"},webma:{codec:'audio/webm; codecs="vorbis"',flashCanPlay:!1,media:"audio"},fla:{codec:"audio/x-flv",flashCanPlay:!0,media:"audio"},rtmpa:{codec:'audio/rtmp; codecs="rtmp"',flashCanPlay:!0,media:"audio"},m4v:{codec:'video/mp4; codecs="avc1.42E01E, mp4a.40.2"',flashCanPlay:!0,media:"video"},m3u8v:{codec:'application/vnd.apple.mpegurl; codecs="avc1.42E01E, mp4a.40.2"',
33
+flashCanPlay:!1,media:"video"},m3uv:{codec:"audio/mpegurl",flashCanPlay:!1,media:"video"},ogv:{codec:'video/ogg; codecs="theora, vorbis"',flashCanPlay:!1,media:"video"},webmv:{codec:'video/webm; codecs="vorbis, vp8"',flashCanPlay:!1,media:"video"},flv:{codec:"video/x-flv",flashCanPlay:!0,media:"video"},rtmpv:{codec:'video/rtmp; codecs="rtmp"',flashCanPlay:!0,media:"video"}},_init:function(){var a=this;this.element.empty();this.status=b.extend({},this.status);this.internal=b.extend({},this.internal);
34
+this.options.timeFormat=b.extend({},b.jPlayer.timeFormat,this.options.timeFormat);this.internal.cmdsIgnored=b.jPlayer.platform.ipad||b.jPlayer.platform.iphone||b.jPlayer.platform.ipod;this.internal.domNode=this.element.get(0);this.options.keyEnabled&&!b.jPlayer.focus&&(b.jPlayer.focus=this);this.androidFix={setMedia:!1,play:!1,pause:!1,time:NaN};b.jPlayer.platform.android&&(this.options.preload="auto"!==this.options.preload?"metadata":"auto");this.formats=[];this.solutions=[];this.require={};this.htmlElement=
35
+{};this.html={};this.html.audio={};this.html.video={};this.flash={};this.css={};this.css.cs={};this.css.jq={};this.ancestorJq=[];this.options.volume=this._limitValue(this.options.volume,0,1);b.each(this.options.supplied.toLowerCase().split(","),function(c,d){var e=d.replace(/^\s+|\s+$/g,"");if(a.format[e]){var f=!1;b.each(a.formats,function(a,c){if(e===c)return f=!0,!1});f||a.formats.push(e)}});b.each(this.options.solution.toLowerCase().split(","),function(c,d){var e=d.replace(/^\s+|\s+$/g,"");if(a.solution[e]){var f=
36
+!1;b.each(a.solutions,function(a,c){if(e===c)return f=!0,!1});f||a.solutions.push(e)}});this.internal.instance="jp_"+this.count;this.instances[this.internal.instance]=this.element;this.element.attr("id")||this.element.attr("id",this.options.idPrefix+"_jplayer_"+this.count);this.internal.self=b.extend({},{id:this.element.attr("id"),jq:this.element});this.internal.audio=b.extend({},{id:this.options.idPrefix+"_audio_"+this.count,jq:f});this.internal.video=b.extend({},{id:this.options.idPrefix+"_video_"+
37
+this.count,jq:f});this.internal.flash=b.extend({},{id:this.options.idPrefix+"_flash_"+this.count,jq:f,swf:this.options.swfPath+(".swf"!==this.options.swfPath.toLowerCase().slice(-4)?(this.options.swfPath&&"/"!==this.options.swfPath.slice(-1)?"/":"")+"Jplayer.swf":"")});this.internal.poster=b.extend({},{id:this.options.idPrefix+"_poster_"+this.count,jq:f});b.each(b.jPlayer.event,function(c,b){a.options[c]!==f&&(a.element.bind(b+".jPlayer",a.options[c]),a.options[c]=f)});this.require.audio=!1;this.require.video=
38
+!1;b.each(this.formats,function(c,b){a.require[a.format[b].media]=!0});this.options=this.require.video?b.extend(!0,{},this.optionsVideo,this.options):b.extend(!0,{},this.optionsAudio,this.options);this._setSize();this.status.nativeVideoControls=this._uaBlocklist(this.options.nativeVideoControls);this.status.noFullWindow=this._uaBlocklist(this.options.noFullWindow);this.status.noVolume=this._uaBlocklist(this.options.noVolume);b.jPlayer.nativeFeatures.fullscreen.api.fullscreenEnabled&&this._fullscreenAddEventListeners();
39
+this._restrictNativeVideoControls();this.htmlElement.poster=document.createElement("img");this.htmlElement.poster.id=this.internal.poster.id;this.htmlElement.poster.onload=function(){a.status.video&&!a.status.waitForPlay||a.internal.poster.jq.show()};this.element.append(this.htmlElement.poster);this.internal.poster.jq=b("#"+this.internal.poster.id);this.internal.poster.jq.css({width:this.status.width,height:this.status.height});this.internal.poster.jq.hide();this.internal.poster.jq.bind("click.jPlayer",
40
+function(){a._trigger(b.jPlayer.event.click)});this.html.audio.available=!1;this.require.audio&&(this.htmlElement.audio=document.createElement("audio"),this.htmlElement.audio.id=this.internal.audio.id,this.html.audio.available=!!this.htmlElement.audio.canPlayType&&this._testCanPlayType(this.htmlElement.audio));this.html.video.available=!1;this.require.video&&(this.htmlElement.video=document.createElement("video"),this.htmlElement.video.id=this.internal.video.id,this.html.video.available=!!this.htmlElement.video.canPlayType&&
41
+this._testCanPlayType(this.htmlElement.video));this.flash.available=this._checkForFlash(10.1);this.html.canPlay={};this.flash.canPlay={};b.each(this.formats,function(c,b){a.html.canPlay[b]=a.html[a.format[b].media].available&&""!==a.htmlElement[a.format[b].media].canPlayType(a.format[b].codec);a.flash.canPlay[b]=a.format[b].flashCanPlay&&a.flash.available});this.html.desired=!1;this.flash.desired=!1;b.each(this.solutions,function(c,d){if(0===c)a[d].desired=!0;else{var e=!1,f=!1;b.each(a.formats,function(c,
42
+b){a[a.solutions[0]].canPlay[b]&&("video"===a.format[b].media?f=!0:e=!0)});a[d].desired=a.require.audio&&!e||a.require.video&&!f}});this.html.support={};this.flash.support={};b.each(this.formats,function(c,b){a.html.support[b]=a.html.canPlay[b]&&a.html.desired;a.flash.support[b]=a.flash.canPlay[b]&&a.flash.desired});this.html.used=!1;this.flash.used=!1;b.each(this.solutions,function(c,d){b.each(a.formats,function(c,b){if(a[d].support[b])return a[d].used=!0,!1})});this._resetActive();this._resetGate();
43
+this._cssSelectorAncestor(this.options.cssSelectorAncestor);this.html.used||this.flash.used?this.css.jq.noSolution.length&&this.css.jq.noSolution.hide():(this._error({type:b.jPlayer.error.NO_SOLUTION,context:"{solution:'"+this.options.solution+"', supplied:'"+this.options.supplied+"'}",message:b.jPlayer.errorMsg.NO_SOLUTION,hint:b.jPlayer.errorHint.NO_SOLUTION}),this.css.jq.noSolution.length&&this.css.jq.noSolution.show());if(this.flash.used){var c,d="jQuery="+encodeURI(this.options.noConflict)+"&id="+
44
+encodeURI(this.internal.self.id)+"&vol="+this.options.volume+"&muted="+this.options.muted;if(b.jPlayer.browser.msie&&(9>Number(b.jPlayer.browser.version)||9>b.jPlayer.browser.documentMode)){d=['<param name="movie" value="'+this.internal.flash.swf+'" />','<param name="FlashVars" value="'+d+'" />','<param name="allowScriptAccess" value="always" />','<param name="bgcolor" value="'+this.options.backgroundColor+'" />','<param name="wmode" value="'+this.options.wmode+'" />'];c=document.createElement('<object id="'+
45
+this.internal.flash.id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="0" height="0" tabindex="-1"></object>');for(var e=0;e<d.length;e++)c.appendChild(document.createElement(d[e]))}else e=function(a,c,b){var d=document.createElement("param");d.setAttribute("name",c);d.setAttribute("value",b);a.appendChild(d)},c=document.createElement("object"),c.setAttribute("id",this.internal.flash.id),c.setAttribute("name",this.internal.flash.id),c.setAttribute("data",this.internal.flash.swf),c.setAttribute("type",
46
+"application/x-shockwave-flash"),c.setAttribute("width","1"),c.setAttribute("height","1"),c.setAttribute("tabindex","-1"),e(c,"flashvars",d),e(c,"allowscriptaccess","always"),e(c,"bgcolor",this.options.backgroundColor),e(c,"wmode",this.options.wmode);this.element.append(c);this.internal.flash.jq=b(c)}this.status.playbackRateEnabled=this.html.used&&!this.flash.used?this._testPlaybackRate("audio"):!1;this._updatePlaybackRate();this.html.used&&(this.html.audio.available&&(this._addHtmlEventListeners(this.htmlElement.audio,
47
+this.html.audio),this.element.append(this.htmlElement.audio),this.internal.audio.jq=b("#"+this.internal.audio.id)),this.html.video.available&&(this._addHtmlEventListeners(this.htmlElement.video,this.html.video),this.element.append(this.htmlElement.video),this.internal.video.jq=b("#"+this.internal.video.id),this.status.nativeVideoControls?this.internal.video.jq.css({width:this.status.width,height:this.status.height}):this.internal.video.jq.css({width:"0px",height:"0px"}),this.internal.video.jq.bind("click.jPlayer",
48
+function(){a._trigger(b.jPlayer.event.click)})));this.options.emulateHtml&&this._emulateHtmlBridge();this.html.used&&!this.flash.used&&setTimeout(function(){a.internal.ready=!0;a.version.flash="n/a";a._trigger(b.jPlayer.event.repeat);a._trigger(b.jPlayer.event.ready)},100);this._updateNativeVideoControls();this.css.jq.videoPlay.length&&this.css.jq.videoPlay.hide();b.jPlayer.prototype.count++},destroy:function(){this.clearMedia();this._removeUiClass();this.css.jq.currentTime.length&&this.css.jq.currentTime.text("");
49
+this.css.jq.duration.length&&this.css.jq.duration.text("");b.each(this.css.jq,function(a,c){c.length&&c.unbind(".jPlayer")});this.internal.poster.jq.unbind(".jPlayer");this.internal.video.jq&&this.internal.video.jq.unbind(".jPlayer");this._fullscreenRemoveEventListeners();this===b.jPlayer.focus&&(b.jPlayer.focus=null);this.options.emulateHtml&&this._destroyHtmlBridge();this.element.removeData("jPlayer");this.element.unbind(".jPlayer");this.element.empty();delete this.instances[this.internal.instance]},
50
+enable:function(){},disable:function(){},_testCanPlayType:function(a){try{return a.canPlayType(this.format.mp3.codec),!0}catch(c){return!1}},_testPlaybackRate:function(a){a=document.createElement("string"===typeof a?a:"audio");try{return"playbackRate"in a?(a.playbackRate=.5,.5===a.playbackRate):!1}catch(c){return!1}},_uaBlocklist:function(a){var c=navigator.userAgent.toLowerCase(),d=!1;b.each(a,function(a,b){if(b&&b.test(c))return d=!0,!1});return d},_restrictNativeVideoControls:function(){this.require.audio&&
51
+this.status.nativeVideoControls&&(this.status.nativeVideoControls=!1,this.status.noFullWindow=!0)},_updateNativeVideoControls:function(){this.html.video.available&&this.html.used&&(this.htmlElement.video.controls=this.status.nativeVideoControls,this._updateAutohide(),this.status.nativeVideoControls&&this.require.video?(this.internal.poster.jq.hide(),this.internal.video.jq.css({width:this.status.width,height:this.status.height})):this.status.waitForPlay&&this.status.video&&(this.internal.poster.jq.show(),
52
+this.internal.video.jq.css({width:"0px",height:"0px"})))},_addHtmlEventListeners:function(a,c){var d=this;a.preload=this.options.preload;a.muted=this.options.muted;a.volume=this.options.volume;this.status.playbackRateEnabled&&(a.defaultPlaybackRate=this.options.defaultPlaybackRate,a.playbackRate=this.options.playbackRate);a.addEventListener("progress",function(){c.gate&&(d.internal.cmdsIgnored&&0<this.readyState&&(d.internal.cmdsIgnored=!1),d.androidFix.setMedia=!1,d.androidFix.play&&(d.androidFix.play=
53
+!1,d.play(d.androidFix.time)),d.androidFix.pause&&(d.androidFix.pause=!1,d.pause(d.androidFix.time)),d._getHtmlStatus(a),d._updateInterface(),d._trigger(b.jPlayer.event.progress))},!1);a.addEventListener("timeupdate",function(){c.gate&&(d._getHtmlStatus(a),d._updateInterface(),d._trigger(b.jPlayer.event.timeupdate))},!1);a.addEventListener("durationchange",function(){c.gate&&(d._getHtmlStatus(a),d._updateInterface(),d._trigger(b.jPlayer.event.durationchange))},!1);a.addEventListener("play",function(){c.gate&&
54
+(d._updateButtons(!0),d._html_checkWaitForPlay(),d._trigger(b.jPlayer.event.play))},!1);a.addEventListener("playing",function(){c.gate&&(d._updateButtons(!0),d._seeked(),d._trigger(b.jPlayer.event.playing))},!1);a.addEventListener("pause",function(){c.gate&&(d._updateButtons(!1),d._trigger(b.jPlayer.event.pause))},!1);a.addEventListener("waiting",function(){c.gate&&(d._seeking(),d._trigger(b.jPlayer.event.waiting))},!1);a.addEventListener("seeking",function(){c.gate&&(d._seeking(),d._trigger(b.jPlayer.event.seeking))},
55
+!1);a.addEventListener("seeked",function(){c.gate&&(d._seeked(),d._trigger(b.jPlayer.event.seeked))},!1);a.addEventListener("volumechange",function(){c.gate&&(d.options.volume=a.volume,d.options.muted=a.muted,d._updateMute(),d._updateVolume(),d._trigger(b.jPlayer.event.volumechange))},!1);a.addEventListener("ratechange",function(){c.gate&&(d.options.defaultPlaybackRate=a.defaultPlaybackRate,d.options.playbackRate=a.playbackRate,d._updatePlaybackRate(),d._trigger(b.jPlayer.event.ratechange))},!1);
56
+a.addEventListener("suspend",function(){c.gate&&(d._seeked(),d._trigger(b.jPlayer.event.suspend))},!1);a.addEventListener("ended",function(){c.gate&&(b.jPlayer.browser.webkit||(d.htmlElement.media.currentTime=0),d.htmlElement.media.pause(),d._updateButtons(!1),d._getHtmlStatus(a,!0),d._updateInterface(),d._trigger(b.jPlayer.event.ended))},!1);a.addEventListener("error",function(){c.gate&&(d._updateButtons(!1),d._seeked(),d.status.srcSet&&(clearTimeout(d.internal.htmlDlyCmdId),d.status.waitForLoad=
57
+!0,d.status.waitForPlay=!0,d.status.video&&!d.status.nativeVideoControls&&d.internal.video.jq.css({width:"0px",height:"0px"}),d._validString(d.status.media.poster)&&!d.status.nativeVideoControls&&d.internal.poster.jq.show(),d.css.jq.videoPlay.length&&d.css.jq.videoPlay.show(),d._error({type:b.jPlayer.error.URL,context:d.status.src,message:b.jPlayer.errorMsg.URL,hint:b.jPlayer.errorHint.URL})))},!1);b.each(b.jPlayer.htmlEvent,function(e,g){a.addEventListener(this,function(){c.gate&&d._trigger(b.jPlayer.event[g])},
58
+!1)})},_getHtmlStatus:function(a,c){var b=0,e=0,g=0,f=0;isFinite(a.duration)&&(this.status.duration=a.duration);b=a.currentTime;e=0<this.status.duration?100*b/this.status.duration:0;"object"===typeof a.seekable&&0<a.seekable.length?(g=0<this.status.duration?100*a.seekable.end(a.seekable.length-1)/this.status.duration:100,f=0<this.status.duration?100*a.currentTime/a.seekable.end(a.seekable.length-1):0):(g=100,f=e);c&&(e=f=b=0);this.status.seekPercent=g;this.status.currentPercentRelative=f;this.status.currentPercentAbsolute=
59
+e;this.status.currentTime=b;this.status.remaining=this.status.duration-this.status.currentTime;this.status.videoWidth=a.videoWidth;this.status.videoHeight=a.videoHeight;this.status.readyState=a.readyState;this.status.networkState=a.networkState;this.status.playbackRate=a.playbackRate;this.status.ended=a.ended},_resetStatus:function(){this.status=b.extend({},this.status,b.jPlayer.prototype.status)},_trigger:function(a,c,d){a=b.Event(a);a.jPlayer={};a.jPlayer.version=b.extend({},this.version);a.jPlayer.options=
60
+b.extend(!0,{},this.options);a.jPlayer.status=b.extend(!0,{},this.status);a.jPlayer.html=b.extend(!0,{},this.html);a.jPlayer.flash=b.extend(!0,{},this.flash);c&&(a.jPlayer.error=b.extend({},c));d&&(a.jPlayer.warning=b.extend({},d));this.element.trigger(a)},jPlayerFlashEvent:function(a,c){if(a===b.jPlayer.event.ready)if(!this.internal.ready)this.internal.ready=!0,this.internal.flash.jq.css({width:"0px",height:"0px"}),this.version.flash=c.version,this.version.needFlash!==this.version.flash&&this._error({type:b.jPlayer.error.VERSION,
61
+context:this.version.flash,message:b.jPlayer.errorMsg.VERSION+this.version.flash,hint:b.jPlayer.errorHint.VERSION}),this._trigger(b.jPlayer.event.repeat),this._trigger(a);else if(this.flash.gate){if(this.status.srcSet){var d=this.status.currentTime,e=this.status.paused;this.setMedia(this.status.media);this.volumeWorker(this.options.volume);0<d&&(e?this.pause(d):this.play(d))}this._trigger(b.jPlayer.event.flashreset)}if(this.flash.gate)switch(a){case b.jPlayer.event.progress:this._getFlashStatus(c);
62
+this._updateInterface();this._trigger(a);break;case b.jPlayer.event.timeupdate:this._getFlashStatus(c);this._updateInterface();this._trigger(a);break;case b.jPlayer.event.play:this._seeked();this._updateButtons(!0);this._trigger(a);break;case b.jPlayer.event.pause:this._updateButtons(!1);this._trigger(a);break;case b.jPlayer.event.ended:this._updateButtons(!1);this._trigger(a);break;case b.jPlayer.event.click:this._trigger(a);break;case b.jPlayer.event.error:this.status.waitForLoad=!0;this.status.waitForPlay=
63
+!0;this.status.video&&this.internal.flash.jq.css({width:"0px",height:"0px"});this._validString(this.status.media.poster)&&this.internal.poster.jq.show();this.css.jq.videoPlay.length&&this.status.video&&this.css.jq.videoPlay.show();this.status.video?this._flash_setVideo(this.status.media):this._flash_setAudio(this.status.media);this._updateButtons(!1);this._error({type:b.jPlayer.error.URL,context:c.src,message:b.jPlayer.errorMsg.URL,hint:b.jPlayer.errorHint.URL});break;case b.jPlayer.event.seeking:this._seeking();
64
+this._trigger(a);break;case b.jPlayer.event.seeked:this._seeked();this._trigger(a);break;case b.jPlayer.event.ready:break;default:this._trigger(a)}return!1},_getFlashStatus:function(a){this.status.seekPercent=a.seekPercent;this.status.currentPercentRelative=a.currentPercentRelative;this.status.currentPercentAbsolute=a.currentPercentAbsolute;this.status.currentTime=a.currentTime;this.status.duration=a.duration;this.status.remaining=a.duration-a.currentTime;this.status.videoWidth=a.videoWidth;this.status.videoHeight=
65
+a.videoHeight;this.status.readyState=4;this.status.networkState=0;this.status.playbackRate=1;this.status.ended=!1},_updateButtons:function(a){a===f?a=!this.status.paused:this.status.paused=!a;a?this.addStateClass("playing"):this.removeStateClass("playing");!this.status.noFullWindow&&this.options.fullWindow?this.addStateClass("fullScreen"):this.removeStateClass("fullScreen");this.options.loop?this.addStateClass("looped"):this.removeStateClass("looped");this.css.jq.play.length&&this.css.jq.pause.length&&
66
+(a?(this.css.jq.play.hide(),this.css.jq.pause.show()):(this.css.jq.play.show(),this.css.jq.pause.hide()));this.css.jq.restoreScreen.length&&this.css.jq.fullScreen.length&&(this.status.noFullWindow?(this.css.jq.fullScreen.hide(),this.css.jq.restoreScreen.hide()):this.options.fullWindow?(this.css.jq.fullScreen.hide(),this.css.jq.restoreScreen.show()):(this.css.jq.fullScreen.show(),this.css.jq.restoreScreen.hide()));this.css.jq.repeat.length&&this.css.jq.repeatOff.length&&(this.options.loop?(this.css.jq.repeat.hide(),
67
+this.css.jq.repeatOff.show()):(this.css.jq.repeat.show(),this.css.jq.repeatOff.hide()))},_updateInterface:function(){this.css.jq.seekBar.length&&this.css.jq.seekBar.width(this.status.seekPercent+"%");this.css.jq.playBar.length&&(this.options.smoothPlayBar?this.css.jq.playBar.stop().animate({width:this.status.currentPercentAbsolute+"%"},250,"linear"):this.css.jq.playBar.width(this.status.currentPercentRelative+"%"));var a="";this.css.jq.currentTime.length&&(a=this._convertTime(this.status.currentTime),
68
+a!==this.css.jq.currentTime.text()&&this.css.jq.currentTime.text(this._convertTime(this.status.currentTime)));var a="",a=this.status.duration,c=this.status.remaining;this.css.jq.duration.length&&("string"===typeof this.status.media.duration?a=this.status.media.duration:("number"===typeof this.status.media.duration&&(a=this.status.media.duration,c=a-this.status.currentTime),a=this.options.remainingDuration?(0<c?"-":"")+this._convertTime(c):this._convertTime(a)),a!==this.css.jq.duration.text()&&this.css.jq.duration.text(a))},
69
+_convertTime:l.prototype.time,_seeking:function(){this.css.jq.seekBar.length&&this.css.jq.seekBar.addClass("jp-seeking-bg");this.addStateClass("seeking")},_seeked:function(){this.css.jq.seekBar.length&&this.css.jq.seekBar.removeClass("jp-seeking-bg");this.removeStateClass("seeking")},_resetGate:function(){this.html.audio.gate=!1;this.html.video.gate=!1;this.flash.gate=!1},_resetActive:function(){this.html.active=!1;this.flash.active=!1},_escapeHtml:function(a){return a.split("&").join("&amp;").split("<").join("&lt;").split(">").join("&gt;").split('"').join("&quot;")},
70
+_qualifyURL:function(a){var c=document.createElement("div");c.innerHTML='<a href="'+this._escapeHtml(a)+'">x</a>';return c.firstChild.href},_absoluteMediaUrls:function(a){var c=this;b.each(a,function(b,e){e&&c.format[b]&&(a[b]=c._qualifyURL(e))});return a},addStateClass:function(a){this.ancestorJq.length&&this.ancestorJq.addClass(this.options.stateClass[a])},removeStateClass:function(a){this.ancestorJq.length&&this.ancestorJq.removeClass(this.options.stateClass[a])},setMedia:function(a){var c=this,
71
+d=!1,e=this.status.media.poster!==a.poster;this._resetMedia();this._resetGate();this._resetActive();this.androidFix.setMedia=!1;this.androidFix.play=!1;this.androidFix.pause=!1;a=this._absoluteMediaUrls(a);b.each(this.formats,function(e,f){var k="video"===c.format[f].media;b.each(c.solutions,function(e,g){if(c[g].support[f]&&c._validString(a[f])){var l="html"===g;k?(l?(c.html.video.gate=!0,c._html_setVideo(a),c.html.active=!0):(c.flash.gate=!0,c._flash_setVideo(a),c.flash.active=!0),c.css.jq.videoPlay.length&&
72
+c.css.jq.videoPlay.show(),c.status.video=!0):(l?(c.html.audio.gate=!0,c._html_setAudio(a),c.html.active=!0,b.jPlayer.platform.android&&(c.androidFix.setMedia=!0)):(c.flash.gate=!0,c._flash_setAudio(a),c.flash.active=!0),c.css.jq.videoPlay.length&&c.css.jq.videoPlay.hide(),c.status.video=!1);d=!0;return!1}});if(d)return!1});d?(this.status.nativeVideoControls&&this.html.video.gate||!this._validString(a.poster)||(e?this.htmlElement.poster.src=a.poster:this.internal.poster.jq.show()),this.css.jq.title.length&&
73
+"string"===typeof a.title&&(this.css.jq.title.html(a.title),this.htmlElement.audio&&this.htmlElement.audio.setAttribute("title",a.title),this.htmlElement.video&&this.htmlElement.video.setAttribute("title",a.title)),this.status.srcSet=!0,this.status.media=b.extend({},a),this._updateButtons(!1),this._updateInterface(),this._trigger(b.jPlayer.event.setmedia)):this._error({type:b.jPlayer.error.NO_SUPPORT,context:"{supplied:'"+this.options.supplied+"'}",message:b.jPlayer.errorMsg.NO_SUPPORT,hint:b.jPlayer.errorHint.NO_SUPPORT})},
74
+_resetMedia:function(){this._resetStatus();this._updateButtons(!1);this._updateInterface();this._seeked();this.internal.poster.jq.hide();clearTimeout(this.internal.htmlDlyCmdId);this.html.active?this._html_resetMedia():this.flash.active&&this._flash_resetMedia()},clearMedia:function(){this._resetMedia();this.html.active?this._html_clearMedia():this.flash.active&&this._flash_clearMedia();this._resetGate();this._resetActive()},load:function(){this.status.srcSet?this.html.active?this._html_load():this.flash.active&&
75
+this._flash_load():this._urlNotSetError("load")},focus:function(){this.options.keyEnabled&&(b.jPlayer.focus=this)},play:function(a){"object"===typeof a&&this.options.useStateClassSkin&&!this.status.paused?this.pause(a):(a="number"===typeof a?a:NaN,this.status.srcSet?(this.focus(),this.html.active?this._html_play(a):this.flash.active&&this._flash_play(a)):this._urlNotSetError("play"))},videoPlay:function(){this.play()},pause:function(a){a="number"===typeof a?a:NaN;this.status.srcSet?this.html.active?
76
+this._html_pause(a):this.flash.active&&this._flash_pause(a):this._urlNotSetError("pause")},tellOthers:function(a,c){var d=this,e="function"===typeof c,g=Array.prototype.slice.call(arguments);"string"===typeof a&&(e&&g.splice(1,1),b.each(this.instances,function(){d.element!==this&&(e&&!c.call(this.data("jPlayer"),d)||this.jPlayer.apply(this,g))}))},pauseOthers:function(a){this.tellOthers("pause",function(){return this.status.srcSet},a)},stop:function(){this.status.srcSet?this.html.active?this._html_pause(0):
77
+this.flash.active&&this._flash_pause(0):this._urlNotSetError("stop")},playHead:function(a){a=this._limitValue(a,0,100);this.status.srcSet?this.html.active?this._html_playHead(a):this.flash.active&&this._flash_playHead(a):this._urlNotSetError("playHead")},_muted:function(a){this.mutedWorker(a);this.options.globalVolume&&this.tellOthers("mutedWorker",function(){return this.options.globalVolume},a)},mutedWorker:function(a){this.options.muted=a;this.html.used&&this._html_setProperty("muted",a);this.flash.used&&
78
+this._flash_mute(a);this.html.video.gate||this.html.audio.gate||(this._updateMute(a),this._updateVolume(this.options.volume),this._trigger(b.jPlayer.event.volumechange))},mute:function(a){"object"===typeof a&&this.options.useStateClassSkin&&this.options.muted?this._muted(!1):(a=a===f?!0:!!a,this._muted(a))},unmute:function(a){a=a===f?!0:!!a;this._muted(!a)},_updateMute:function(a){a===f&&(a=this.options.muted);a?this.addStateClass("muted"):this.removeStateClass("muted");this.css.jq.mute.length&&this.css.jq.unmute.length&&
79
+(this.status.noVolume?(this.css.jq.mute.hide(),this.css.jq.unmute.hide()):a?(this.css.jq.mute.hide(),this.css.jq.unmute.show()):(this.css.jq.mute.show(),this.css.jq.unmute.hide()))},volume:function(a){this.volumeWorker(a);this.options.globalVolume&&this.tellOthers("volumeWorker",function(){return this.options.globalVolume},a)},volumeWorker:function(a){a=this._limitValue(a,0,1);this.options.volume=a;this.html.used&&this._html_setProperty("volume",a);this.flash.used&&this._flash_volume(a);this.html.video.gate||
80
+this.html.audio.gate||(this._updateVolume(a),this._trigger(b.jPlayer.event.volumechange))},volumeBar:function(a){if(this.css.jq.volumeBar.length){var c=b(a.currentTarget),d=c.offset(),e=a.pageX-d.left,g=c.width();a=c.height()-a.pageY+d.top;c=c.height();this.options.verticalVolume?this.volume(a/c):this.volume(e/g)}this.options.muted&&this._muted(!1)},_updateVolume:function(a){a===f&&(a=this.options.volume);a=this.options.muted?0:a;this.status.noVolume?(this.css.jq.volumeBar.length&&this.css.jq.volumeBar.hide(),
81
+this.css.jq.volumeBarValue.length&&this.css.jq.volumeBarValue.hide(),this.css.jq.volumeMax.length&&this.css.jq.volumeMax.hide()):(this.css.jq.volumeBar.length&&this.css.jq.volumeBar.show(),this.css.jq.volumeBarValue.length&&(this.css.jq.volumeBarValue.show(),this.css.jq.volumeBarValue[this.options.verticalVolume?"height":"width"](100*a+"%")),this.css.jq.volumeMax.length&&this.css.jq.volumeMax.show())},volumeMax:function(){this.volume(1);this.options.muted&&this._muted(!1)},_cssSelectorAncestor:function(a){var c=
82
+this;this.options.cssSelectorAncestor=a;this._removeUiClass();this.ancestorJq=a?b(a):[];a&&1!==this.ancestorJq.length&&this._warning({type:b.jPlayer.warning.CSS_SELECTOR_COUNT,context:a,message:b.jPlayer.warningMsg.CSS_SELECTOR_COUNT+this.ancestorJq.length+" found for cssSelectorAncestor.",hint:b.jPlayer.warningHint.CSS_SELECTOR_COUNT});this._addUiClass();b.each(this.options.cssSelector,function(a,b){c._cssSelector(a,b)});this._updateInterface();this._updateButtons();this._updateAutohide();this._updateVolume();
83
+this._updateMute()},_cssSelector:function(a,c){var d=this;"string"===typeof c?b.jPlayer.prototype.options.cssSelector[a]?(this.css.jq[a]&&this.css.jq[a].length&&this.css.jq[a].unbind(".jPlayer"),this.options.cssSelector[a]=c,this.css.cs[a]=this.options.cssSelectorAncestor+" "+c,this.css.jq[a]=c?b(this.css.cs[a]):[],this.css.jq[a].length&&this[a]&&this.css.jq[a].bind("click.jPlayer",function(c){c.preventDefault();d[a](c);d.options.autoBlur&&b(this).blur()}),c&&1!==this.css.jq[a].length&&this._warning({type:b.jPlayer.warning.CSS_SELECTOR_COUNT,
84
+context:this.css.cs[a],message:b.jPlayer.warningMsg.CSS_SELECTOR_COUNT+this.css.jq[a].length+" found for "+a+" method.",hint:b.jPlayer.warningHint.CSS_SELECTOR_COUNT})):this._warning({type:b.jPlayer.warning.CSS_SELECTOR_METHOD,context:a,message:b.jPlayer.warningMsg.CSS_SELECTOR_METHOD,hint:b.jPlayer.warningHint.CSS_SELECTOR_METHOD}):this._warning({type:b.jPlayer.warning.CSS_SELECTOR_STRING,context:c,message:b.jPlayer.warningMsg.CSS_SELECTOR_STRING,hint:b.jPlayer.warningHint.CSS_SELECTOR_STRING})},
85
+duration:function(a){this.options.toggleDuration&&(this.options.captureDuration&&a.stopPropagation(),this._setOption("remainingDuration",!this.options.remainingDuration))},seekBar:function(a){if(this.css.jq.seekBar.length){var c=b(a.currentTarget),d=c.offset();a=a.pageX-d.left;c=c.width();this.playHead(100*a/c)}},playbackRate:function(a){this._setOption("playbackRate",a)},playbackRateBar:function(a){if(this.css.jq.playbackRateBar.length){var c=b(a.currentTarget),d=c.offset(),e=a.pageX-d.left,g=c.width();
86
+a=c.height()-a.pageY+d.top;c=c.height();this.playbackRate((this.options.verticalPlaybackRate?a/c:e/g)*(this.options.maxPlaybackRate-this.options.minPlaybackRate)+this.options.minPlaybackRate)}},_updatePlaybackRate:function(){var a=(this.options.playbackRate-this.options.minPlaybackRate)/(this.options.maxPlaybackRate-this.options.minPlaybackRate);this.status.playbackRateEnabled?(this.css.jq.playbackRateBar.length&&this.css.jq.playbackRateBar.show(),this.css.jq.playbackRateBarValue.length&&(this.css.jq.playbackRateBarValue.show(),
87
+this.css.jq.playbackRateBarValue[this.options.verticalPlaybackRate?"height":"width"](100*a+"%"))):(this.css.jq.playbackRateBar.length&&this.css.jq.playbackRateBar.hide(),this.css.jq.playbackRateBarValue.length&&this.css.jq.playbackRateBarValue.hide())},repeat:function(a){"object"===typeof a&&this.options.useStateClassSkin&&this.options.loop?this._loop(!1):this._loop(!0)},repeatOff:function(){this._loop(!1)},_loop:function(a){this.options.loop!==a&&(this.options.loop=a,this._updateButtons(),this._trigger(b.jPlayer.event.repeat))},
88
+option:function(a,c){var d=a;if(0===arguments.length)return b.extend(!0,{},this.options);if("string"===typeof a){var e=a.split(".");if(c===f){for(var d=b.extend(!0,{},this.options),g=0;g<e.length;g++)if(d[e[g]]!==f)d=d[e[g]];else return this._warning({type:b.jPlayer.warning.OPTION_KEY,context:a,message:b.jPlayer.warningMsg.OPTION_KEY,hint:b.jPlayer.warningHint.OPTION_KEY}),f;return d}for(var g=d={},h=0;h<e.length;h++)h<e.length-1?(g[e[h]]={},g=g[e[h]]):g[e[h]]=c}this._setOptions(d);return this},_setOptions:function(a){var c=
89
+this;b.each(a,function(a,b){c._setOption(a,b)});return this},_setOption:function(a,c){var d=this;switch(a){case "volume":this.volume(c);break;case "muted":this._muted(c);break;case "globalVolume":this.options[a]=c;break;case "cssSelectorAncestor":this._cssSelectorAncestor(c);break;case "cssSelector":b.each(c,function(a,c){d._cssSelector(a,c)});break;case "playbackRate":this.options[a]=c=this._limitValue(c,this.options.minPlaybackRate,this.options.maxPlaybackRate);this.html.used&&this._html_setProperty("playbackRate",
90
+c);this._updatePlaybackRate();break;case "defaultPlaybackRate":this.options[a]=c=this._limitValue(c,this.options.minPlaybackRate,this.options.maxPlaybackRate);this.html.used&&this._html_setProperty("defaultPlaybackRate",c);this._updatePlaybackRate();break;case "minPlaybackRate":this.options[a]=c=this._limitValue(c,.1,this.options.maxPlaybackRate-.1);this._updatePlaybackRate();break;case "maxPlaybackRate":this.options[a]=c=this._limitValue(c,this.options.minPlaybackRate+.1,16);this._updatePlaybackRate();
91
+break;case "fullScreen":if(this.options[a]!==c){var e=b.jPlayer.nativeFeatures.fullscreen.used.webkitVideo;if(!e||e&&!this.status.waitForPlay)e||(this.options[a]=c),c?this._requestFullscreen():this._exitFullscreen(),e||this._setOption("fullWindow",c)}break;case "fullWindow":this.options[a]!==c&&(this._removeUiClass(),this.options[a]=c,this._refreshSize());break;case "size":this.options.fullWindow||this.options[a].cssClass===c.cssClass||this._removeUiClass();this.options[a]=b.extend({},this.options[a],
92
+c);this._refreshSize();break;case "sizeFull":this.options.fullWindow&&this.options[a].cssClass!==c.cssClass&&this._removeUiClass();this.options[a]=b.extend({},this.options[a],c);this._refreshSize();break;case "autohide":this.options[a]=b.extend({},this.options[a],c);this._updateAutohide();break;case "loop":this._loop(c);break;case "remainingDuration":this.options[a]=c;this._updateInterface();break;case "toggleDuration":this.options[a]=c;break;case "nativeVideoControls":this.options[a]=b.extend({},
93
+this.options[a],c);this.status.nativeVideoControls=this._uaBlocklist(this.options.nativeVideoControls);this._restrictNativeVideoControls();this._updateNativeVideoControls();break;case "noFullWindow":this.options[a]=b.extend({},this.options[a],c);this.status.nativeVideoControls=this._uaBlocklist(this.options.nativeVideoControls);this.status.noFullWindow=this._uaBlocklist(this.options.noFullWindow);this._restrictNativeVideoControls();this._updateButtons();break;case "noVolume":this.options[a]=b.extend({},
94
+this.options[a],c);this.status.noVolume=this._uaBlocklist(this.options.noVolume);this._updateVolume();this._updateMute();break;case "emulateHtml":this.options[a]!==c&&((this.options[a]=c)?this._emulateHtmlBridge():this._destroyHtmlBridge());break;case "timeFormat":this.options[a]=b.extend({},this.options[a],c);break;case "keyEnabled":this.options[a]=c;c||this!==b.jPlayer.focus||(b.jPlayer.focus=null);break;case "keyBindings":this.options[a]=b.extend(!0,{},this.options[a],c);break;case "audioFullScreen":this.options[a]=
95
+c;break;case "autoBlur":this.options[a]=c}return this},_refreshSize:function(){this._setSize();this._addUiClass();this._updateSize();this._updateButtons();this._updateAutohide();this._trigger(b.jPlayer.event.resize)},_setSize:function(){this.options.fullWindow?(this.status.width=this.options.sizeFull.width,this.status.height=this.options.sizeFull.height,this.status.cssClass=this.options.sizeFull.cssClass):(this.status.width=this.options.size.width,this.status.height=this.options.size.height,this.status.cssClass=
96
+this.options.size.cssClass);this.element.css({width:this.status.width,height:this.status.height})},_addUiClass:function(){this.ancestorJq.length&&this.ancestorJq.addClass(this.status.cssClass)},_removeUiClass:function(){this.ancestorJq.length&&this.ancestorJq.removeClass(this.status.cssClass)},_updateSize:function(){this.internal.poster.jq.css({width:this.status.width,height:this.status.height});!this.status.waitForPlay&&this.html.active&&this.status.video||this.html.video.available&&this.html.used&&
97
+this.status.nativeVideoControls?this.internal.video.jq.css({width:this.status.width,height:this.status.height}):!this.status.waitForPlay&&this.flash.active&&this.status.video&&this.internal.flash.jq.css({width:this.status.width,height:this.status.height})},_updateAutohide:function(){var a=this,c=function(){a.css.jq.gui.fadeIn(a.options.autohide.fadeIn,function(){clearTimeout(a.internal.autohideId);a.internal.autohideId=setTimeout(function(){a.css.jq.gui.fadeOut(a.options.autohide.fadeOut)},a.options.autohide.hold)})};
98
+this.css.jq.gui.length&&(this.css.jq.gui.stop(!0,!0),clearTimeout(this.internal.autohideId),this.element.unbind(".jPlayerAutohide"),this.css.jq.gui.unbind(".jPlayerAutohide"),this.status.nativeVideoControls?this.css.jq.gui.hide():this.options.fullWindow&&this.options.autohide.full||!this.options.fullWindow&&this.options.autohide.restored?(this.element.bind("mousemove.jPlayer.jPlayerAutohide",c),this.css.jq.gui.bind("mousemove.jPlayer.jPlayerAutohide",c),this.css.jq.gui.hide()):this.css.jq.gui.show())},
99
+fullScreen:function(a){"object"===typeof a&&this.options.useStateClassSkin&&this.options.fullScreen?this._setOption("fullScreen",!1):this._setOption("fullScreen",!0)},restoreScreen:function(){this._setOption("fullScreen",!1)},_fullscreenAddEventListeners:function(){var a=this,c=b.jPlayer.nativeFeatures.fullscreen;c.api.fullscreenEnabled&&c.event.fullscreenchange&&("function"!==typeof this.internal.fullscreenchangeHandler&&(this.internal.fullscreenchangeHandler=function(){a._fullscreenchange()}),document.addEventListener(c.event.fullscreenchange,
100
+this.internal.fullscreenchangeHandler,!1))},_fullscreenRemoveEventListeners:function(){var a=b.jPlayer.nativeFeatures.fullscreen;this.internal.fullscreenchangeHandler&&document.removeEventListener(a.event.fullscreenchange,this.internal.fullscreenchangeHandler,!1)},_fullscreenchange:function(){this.options.fullScreen&&!b.jPlayer.nativeFeatures.fullscreen.api.fullscreenElement()&&this._setOption("fullScreen",!1)},_requestFullscreen:function(){var a=this.ancestorJq.length?this.ancestorJq[0]:this.element[0],
101
+c=b.jPlayer.nativeFeatures.fullscreen;c.used.webkitVideo&&(a=this.htmlElement.video);c.api.fullscreenEnabled&&c.api.requestFullscreen(a)},_exitFullscreen:function(){var a=b.jPlayer.nativeFeatures.fullscreen,c;a.used.webkitVideo&&(c=this.htmlElement.video);a.api.fullscreenEnabled&&a.api.exitFullscreen(c)},_html_initMedia:function(a){var c=b(this.htmlElement.media).empty();b.each(a.track||[],function(a,b){var g=document.createElement("track");g.setAttribute("kind",b.kind?b.kind:"");g.setAttribute("src",
102
+b.src?b.src:"");g.setAttribute("srclang",b.srclang?b.srclang:"");g.setAttribute("label",b.label?b.label:"");b.def&&g.setAttribute("default",b.def);c.append(g)});this.htmlElement.media.src=this.status.src;"none"!==this.options.preload&&this._html_load();this._trigger(b.jPlayer.event.timeupdate)},_html_setFormat:function(a){var c=this;b.each(this.formats,function(b,e){if(c.html.support[e]&&a[e])return c.status.src=a[e],c.status.format[e]=!0,c.status.formatType=e,!1})},_html_setAudio:function(a){this._html_setFormat(a);
103
+this.htmlElement.media=this.htmlElement.audio;this._html_initMedia(a)},_html_setVideo:function(a){this._html_setFormat(a);this.status.nativeVideoControls&&(this.htmlElement.video.poster=this._validString(a.poster)?a.poster:"");this.htmlElement.media=this.htmlElement.video;this._html_initMedia(a)},_html_resetMedia:function(){this.htmlElement.media&&(this.htmlElement.media.id!==this.internal.video.id||this.status.nativeVideoControls||this.internal.video.jq.css({width:"0px",height:"0px"}),this.htmlElement.media.pause())},
104
+_html_clearMedia:function(){this.htmlElement.media&&(this.htmlElement.media.src="about:blank",this.htmlElement.media.load())},_html_load:function(){this.status.waitForLoad&&(this.status.waitForLoad=!1,this.htmlElement.media.load());clearTimeout(this.internal.htmlDlyCmdId)},_html_play:function(a){var b=this,d=this.htmlElement.media;this.androidFix.pause=!1;this._html_load();if(this.androidFix.setMedia)this.androidFix.play=!0,this.androidFix.time=a;else if(isNaN(a))d.play();else{this.internal.cmdsIgnored&&
105
+d.play();try{if(!d.seekable||"object"===typeof d.seekable&&0<d.seekable.length)d.currentTime=a,d.play();else throw 1;}catch(e){this.internal.htmlDlyCmdId=setTimeout(function(){b.play(a)},250);return}}this._html_checkWaitForPlay()},_html_pause:function(a){var b=this,d=this.htmlElement.media;this.androidFix.play=!1;0<a?this._html_load():clearTimeout(this.internal.htmlDlyCmdId);d.pause();if(this.androidFix.setMedia)this.androidFix.pause=!0,this.androidFix.time=a;else if(!isNaN(a))try{if(!d.seekable||
106
+"object"===typeof d.seekable&&0<d.seekable.length)d.currentTime=a;else throw 1;}catch(e){this.internal.htmlDlyCmdId=setTimeout(function(){b.pause(a)},250);return}0<a&&this._html_checkWaitForPlay()},_html_playHead:function(a){var b=this,d=this.htmlElement.media;this._html_load();try{if("object"===typeof d.seekable&&0<d.seekable.length)d.currentTime=a*d.seekable.end(d.seekable.length-1)/100;else if(0<d.duration&&!isNaN(d.duration))d.currentTime=a*d.duration/100;else throw"e";}catch(e){this.internal.htmlDlyCmdId=
107
+setTimeout(function(){b.playHead(a)},250);return}this.status.waitForLoad||this._html_checkWaitForPlay()},_html_checkWaitForPlay:function(){this.status.waitForPlay&&(this.status.waitForPlay=!1,this.css.jq.videoPlay.length&&this.css.jq.videoPlay.hide(),this.status.video&&(this.internal.poster.jq.hide(),this.internal.video.jq.css({width:this.status.width,height:this.status.height})))},_html_setProperty:function(a,b){this.html.audio.available&&(this.htmlElement.audio[a]=b);this.html.video.available&&
108
+(this.htmlElement.video[a]=b)},_flash_setAudio:function(a){var c=this;try{b.each(this.formats,function(b,d){if(c.flash.support[d]&&a[d]){switch(d){case "m4a":case "fla":c._getMovie().fl_setAudio_m4a(a[d]);break;case "mp3":c._getMovie().fl_setAudio_mp3(a[d]);break;case "rtmpa":c._getMovie().fl_setAudio_rtmp(a[d])}c.status.src=a[d];c.status.format[d]=!0;c.status.formatType=d;return!1}}),"auto"===this.options.preload&&(this._flash_load(),this.status.waitForLoad=!1)}catch(d){this._flashError(d)}},_flash_setVideo:function(a){var c=
109
+this;try{b.each(this.formats,function(b,d){if(c.flash.support[d]&&a[d]){switch(d){case "m4v":case "flv":c._getMovie().fl_setVideo_m4v(a[d]);break;case "rtmpv":c._getMovie().fl_setVideo_rtmp(a[d])}c.status.src=a[d];c.status.format[d]=!0;c.status.formatType=d;return!1}}),"auto"===this.options.preload&&(this._flash_load(),this.status.waitForLoad=!1)}catch(d){this._flashError(d)}},_flash_resetMedia:function(){this.internal.flash.jq.css({width:"0px",height:"0px"});this._flash_pause(NaN)},_flash_clearMedia:function(){try{this._getMovie().fl_clearMedia()}catch(a){this._flashError(a)}},
110
+_flash_load:function(){try{this._getMovie().fl_load()}catch(a){this._flashError(a)}this.status.waitForLoad=!1},_flash_play:function(a){try{this._getMovie().fl_play(a)}catch(b){this._flashError(b)}this.status.waitForLoad=!1;this._flash_checkWaitForPlay()},_flash_pause:function(a){try{this._getMovie().fl_pause(a)}catch(b){this._flashError(b)}0<a&&(this.status.waitForLoad=!1,this._flash_checkWaitForPlay())},_flash_playHead:function(a){try{this._getMovie().fl_play_head(a)}catch(b){this._flashError(b)}this.status.waitForLoad||
111
+this._flash_checkWaitForPlay()},_flash_checkWaitForPlay:function(){this.status.waitForPlay&&(this.status.waitForPlay=!1,this.css.jq.videoPlay.length&&this.css.jq.videoPlay.hide(),this.status.video&&(this.internal.poster.jq.hide(),this.internal.flash.jq.css({width:this.status.width,height:this.status.height})))},_flash_volume:function(a){try{this._getMovie().fl_volume(a)}catch(b){this._flashError(b)}},_flash_mute:function(a){try{this._getMovie().fl_mute(a)}catch(b){this._flashError(b)}},_getMovie:function(){return document[this.internal.flash.id]},
112
+_getFlashPluginVersion:function(){var a=0,b;if(window.ActiveXObject)try{if(b=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")){var d=b.GetVariable("$version");d&&(d=d.split(" ")[1].split(","),a=parseInt(d[0],10)+"."+parseInt(d[1],10))}}catch(e){}else navigator.plugins&&0<navigator.mimeTypes.length&&(b=navigator.plugins["Shockwave Flash"])&&(a=navigator.plugins["Shockwave Flash"].description.replace(/.*\s(\d+\.\d+).*/,"$1"));return 1*a},_checkForFlash:function(a){var b=!1;this._getFlashPluginVersion()>=
113
+a&&(b=!0);return b},_validString:function(a){return a&&"string"===typeof a},_limitValue:function(a,b,d){return a<b?b:a>d?d:a},_urlNotSetError:function(a){this._error({type:b.jPlayer.error.URL_NOT_SET,context:a,message:b.jPlayer.errorMsg.URL_NOT_SET,hint:b.jPlayer.errorHint.URL_NOT_SET})},_flashError:function(a){var c;c=this.internal.ready?"FLASH_DISABLED":"FLASH";this._error({type:b.jPlayer.error[c],context:this.internal.flash.swf,message:b.jPlayer.errorMsg[c]+a.message,hint:b.jPlayer.errorHint[c]});
114
+this.internal.flash.jq.css({width:"1px",height:"1px"})},_error:function(a){this._trigger(b.jPlayer.event.error,a);this.options.errorAlerts&&this._alert("Error!"+(a.message?"\n"+a.message:"")+(a.hint?"\n"+a.hint:"")+"\nContext: "+a.context)},_warning:function(a){this._trigger(b.jPlayer.event.warning,f,a);this.options.warningAlerts&&this._alert("Warning!"+(a.message?"\n"+a.message:"")+(a.hint?"\n"+a.hint:"")+"\nContext: "+a.context)},_alert:function(a){a="jPlayer "+this.version.script+" : id='"+this.internal.self.id+
115
+"' : "+a;this.options.consoleAlerts?window.console&&window.console.log&&window.console.log(a):alert(a)},_emulateHtmlBridge:function(){var a=this;b.each(b.jPlayer.emulateMethods.split(/\s+/g),function(b,d){a.internal.domNode[d]=function(b){a[d](b)}});b.each(b.jPlayer.event,function(c,d){var e=!0;b.each(b.jPlayer.reservedEvent.split(/\s+/g),function(a,b){if(b===c)return e=!1});e&&a.element.bind(d+".jPlayer.jPlayerHtml",function(){a._emulateHtmlUpdate();var b=document.createEvent("Event");b.initEvent(c,
116
+!1,!0);a.internal.domNode.dispatchEvent(b)})})},_emulateHtmlUpdate:function(){var a=this;b.each(b.jPlayer.emulateStatus.split(/\s+/g),function(b,d){a.internal.domNode[d]=a.status[d]});b.each(b.jPlayer.emulateOptions.split(/\s+/g),function(b,d){a.internal.domNode[d]=a.options[d]})},_destroyHtmlBridge:function(){var a=this;this.element.unbind(".jPlayerHtml");b.each((b.jPlayer.emulateMethods+" "+b.jPlayer.emulateStatus+" "+b.jPlayer.emulateOptions).split(/\s+/g),function(b,d){delete a.internal.domNode[d]})}};
117
+b.jPlayer.error={FLASH:"e_flash",FLASH_DISABLED:"e_flash_disabled",NO_SOLUTION:"e_no_solution",NO_SUPPORT:"e_no_support",URL:"e_url",URL_NOT_SET:"e_url_not_set",VERSION:"e_version"};b.jPlayer.errorMsg={FLASH:"jPlayer's Flash fallback is not configured correctly, or a command was issued before the jPlayer Ready event. Details: ",FLASH_DISABLED:"jPlayer's Flash fallback has been disabled by the browser due to the CSS rules you have used. Details: ",NO_SOLUTION:"No solution can be found by jPlayer in this browser. Neither HTML nor Flash can be used.",
118
+NO_SUPPORT:"It is not possible to play any media format provided in setMedia() on this browser using your current options.",URL:"Media URL could not be loaded.",URL_NOT_SET:"Attempt to issue media playback commands, while no media url is set.",VERSION:"jPlayer "+b.jPlayer.prototype.version.script+" needs Jplayer.swf version "+b.jPlayer.prototype.version.needFlash+" but found "};b.jPlayer.errorHint={FLASH:"Check your swfPath option and that Jplayer.swf is there.",FLASH_DISABLED:"Check that you have not display:none; the jPlayer entity or any ancestor.",
119
+NO_SOLUTION:"Review the jPlayer options: support and supplied.",NO_SUPPORT:"Video or audio formats defined in the supplied option are missing.",URL:"Check media URL is valid.",URL_NOT_SET:"Use setMedia() to set the media URL.",VERSION:"Update jPlayer files."};b.jPlayer.warning={CSS_SELECTOR_COUNT:"e_css_selector_count",CSS_SELECTOR_METHOD:"e_css_selector_method",CSS_SELECTOR_STRING:"e_css_selector_string",OPTION_KEY:"e_option_key"};b.jPlayer.warningMsg={CSS_SELECTOR_COUNT:"The number of css selectors found did not equal one: ",
120
+CSS_SELECTOR_METHOD:"The methodName given in jPlayer('cssSelector') is not a valid jPlayer method.",CSS_SELECTOR_STRING:"The methodCssSelector given in jPlayer('cssSelector') is not a String or is empty.",OPTION_KEY:"The option requested in jPlayer('option') is undefined."};b.jPlayer.warningHint={CSS_SELECTOR_COUNT:"Check your css selector and the ancestor.",CSS_SELECTOR_METHOD:"Check your method name.",CSS_SELECTOR_STRING:"Check your css selector is a string.",OPTION_KEY:"Check your option name."}});
+1010
skin/all-skins.css
... ...
@@ -0,0 +1,1010 @@
1
+@font-face {
2
+  font-family: 'fpicons';
3
+  src:url('fonts/fpicons.eot?yg5dv7');
4
+  src:url('fonts/fpicons.eot?#iefixyg5dv7') format('embedded-opentype'),
5
+    url('fonts/fpicons.woff?yg5dv7') format('woff'),
6
+    url('fonts/fpicons.ttf?yg5dv7') format('truetype'),
7
+    url('fonts/fpicons.svg?yg5dv7#fpicons') format('svg');
8
+  font-weight: normal;
9
+  font-style: normal;
10
+}
11
+
12
+[class^="fp-i-"], [class*=" fp-i-"] {
13
+  font-family: 'fpicons';
14
+  speak: none;
15
+  font-style: normal;
16
+  font-weight: normal;
17
+  font-variant: normal;
18
+  text-transform: none;
19
+  line-height: 1;
20
+
21
+  /* Better Font Rendering =========== */
22
+  -webkit-font-smoothing: antialiased;
23
+  -moz-osx-font-smoothing: grayscale;
24
+}
25
+.minimalist{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
26
+.minimalist *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
27
+.minimalist a:focus{outline:0}
28
+.minimalist video{width:100%}
29
+.minimalist.is-ipad video{-webkit-transform:translateX(-2048px);}
30
+.is-ready.minimalist.is-ipad video{-webkit-transform:translateX(0)}
31
+.minimalist .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
32
+.minimalist .fp-engine,.minimalist .fp-ui,.minimalist .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
33
+.minimalist .fp-ui{z-index:11}
34
+.minimalist .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
35
+.minimalist .fp-message h2{font-size:120%;margin-bottom:1em}
36
+.minimalist .fp-message p{color:#666;font-size:95%}
37
+.minimalist .fp-title{line-height:30px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 20px;}
38
+.is-rtl.minimalist .fp-title{float:right}
39
+.aside-time.minimalist .fp-title{display:none !important}
40
+.minimalist .fp-controls{position:absolute;bottom:0;width:100%;}
41
+.no-background.minimalist .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
42
+.is-fullscreen.minimalist .fp-controls{bottom:3px}
43
+.is-mouseover.minimalist .fp-controls{bottom:0}
44
+.minimalist .fp-controls,.minimalist .fp-title,.minimalist .fp-fullscreen,.minimalist .fp-unload,.minimalist .fp-close,.minimalist .fp-embed,.minimalist.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
45
+.no-background.minimalist .fp-controls,.no-background.minimalist .fp-title,.no-background.minimalist .fp-fullscreen,.no-background.minimalist .fp-unload,.no-background.minimalist .fp-close,.no-background.minimalist .fp-embed,.no-background.minimalist.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
46
+.no-background.minimalist .fp-play,.no-background.minimalist .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
47
+.minimalist.fixed-controls .fp-controls{background-color:#000}
48
+.minimalist .fp-timeline{background-color:#a5a5a5}
49
+.minimalist .fp-buffer{background-color:#eee}
50
+.minimalist .fp-progress{background-color:#00a7c8}
51
+.minimalist .fp-volumeslider{background-color:#a5a5a5}
52
+.minimalist .fp-volumelevel{background-color:#00a7c8}
53
+.minimalist .fp-waiting{display:none;margin:19% auto;text-align:center;}
54
+.minimalist .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
55
+.minimalist .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
56
+.minimalist .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
57
+.minimalist .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
58
+.minimalist .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
59
+.minimalist .fp-waiting p{color:#ccc;font-weight:bold}
60
+.minimalist .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
61
+.minimalist .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
62
+.minimalist .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
63
+.is-help.minimalist .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
64
+.minimalist .fp-help .fp-help-section{margin:3%;direction:ltr}
65
+.minimalist .fp-help .fp-help-basics{margin-top:6%}
66
+.minimalist .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
67
+.minimalist .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
68
+.minimalist .fp-help small{font-size:90%;color:#aaa}
69
+.minimalist .fp-help .fp-close{display:block}
70
+@media (max-width: 600px){.minimalist .fp-help p{font-size:9px}
71
+}.minimalist .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
72
+.minimalist .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
73
+.minimalist .fp-dropdown li{padding:10px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
74
+.minimalist .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
75
+.minimalist .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
76
+.minimalist .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
77
+.minimalist .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
78
+.minimalist .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
79
+.minimalist .fp-timeline-tooltip{bottom:35px}
80
+.minimalist .fp-timeline:hover+.fp-timeline-tooltip{display:block;}
81
+.is-touch.minimalist .fp-timeline:hover+.fp-timeline-tooltip{display:none}
82
+.minimalist .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
83
+.minimalist .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
84
+.minimalist .fp-subtitle p:after{content:'';clear:both}
85
+.minimalist .fp-subtitle p b{font-weight:bold}
86
+.minimalist .fp-subtitle p i{font-style:italic}
87
+.minimalist .fp-subtitle p u{text-decoration:underline}
88
+.minimalist .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
89
+.minimalist .fp-fullscreen,.minimalist .fp-unload,.minimalist .fp-mute,.minimalist .fp-embed,.minimalist .fp-close,.minimalist .fp-play,.minimalist .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
90
+.is-rtl.minimalist .fp-fullscreen,.is-rtl.minimalist .fp-unload,.is-rtl.minimalist .fp-mute,.is-rtl.minimalist .fp-embed,.is-rtl.minimalist .fp-close,.is-rtl.minimalist .fp-play,.is-rtl.minimalist .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
91
+.is-rtl.minimalist .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
92
+.minimalist .fp-fullscreen:before{content:"\e602"}
93
+.minimalist .fp-unload:before,.minimalist .fp-close:before{content:"\e600"}
94
+.minimalist .fp-mute:before{content:"\e606"}
95
+.minimalist .fp-embed:before{content:"\e603"}
96
+.minimalist .fp-play:before{content:"\e608"}
97
+.minimalist .fp-menu:before{content:"\e604"}
98
+.minimalist .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
99
+.is-splash.minimalist .fp-ui,.is-paused.minimalist .fp-ui{background:url(img/play_white.png) center no-repeat;background-size:11%;}
100
+.is-rtl.is-splash.minimalist .fp-ui,.is-rtl.is-paused.minimalist .fp-ui{background:url(img/play_white_rtl.png) center no-repeat;background-size:11%}
101
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.is-splash.minimalist .fp-ui,.is-paused.minimalist .fp-ui{background:url(img/play_white@x2.png) center no-repeat;background-size:11%}
102
+.is-rtl.is-splash.minimalist .fp-ui,.is-rtl.is-paused.minimalist .fp-ui{background:url(img/play_white_rtl@x2.png) center no-repeat;background-size:11%}
103
+}.is-fullscreen.minimalist .fp-ui{background-size:auto}
104
+.is-seeking.minimalist .fp-ui,.is-loading.minimalist .fp-ui{background-image:none}
105
+.minimalist .fp-brand{color:#fff !important;position:absolute;right:115px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:9px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
106
+.has-menu.minimalist .fp-brand{right:152px}
107
+.is-rtl.minimalist .fp-brand{right:auto;left:125px}
108
+.has-menu.is-rtl.minimalist .fp-brand{left:152px}
109
+.no-brand.minimalist .fp-brand{display:none}
110
+.no-volume.no-mute.minimalist .fp-brand{right:10px;}
111
+.has-menu.no-volume.no-mute.minimalist .fp-brand{right:47px}
112
+.no-volume.minimalist .fp-brand{right:50px}
113
+.no-mute.minimalist .fp-brand{right:95px}
114
+.minimalist .fp-logo{position:absolute;top:auto;left:15px;bottom:40px;cursor:pointer;display:none;z-index:100;}
115
+.minimalist .fp-logo img{width:100%}
116
+.is-embedded.minimalist .fp-logo{display:block}
117
+.fixed-controls.minimalist .fp-logo{bottom:15px}
118
+.minimalist .fp-fullscreen,.minimalist .fp-unload,.minimalist .fp-close{position:absolute;top:10px;left:auto;right:10px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:30px;width:30px;}
119
+.is-rtl.minimalist .fp-fullscreen,.is-rtl.minimalist .fp-unload,.is-rtl.minimalist .fp-close{right:auto;left:10px}
120
+.minimalist .fp-unload,.minimalist .fp-close{display:none}
121
+.minimalist .fp-play{display:none;height:30px !important;position:absolute;bottom:0;left:0;text-align:center;}
122
+.is-rtl.minimalist .fp-play{left:auto;right:0}
123
+.is-playing.minimalist .fp-play:before{content:"\e607"}
124
+.minimalist .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:10px;}
125
+.is-rtl.minimalist .fp-menu{right:auto;left:10px}
126
+.has-menu.minimalist .fp-menu{display:block}
127
+.minimalist .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:149px;-webkit-transform:none;-moz-transform:none;transform:none;}
128
+.is-rtl.minimalist .fp-menu .fp-dropdown{left:-10px}
129
+.minimalist .fp-menu.dropdown-open .fp-dropdown{display:block}
130
+.minimalist.is-ready.is-closeable .fp-unload{display:block}
131
+.minimalist.is-ready.is-closeable .fp-embed{right:90px}
132
+.minimalist.is-ready.is-closeable .fp-fullscreen{right:50px}
133
+.minimalist.is-ready.is-closeable.is-rtl .fp-embed{right:auto;left:90px}
134
+.minimalist.is-ready.is-closeable.is-rtl .fp-fullscreen{right:auto;left:50px}
135
+.minimalist.is-fullscreen .fp-fullscreen{display:block !important;}
136
+.minimalist.is-fullscreen .fp-fullscreen:before{content:"\e601"}
137
+.minimalist .fp-timeline{height:3px;position:relative;overflow:hidden;top:10px;height:10px;margin:0 225px 0 55px;}
138
+.no-brand.minimalist .fp-timeline{margin-right:160px;}
139
+.has-menu.no-brand.minimalist .fp-timeline{margin-right:187px}
140
+.no-volume.no-brand.minimalist .fp-timeline{margin-right:95px}
141
+.no-mute.no-brand.minimalist .fp-timeline{margin-right:130px}
142
+.no-mute.no-volume.no-brand.minimalist .fp-timeline{margin-right:55px}
143
+.has-menu.minimalist .fp-timeline{margin-right:252px}
144
+.no-volume.minimalist .fp-timeline{margin-right:160px}
145
+.no-mute.minimalist .fp-timeline{margin-right:195px}
146
+.no-mute.no-volume.minimalist .fp-timeline{margin-right:120px;}
147
+.has-menu.no-mute.no-volume.minimalist .fp-timeline{margin-right:157px}
148
+.is-rtl.minimalist .fp-timeline{margin:0 55px 0 225px;}
149
+.no-brand.is-rtl.minimalist .fp-timeline{margin-left:160px;}
150
+.has-menu.no-brand.is-rtl.minimalist .fp-timeline{margin-left:197px}
151
+.has-menu.is-rtl.minimalist .fp-timeline{margin-left:262px}
152
+.no-volume.is-rtl.minimalist .fp-timeline{margin-left:95px}
153
+.no-mute.is-rtl.minimalist .fp-timeline{margin-left:130px}
154
+.no-mute.no-volume.is-rtl.minimalist .fp-timeline{margin-left:55px}
155
+.is-long.minimalist .fp-timeline{margin:0 255px 0 85px;}
156
+.no-volume.is-long.minimalist .fp-timeline{margin-right:180px}
157
+.no-mute.is-long.minimalist .fp-timeline{margin-right:140px}
158
+.has-menu.is-long.minimalist .fp-timeline{margin-right:292px}
159
+.no-brand.is-long.minimalist .fp-timeline{margin-right:190px;}
160
+.no-volume.no-brand.is-long.minimalist .fp-timeline{margin-right:125px}
161
+.no-mute.no-brand.is-long.minimalist .fp-timeline{margin-right:85px}
162
+.has-menu.no-brand.is-long.minimalist .fp-timeline{margin-right:227px}
163
+.is-rtl.is-long.minimalist .fp-timeline{margin:85px 0 190px 0;}
164
+.no-volume.is-rtl.is-long.minimalist .fp-timeline{margin-left:125px}
165
+.no-mute.is-rtl.is-long.minimalist .fp-timeline{margin-left:85px}
166
+.aside-time.minimalist .fp-timeline,.no-time.minimalist .fp-timeline{margin:0 190px 0 10px;}
167
+.has-menu.aside-time.minimalist .fp-timeline,.has-menu.no-time.minimalist .fp-timeline{margin-right:227px}
168
+.aside-time.no-brand.minimalist .fp-timeline{margin-right:115px}
169
+.aside-time.no-volume.minimalist .fp-timeline,.no-time.no-volume.minimalist .fp-timeline{margin-right:115px}
170
+.aside-time.no-mute.minimalist .fp-timeline,.no-time.no-mute.minimalist .fp-timeline{margin-right:75px}
171
+.is-rtl.aside-time.minimalist .fp-timeline,.is-rtl.no-time.minimalist .fp-timeline{margin:0 10px 0 115px}
172
+.is-rtl.aside-time.no-volume.minimalist .fp-timeline,.is-rtl.no-time.no-volume.minimalist .fp-timeline{margin-left:50px}
173
+.is-rtl.aside-time.no-mute.minimalist .fp-timeline,.is-rtl.no-time.no-mute.minimalist .fp-timeline{margin-left:10px}
174
+.minimalist .fp-buffer,.minimalist .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
175
+.minimalist .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
176
+.minimalist .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
177
+.minimalist .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
178
+.minimalist.is-touch .fp-timeline{overflow:visible}
179
+.minimalist.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
180
+.minimalist.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
181
+.minimalist.is-touch.is-mouseover .fp-progress:after,.minimalist.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
182
+.minimalist.is-touch.is-rtl.is-mouseover .fp-progress:after,.minimalist.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
183
+.minimalist.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
184
+.minimalist.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
185
+.minimalist.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
186
+.minimalist.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
187
+.minimalist.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
188
+.minimalist .fp-volume{position:absolute;height:6px;bottom:12px;right:10px;}
189
+.has-menu.minimalist .fp-volume{right:37px}
190
+.is-rtl.minimalist .fp-volume{right:auto;left:10px}
191
+.is-rtl.has-menu.minimalist .fp-volume{left:37px}
192
+.minimalist .fp-mute{position:relative;width:30px;height:30px;float:left;top:-12px;cursor:pointer;}
193
+.is-rtl.minimalist .fp-mute{float:right}
194
+.no-mute.minimalist .fp-mute{display:none}
195
+.minimalist .fp-volumeslider{width:75px;height:6px;cursor:col-resize;float:left;}
196
+.is-rtl.minimalist .fp-volumeslider{float:right}
197
+.no-volume.minimalist .fp-volumeslider{display:none}
198
+.minimalist .fp-volumelevel{height:100%}
199
+.minimalist .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
200
+.minimalist .fp-time.is-inverted .fp-duration{display:none}
201
+.minimalist .fp-time.is-inverted .fp-remaining{display:inline}
202
+.minimalist .fp-time em{width:35px;height:10px;line-height:10px;text-align:center;position:absolute;bottom:9px}
203
+.no-time.minimalist .fp-time{display:none}
204
+.is-long.minimalist .fp-time em{width:65px}
205
+.minimalist .fp-elapsed{left:10px;}
206
+.is-rtl.minimalist .fp-elapsed{left:auto;right:10px}
207
+.minimalist .fp-remaining,.minimalist .fp-duration{right:180px;color:#eee;}
208
+.no-brand.minimalist .fp-remaining,.no-brand.minimalist .fp-duration{right:125px;}
209
+.has-menu.no-brand.minimalist .fp-remaining,.has-menu.no-brand.minimalist .fp-duration{right:152px}
210
+.no-volume.no-brand.minimalist .fp-remaining,.no-volume.no-brand.minimalist .fp-duration{right:50px}
211
+.no-mute.no-brand.minimalist .fp-remaining,.no-mute.no-brand.minimalist .fp-duration{right:95px}
212
+.no-mute.no-volume.no-brand.minimalist .fp-remaining,.no-mute.no-volume.no-brand.minimalist .fp-duration{right:10px}
213
+.has-menu.minimalist .fp-remaining,.has-menu.minimalist .fp-duration{right:217px}
214
+.no-volume.minimalist .fp-remaining,.no-volume.minimalist .fp-duration{right:115px}
215
+.no-mute.minimalist .fp-remaining,.no-mute.minimalist .fp-duration{right:160px}
216
+.no-mute.no-volume.minimalist .fp-remaining,.no-mute.no-volume.minimalist .fp-duration{right:75px;}
217
+.has-menu.no-mute.no-volume.minimalist .fp-remaining,.has-menu.no-mute.no-volume.minimalist .fp-duration{right:112px}
218
+.is-rtl.minimalist .fp-remaining,.is-rtl.minimalist .fp-duration{right:auto;left:180px;}
219
+.no-brand.is-rtl.minimalist .fp-remaining,.no-brand.is-rtl.minimalist .fp-duration{left:115px;}
220
+.has-menu.no-brand.is-rtl.minimalist .fp-remaining,.has-menu.no-brand.is-rtl.minimalist .fp-duration{left:142px}
221
+.has-menu.is-rtl.minimalist .fp-remaining,.has-menu.is-rtl.minimalist .fp-duration{left:227px}
222
+.no-volume.is-rtl.minimalist .fp-remaining,.no-volume.is-rtl.minimalist .fp-duration{left:50px}
223
+.no-mute.is-rtl.minimalist .fp-remaining,.no-mute.is-rtl.minimalist .fp-duration{left:95px}
224
+.no-mute.no-volume.is-rtl.minimalist .fp-remaining,.no-mute.no-volume.is-rtl.minimalist .fp-duration{left:10px}
225
+.minimalist .fp-remaining{display:none}
226
+.minimalist.aside-time .fp-time{position:absolute;top:10px;left:10px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:30px;padding:0 5px;-webkit-border-radius:control_border_radius;-moz-border-radius:control_border_radius;border-radius:control_border_radius;line-height:30px;text-align:center;font-size:15px;}
227
+.no-background.minimalist.aside-time .fp-time{background-color:transparent !important}
228
+.minimalist.aside-time .fp-time strong,.minimalist.aside-time .fp-time em{position:static}
229
+.minimalist.aside-time .fp-time .fp-elapsed::after{content:' / '}
230
+.minimalist.is-splash,.minimalist.is-poster{cursor:pointer;}
231
+.minimalist.is-splash .fp-controls,.minimalist.is-poster .fp-controls,.minimalist.is-splash .fp-fullscreen,.minimalist.is-poster .fp-fullscreen,.minimalist.is-splash .fp-unload,.minimalist.is-poster .fp-unload,.minimalist.is-splash .fp-time,.minimalist.is-poster .fp-time,.minimalist.is-splash .fp-embed,.minimalist.is-poster .fp-embed,.minimalist.is-splash .fp-title,.minimalist.is-poster .fp-title,.minimalist.is-splash .fp-brand,.minimalist.is-poster .fp-brand{display:none !important}
232
+.minimalist.is-poster .fp-engine{top:-9999em}
233
+.minimalist.is-loading .fp-waiting{display:block}
234
+.minimalist.is-loading .fp-controls,.minimalist.is-loading .fp-time{display:none}
235
+.minimalist.is-loading .fp-ui{background-position:-9999em}
236
+.minimalist.is-loading video.fp-engine{position:absolute;top:-9999em}
237
+.minimalist.is-seeking .fp-waiting{display:block}
238
+.minimalist.is-playing{background-image:none !important;background-color:#333;}
239
+.minimalist.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
240
+.minimalist.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
241
+.is-rtl.minimalist.is-fullscreen{left:auto !important;right:0 !important}
242
+.minimalist.is-fullscreen .fp-player{background-color:#333}
243
+.minimalist.is-error{border:1px solid #909090;background:#fdfdfd !important;}
244
+.minimalist.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
245
+.minimalist.is-error .fp-message{display:block}
246
+.minimalist.is-error object,.minimalist.is-error video,.minimalist.is-error .fp-controls,.minimalist.is-error .fp-time,.minimalist.is-error .fp-subtitle{display:none}
247
+.minimalist.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
248
+.minimalist.is-ready.is-muted .fp-mute:before{content:"\e605"}
249
+.minimalist.is-mouseout .fp-controls{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
250
+.is-fullscreen.minimalist.is-mouseout .fp-controls{height:3px;bottom:0}
251
+.minimalist.is-mouseout .fp-title{overflow:hidden}
252
+.minimalist.is-mouseout .fp-timeline{margin:0 !important}
253
+.minimalist.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
254
+.minimalist.is-mouseout .fp-fullscreen,.minimalist.is-mouseout .fp-unload,.minimalist.is-mouseout .fp-elapsed,.minimalist.is-mouseout .fp-remaining,.minimalist.is-mouseout .fp-duration,.minimalist.is-mouseout .fp-embed,.minimalist.is-mouseout .fp-title,.minimalist.is-mouseout .fp-volume,.minimalist.is-mouseout .fp-play,.minimalist.is-mouseout .fp-menu,.minimalist.is-mouseout .fp-brand,.minimalist.is-mouseout .fp-timeline-tooltip,.minimalist.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
255
+.minimalist.is-mouseover .fp-controls,.minimalist.fixed-controls .fp-controls{height:30px}
256
+.minimalist.is-mouseover .fp-title,.minimalist.fixed-controls .fp-title{height:30px}
257
+.minimalist.is-mouseover .fp-fullscreen,.minimalist.fixed-controls .fp-fullscreen,.minimalist.is-mouseover .fp-unload,.minimalist.fixed-controls .fp-unload,.minimalist.is-mouseover .fp-elapsed,.minimalist.fixed-controls .fp-elapsed,.minimalist.is-mouseover .fp-remaining,.minimalist.fixed-controls .fp-remaining,.minimalist.is-mouseover .fp-duration,.minimalist.fixed-controls .fp-duration,.minimalist.is-mouseover .fp-embed,.minimalist.fixed-controls .fp-embed,.minimalist.is-mouseover .fp-logo,.minimalist.fixed-controls .fp-logo,.minimalist.is-mouseover .fp-volume,.minimalist.fixed-controls .fp-volume,.minimalist.is-mouseover .fp-play,.minimalist.fixed-controls .fp-play,.minimalist.is-mouseover .fp-menu,.minimalist.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
258
+.minimalist.fixed-controls .fp-volume{display:block}
259
+.minimalist.fixed-controls .fp-controls{bottom:-30px;}
260
+.is-fullscreen.minimalist.fixed-controls .fp-controls{bottom:0}
261
+.minimalist.fixed-controls .fp-time em{bottom:-20px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
262
+.is-fullscreen.minimalist.fixed-controls .fp-time em{bottom:10px}
263
+.minimalist.is-disabled .fp-progress{background-color:#999}
264
+.minimalist.is-flash-disabled{background-color:#333;}
265
+.minimalist.is-flash-disabled object.fp-engine{z-index:100}
266
+.minimalist.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
267
+.minimalist .fp-embed{position:absolute;top:10px;left:auto;right:50px;display:block;width:30px;height:30px;text-align:center;}
268
+.is-rtl.minimalist .fp-embed{right:auto;left:50px}
269
+.minimalist .fp-embed-code{position:absolute;display:none;top:10px;right:67px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
270
+.is-closeable.minimalist .fp-embed-code{right:99px}
271
+.minimalist .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
272
+.is-rtl.minimalist .fp-embed-code{right:auto;left:67px;}
273
+.is-rtl.minimalist .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
274
+.minimalist .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
275
+.minimalist .fp-embed-code label{display:block;color:#999}
276
+.minimalist.is-embedding .fp-embed,.minimalist.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
277
+.minimalist.no-time .fp-embed{left:10px !important;}
278
+.is-rtl.minimalist.no-time .fp-embed{left:auto;right:10px !important}
279
+.minimalist.is-live .fp-timeline,.minimalist.is-live .fp-duration,.minimalist.is-live .fp-remaining{display:none}
280
+.minimalist .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
281
+.minimalist .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
282
+.minimalist .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
283
+.minimalist .fp-context-menu li:hover:not(.copyright){background-color:#eee}
284
+.minimalist .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
285
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.minimalist .fp-context-menu li.copyright{background-image:url("img/flowplayer@2x.png")}
286
+}@-moz-keyframes pulse{0%{opacity:0}
287
+100%{opacity:1}
288
+}@-webkit-keyframes pulse{0%{opacity:0}
289
+100%{opacity:1}
290
+}@-o-keyframes pulse{0%{opacity:0}
291
+100%{opacity:1}
292
+}@-ms-keyframes pulse{0%{opacity:0}
293
+100%{opacity:1}
294
+}@keyframes pulse{0%{opacity:0}
295
+100%{opacity:1}
296
+}.minimalist.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
297
+.minimalist .fp-menu .fp-dropdown{right:-10px;left:auto;bottom:30px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
298
+.minimalist .fp-menu .fp-dropdown:before{display:none}
299
+.is-rtl.minimalist .fp-menu .fp-dropdown{right:auto;left:-10px}
300
+.minimalist .fp-play{width:30px}
301
+.minimalist.aside-time .fp-time{top:0;left:0}
302
+.no-brand.minimalist .fp-remaining,.no-brand.minimalist .fp-duration{right:115px}
303
+.minimalist .fp-fullscreen,.minimalist .fp-unload,.minimalist .fp-close,.minimalist .fp-embed{right:0;top:0;}
304
+.is-rtl.minimalist .fp-fullscreen,.is-rtl.minimalist .fp-unload,.is-rtl.minimalist .fp-close,.is-rtl.minimalist .fp-embed{right:auto;left:0}
305
+.minimalist .fp-embed{right:32px;}
306
+.is-rtl.minimalist .fp-embed{right:auto;left:32px}
307
+.minimalist.is-closeable.is-ready .fp-fullscreen{right:32px}
308
+.minimalist.is-closeable.is-ready .fp-embed{right:64px}
309
+.is-rtl.minimalist.is-closeable.is-ready .fp-fullscreen{right:auto;left:32px}
310
+.is-rtl.minimalist.is-closeable.is-ready .fp-embed{right:auto;left:64px}
311
+.minimalist.play-button .fp-play{display:block}
312
+.minimalist.play-button .fp-elapsed{left:27px;}
313
+.is-rtl.minimalist.play-button .fp-elapsed{right:27px}
314
+.minimalist.play-button .fp-timeline{margin-left:72px;}
315
+.is-rtl.minimalist.play-button .fp-timeline{margin-right:72px}
316
+.is-long.minimalist.play-button .fp-timeline{margin-left:102px;}
317
+.is-rtl.is-long.minimalist.play-button .fp-timeline{margin-right:102px}
318
+.no-time.minimalist.play-button .fp-timeline,.aside-time.minimalist.play-button .fp-timeline{margin-left:27px;}
319
+.is-rtl.no-time.minimalist.play-button .fp-timeline,.is-rtl.aside-time.minimalist.play-button .fp-timeline{margin-right:27px}
320
+@font-face {
321
+  font-family: 'fpicons';
322
+  src:url('fonts/fpicons.eot?yg5dv7');
323
+  src:url('fonts/fpicons.eot?#iefixyg5dv7') format('embedded-opentype'),
324
+    url('fonts/fpicons.woff?yg5dv7') format('woff'),
325
+    url('fonts/fpicons.ttf?yg5dv7') format('truetype'),
326
+    url('fonts/fpicons.svg?yg5dv7#fpicons') format('svg');
327
+  font-weight: normal;
328
+  font-style: normal;
329
+}
330
+
331
+[class^="fp-i-"], [class*=" fp-i-"] {
332
+  font-family: 'fpicons';
333
+  speak: none;
334
+  font-style: normal;
335
+  font-weight: normal;
336
+  font-variant: normal;
337
+  text-transform: none;
338
+  line-height: 1;
339
+
340
+  /* Better Font Rendering =========== */
341
+  -webkit-font-smoothing: antialiased;
342
+  -moz-osx-font-smoothing: grayscale;
343
+}
344
+.functional{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
345
+.functional *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
346
+.functional a:focus{outline:0}
347
+.functional video{width:100%}
348
+.functional.is-ipad video{-webkit-transform:translateX(-2048px);}
349
+.is-ready.functional.is-ipad video{-webkit-transform:translateX(0)}
350
+.functional .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
351
+.functional .fp-engine,.functional .fp-ui,.functional .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
352
+.functional .fp-ui{z-index:11}
353
+.functional .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
354
+.functional .fp-message h2{font-size:120%;margin-bottom:1em}
355
+.functional .fp-message p{color:#666;font-size:95%}
356
+.functional .fp-title{line-height:30px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 20px;}
357
+.is-rtl.functional .fp-title{float:right}
358
+.aside-time.functional .fp-title{display:none !important}
359
+.functional .fp-controls{position:absolute;bottom:0;width:100%;}
360
+.no-background.functional .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
361
+.is-fullscreen.functional .fp-controls{bottom:3px}
362
+.is-mouseover.functional .fp-controls{bottom:0}
363
+.functional .fp-controls,.functional .fp-title,.functional .fp-fullscreen,.functional .fp-unload,.functional .fp-close,.functional .fp-embed,.functional.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
364
+.no-background.functional .fp-controls,.no-background.functional .fp-title,.no-background.functional .fp-fullscreen,.no-background.functional .fp-unload,.no-background.functional .fp-close,.no-background.functional .fp-embed,.no-background.functional.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
365
+.no-background.functional .fp-play,.no-background.functional .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
366
+.functional.fixed-controls .fp-controls{background-color:#000}
367
+.functional .fp-timeline{background-color:#a5a5a5}
368
+.functional .fp-buffer{background-color:#eee}
369
+.functional .fp-progress{background-color:#00a7c8}
370
+.functional .fp-volumeslider{background-color:#a5a5a5}
371
+.functional .fp-volumelevel{background-color:#00a7c8}
372
+.functional .fp-waiting{display:none;margin:19% auto;text-align:center;}
373
+.functional .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
374
+.functional .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
375
+.functional .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
376
+.functional .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
377
+.functional .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
378
+.functional .fp-waiting p{color:#ccc;font-weight:bold}
379
+.functional .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
380
+.functional .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
381
+.functional .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
382
+.is-help.functional .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
383
+.functional .fp-help .fp-help-section{margin:3%;direction:ltr}
384
+.functional .fp-help .fp-help-basics{margin-top:6%}
385
+.functional .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
386
+.functional .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
387
+.functional .fp-help small{font-size:90%;color:#aaa}
388
+.functional .fp-help .fp-close{display:block}
389
+@media (max-width: 600px){.functional .fp-help p{font-size:9px}
390
+}.functional .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
391
+.functional .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
392
+.functional .fp-dropdown li{padding:10px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
393
+.functional .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
394
+.functional .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
395
+.functional .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
396
+.functional .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
397
+.functional .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
398
+.functional .fp-timeline-tooltip{bottom:35px}
399
+.functional .fp-timeline:hover+.fp-timeline-tooltip{display:block;}
400
+.is-touch.functional .fp-timeline:hover+.fp-timeline-tooltip{display:none}
401
+.functional .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
402
+.functional .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
403
+.functional .fp-subtitle p:after{content:'';clear:both}
404
+.functional .fp-subtitle p b{font-weight:bold}
405
+.functional .fp-subtitle p i{font-style:italic}
406
+.functional .fp-subtitle p u{text-decoration:underline}
407
+.functional .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
408
+.functional .fp-fullscreen,.functional .fp-unload,.functional .fp-mute,.functional .fp-embed,.functional .fp-close,.functional .fp-play,.functional .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
409
+.is-rtl.functional .fp-fullscreen,.is-rtl.functional .fp-unload,.is-rtl.functional .fp-mute,.is-rtl.functional .fp-embed,.is-rtl.functional .fp-close,.is-rtl.functional .fp-play,.is-rtl.functional .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
410
+.is-rtl.functional .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
411
+.functional .fp-fullscreen:before{content:"\e602"}
412
+.functional .fp-unload:before,.functional .fp-close:before{content:"\e600"}
413
+.functional .fp-mute:before{content:"\e606"}
414
+.functional .fp-embed:before{content:"\e603"}
415
+.functional .fp-play:before{content:"\e608"}
416
+.functional .fp-menu:before{content:"\e604"}
417
+.functional .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
418
+.is-splash.functional .fp-ui,.is-paused.functional .fp-ui{background:url(img/play_white.png) center no-repeat;background-size:11%;}
419
+.is-rtl.is-splash.functional .fp-ui,.is-rtl.is-paused.functional .fp-ui{background:url(img/play_white_rtl.png) center no-repeat;background-size:11%}
420
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.is-splash.functional .fp-ui,.is-paused.functional .fp-ui{background:url(img/play_white@x2.png) center no-repeat;background-size:11%}
421
+.is-rtl.is-splash.functional .fp-ui,.is-rtl.is-paused.functional .fp-ui{background:url(img/play_white_rtl@x2.png) center no-repeat;background-size:11%}
422
+}.is-fullscreen.functional .fp-ui{background-size:auto}
423
+.is-seeking.functional .fp-ui,.is-loading.functional .fp-ui{background-image:none}
424
+.functional .fp-brand{color:#fff !important;position:absolute;right:115px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:9px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
425
+.has-menu.functional .fp-brand{right:152px}
426
+.is-rtl.functional .fp-brand{right:auto;left:125px}
427
+.has-menu.is-rtl.functional .fp-brand{left:152px}
428
+.no-brand.functional .fp-brand{display:none}
429
+.no-volume.no-mute.functional .fp-brand{right:10px;}
430
+.has-menu.no-volume.no-mute.functional .fp-brand{right:47px}
431
+.no-volume.functional .fp-brand{right:50px}
432
+.no-mute.functional .fp-brand{right:95px}
433
+.functional .fp-logo{position:absolute;top:auto;left:15px;bottom:40px;cursor:pointer;display:none;z-index:100;}
434
+.functional .fp-logo img{width:100%}
435
+.is-embedded.functional .fp-logo{display:block}
436
+.fixed-controls.functional .fp-logo{bottom:15px}
437
+.functional .fp-fullscreen,.functional .fp-unload,.functional .fp-close{position:absolute;top:10px;left:auto;right:10px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:30px;width:30px;}
438
+.is-rtl.functional .fp-fullscreen,.is-rtl.functional .fp-unload,.is-rtl.functional .fp-close{right:auto;left:10px}
439
+.functional .fp-unload,.functional .fp-close{display:none}
440
+.functional .fp-play{display:none;height:30px !important;position:absolute;bottom:0;left:0;text-align:center;}
441
+.is-rtl.functional .fp-play{left:auto;right:0}
442
+.is-playing.functional .fp-play:before{content:"\e607"}
443
+.functional .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:10px;}
444
+.is-rtl.functional .fp-menu{right:auto;left:10px}
445
+.has-menu.functional .fp-menu{display:block}
446
+.functional .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:149px;-webkit-transform:none;-moz-transform:none;transform:none;}
447
+.is-rtl.functional .fp-menu .fp-dropdown{left:-10px}
448
+.functional .fp-menu.dropdown-open .fp-dropdown{display:block}
449
+.functional.is-ready.is-closeable .fp-unload{display:block}
450
+.functional.is-ready.is-closeable .fp-embed{right:90px}
451
+.functional.is-ready.is-closeable .fp-fullscreen{right:50px}
452
+.functional.is-ready.is-closeable.is-rtl .fp-embed{right:auto;left:90px}
453
+.functional.is-ready.is-closeable.is-rtl .fp-fullscreen{right:auto;left:50px}
454
+.functional.is-fullscreen .fp-fullscreen{display:block !important;}
455
+.functional.is-fullscreen .fp-fullscreen:before{content:"\e601"}
456
+.functional .fp-timeline{height:3px;position:relative;overflow:hidden;top:10px;height:10px;margin:0 225px 0 55px;}
457
+.no-brand.functional .fp-timeline{margin-right:160px;}
458
+.has-menu.no-brand.functional .fp-timeline{margin-right:187px}
459
+.no-volume.no-brand.functional .fp-timeline{margin-right:95px}
460
+.no-mute.no-brand.functional .fp-timeline{margin-right:130px}
461
+.no-mute.no-volume.no-brand.functional .fp-timeline{margin-right:55px}
462
+.has-menu.functional .fp-timeline{margin-right:252px}
463
+.no-volume.functional .fp-timeline{margin-right:160px}
464
+.no-mute.functional .fp-timeline{margin-right:195px}
465
+.no-mute.no-volume.functional .fp-timeline{margin-right:120px;}
466
+.has-menu.no-mute.no-volume.functional .fp-timeline{margin-right:157px}
467
+.is-rtl.functional .fp-timeline{margin:0 55px 0 225px;}
468
+.no-brand.is-rtl.functional .fp-timeline{margin-left:160px;}
469
+.has-menu.no-brand.is-rtl.functional .fp-timeline{margin-left:197px}
470
+.has-menu.is-rtl.functional .fp-timeline{margin-left:262px}
471
+.no-volume.is-rtl.functional .fp-timeline{margin-left:95px}
472
+.no-mute.is-rtl.functional .fp-timeline{margin-left:130px}
473
+.no-mute.no-volume.is-rtl.functional .fp-timeline{margin-left:55px}
474
+.is-long.functional .fp-timeline{margin:0 255px 0 85px;}
475
+.no-volume.is-long.functional .fp-timeline{margin-right:180px}
476
+.no-mute.is-long.functional .fp-timeline{margin-right:140px}
477
+.has-menu.is-long.functional .fp-timeline{margin-right:292px}
478
+.no-brand.is-long.functional .fp-timeline{margin-right:190px;}
479
+.no-volume.no-brand.is-long.functional .fp-timeline{margin-right:125px}
480
+.no-mute.no-brand.is-long.functional .fp-timeline{margin-right:85px}
481
+.has-menu.no-brand.is-long.functional .fp-timeline{margin-right:227px}
482
+.is-rtl.is-long.functional .fp-timeline{margin:85px 0 190px 0;}
483
+.no-volume.is-rtl.is-long.functional .fp-timeline{margin-left:125px}
484
+.no-mute.is-rtl.is-long.functional .fp-timeline{margin-left:85px}
485
+.aside-time.functional .fp-timeline,.no-time.functional .fp-timeline{margin:0 190px 0 10px;}
486
+.has-menu.aside-time.functional .fp-timeline,.has-menu.no-time.functional .fp-timeline{margin-right:227px}
487
+.aside-time.no-brand.functional .fp-timeline{margin-right:115px}
488
+.aside-time.no-volume.functional .fp-timeline,.no-time.no-volume.functional .fp-timeline{margin-right:115px}
489
+.aside-time.no-mute.functional .fp-timeline,.no-time.no-mute.functional .fp-timeline{margin-right:75px}
490
+.is-rtl.aside-time.functional .fp-timeline,.is-rtl.no-time.functional .fp-timeline{margin:0 10px 0 115px}
491
+.is-rtl.aside-time.no-volume.functional .fp-timeline,.is-rtl.no-time.no-volume.functional .fp-timeline{margin-left:50px}
492
+.is-rtl.aside-time.no-mute.functional .fp-timeline,.is-rtl.no-time.no-mute.functional .fp-timeline{margin-left:10px}
493
+.functional .fp-buffer,.functional .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
494
+.functional .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
495
+.functional .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
496
+.functional .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
497
+.functional.is-touch .fp-timeline{overflow:visible}
498
+.functional.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
499
+.functional.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
500
+.functional.is-touch.is-mouseover .fp-progress:after,.functional.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
501
+.functional.is-touch.is-rtl.is-mouseover .fp-progress:after,.functional.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
502
+.functional.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
503
+.functional.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
504
+.functional.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
505
+.functional.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
506
+.functional.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
507
+.functional .fp-volume{position:absolute;height:6px;bottom:12px;right:10px;}
508
+.has-menu.functional .fp-volume{right:37px}
509
+.is-rtl.functional .fp-volume{right:auto;left:10px}
510
+.is-rtl.has-menu.functional .fp-volume{left:37px}
511
+.functional .fp-mute{position:relative;width:30px;height:30px;float:left;top:-12px;cursor:pointer;}
512
+.is-rtl.functional .fp-mute{float:right}
513
+.no-mute.functional .fp-mute{display:none}
514
+.functional .fp-volumeslider{width:75px;height:6px;cursor:col-resize;float:left;}
515
+.is-rtl.functional .fp-volumeslider{float:right}
516
+.no-volume.functional .fp-volumeslider{display:none}
517
+.functional .fp-volumelevel{height:100%}
518
+.functional .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
519
+.functional .fp-time.is-inverted .fp-duration{display:none}
520
+.functional .fp-time.is-inverted .fp-remaining{display:inline}
521
+.functional .fp-time em{width:35px;height:10px;line-height:10px;text-align:center;position:absolute;bottom:9px}
522
+.no-time.functional .fp-time{display:none}
523
+.is-long.functional .fp-time em{width:65px}
524
+.functional .fp-elapsed{left:10px;}
525
+.is-rtl.functional .fp-elapsed{left:auto;right:10px}
526
+.functional .fp-remaining,.functional .fp-duration{right:180px;color:#eee;}
527
+.no-brand.functional .fp-remaining,.no-brand.functional .fp-duration{right:125px;}
528
+.has-menu.no-brand.functional .fp-remaining,.has-menu.no-brand.functional .fp-duration{right:152px}
529
+.no-volume.no-brand.functional .fp-remaining,.no-volume.no-brand.functional .fp-duration{right:50px}
530
+.no-mute.no-brand.functional .fp-remaining,.no-mute.no-brand.functional .fp-duration{right:95px}
531
+.no-mute.no-volume.no-brand.functional .fp-remaining,.no-mute.no-volume.no-brand.functional .fp-duration{right:10px}
532
+.has-menu.functional .fp-remaining,.has-menu.functional .fp-duration{right:217px}
533
+.no-volume.functional .fp-remaining,.no-volume.functional .fp-duration{right:115px}
534
+.no-mute.functional .fp-remaining,.no-mute.functional .fp-duration{right:160px}
535
+.no-mute.no-volume.functional .fp-remaining,.no-mute.no-volume.functional .fp-duration{right:75px;}
536
+.has-menu.no-mute.no-volume.functional .fp-remaining,.has-menu.no-mute.no-volume.functional .fp-duration{right:112px}
537
+.is-rtl.functional .fp-remaining,.is-rtl.functional .fp-duration{right:auto;left:180px;}
538
+.no-brand.is-rtl.functional .fp-remaining,.no-brand.is-rtl.functional .fp-duration{left:115px;}
539
+.has-menu.no-brand.is-rtl.functional .fp-remaining,.has-menu.no-brand.is-rtl.functional .fp-duration{left:142px}
540
+.has-menu.is-rtl.functional .fp-remaining,.has-menu.is-rtl.functional .fp-duration{left:227px}
541
+.no-volume.is-rtl.functional .fp-remaining,.no-volume.is-rtl.functional .fp-duration{left:50px}
542
+.no-mute.is-rtl.functional .fp-remaining,.no-mute.is-rtl.functional .fp-duration{left:95px}
543
+.no-mute.no-volume.is-rtl.functional .fp-remaining,.no-mute.no-volume.is-rtl.functional .fp-duration{left:10px}
544
+.functional .fp-remaining{display:none}
545
+.functional.aside-time .fp-time{position:absolute;top:10px;left:10px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:30px;padding:0 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;line-height:30px;text-align:center;font-size:15px;}
546
+.no-background.functional.aside-time .fp-time{background-color:transparent !important}
547
+.functional.aside-time .fp-time strong,.functional.aside-time .fp-time em{position:static}
548
+.functional.aside-time .fp-time .fp-elapsed::after{content:' / '}
549
+.functional.is-splash,.functional.is-poster{cursor:pointer;}
550
+.functional.is-splash .fp-controls,.functional.is-poster .fp-controls,.functional.is-splash .fp-fullscreen,.functional.is-poster .fp-fullscreen,.functional.is-splash .fp-unload,.functional.is-poster .fp-unload,.functional.is-splash .fp-time,.functional.is-poster .fp-time,.functional.is-splash .fp-embed,.functional.is-poster .fp-embed,.functional.is-splash .fp-title,.functional.is-poster .fp-title,.functional.is-splash .fp-brand,.functional.is-poster .fp-brand{display:none !important}
551
+.functional.is-poster .fp-engine{top:-9999em}
552
+.functional.is-loading .fp-waiting{display:block}
553
+.functional.is-loading .fp-controls,.functional.is-loading .fp-time{display:none}
554
+.functional.is-loading .fp-ui{background-position:-9999em}
555
+.functional.is-loading video.fp-engine{position:absolute;top:-9999em}
556
+.functional.is-seeking .fp-waiting{display:block}
557
+.functional.is-playing{background-image:none !important;background-color:#333;}
558
+.functional.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
559
+.functional.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
560
+.is-rtl.functional.is-fullscreen{left:auto !important;right:0 !important}
561
+.functional.is-fullscreen .fp-player{background-color:#333}
562
+.functional.is-error{border:1px solid #909090;background:#fdfdfd !important;}
563
+.functional.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
564
+.functional.is-error .fp-message{display:block}
565
+.functional.is-error object,.functional.is-error video,.functional.is-error .fp-controls,.functional.is-error .fp-time,.functional.is-error .fp-subtitle{display:none}
566
+.functional.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
567
+.functional.is-ready.is-muted .fp-mute:before{content:"\e605"}
568
+.functional.is-mouseout .fp-controls{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
569
+.is-fullscreen.functional.is-mouseout .fp-controls{height:3px;bottom:0}
570
+.functional.is-mouseout .fp-title{overflow:hidden}
571
+.functional.is-mouseout .fp-timeline{margin:0 !important}
572
+.functional.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
573
+.functional.is-mouseout .fp-fullscreen,.functional.is-mouseout .fp-unload,.functional.is-mouseout .fp-elapsed,.functional.is-mouseout .fp-remaining,.functional.is-mouseout .fp-duration,.functional.is-mouseout .fp-embed,.functional.is-mouseout .fp-title,.functional.is-mouseout .fp-volume,.functional.is-mouseout .fp-play,.functional.is-mouseout .fp-menu,.functional.is-mouseout .fp-brand,.functional.is-mouseout .fp-timeline-tooltip,.functional.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
574
+.functional.is-mouseover .fp-controls,.functional.fixed-controls .fp-controls{height:30px}
575
+.functional.is-mouseover .fp-title,.functional.fixed-controls .fp-title{height:30px}
576
+.functional.is-mouseover .fp-fullscreen,.functional.fixed-controls .fp-fullscreen,.functional.is-mouseover .fp-unload,.functional.fixed-controls .fp-unload,.functional.is-mouseover .fp-elapsed,.functional.fixed-controls .fp-elapsed,.functional.is-mouseover .fp-remaining,.functional.fixed-controls .fp-remaining,.functional.is-mouseover .fp-duration,.functional.fixed-controls .fp-duration,.functional.is-mouseover .fp-embed,.functional.fixed-controls .fp-embed,.functional.is-mouseover .fp-logo,.functional.fixed-controls .fp-logo,.functional.is-mouseover .fp-volume,.functional.fixed-controls .fp-volume,.functional.is-mouseover .fp-play,.functional.fixed-controls .fp-play,.functional.is-mouseover .fp-menu,.functional.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
577
+.functional.fixed-controls .fp-volume{display:block}
578
+.functional.fixed-controls .fp-controls{bottom:-30px;}
579
+.is-fullscreen.functional.fixed-controls .fp-controls{bottom:0}
580
+.functional.fixed-controls .fp-time em{bottom:-20px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
581
+.is-fullscreen.functional.fixed-controls .fp-time em{bottom:10px}
582
+.functional.is-disabled .fp-progress{background-color:#999}
583
+.functional.is-flash-disabled{background-color:#333;}
584
+.functional.is-flash-disabled object.fp-engine{z-index:100}
585
+.functional.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
586
+.functional .fp-embed{position:absolute;top:10px;left:auto;right:50px;display:block;width:30px;height:30px;text-align:center;}
587
+.is-rtl.functional .fp-embed{right:auto;left:50px}
588
+.functional .fp-embed-code{position:absolute;display:none;top:10px;right:67px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
589
+.is-closeable.functional .fp-embed-code{right:99px}
590
+.functional .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
591
+.is-rtl.functional .fp-embed-code{right:auto;left:67px;}
592
+.is-rtl.functional .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
593
+.functional .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
594
+.functional .fp-embed-code label{display:block;color:#999}
595
+.functional.is-embedding .fp-embed,.functional.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
596
+.functional.no-time .fp-embed{left:10px !important;}
597
+.is-rtl.functional.no-time .fp-embed{left:auto;right:10px !important}
598
+.functional.is-live .fp-timeline,.functional.is-live .fp-duration,.functional.is-live .fp-remaining{display:none}
599
+.functional .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
600
+.functional .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
601
+.functional .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
602
+.functional .fp-context-menu li:hover:not(.copyright){background-color:#eee}
603
+.functional .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
604
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.functional .fp-context-menu li.copyright{background-image:url("img/flowplayer@2x.png")}
605
+}@-moz-keyframes pulse{0%{opacity:0}
606
+100%{opacity:1}
607
+}@-webkit-keyframes pulse{0%{opacity:0}
608
+100%{opacity:1}
609
+}@-o-keyframes pulse{0%{opacity:0}
610
+100%{opacity:1}
611
+}@-ms-keyframes pulse{0%{opacity:0}
612
+100%{opacity:1}
613
+}@keyframes pulse{0%{opacity:0}
614
+100%{opacity:1}
615
+}.functional.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
616
+.functional .fp-title{position:absolute;top:10px;left:10px;}
617
+.is-rtl.functional .fp-title{left:auto;right:10px}
618
+.functional .fp-title,.functional .fp-unload,.functional .fp-fullscreen,.functional .fp-embed{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
619
+.functional .fp-embed-code{right:85px;}
620
+.is-closeable.functional .fp-embed-code{right:125px}
621
+.is-rtl.functional .fp-embed-code{right:auto;left:85px}
622
+.functional.is-mouseout .fp-menu{display:none}
623
+.functional.is-mouseout .fp-controls{-webkit-transition:none;-moz-transition:none;transition:none;-webkit-animation:functional-controls-hide 1s 1;-moz-animation:functional-controls-hide 1s 1;animation:functional-controls-hide 1s 1}
624
+.functional.is-mouseout .fp-timeline{-webkit-transition:none;-moz-transition:none;transition:none}
625
+.functional.is-mouseout .fp-volume,.functional.is-mouseout .fp-brand,.functional.is-mouseout .fp-play,.functional.is-mouseout .fp-time{-webkit-transition:none;-moz-transition:none;transition:none;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
626
+.functional.fixed-controls .fp-elapsed,.functional.fixed-controls.is-mouseover .fp-elapsed{left:50px}
627
+.functional.fixed-controls .fp-controls,.functional.fixed-controls.is-mouseover .fp-controls{bottom:-30px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;left:0;right:0;}
628
+.is-fullscreen.functional.fixed-controls .fp-controls,.is-fullscreen.functional.fixed-controls.is-mouseover .fp-controls{bottom:0}
629
+.functional.fixed-controls .fp-controls .fp-play,.functional.fixed-controls.is-mouseover .fp-controls .fp-play{left:10px}
630
+.functional.fixed-controls .fp-controls .fp-timeline,.functional.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:95px;}
631
+.is-long.functional.fixed-controls .fp-controls .fp-timeline,.is-long.functional.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:125px}
632
+.functional.is-mouseover .fp-controls{bottom:10px;left:50px;right:10px;width:auto;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
633
+.is-rtl.functional.is-mouseover .fp-controls{left:10px;right:50px}
634
+.functional.is-mouseover .fp-controls .fp-play{left:-40px;display:block;background-color:#000;background-color:rgba(0,0,0,0.65);width:30px;height:30px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
635
+.is-rtl.functional.is-mouseover .fp-controls .fp-play{left:auto;right:-40px}
636
+.functional.is-mouseover .fp-controls .fp-timeline{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
637
+.functional.is-mouseover .fp-controls .fp-timeline .fp-progress,.functional.is-mouseover .fp-controls .fp-timeline .fp-buffer{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
638
+.functional.is-mouseover .fp-controls .fp-menu .fp-dropdown{bottom:35px;left:auto;right:-10px;}
639
+.is-rtl.functional.is-mouseover .fp-controls .fp-menu .fp-dropdown{right:auto;left:-10px}
640
+.functional.is-mouseover .fp-controls .fp-menu .fp-dropdown:before{display:none}
641
+.functional.is-mouseover .fp-controls li{border-color:#000;}
642
+.functional.is-mouseover .fp-controls li.active{border-color:#00a7c8}
643
+.functional.is-mouseover .fp-controls li:last-child:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;right:10px;border-bottom:none;border-top-width:5px;border-top-style:solid;border-top-color:inherit;border-left:5px solid transparent;border-right:5px solid transparent;}
644
+.is-rtl.functional.is-mouseover .fp-controls li:last-child:before{right:auto;left:10px}
645
+.functional .fp-elapsed,.functional.play-button .fp-elapsed{left:60px;}
646
+.is-rtl.functional .fp-elapsed,.is-rtl.functional.play-button .fp-elapsed{right:60px;left:auto}
647
+.functional .fp-time em{bottom:19px}
648
+@-moz-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
649
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
650
+}@-webkit-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
651
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
652
+}@-o-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
653
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
654
+}@-ms-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
655
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
656
+}@keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
657
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
658
+}
659
+@font-face {
660
+  font-family: 'fpicons';
661
+  src:url('fonts/fpicons.eot?yg5dv7');
662
+  src:url('fonts/fpicons.eot?#iefixyg5dv7') format('embedded-opentype'),
663
+    url('fonts/fpicons.woff?yg5dv7') format('woff'),
664
+    url('fonts/fpicons.ttf?yg5dv7') format('truetype'),
665
+    url('fonts/fpicons.svg?yg5dv7#fpicons') format('svg');
666
+  font-weight: normal;
667
+  font-style: normal;
668
+}
669
+
670
+[class^="fp-i-"], [class*=" fp-i-"] {
671
+  font-family: 'fpicons';
672
+  speak: none;
673
+  font-style: normal;
674
+  font-weight: normal;
675
+  font-variant: normal;
676
+  text-transform: none;
677
+  line-height: 1;
678
+
679
+  /* Better Font Rendering =========== */
680
+  -webkit-font-smoothing: antialiased;
681
+  -moz-osx-font-smoothing: grayscale;
682
+}
683
+.playful{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
684
+.playful *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
685
+.playful a:focus{outline:0}
686
+.playful video{width:100%}
687
+.playful.is-ipad video{-webkit-transform:translateX(-2048px);}
688
+.is-ready.playful.is-ipad video{-webkit-transform:translateX(0)}
689
+.playful .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
690
+.playful .fp-engine,.playful .fp-ui,.playful .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
691
+.playful .fp-ui{z-index:11}
692
+.playful .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
693
+.playful .fp-message h2{font-size:120%;margin-bottom:1em}
694
+.playful .fp-message p{color:#666;font-size:95%}
695
+.playful .fp-title{line-height:35px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 24px;}
696
+.is-rtl.playful .fp-title{float:right}
697
+.aside-time.playful .fp-title{display:none !important}
698
+.playful .fp-controls{position:absolute;bottom:0;width:100%;}
699
+.no-background.playful .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
700
+.is-fullscreen.playful .fp-controls{bottom:3px}
701
+.is-mouseover.playful .fp-controls{bottom:0}
702
+.playful .fp-controls,.playful .fp-title,.playful .fp-fullscreen,.playful .fp-unload,.playful .fp-close,.playful .fp-embed,.playful.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
703
+.no-background.playful .fp-controls,.no-background.playful .fp-title,.no-background.playful .fp-fullscreen,.no-background.playful .fp-unload,.no-background.playful .fp-close,.no-background.playful .fp-embed,.no-background.playful.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
704
+.no-background.playful .fp-play,.no-background.playful .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
705
+.playful.fixed-controls .fp-controls{background-color:#000}
706
+.playful .fp-timeline{background-color:#a5a5a5}
707
+.playful .fp-buffer{background-color:#eee}
708
+.playful .fp-progress{background-color:#00a7c8}
709
+.playful .fp-volumeslider{background-color:#a5a5a5}
710
+.playful .fp-volumelevel{background-color:#00a7c8}
711
+.playful .fp-waiting{display:none;margin:19% auto;text-align:center;}
712
+.playful .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
713
+.playful .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
714
+.playful .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
715
+.playful .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
716
+.playful .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
717
+.playful .fp-waiting p{color:#ccc;font-weight:bold}
718
+.playful .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
719
+.playful .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
720
+.playful .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
721
+.is-help.playful .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
722
+.playful .fp-help .fp-help-section{margin:3%;direction:ltr}
723
+.playful .fp-help .fp-help-basics{margin-top:6%}
724
+.playful .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
725
+.playful .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
726
+.playful .fp-help small{font-size:90%;color:#aaa}
727
+.playful .fp-help .fp-close{display:block}
728
+@media (max-width: 600px){.playful .fp-help p{font-size:9px}
729
+}.playful .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
730
+.playful .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
731
+.playful .fp-dropdown li{padding:12px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
732
+.playful .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
733
+.playful .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
734
+.playful .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
735
+.playful .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
736
+.playful .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
737
+.playful .fp-timeline-tooltip{bottom:41px}
738
+.playful .fp-timeline:hover+.fp-timeline-tooltip{display:block;}
739
+.is-touch.playful .fp-timeline:hover+.fp-timeline-tooltip{display:none}
740
+.playful .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
741
+.playful .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
742
+.playful .fp-subtitle p:after{content:'';clear:both}
743
+.playful .fp-subtitle p b{font-weight:bold}
744
+.playful .fp-subtitle p i{font-style:italic}
745
+.playful .fp-subtitle p u{text-decoration:underline}
746
+.playful .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
747
+.playful .fp-fullscreen,.playful .fp-unload,.playful .fp-mute,.playful .fp-embed,.playful .fp-close,.playful .fp-play,.playful .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
748
+.is-rtl.playful .fp-fullscreen,.is-rtl.playful .fp-unload,.is-rtl.playful .fp-mute,.is-rtl.playful .fp-embed,.is-rtl.playful .fp-close,.is-rtl.playful .fp-play,.is-rtl.playful .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
749
+.is-rtl.playful .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
750
+.playful .fp-fullscreen:before{content:"\e602"}
751
+.playful .fp-unload:before,.playful .fp-close:before{content:"\e600"}
752
+.playful .fp-mute:before{content:"\e606"}
753
+.playful .fp-embed:before{content:"\e603"}
754
+.playful .fp-play:before{content:"\e608"}
755
+.playful .fp-menu:before{content:"\e604"}
756
+.playful .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
757
+.is-splash.playful .fp-ui,.is-paused.playful .fp-ui{background:url(img/play_white.png) center no-repeat;background-size:11%;}
758
+.is-rtl.is-splash.playful .fp-ui,.is-rtl.is-paused.playful .fp-ui{background:url(img/play_white_rtl.png) center no-repeat;background-size:11%}
759
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.is-splash.playful .fp-ui,.is-paused.playful .fp-ui{background:url(img/play_white@x2.png) center no-repeat;background-size:11%}
760
+.is-rtl.is-splash.playful .fp-ui,.is-rtl.is-paused.playful .fp-ui{background:url(img/play_white_rtl@x2.png) center no-repeat;background-size:11%}
761
+}.is-fullscreen.playful .fp-ui{background-size:auto}
762
+.is-seeking.playful .fp-ui,.is-loading.playful .fp-ui{background-image:none}
763
+.playful .fp-brand{color:#fff !important;position:absolute;right:124px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:11px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
764
+.has-menu.playful .fp-brand{right:161px}
765
+.is-rtl.playful .fp-brand{right:auto;left:134px}
766
+.has-menu.is-rtl.playful .fp-brand{left:161px}
767
+.no-brand.playful .fp-brand{display:none}
768
+.no-volume.no-mute.playful .fp-brand{right:12px;}
769
+.has-menu.no-volume.no-mute.playful .fp-brand{right:51px}
770
+.no-volume.playful .fp-brand{right:62px}
771
+.no-mute.playful .fp-brand{right:99px}
772
+.playful .fp-logo{position:absolute;top:auto;left:15px;bottom:45px;cursor:pointer;display:none;z-index:100;}
773
+.playful .fp-logo img{width:100%}
774
+.is-embedded.playful .fp-logo{display:block}
775
+.fixed-controls.playful .fp-logo{bottom:15px}
776
+.playful .fp-fullscreen,.playful .fp-unload,.playful .fp-close{position:absolute;top:12px;left:auto;right:12px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:35px;width:35px;}
777
+.is-rtl.playful .fp-fullscreen,.is-rtl.playful .fp-unload,.is-rtl.playful .fp-close{right:auto;left:12px}
778
+.playful .fp-unload,.playful .fp-close{display:none}
779
+.playful .fp-play{display:none;height:35px !important;position:absolute;bottom:0;left:0;text-align:center;}
780
+.is-rtl.playful .fp-play{left:auto;right:0}
781
+.is-playing.playful .fp-play:before{content:"\e607"}
782
+.playful .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:12px;}
783
+.is-rtl.playful .fp-menu{right:auto;left:12px}
784
+.has-menu.playful .fp-menu{display:block}
785
+.playful .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:153px;-webkit-transform:none;-moz-transform:none;transform:none;}
786
+.is-rtl.playful .fp-menu .fp-dropdown{left:-12px}
787
+.playful .fp-menu.dropdown-open .fp-dropdown{display:block}
788
+.playful.is-ready.is-closeable .fp-unload{display:block}
789
+.playful.is-ready.is-closeable .fp-embed{right:106px}
790
+.playful.is-ready.is-closeable .fp-fullscreen{right:59px}
791
+.playful.is-ready.is-closeable.is-rtl .fp-embed{right:auto;left:106px}
792
+.playful.is-ready.is-closeable.is-rtl .fp-fullscreen{right:auto;left:59px}
793
+.playful.is-fullscreen .fp-fullscreen{display:block !important;}
794
+.playful.is-fullscreen .fp-fullscreen:before{content:"\e601"}
795
+.playful .fp-timeline{height:3px;position:relative;overflow:hidden;top:12px;height:11px;margin:0 238px 0 59px;}
796
+.no-brand.playful .fp-timeline{margin-right:171px;}
797
+.has-menu.no-brand.playful .fp-timeline{margin-right:198px}
798
+.no-volume.no-brand.playful .fp-timeline{margin-right:109px}
799
+.no-mute.no-brand.playful .fp-timeline{margin-right:133px}
800
+.no-mute.no-volume.no-brand.playful .fp-timeline{margin-right:59px}
801
+.has-menu.playful .fp-timeline{margin-right:265px}
802
+.no-volume.playful .fp-timeline{margin-right:176px}
803
+.no-mute.playful .fp-timeline{margin-right:200px}
804
+.no-mute.no-volume.playful .fp-timeline{margin-right:126px;}
805
+.has-menu.no-mute.no-volume.playful .fp-timeline{margin-right:165px}
806
+.is-rtl.playful .fp-timeline{margin:0 59px 0 238px;}
807
+.no-brand.is-rtl.playful .fp-timeline{margin-left:171px;}
808
+.has-menu.no-brand.is-rtl.playful .fp-timeline{margin-left:210px}
809
+.has-menu.is-rtl.playful .fp-timeline{margin-left:277px}
810
+.no-volume.is-rtl.playful .fp-timeline{margin-left:109px}
811
+.no-mute.is-rtl.playful .fp-timeline{margin-left:133px}
812
+.no-mute.no-volume.is-rtl.playful .fp-timeline{margin-left:59px}
813
+.is-long.playful .fp-timeline{margin:0 268px 0 89px;}
814
+.no-volume.is-long.playful .fp-timeline{margin-right:194px}
815
+.no-mute.is-long.playful .fp-timeline{margin-right:144px}
816
+.has-menu.is-long.playful .fp-timeline{margin-right:307px}
817
+.no-brand.is-long.playful .fp-timeline{margin-right:201px;}
818
+.no-volume.no-brand.is-long.playful .fp-timeline{margin-right:139px}
819
+.no-mute.no-brand.is-long.playful .fp-timeline{margin-right:89px}
820
+.has-menu.no-brand.is-long.playful .fp-timeline{margin-right:240px}
821
+.is-rtl.is-long.playful .fp-timeline{margin:89px 0 201px 0;}
822
+.no-volume.is-rtl.is-long.playful .fp-timeline{margin-left:139px}
823
+.no-mute.is-rtl.is-long.playful .fp-timeline{margin-left:89px}
824
+.aside-time.playful .fp-timeline,.no-time.playful .fp-timeline{margin:0 203px 0 12px;}
825
+.has-menu.aside-time.playful .fp-timeline,.has-menu.no-time.playful .fp-timeline{margin-right:242px}
826
+.aside-time.no-brand.playful .fp-timeline{margin-right:124px}
827
+.aside-time.no-volume.playful .fp-timeline,.no-time.no-volume.playful .fp-timeline{margin-right:129px}
828
+.aside-time.no-mute.playful .fp-timeline,.no-time.no-mute.playful .fp-timeline{margin-right:79px}
829
+.is-rtl.aside-time.playful .fp-timeline,.is-rtl.no-time.playful .fp-timeline{margin:0 12px 0 124px}
830
+.is-rtl.aside-time.no-volume.playful .fp-timeline,.is-rtl.no-time.no-volume.playful .fp-timeline{margin-left:62px}
831
+.is-rtl.aside-time.no-mute.playful .fp-timeline,.is-rtl.no-time.no-mute.playful .fp-timeline{margin-left:12px}
832
+.playful .fp-buffer,.playful .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
833
+.playful .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
834
+.playful .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
835
+.playful .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
836
+.playful.is-touch .fp-timeline{overflow:visible}
837
+.playful.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
838
+.playful.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
839
+.playful.is-touch.is-mouseover .fp-progress:after,.playful.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
840
+.playful.is-touch.is-rtl.is-mouseover .fp-progress:after,.playful.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
841
+.playful.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
842
+.playful.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
843
+.playful.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
844
+.playful.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
845
+.playful.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
846
+.playful .fp-volume{position:absolute;height:11px;bottom:12px;right:12px;}
847
+.has-menu.playful .fp-volume{right:39px}
848
+.is-rtl.playful .fp-volume{right:auto;left:12px}
849
+.is-rtl.has-menu.playful .fp-volume{left:39px}
850
+.playful .fp-mute{position:relative;width:38px;height:20px;float:left;top:-4.5px;cursor:pointer;}
851
+.is-rtl.playful .fp-mute{float:right}
852
+.no-mute.playful .fp-mute{display:none}
853
+.playful .fp-volumeslider{width:75px;height:11px;cursor:col-resize;float:left;}
854
+.is-rtl.playful .fp-volumeslider{float:right}
855
+.no-volume.playful .fp-volumeslider{display:none}
856
+.playful .fp-volumelevel{height:100%}
857
+.playful .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
858
+.playful .fp-time.is-inverted .fp-duration{display:none}
859
+.playful .fp-time.is-inverted .fp-remaining{display:inline}
860
+.playful .fp-time em{width:35px;height:11px;line-height:11px;text-align:center;position:absolute;bottom:11px}
861
+.no-time.playful .fp-time{display:none}
862
+.is-long.playful .fp-time em{width:65px}
863
+.playful .fp-elapsed{left:12px;}
864
+.is-rtl.playful .fp-elapsed{left:auto;right:12px}
865
+.playful .fp-remaining,.playful .fp-duration{right:191px;color:#eee;}
866
+.no-brand.playful .fp-remaining,.no-brand.playful .fp-duration{right:136px;}
867
+.has-menu.no-brand.playful .fp-remaining,.has-menu.no-brand.playful .fp-duration{right:163px}
868
+.no-volume.no-brand.playful .fp-remaining,.no-volume.no-brand.playful .fp-duration{right:62px}
869
+.no-mute.no-brand.playful .fp-remaining,.no-mute.no-brand.playful .fp-duration{right:99px}
870
+.no-mute.no-volume.no-brand.playful .fp-remaining,.no-mute.no-volume.no-brand.playful .fp-duration{right:12px}
871
+.has-menu.playful .fp-remaining,.has-menu.playful .fp-duration{right:230px}
872
+.no-volume.playful .fp-remaining,.no-volume.playful .fp-duration{right:129px}
873
+.no-mute.playful .fp-remaining,.no-mute.playful .fp-duration{right:166px}
874
+.no-mute.no-volume.playful .fp-remaining,.no-mute.no-volume.playful .fp-duration{right:79px;}
875
+.has-menu.no-mute.no-volume.playful .fp-remaining,.has-menu.no-mute.no-volume.playful .fp-duration{right:118px}
876
+.is-rtl.playful .fp-remaining,.is-rtl.playful .fp-duration{right:auto;left:191px;}
877
+.no-brand.is-rtl.playful .fp-remaining,.no-brand.is-rtl.playful .fp-duration{left:124px;}
878
+.has-menu.no-brand.is-rtl.playful .fp-remaining,.has-menu.no-brand.is-rtl.playful .fp-duration{left:151px}
879
+.has-menu.is-rtl.playful .fp-remaining,.has-menu.is-rtl.playful .fp-duration{left:242px}
880
+.no-volume.is-rtl.playful .fp-remaining,.no-volume.is-rtl.playful .fp-duration{left:62px}
881
+.no-mute.is-rtl.playful .fp-remaining,.no-mute.is-rtl.playful .fp-duration{left:99px}
882
+.no-mute.no-volume.is-rtl.playful .fp-remaining,.no-mute.no-volume.is-rtl.playful .fp-duration{left:12px}
883
+.playful .fp-remaining{display:none}
884
+.playful.aside-time .fp-time{position:absolute;top:12px;left:12px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:35px;padding:0 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;line-height:35px;text-align:center;font-size:15px;}
885
+.no-background.playful.aside-time .fp-time{background-color:transparent !important}
886
+.playful.aside-time .fp-time strong,.playful.aside-time .fp-time em{position:static}
887
+.playful.aside-time .fp-time .fp-elapsed::after{content:' / '}
888
+.playful.is-splash,.playful.is-poster{cursor:pointer;}
889
+.playful.is-splash .fp-controls,.playful.is-poster .fp-controls,.playful.is-splash .fp-fullscreen,.playful.is-poster .fp-fullscreen,.playful.is-splash .fp-unload,.playful.is-poster .fp-unload,.playful.is-splash .fp-time,.playful.is-poster .fp-time,.playful.is-splash .fp-embed,.playful.is-poster .fp-embed,.playful.is-splash .fp-title,.playful.is-poster .fp-title,.playful.is-splash .fp-brand,.playful.is-poster .fp-brand{display:none !important}
890
+.playful.is-poster .fp-engine{top:-9999em}
891
+.playful.is-loading .fp-waiting{display:block}
892
+.playful.is-loading .fp-controls,.playful.is-loading .fp-time{display:none}
893
+.playful.is-loading .fp-ui{background-position:-9999em}
894
+.playful.is-loading video.fp-engine{position:absolute;top:-9999em}
895
+.playful.is-seeking .fp-waiting{display:block}
896
+.playful.is-playing{background-image:none !important;background-color:#333;}
897
+.playful.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
898
+.playful.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
899
+.is-rtl.playful.is-fullscreen{left:auto !important;right:0 !important}
900
+.playful.is-fullscreen .fp-player{background-color:#333}
901
+.playful.is-error{border:1px solid #909090;background:#fdfdfd !important;}
902
+.playful.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
903
+.playful.is-error .fp-message{display:block}
904
+.playful.is-error object,.playful.is-error video,.playful.is-error .fp-controls,.playful.is-error .fp-time,.playful.is-error .fp-subtitle{display:none}
905
+.playful.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
906
+.playful.is-ready.is-muted .fp-mute:before{content:"\e605"}
907
+.playful.is-mouseout .fp-controls{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
908
+.is-fullscreen.playful.is-mouseout .fp-controls{height:3px;bottom:0}
909
+.playful.is-mouseout .fp-title{overflow:hidden}
910
+.playful.is-mouseout .fp-timeline{margin:0 !important}
911
+.playful.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
912
+.playful.is-mouseout .fp-fullscreen,.playful.is-mouseout .fp-unload,.playful.is-mouseout .fp-elapsed,.playful.is-mouseout .fp-remaining,.playful.is-mouseout .fp-duration,.playful.is-mouseout .fp-embed,.playful.is-mouseout .fp-title,.playful.is-mouseout .fp-volume,.playful.is-mouseout .fp-play,.playful.is-mouseout .fp-menu,.playful.is-mouseout .fp-brand,.playful.is-mouseout .fp-timeline-tooltip,.playful.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
913
+.playful.is-mouseover .fp-controls,.playful.fixed-controls .fp-controls{height:35px}
914
+.playful.is-mouseover .fp-title,.playful.fixed-controls .fp-title{height:35px}
915
+.playful.is-mouseover .fp-fullscreen,.playful.fixed-controls .fp-fullscreen,.playful.is-mouseover .fp-unload,.playful.fixed-controls .fp-unload,.playful.is-mouseover .fp-elapsed,.playful.fixed-controls .fp-elapsed,.playful.is-mouseover .fp-remaining,.playful.fixed-controls .fp-remaining,.playful.is-mouseover .fp-duration,.playful.fixed-controls .fp-duration,.playful.is-mouseover .fp-embed,.playful.fixed-controls .fp-embed,.playful.is-mouseover .fp-logo,.playful.fixed-controls .fp-logo,.playful.is-mouseover .fp-volume,.playful.fixed-controls .fp-volume,.playful.is-mouseover .fp-play,.playful.fixed-controls .fp-play,.playful.is-mouseover .fp-menu,.playful.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
916
+.playful.fixed-controls .fp-volume{display:block}
917
+.playful.fixed-controls .fp-controls{bottom:-35px;}
918
+.is-fullscreen.playful.fixed-controls .fp-controls{bottom:0}
919
+.playful.fixed-controls .fp-time em{bottom:-23px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
920
+.is-fullscreen.playful.fixed-controls .fp-time em{bottom:12px}
921
+.playful.is-disabled .fp-progress{background-color:#999}
922
+.playful.is-flash-disabled{background-color:#333;}
923
+.playful.is-flash-disabled object.fp-engine{z-index:100}
924
+.playful.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
925
+.playful .fp-embed{position:absolute;top:12px;left:auto;right:59px;display:block;width:35px;height:35px;text-align:center;}
926
+.is-rtl.playful .fp-embed{right:auto;left:59px}
927
+.playful .fp-embed-code{position:absolute;display:none;top:10px;right:77px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
928
+.is-closeable.playful .fp-embed-code{right:114px}
929
+.playful .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
930
+.is-rtl.playful .fp-embed-code{right:auto;left:77px;}
931
+.is-rtl.playful .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
932
+.playful .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
933
+.playful .fp-embed-code label{display:block;color:#999}
934
+.playful.is-embedding .fp-embed,.playful.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
935
+.playful.no-time .fp-embed{left:12px !important;}
936
+.is-rtl.playful.no-time .fp-embed{left:auto;right:12px !important}
937
+.playful.is-live .fp-timeline,.playful.is-live .fp-duration,.playful.is-live .fp-remaining{display:none}
938
+.playful .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
939
+.playful .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
940
+.playful .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
941
+.playful .fp-context-menu li:hover:not(.copyright){background-color:#eee}
942
+.playful .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
943
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.playful .fp-context-menu li.copyright{background-image:url("img/flowplayer@2x.png")}
944
+}@-moz-keyframes pulse{0%{opacity:0}
945
+100%{opacity:1}
946
+}@-webkit-keyframes pulse{0%{opacity:0}
947
+100%{opacity:1}
948
+}@-o-keyframes pulse{0%{opacity:0}
949
+100%{opacity:1}
950
+}@-ms-keyframes pulse{0%{opacity:0}
951
+100%{opacity:1}
952
+}@keyframes pulse{0%{opacity:0}
953
+100%{opacity:1}
954
+}.playful.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
955
+.playful .fp-title{position:absolute;top:12px;left:12px;}
956
+.is-rtl.playful .fp-title{left:auto;right:12px}
957
+.playful .fp-title,.playful .fp-unload,.playful .fp-fullscreen,.playful .fp-embed{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
958
+.playful .fp-embed-code{right:99px;}
959
+.is-closeable.playful .fp-embed-code{right:146px}
960
+.is-rtl.playful .fp-embed-code{right:auto;left:99px}
961
+.playful.is-mouseout .fp-menu{display:none}
962
+.playful.is-mouseout .fp-controls{-webkit-transition:none;-moz-transition:none;transition:none;-webkit-animation:functional-controls-hide 1s 1;-moz-animation:functional-controls-hide 1s 1;animation:functional-controls-hide 1s 1}
963
+.playful.is-mouseout .fp-timeline{-webkit-transition:none;-moz-transition:none;transition:none}
964
+.playful.is-mouseout .fp-volume,.playful.is-mouseout .fp-brand,.playful.is-mouseout .fp-play,.playful.is-mouseout .fp-time{-webkit-transition:none;-moz-transition:none;transition:none;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
965
+.playful.fixed-controls .fp-elapsed,.playful.fixed-controls.is-mouseover .fp-elapsed{left:59px}
966
+.playful.fixed-controls .fp-controls,.playful.fixed-controls.is-mouseover .fp-controls{bottom:-35px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;left:0;right:0;}
967
+.is-fullscreen.playful.fixed-controls .fp-controls,.is-fullscreen.playful.fixed-controls.is-mouseover .fp-controls{bottom:0}
968
+.playful.fixed-controls .fp-controls .fp-play,.playful.fixed-controls.is-mouseover .fp-controls .fp-play{left:12px}
969
+.playful.fixed-controls .fp-controls .fp-timeline,.playful.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:106px;}
970
+.is-long.playful.fixed-controls .fp-controls .fp-timeline,.is-long.playful.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:136px}
971
+.playful.is-mouseover .fp-controls{bottom:12px;left:59px;right:12px;width:auto;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
972
+.is-rtl.playful.is-mouseover .fp-controls{left:12px;right:59px}
973
+.playful.is-mouseover .fp-controls .fp-play{left:-47px;display:block;background-color:#000;background-color:rgba(0,0,0,0.65);width:35px;height:35px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
974
+.is-rtl.playful.is-mouseover .fp-controls .fp-play{left:auto;right:-47px}
975
+.playful.is-mouseover .fp-controls .fp-timeline{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
976
+.playful.is-mouseover .fp-controls .fp-timeline .fp-progress,.playful.is-mouseover .fp-controls .fp-timeline .fp-buffer{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
977
+.playful.is-mouseover .fp-controls .fp-menu .fp-dropdown{bottom:41px;left:auto;right:-12px;}
978
+.is-rtl.playful.is-mouseover .fp-controls .fp-menu .fp-dropdown{right:auto;left:-12px}
979
+.playful.is-mouseover .fp-controls .fp-menu .fp-dropdown:before{display:none}
980
+.playful.is-mouseover .fp-controls li{border-color:#000;}
981
+.playful.is-mouseover .fp-controls li.active{border-color:#00a7c8}
982
+.playful.is-mouseover .fp-controls li:last-child:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;right:12px;border-bottom:none;border-top-width:5px;border-top-style:solid;border-top-color:inherit;border-left:5px solid transparent;border-right:5px solid transparent;}
983
+.is-rtl.playful.is-mouseover .fp-controls li:last-child:before{right:auto;left:12px}
984
+.playful .fp-elapsed,.playful.play-button .fp-elapsed{left:71px;}
985
+.is-rtl.playful .fp-elapsed,.is-rtl.playful.play-button .fp-elapsed{right:71px;left:auto}
986
+.playful .fp-time em{bottom:23px}
987
+@-moz-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
988
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
989
+}@-webkit-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
990
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
991
+}@-o-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
992
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
993
+}@-ms-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
994
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
995
+}@keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
996
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
997
+}.playful .fp-controls,.playful .fp-title,.playful .fp-embed,.playful .fp-play,.playful .fp-fullscreen,.playful .fp-close,.playful.aside-time .fp-time,.playful .fp-unload{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(136,136,136,0.85)),to(rgba(0,0,0,0.85)));background-image:-webkit-linear-gradient(top,rgba(136,136,136,0.85),rgba(0,0,0,0.85));background-image:-moz-linear-gradient(top,rgba(136,136,136,0.85),rgba(0,0,0,0.85));background-image:-o-linear-gradient(top,rgba(136,136,136,0.85),rgba(0,0,0,0.85));background-image:linear-gradient(to bottom,rgba(136,136,136,0.85),rgba(0,0,0,0.85));color:#eee !important;}
998
+.playful .fp-controls:before,.playful .fp-title:before,.playful .fp-embed:before,.playful .fp-play:before,.playful .fp-fullscreen:before,.playful .fp-close:before,.playful.aside-time .fp-time:before,.playful .fp-unload:before{color:#eee}
999
+.playful .fp-dropdown{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
1000
+.playful .fp-dropdown li:last-child{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px}
1001
+.playful .fp-fullscreen:before,.playful .fp-unload:before,.playful .fp-mute:before,.playful .fp-embed:before,.playful .fp-close:before,.playful .fp-play:before,.playful .fp-menu:before{vertical-align:-2px}
1002
+.playful .fp-controls .fp-menu{bottom:3px;}
1003
+.is-mouseover.playful .fp-controls .fp-menu .fp-dropdown{bottom:36px}
1004
+.playful .fp-volumeslider{height:8px;margin-top:1px;margin-left:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
1005
+.playful .fp-volumeslider .fp-volumelevel{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
1006
+.playful .fp-mute{top:-9.5px;}
1007
+.playful .fp-mute:before{content:"\e60c";vertical-align:0;}
1008
+.is-muted.is-ready.playful .fp-mute:before{content:"\e60c";color:#ccc}
1009
+.playful .fp-mute:after{content:'';background-color:#9ebb11;width:6px;height:6px;display:block;position:absolute;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;right:2px;top:11px;}
1010
+.is-muted.playful .fp-mute:after{background-color:#f00}
BIN
skin/fonts/fpicons.eot
Binary file not shown.
+23
skin/fonts/fpicons.svg
... ...
@@ -0,0 +1,23 @@
1
+<?xml version="1.0" standalone="no"?>
2
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+<svg xmlns="http://www.w3.org/2000/svg">
4
+<metadata>Generated by IcoMoon</metadata>
5
+<defs>
6
+<font id="fpicons" horiz-adv-x="1024">
7
+<font-face units-per-em="1024" ascent="960" descent="-64" />
8
+<missing-glyph horiz-adv-x="1024" />
9
+<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
10
+<glyph unicode="&#xe600;" d="M890.88 112.64l-53.76-53.76c-10.24-10.24-28.16-10.24-38.4 0l-665.6 660.48c-10.24 10.24-10.24 28.16 0 38.4l53.76 53.76c10.24 10.24 28.16 10.24 38.4 0l660.48-660.48c15.36-10.24 15.36-28.16 5.12-38.4zM834.56 814.080l53.76-53.76c10.24-10.24 10.24-28.16 0-38.4l-660.48-665.6c-10.24-10.24-28.16-10.24-38.4 0l-53.76 53.76c-10.24 10.24-10.24 28.16 0 38.4l660.48 665.6c10.24 10.24 28.16 10.24 38.4 0z" />
11
+<glyph unicode="&#xe601;" d="M394.24-30.72v430.080c0 12.8 10.24 23.040 23.040 23.040h58.88c12.8 0 23.040-10.24 23.040-23.040v-430.080c0-12.8-10.24-23.040-23.040-23.040h-58.88c-12.8-2.56-23.040 7.68-23.040 23.040zM46.080 422.4h430.080c12.8 0 23.040-10.24 23.040-23.040v-58.88c0-12.8-10.24-23.040-23.040-23.040h-430.080c-12.8 0-23.040 10.24-23.040 23.040v58.88c-2.56 12.8 7.68 23.040 23.040 23.040zM58.88 58.88l304.64 304.64c10.24 10.24 25.6 10.24 33.28 0l40.96-40.96c10.24-10.24 10.24-25.6 0-33.28l-302.080-307.2c-10.24-10.24-25.6-10.24-33.28 0l-40.96 40.96c-10.24 10.24-10.24 25.6-2.56 35.84zM629.76 901.12v-430.080c0-12.8-10.24-23.040-23.040-23.040h-58.88c-12.8 0-23.040 10.24-23.040 23.040v430.080c0 12.8 10.24 23.040 23.040 23.040h58.88c12.8 2.56 23.040-7.68 23.040-23.040zM977.92 448h-430.080c-12.8 0-23.040 10.24-23.040 23.040v58.88c0 12.8 10.24 23.040 23.040 23.040h430.080c12.8 0 23.040-10.24 23.040-23.040v-58.88c2.56-12.8-7.68-23.040-23.040-23.040zM965.12 811.52l-304.64-302.080c-10.24-10.24-25.6-10.24-33.28 0l-40.96 40.96c-10.24 10.24-10.24 25.6 0 33.28l302.080 304.64c10.24 10.24 25.6 10.24 33.28 0l40.96-40.96c10.24-10.24 10.24-25.6 2.56-35.84z" />
12
+<glyph unicode="&#xe602;" d="M166.4 437.76v-430.080c0-12.8-10.24-23.040-23.040-23.040h-58.88c-12.8 0-23.040 10.24-23.040 23.040v430.080c0 12.8 10.24 23.040 23.040 23.040h58.88c10.24 0 23.040-10.24 23.040-23.040zM514.56-17.92h-430.080c-12.8 0-23.040 10.24-23.040 23.040v58.88c0 12.8 10.24 23.040 23.040 23.040h430.080c12.8 0 23.040-10.24 23.040-23.040v-58.88c0-12.8-10.24-23.040-23.040-23.040zM499.2 348.16l-304.64-304.64c-10.24-10.24-25.6-10.24-33.28 0l-40.96 40.96c-10.24 10.24-10.24 25.6 0 33.28l304.64 304.64c10.24 10.24 25.6 10.24 33.28 0l40.96-40.96c10.24-10.24 10.24-25.6 0-33.28zM857.6 432.64v430.080c0 12.8 10.24 23.040 23.040 23.040h58.88c12.8 0 23.040-10.24 23.040-23.040v-430.080c0-12.8-10.24-23.040-23.040-23.040h-58.88c-10.24 0-23.040 10.24-23.040 23.040zM509.44 888.32h430.080c12.8 0 23.040-10.24 23.040-23.040v-58.88c0-12.8-10.24-23.040-23.040-23.040h-430.080c-12.8-2.56-23.040 10.24-23.040 23.040v56.32c0 15.36 10.24 25.6 23.040 25.6zM524.8 522.24l304.64 304.64c10.24 10.24 25.6 10.24 33.28 0l40.96-40.96c10.24-10.24 10.24-25.6 0-33.28l-304.64-304.64c-10.24-10.24-25.6-10.24-33.28 0l-40.96 40.96c-10.24 10.24-10.24 25.6 0 33.28z" />
13
+<glyph unicode="&#xe603;" d="M509.44 69.12c-12.8 0-25.6 2.56-35.84 12.8l-414.72 304.64c-15.36 10.24-23.040 28.16-23.040 48.64s10.24 35.84 23.040 48.64l417.28 304.64c25.6 20.48 64 12.8 84.48-12.8s12.8-64-12.8-84.48l-353.28-256 350.72-258.56c25.6-20.48 33.28-56.32 12.8-84.48-10.24-12.8-28.16-23.040-48.64-23.040zM770.56 69.12c-17.92 0-35.84 7.68-48.64 23.040-20.48 25.6-12.8 64 12.8 84.48l350.72 258.56-350.72 258.56c-25.6 20.48-33.28 56.32-12.8 84.48 20.48 25.6 56.32 33.28 84.48 12.8l414.72-304.64c15.36-10.24 23.040-28.16 23.040-48.64s-10.24-35.84-23.040-48.64l-417.28-307.2c-10.24-7.68-23.040-12.8-33.28-12.8z" horiz-adv-x="1280" />
14
+<glyph unicode="&#xe604;" d="M960 773.12v-66.56c0-10.24-7.68-20.48-20.48-20.48h-855.040c-10.24 0-20.48 7.68-20.48 20.48v66.56c0 10.24 7.68 20.48 20.48 20.48h855.040c10.24-2.56 20.48-10.24 20.48-20.48zM960 468.48v-66.56c0-10.24-7.68-20.48-20.48-20.48h-855.040c-10.24 0-20.48 7.68-20.48 20.48v66.56c0 10.24 7.68 20.48 20.48 20.48h855.040c10.24 0 20.48-10.24 20.48-20.48zM960 166.4v-66.56c0-10.24-7.68-20.48-20.48-20.48h-855.040c-10.24 0-20.48 7.68-20.48 20.48v66.56c0 10.24 7.68 20.48 20.48 20.48h855.040c10.24 0 20.48-10.24 20.48-20.48z" />
15
+<glyph unicode="&#xe605;" d="M404.48 258.56h-294.4c-33.28 0-61.44 28.16-61.44 61.44v230.4c0 33.28 28.16 61.44 61.44 61.44h294.4c33.28 0 61.44-28.16 61.44-61.44v-230.4c0-35.84-25.6-61.44-61.44-61.44zM614.4-17.92l-391.68 437.76c-7.68 7.68-7.68 20.48 0 28.16l391.68 440.32c12.8 15.36 38.4 5.12 38.4-15.36v-878.080c0-17.92-23.040-28.16-38.4-12.8zM1223.68 243.2l-46.080-46.080c-7.68-7.68-23.040-7.68-33.28 0l-394.24 396.8c-7.68 7.68-7.68 23.040 0 33.28l46.080 46.080c7.68 7.68 23.040 7.68 33.28 0l396.8-396.8c7.68-10.24 7.68-23.040-2.56-33.28zM1180.16 673.28l46.080-46.080c7.68-7.68 7.68-23.040 0-33.28l-396.8-396.8c-7.68-7.68-23.040-7.68-33.28 0l-46.080 46.080c-7.68 7.68-7.68 23.040 0 33.28l396.8 396.8c10.24 7.68 23.040 7.68 33.28 0z" horiz-adv-x="1280" />
16
+<glyph unicode="&#xe606;" d="M540.16 258.56h-294.4c-33.28 0-61.44 28.16-61.44 61.44v230.4c0 33.28 28.16 61.44 61.44 61.44h294.4c33.28 0 61.44-28.16 61.44-61.44v-230.4c0-35.84-25.6-61.44-61.44-61.44zM750.080-17.92l-394.24 437.76c-7.68 7.68-7.68 20.48 0 28.16l394.24 440.32c12.8 15.36 38.4 5.12 38.4-15.36v-878.080c0-17.92-23.040-28.16-38.4-12.8z" />
17
+<glyph unicode="&#xe607;" d="M780.8 17.92h-110.080c-17.92 0-33.28 15.36-33.28 33.28v770.56c0 17.92 15.36 33.28 33.28 33.28h110.080c17.92 0 33.28-15.36 33.28-33.28v-770.56c0-20.48-15.36-33.28-33.28-33.28zM353.28 17.92h-110.080c-17.92 0-33.28 15.36-33.28 33.28v770.56c0 17.92 15.36 33.28 33.28 33.28h110.080c17.92 0 33.28-15.36 33.28-33.28v-770.56c-2.56-20.48-17.92-33.28-33.28-33.28z" />
18
+<glyph unicode="&#xe608;" d="M120.32 808.96c0 61.44 43.52 87.040 97.28 56.32l647.68-373.76c53.76-30.72 53.76-81.92 0-112.64l-647.68-373.76c-53.76-30.72-97.28-5.12-97.28 56.32v747.52z" />
19
+<glyph unicode="&#xe609;" d="M512-59.468c-272.986 0-494.668 221.855-494.668 494.668s221.855 494.668 494.668 494.668c272.812 0 494.668-221.855 494.668-494.668s-221.682-494.668-494.668-494.668z" />
20
+<glyph unicode="&#xe60a;" d="M512-16.137c-248.72 0-451.336 202.789-451.336 451.336s202.789 451.336 451.336 451.336c248.547 0 451.336-202.789 451.336-451.336s-202.616-451.336-451.336-451.336zM512 849.098c-228.095 0-413.725-185.804-413.725-413.725s185.804-413.725 413.725-413.725c227.921 0 413.725 185.804 413.725 413.725s-185.63 413.725-413.725 413.725z" />
21
+<glyph unicode="&#xe60b;" d="M402.632 556.527c0 39.171 27.905 55.117 61.357 35.531l210.416-121.154c33.972-19.586 33.972-51.651 0-71.236l-210.242-121.154c-33.972-19.586-61.357-3.64-61.357 35.531l-0.173 242.481z" />
22
+<glyph unicode="&#xe60c;" d="M1021.44 258.56h-916.48c-28.16 0-51.2 23.040-51.2 51.2v0c0 28.16 23.040 51.2 51.2 51.2h919.040c28.16 0 51.2-23.040 51.2-51.2v0c-2.56-28.16-25.6-51.2-53.76-51.2zM832 7.68h-537.6c-28.16 0-51.2 23.040-51.2 51.2v0c0 28.16 23.040 51.2 51.2 51.2h537.6c28.16 0 51.2-23.040 51.2-51.2v0c0-28.16-23.040-51.2-51.2-51.2zM832 760.32h-537.6c-28.16 0-51.2 23.040-51.2 51.2v0c0 28.16 23.040 51.2 51.2 51.2h537.6c28.16 0 51.2-23.040 51.2-51.2v0c0-28.16-23.040-51.2-51.2-51.2zM1021.44 509.44h-916.48c-28.16 0-51.2 23.040-51.2 51.2v0c0 28.16 23.040 51.2 51.2 51.2h919.040c28.16 0 51.2-23.040 51.2-51.2v0c-2.56-28.16-25.6-51.2-53.76-51.2z" horiz-adv-x="1126" />
23
+</font></defs></svg>
BIN
skin/fonts/fpicons.ttf
Binary file not shown.
BIN
skin/fonts/fpicons.woff
Binary file not shown.
+339
skin/functional.css
... ...
@@ -0,0 +1,339 @@
1
+@font-face {
2
+  font-family: 'fpicons';
3
+  src:url('fonts/fpicons.eot?yg5dv7');
4
+  src:url('fonts/fpicons.eot?#iefixyg5dv7') format('embedded-opentype'),
5
+    url('fonts/fpicons.woff?yg5dv7') format('woff'),
6
+    url('fonts/fpicons.ttf?yg5dv7') format('truetype'),
7
+    url('fonts/fpicons.svg?yg5dv7#fpicons') format('svg');
8
+  font-weight: normal;
9
+  font-style: normal;
10
+}
11
+
12
+[class^="fp-i-"], [class*=" fp-i-"] {
13
+  font-family: 'fpicons';
14
+  speak: none;
15
+  font-style: normal;
16
+  font-weight: normal;
17
+  font-variant: normal;
18
+  text-transform: none;
19
+  line-height: 1;
20
+
21
+  /* Better Font Rendering =========== */
22
+  -webkit-font-smoothing: antialiased;
23
+  -moz-osx-font-smoothing: grayscale;
24
+}
25
+.flowplayer{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
26
+.flowplayer *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
27
+.flowplayer a:focus{outline:0}
28
+.flowplayer video{width:100%}
29
+.flowplayer.is-ipad video{-webkit-transform:translateX(-2048px);}
30
+.is-ready.flowplayer.is-ipad video{-webkit-transform:translateX(0)}
31
+.flowplayer .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
32
+.flowplayer .fp-engine,.flowplayer .fp-ui,.flowplayer .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
33
+.flowplayer .fp-ui{z-index:11}
34
+.flowplayer .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
35
+.flowplayer .fp-message h2{font-size:120%;margin-bottom:1em}
36
+.flowplayer .fp-message p{color:#666;font-size:95%}
37
+.flowplayer .fp-title{line-height:30px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 20px;}
38
+.is-rtl.flowplayer .fp-title{float:right}
39
+.aside-time.flowplayer .fp-title{display:none !important}
40
+.flowplayer .fp-controls{position:absolute;bottom:0;width:100%;}
41
+.no-background.flowplayer .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
42
+.is-fullscreen.flowplayer .fp-controls{bottom:3px}
43
+.is-mouseover.flowplayer .fp-controls{bottom:0}
44
+.flowplayer .fp-controls,.flowplayer .fp-title,.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close,.flowplayer .fp-embed,.flowplayer.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
45
+.no-background.flowplayer .fp-controls,.no-background.flowplayer .fp-title,.no-background.flowplayer .fp-fullscreen,.no-background.flowplayer .fp-unload,.no-background.flowplayer .fp-close,.no-background.flowplayer .fp-embed,.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
46
+.no-background.flowplayer .fp-play,.no-background.flowplayer .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
47
+.flowplayer.fixed-controls .fp-controls{background-color:#000}
48
+.flowplayer .fp-timeline{background-color:#a5a5a5}
49
+.flowplayer .fp-buffer{background-color:#eee}
50
+.flowplayer .fp-progress{background-color:#00a7c8}
51
+.flowplayer .fp-volumeslider{background-color:#a5a5a5}
52
+.flowplayer .fp-volumelevel{background-color:#00a7c8}
53
+.flowplayer .fp-waiting{display:none;margin:19% auto;text-align:center;}
54
+.flowplayer .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
55
+.flowplayer .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
56
+.flowplayer .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
57
+.flowplayer .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
58
+.flowplayer .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
59
+.flowplayer .fp-waiting p{color:#ccc;font-weight:bold}
60
+.flowplayer .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
61
+.flowplayer .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
62
+.flowplayer .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
63
+.is-help.flowplayer .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
64
+.flowplayer .fp-help .fp-help-section{margin:3%;direction:ltr}
65
+.flowplayer .fp-help .fp-help-basics{margin-top:6%}
66
+.flowplayer .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
67
+.flowplayer .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
68
+.flowplayer .fp-help small{font-size:90%;color:#aaa}
69
+.flowplayer .fp-help .fp-close{display:block}
70
+@media (max-width: 600px){.flowplayer .fp-help p{font-size:9px}
71
+}.flowplayer .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
72
+.flowplayer .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
73
+.flowplayer .fp-dropdown li{padding:10px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
74
+.flowplayer .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
75
+.flowplayer .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
76
+.flowplayer .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
77
+.flowplayer .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
78
+.flowplayer .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
79
+.flowplayer .fp-timeline-tooltip{bottom:35px}
80
+.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:block;}
81
+.is-touch.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:none}
82
+.flowplayer .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
83
+.flowplayer .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
84
+.flowplayer .fp-subtitle p:after{content:'';clear:both}
85
+.flowplayer .fp-subtitle p b{font-weight:bold}
86
+.flowplayer .fp-subtitle p i{font-style:italic}
87
+.flowplayer .fp-subtitle p u{text-decoration:underline}
88
+.flowplayer .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
89
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-mute,.flowplayer .fp-embed,.flowplayer .fp-close,.flowplayer .fp-play,.flowplayer .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
90
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-mute,.is-rtl.flowplayer .fp-embed,.is-rtl.flowplayer .fp-close,.is-rtl.flowplayer .fp-play,.is-rtl.flowplayer .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
91
+.is-rtl.flowplayer .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
92
+.flowplayer .fp-fullscreen:before{content:"\e602"}
93
+.flowplayer .fp-unload:before,.flowplayer .fp-close:before{content:"\e600"}
94
+.flowplayer .fp-mute:before{content:"\e606"}
95
+.flowplayer .fp-embed:before{content:"\e603"}
96
+.flowplayer .fp-play:before{content:"\e608"}
97
+.flowplayer .fp-menu:before{content:"\e604"}
98
+.flowplayer .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
99
+.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url(img/play_white.png) center no-repeat;background-size:11%;}
100
+.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url(img/play_white_rtl.png) center no-repeat;background-size:11%}
101
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url(img/play_white@x2.png) center no-repeat;background-size:11%}
102
+.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url(img/play_white_rtl@x2.png) center no-repeat;background-size:11%}
103
+}.is-fullscreen.flowplayer .fp-ui{background-size:auto}
104
+.is-seeking.flowplayer .fp-ui,.is-loading.flowplayer .fp-ui{background-image:none}
105
+.flowplayer .fp-brand{color:#fff !important;position:absolute;right:115px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:9px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
106
+.has-menu.flowplayer .fp-brand{right:152px}
107
+.is-rtl.flowplayer .fp-brand{right:auto;left:125px}
108
+.has-menu.is-rtl.flowplayer .fp-brand{left:152px}
109
+.no-brand.flowplayer .fp-brand{display:none}
110
+.no-volume.no-mute.flowplayer .fp-brand{right:10px;}
111
+.has-menu.no-volume.no-mute.flowplayer .fp-brand{right:47px}
112
+.no-volume.flowplayer .fp-brand{right:50px}
113
+.no-mute.flowplayer .fp-brand{right:95px}
114
+.flowplayer .fp-logo{position:absolute;top:auto;left:15px;bottom:40px;cursor:pointer;display:none;z-index:100;}
115
+.flowplayer .fp-logo img{width:100%}
116
+.is-embedded.flowplayer .fp-logo{display:block}
117
+.fixed-controls.flowplayer .fp-logo{bottom:15px}
118
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close{position:absolute;top:10px;left:auto;right:10px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:30px;width:30px;}
119
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-close{right:auto;left:10px}
120
+.flowplayer .fp-unload,.flowplayer .fp-close{display:none}
121
+.flowplayer .fp-play{display:none;height:30px !important;position:absolute;bottom:0;left:0;text-align:center;}
122
+.is-rtl.flowplayer .fp-play{left:auto;right:0}
123
+.is-playing.flowplayer .fp-play:before{content:"\e607"}
124
+.flowplayer .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:10px;}
125
+.is-rtl.flowplayer .fp-menu{right:auto;left:10px}
126
+.has-menu.flowplayer .fp-menu{display:block}
127
+.flowplayer .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:149px;-webkit-transform:none;-moz-transform:none;transform:none;}
128
+.is-rtl.flowplayer .fp-menu .fp-dropdown{left:-10px}
129
+.flowplayer .fp-menu.dropdown-open .fp-dropdown{display:block}
130
+.flowplayer.is-ready.is-closeable .fp-unload{display:block}
131
+.flowplayer.is-ready.is-closeable .fp-embed{right:90px}
132
+.flowplayer.is-ready.is-closeable .fp-fullscreen{right:50px}
133
+.flowplayer.is-ready.is-closeable.is-rtl .fp-embed{right:auto;left:90px}
134
+.flowplayer.is-ready.is-closeable.is-rtl .fp-fullscreen{right:auto;left:50px}
135
+.flowplayer.is-fullscreen .fp-fullscreen{display:block !important;}
136
+.flowplayer.is-fullscreen .fp-fullscreen:before{content:"\e601"}
137
+.flowplayer .fp-timeline{height:3px;position:relative;overflow:hidden;top:10px;height:10px;margin:0 225px 0 55px;}
138
+.no-brand.flowplayer .fp-timeline{margin-right:160px;}
139
+.has-menu.no-brand.flowplayer .fp-timeline{margin-right:187px}
140
+.no-volume.no-brand.flowplayer .fp-timeline{margin-right:95px}
141
+.no-mute.no-brand.flowplayer .fp-timeline{margin-right:130px}
142
+.no-mute.no-volume.no-brand.flowplayer .fp-timeline{margin-right:55px}
143
+.has-menu.flowplayer .fp-timeline{margin-right:252px}
144
+.no-volume.flowplayer .fp-timeline{margin-right:160px}
145
+.no-mute.flowplayer .fp-timeline{margin-right:195px}
146
+.no-mute.no-volume.flowplayer .fp-timeline{margin-right:120px;}
147
+.has-menu.no-mute.no-volume.flowplayer .fp-timeline{margin-right:157px}
148
+.is-rtl.flowplayer .fp-timeline{margin:0 55px 0 225px;}
149
+.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:160px;}
150
+.has-menu.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:197px}
151
+.has-menu.is-rtl.flowplayer .fp-timeline{margin-left:262px}
152
+.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:95px}
153
+.no-mute.is-rtl.flowplayer .fp-timeline{margin-left:130px}
154
+.no-mute.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:55px}
155
+.is-long.flowplayer .fp-timeline{margin:0 255px 0 85px;}
156
+.no-volume.is-long.flowplayer .fp-timeline{margin-right:180px}
157
+.no-mute.is-long.flowplayer .fp-timeline{margin-right:140px}
158
+.has-menu.is-long.flowplayer .fp-timeline{margin-right:292px}
159
+.no-brand.is-long.flowplayer .fp-timeline{margin-right:190px;}
160
+.no-volume.no-brand.is-long.flowplayer .fp-timeline{margin-right:125px}
161
+.no-mute.no-brand.is-long.flowplayer .fp-timeline{margin-right:85px}
162
+.has-menu.no-brand.is-long.flowplayer .fp-timeline{margin-right:227px}
163
+.is-rtl.is-long.flowplayer .fp-timeline{margin:85px 0 190px 0;}
164
+.no-volume.is-rtl.is-long.flowplayer .fp-timeline{margin-left:125px}
165
+.no-mute.is-rtl.is-long.flowplayer .fp-timeline{margin-left:85px}
166
+.aside-time.flowplayer .fp-timeline,.no-time.flowplayer .fp-timeline{margin:0 190px 0 10px;}
167
+.has-menu.aside-time.flowplayer .fp-timeline,.has-menu.no-time.flowplayer .fp-timeline{margin-right:227px}
168
+.aside-time.no-brand.flowplayer .fp-timeline{margin-right:115px}
169
+.aside-time.no-volume.flowplayer .fp-timeline,.no-time.no-volume.flowplayer .fp-timeline{margin-right:115px}
170
+.aside-time.no-mute.flowplayer .fp-timeline,.no-time.no-mute.flowplayer .fp-timeline{margin-right:75px}
171
+.is-rtl.aside-time.flowplayer .fp-timeline,.is-rtl.no-time.flowplayer .fp-timeline{margin:0 10px 0 115px}
172
+.is-rtl.aside-time.no-volume.flowplayer .fp-timeline,.is-rtl.no-time.no-volume.flowplayer .fp-timeline{margin-left:50px}
173
+.is-rtl.aside-time.no-mute.flowplayer .fp-timeline,.is-rtl.no-time.no-mute.flowplayer .fp-timeline{margin-left:10px}
174
+.flowplayer .fp-buffer,.flowplayer .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
175
+.flowplayer .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
176
+.flowplayer .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
177
+.flowplayer .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
178
+.flowplayer.is-touch .fp-timeline{overflow:visible}
179
+.flowplayer.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
180
+.flowplayer.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
181
+.flowplayer.is-touch.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
182
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
183
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
184
+.flowplayer.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
185
+.flowplayer.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
186
+.flowplayer.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
187
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
188
+.flowplayer .fp-volume{position:absolute;height:6px;bottom:12px;right:10px;}
189
+.has-menu.flowplayer .fp-volume{right:37px}
190
+.is-rtl.flowplayer .fp-volume{right:auto;left:10px}
191
+.is-rtl.has-menu.flowplayer .fp-volume{left:37px}
192
+.flowplayer .fp-mute{position:relative;width:30px;height:30px;float:left;top:-12px;cursor:pointer;}
193
+.is-rtl.flowplayer .fp-mute{float:right}
194
+.no-mute.flowplayer .fp-mute{display:none}
195
+.flowplayer .fp-volumeslider{width:75px;height:6px;cursor:col-resize;float:left;}
196
+.is-rtl.flowplayer .fp-volumeslider{float:right}
197
+.no-volume.flowplayer .fp-volumeslider{display:none}
198
+.flowplayer .fp-volumelevel{height:100%}
199
+.flowplayer .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
200
+.flowplayer .fp-time.is-inverted .fp-duration{display:none}
201
+.flowplayer .fp-time.is-inverted .fp-remaining{display:inline}
202
+.flowplayer .fp-time em{width:35px;height:10px;line-height:10px;text-align:center;position:absolute;bottom:9px}
203
+.no-time.flowplayer .fp-time{display:none}
204
+.is-long.flowplayer .fp-time em{width:65px}
205
+.flowplayer .fp-elapsed{left:10px;}
206
+.is-rtl.flowplayer .fp-elapsed{left:auto;right:10px}
207
+.flowplayer .fp-remaining,.flowplayer .fp-duration{right:180px;color:#eee;}
208
+.no-brand.flowplayer .fp-remaining,.no-brand.flowplayer .fp-duration{right:125px;}
209
+.has-menu.no-brand.flowplayer .fp-remaining,.has-menu.no-brand.flowplayer .fp-duration{right:152px}
210
+.no-volume.no-brand.flowplayer .fp-remaining,.no-volume.no-brand.flowplayer .fp-duration{right:50px}
211
+.no-mute.no-brand.flowplayer .fp-remaining,.no-mute.no-brand.flowplayer .fp-duration{right:95px}
212
+.no-mute.no-volume.no-brand.flowplayer .fp-remaining,.no-mute.no-volume.no-brand.flowplayer .fp-duration{right:10px}
213
+.has-menu.flowplayer .fp-remaining,.has-menu.flowplayer .fp-duration{right:217px}
214
+.no-volume.flowplayer .fp-remaining,.no-volume.flowplayer .fp-duration{right:115px}
215
+.no-mute.flowplayer .fp-remaining,.no-mute.flowplayer .fp-duration{right:160px}
216
+.no-mute.no-volume.flowplayer .fp-remaining,.no-mute.no-volume.flowplayer .fp-duration{right:75px;}
217
+.has-menu.no-mute.no-volume.flowplayer .fp-remaining,.has-menu.no-mute.no-volume.flowplayer .fp-duration{right:112px}
218
+.is-rtl.flowplayer .fp-remaining,.is-rtl.flowplayer .fp-duration{right:auto;left:180px;}
219
+.no-brand.is-rtl.flowplayer .fp-remaining,.no-brand.is-rtl.flowplayer .fp-duration{left:115px;}
220
+.has-menu.no-brand.is-rtl.flowplayer .fp-remaining,.has-menu.no-brand.is-rtl.flowplayer .fp-duration{left:142px}
221
+.has-menu.is-rtl.flowplayer .fp-remaining,.has-menu.is-rtl.flowplayer .fp-duration{left:227px}
222
+.no-volume.is-rtl.flowplayer .fp-remaining,.no-volume.is-rtl.flowplayer .fp-duration{left:50px}
223
+.no-mute.is-rtl.flowplayer .fp-remaining,.no-mute.is-rtl.flowplayer .fp-duration{left:95px}
224
+.no-mute.no-volume.is-rtl.flowplayer .fp-remaining,.no-mute.no-volume.is-rtl.flowplayer .fp-duration{left:10px}
225
+.flowplayer .fp-remaining{display:none}
226
+.flowplayer.aside-time .fp-time{position:absolute;top:10px;left:10px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:30px;padding:0 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;line-height:30px;text-align:center;font-size:15px;}
227
+.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important}
228
+.flowplayer.aside-time .fp-time strong,.flowplayer.aside-time .fp-time em{position:static}
229
+.flowplayer.aside-time .fp-time .fp-elapsed::after{content:' / '}
230
+.flowplayer.is-splash,.flowplayer.is-poster{cursor:pointer;}
231
+.flowplayer.is-splash .fp-controls,.flowplayer.is-poster .fp-controls,.flowplayer.is-splash .fp-fullscreen,.flowplayer.is-poster .fp-fullscreen,.flowplayer.is-splash .fp-unload,.flowplayer.is-poster .fp-unload,.flowplayer.is-splash .fp-time,.flowplayer.is-poster .fp-time,.flowplayer.is-splash .fp-embed,.flowplayer.is-poster .fp-embed,.flowplayer.is-splash .fp-title,.flowplayer.is-poster .fp-title,.flowplayer.is-splash .fp-brand,.flowplayer.is-poster .fp-brand{display:none !important}
232
+.flowplayer.is-poster .fp-engine{top:-9999em}
233
+.flowplayer.is-loading .fp-waiting{display:block}
234
+.flowplayer.is-loading .fp-controls,.flowplayer.is-loading .fp-time{display:none}
235
+.flowplayer.is-loading .fp-ui{background-position:-9999em}
236
+.flowplayer.is-loading video.fp-engine{position:absolute;top:-9999em}
237
+.flowplayer.is-seeking .fp-waiting{display:block}
238
+.flowplayer.is-playing{background-image:none !important;background-color:#333;}
239
+.flowplayer.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
240
+.flowplayer.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
241
+.is-rtl.flowplayer.is-fullscreen{left:auto !important;right:0 !important}
242
+.flowplayer.is-fullscreen .fp-player{background-color:#333}
243
+.flowplayer.is-error{border:1px solid #909090;background:#fdfdfd !important;}
244
+.flowplayer.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
245
+.flowplayer.is-error .fp-message{display:block}
246
+.flowplayer.is-error object,.flowplayer.is-error video,.flowplayer.is-error .fp-controls,.flowplayer.is-error .fp-time,.flowplayer.is-error .fp-subtitle{display:none}
247
+.flowplayer.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
248
+.flowplayer.is-ready.is-muted .fp-mute:before{content:"\e605"}
249
+.flowplayer.is-mouseout .fp-controls{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
250
+.is-fullscreen.flowplayer.is-mouseout .fp-controls{height:3px;bottom:0}
251
+.flowplayer.is-mouseout .fp-title{overflow:hidden}
252
+.flowplayer.is-mouseout .fp-timeline{margin:0 !important}
253
+.flowplayer.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
254
+.flowplayer.is-mouseout .fp-fullscreen,.flowplayer.is-mouseout .fp-unload,.flowplayer.is-mouseout .fp-elapsed,.flowplayer.is-mouseout .fp-remaining,.flowplayer.is-mouseout .fp-duration,.flowplayer.is-mouseout .fp-embed,.flowplayer.is-mouseout .fp-title,.flowplayer.is-mouseout .fp-volume,.flowplayer.is-mouseout .fp-play,.flowplayer.is-mouseout .fp-menu,.flowplayer.is-mouseout .fp-brand,.flowplayer.is-mouseout .fp-timeline-tooltip,.flowplayer.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
255
+.flowplayer.is-mouseover .fp-controls,.flowplayer.fixed-controls .fp-controls{height:30px}
256
+.flowplayer.is-mouseover .fp-title,.flowplayer.fixed-controls .fp-title{height:30px}
257
+.flowplayer.is-mouseover .fp-fullscreen,.flowplayer.fixed-controls .fp-fullscreen,.flowplayer.is-mouseover .fp-unload,.flowplayer.fixed-controls .fp-unload,.flowplayer.is-mouseover .fp-elapsed,.flowplayer.fixed-controls .fp-elapsed,.flowplayer.is-mouseover .fp-remaining,.flowplayer.fixed-controls .fp-remaining,.flowplayer.is-mouseover .fp-duration,.flowplayer.fixed-controls .fp-duration,.flowplayer.is-mouseover .fp-embed,.flowplayer.fixed-controls .fp-embed,.flowplayer.is-mouseover .fp-logo,.flowplayer.fixed-controls .fp-logo,.flowplayer.is-mouseover .fp-volume,.flowplayer.fixed-controls .fp-volume,.flowplayer.is-mouseover .fp-play,.flowplayer.fixed-controls .fp-play,.flowplayer.is-mouseover .fp-menu,.flowplayer.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
258
+.flowplayer.fixed-controls .fp-volume{display:block}
259
+.flowplayer.fixed-controls .fp-controls{bottom:-30px;}
260
+.is-fullscreen.flowplayer.fixed-controls .fp-controls{bottom:0}
261
+.flowplayer.fixed-controls .fp-time em{bottom:-20px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
262
+.is-fullscreen.flowplayer.fixed-controls .fp-time em{bottom:10px}
263
+.flowplayer.is-disabled .fp-progress{background-color:#999}
264
+.flowplayer.is-flash-disabled{background-color:#333;}
265
+.flowplayer.is-flash-disabled object.fp-engine{z-index:100}
266
+.flowplayer.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
267
+.flowplayer .fp-embed{position:absolute;top:10px;left:auto;right:50px;display:block;width:30px;height:30px;text-align:center;}
268
+.is-rtl.flowplayer .fp-embed{right:auto;left:50px}
269
+.flowplayer .fp-embed-code{position:absolute;display:none;top:10px;right:67px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
270
+.is-closeable.flowplayer .fp-embed-code{right:99px}
271
+.flowplayer .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
272
+.is-rtl.flowplayer .fp-embed-code{right:auto;left:67px;}
273
+.is-rtl.flowplayer .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
274
+.flowplayer .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
275
+.flowplayer .fp-embed-code label{display:block;color:#999}
276
+.flowplayer.is-embedding .fp-embed,.flowplayer.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
277
+.flowplayer.no-time .fp-embed{left:10px !important;}
278
+.is-rtl.flowplayer.no-time .fp-embed{left:auto;right:10px !important}
279
+.flowplayer.is-live .fp-timeline,.flowplayer.is-live .fp-duration,.flowplayer.is-live .fp-remaining{display:none}
280
+.flowplayer .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
281
+.flowplayer .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
282
+.flowplayer .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
283
+.flowplayer .fp-context-menu li:hover:not(.copyright){background-color:#eee}
284
+.flowplayer .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
285
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.flowplayer .fp-context-menu li.copyright{background-image:url("img/flowplayer@2x.png")}
286
+}@-moz-keyframes pulse{0%{opacity:0}
287
+100%{opacity:1}
288
+}@-webkit-keyframes pulse{0%{opacity:0}
289
+100%{opacity:1}
290
+}@-o-keyframes pulse{0%{opacity:0}
291
+100%{opacity:1}
292
+}@-ms-keyframes pulse{0%{opacity:0}
293
+100%{opacity:1}
294
+}@keyframes pulse{0%{opacity:0}
295
+100%{opacity:1}
296
+}.flowplayer.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
297
+.flowplayer .fp-title{position:absolute;top:10px;left:10px;}
298
+.is-rtl.flowplayer .fp-title{left:auto;right:10px}
299
+.flowplayer .fp-title,.flowplayer .fp-unload,.flowplayer .fp-fullscreen,.flowplayer .fp-embed{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
300
+.flowplayer .fp-embed-code{right:85px;}
301
+.is-closeable.flowplayer .fp-embed-code{right:125px}
302
+.is-rtl.flowplayer .fp-embed-code{right:auto;left:85px}
303
+.flowplayer.is-mouseout .fp-menu{display:none}
304
+.flowplayer.is-mouseout .fp-controls{-webkit-transition:none;-moz-transition:none;transition:none;-webkit-animation:functional-controls-hide 1s 1;-moz-animation:functional-controls-hide 1s 1;animation:functional-controls-hide 1s 1}
305
+.flowplayer.is-mouseout .fp-timeline{-webkit-transition:none;-moz-transition:none;transition:none}
306
+.flowplayer.is-mouseout .fp-volume,.flowplayer.is-mouseout .fp-brand,.flowplayer.is-mouseout .fp-play,.flowplayer.is-mouseout .fp-time{-webkit-transition:none;-moz-transition:none;transition:none;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
307
+.flowplayer.fixed-controls .fp-elapsed,.flowplayer.fixed-controls.is-mouseover .fp-elapsed{left:50px}
308
+.flowplayer.fixed-controls .fp-controls,.flowplayer.fixed-controls.is-mouseover .fp-controls{bottom:-30px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;left:0;right:0;}
309
+.is-fullscreen.flowplayer.fixed-controls .fp-controls,.is-fullscreen.flowplayer.fixed-controls.is-mouseover .fp-controls{bottom:0}
310
+.flowplayer.fixed-controls .fp-controls .fp-play,.flowplayer.fixed-controls.is-mouseover .fp-controls .fp-play{left:10px}
311
+.flowplayer.fixed-controls .fp-controls .fp-timeline,.flowplayer.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:95px;}
312
+.is-long.flowplayer.fixed-controls .fp-controls .fp-timeline,.is-long.flowplayer.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:125px}
313
+.flowplayer.is-mouseover .fp-controls{bottom:10px;left:50px;right:10px;width:auto;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
314
+.is-rtl.flowplayer.is-mouseover .fp-controls{left:10px;right:50px}
315
+.flowplayer.is-mouseover .fp-controls .fp-play{left:-40px;display:block;background-color:#000;background-color:rgba(0,0,0,0.65);width:30px;height:30px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
316
+.is-rtl.flowplayer.is-mouseover .fp-controls .fp-play{left:auto;right:-40px}
317
+.flowplayer.is-mouseover .fp-controls .fp-timeline{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
318
+.flowplayer.is-mouseover .fp-controls .fp-timeline .fp-progress,.flowplayer.is-mouseover .fp-controls .fp-timeline .fp-buffer{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
319
+.flowplayer.is-mouseover .fp-controls .fp-menu .fp-dropdown{bottom:35px;left:auto;right:-10px;}
320
+.is-rtl.flowplayer.is-mouseover .fp-controls .fp-menu .fp-dropdown{right:auto;left:-10px}
321
+.flowplayer.is-mouseover .fp-controls .fp-menu .fp-dropdown:before{display:none}
322
+.flowplayer.is-mouseover .fp-controls li{border-color:#000;}
323
+.flowplayer.is-mouseover .fp-controls li.active{border-color:#00a7c8}
324
+.flowplayer.is-mouseover .fp-controls li:last-child:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;right:10px;border-bottom:none;border-top-width:5px;border-top-style:solid;border-top-color:inherit;border-left:5px solid transparent;border-right:5px solid transparent;}
325
+.is-rtl.flowplayer.is-mouseover .fp-controls li:last-child:before{right:auto;left:10px}
326
+.flowplayer .fp-elapsed,.flowplayer.play-button .fp-elapsed{left:60px;}
327
+.is-rtl.flowplayer .fp-elapsed,.is-rtl.flowplayer.play-button .fp-elapsed{right:60px;left:auto}
328
+.flowplayer .fp-time em{bottom:19px}
329
+@-moz-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
330
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
331
+}@-webkit-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
332
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
333
+}@-o-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
334
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
335
+}@-ms-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
336
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
337
+}@keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
338
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
339
+}
BIN
skin/img/black.png
BIN
skin/img/black@x2.png
BIN
skin/img/black_rtl.png
BIN
skin/img/black_rtl@x2.png
BIN
skin/img/flowplayer.png
BIN
skin/img/flowplayer@2x.png
BIN
skin/img/play_black.png
BIN
skin/img/play_black@x2.png
BIN
skin/img/play_black_rtl.png
BIN
skin/img/play_black_rtl@x2.png
BIN
skin/img/play_white.png
BIN
skin/img/play_white@x2.png
BIN
skin/img/play_white_rtl.png
BIN
skin/img/play_white_rtl@x2.png
BIN
skin/img/playful_black.png
BIN
skin/img/playful_black@x2.png
BIN
skin/img/playful_black_rtl.png
BIN
skin/img/playful_black_rtl@x2.png
BIN
skin/img/playful_white.png
BIN
skin/img/playful_white@x2.png
BIN
skin/img/playful_white_rtl.png
BIN
skin/img/playful_white_rtl@x2.png
BIN
skin/img/white.png
BIN
skin/img/white@x2.png
BIN
skin/img/white_rtl.png
BIN
skin/img/white_rtl@x2.png
+319
skin/minimalist.css
... ...
@@ -0,0 +1,319 @@
1
+@font-face {
2
+  font-family: 'fpicons';
3
+  src:url('fonts/fpicons.eot?yg5dv7');
4
+  src:url('fonts/fpicons.eot?#iefixyg5dv7') format('embedded-opentype'),
5
+    url('fonts/fpicons.woff?yg5dv7') format('woff'),
6
+    url('fonts/fpicons.ttf?yg5dv7') format('truetype'),
7
+    url('fonts/fpicons.svg?yg5dv7#fpicons') format('svg');
8
+  font-weight: normal;
9
+  font-style: normal;
10
+}
11
+
12
+[class^="fp-i-"], [class*=" fp-i-"] {
13
+  font-family: 'fpicons';
14
+  speak: none;
15
+  font-style: normal;
16
+  font-weight: normal;
17
+  font-variant: normal;
18
+  text-transform: none;
19
+  line-height: 1;
20
+
21
+  /* Better Font Rendering =========== */
22
+  -webkit-font-smoothing: antialiased;
23
+  -moz-osx-font-smoothing: grayscale;
24
+}
25
+.flowplayer{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
26
+.flowplayer *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
27
+.flowplayer a:focus{outline:0}
28
+.flowplayer video{width:100%}
29
+.flowplayer.is-ipad video{-webkit-transform:translateX(-2048px);}
30
+.is-ready.flowplayer.is-ipad video{-webkit-transform:translateX(0)}
31
+.flowplayer .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
32
+.flowplayer .fp-engine,.flowplayer .fp-ui,.flowplayer .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
33
+.flowplayer .fp-ui{z-index:11}
34
+.flowplayer .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
35
+.flowplayer .fp-message h2{font-size:120%;margin-bottom:1em}
36
+.flowplayer .fp-message p{color:#666;font-size:95%}
37
+.flowplayer .fp-title{line-height:30px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 20px;}
38
+.is-rtl.flowplayer .fp-title{float:right}
39
+.aside-time.flowplayer .fp-title{display:none !important}
40
+.flowplayer .fp-controls{position:absolute;bottom:0;width:100%;}
41
+.no-background.flowplayer .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
42
+.is-fullscreen.flowplayer .fp-controls{bottom:3px}
43
+.is-mouseover.flowplayer .fp-controls{bottom:0}
44
+.flowplayer .fp-controls,.flowplayer .fp-title,.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close,.flowplayer .fp-embed,.flowplayer.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
45
+.no-background.flowplayer .fp-controls,.no-background.flowplayer .fp-title,.no-background.flowplayer .fp-fullscreen,.no-background.flowplayer .fp-unload,.no-background.flowplayer .fp-close,.no-background.flowplayer .fp-embed,.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
46
+.no-background.flowplayer .fp-play,.no-background.flowplayer .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
47
+.flowplayer.fixed-controls .fp-controls{background-color:#000}
48
+.flowplayer .fp-timeline{background-color:#a5a5a5}
49
+.flowplayer .fp-buffer{background-color:#eee}
50
+.flowplayer .fp-progress{background-color:#00a7c8}
51
+.flowplayer .fp-volumeslider{background-color:#a5a5a5}
52
+.flowplayer .fp-volumelevel{background-color:#00a7c8}
53
+.flowplayer .fp-waiting{display:none;margin:19% auto;text-align:center;}
54
+.flowplayer .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
55
+.flowplayer .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
56
+.flowplayer .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
57
+.flowplayer .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
58
+.flowplayer .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
59
+.flowplayer .fp-waiting p{color:#ccc;font-weight:bold}
60
+.flowplayer .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
61
+.flowplayer .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
62
+.flowplayer .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
63
+.is-help.flowplayer .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
64
+.flowplayer .fp-help .fp-help-section{margin:3%;direction:ltr}
65
+.flowplayer .fp-help .fp-help-basics{margin-top:6%}
66
+.flowplayer .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
67
+.flowplayer .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
68
+.flowplayer .fp-help small{font-size:90%;color:#aaa}
69
+.flowplayer .fp-help .fp-close{display:block}
70
+@media (max-width: 600px){.flowplayer .fp-help p{font-size:9px}
71
+}.flowplayer .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
72
+.flowplayer .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
73
+.flowplayer .fp-dropdown li{padding:10px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
74
+.flowplayer .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
75
+.flowplayer .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
76
+.flowplayer .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
77
+.flowplayer .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
78
+.flowplayer .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
79
+.flowplayer .fp-timeline-tooltip{bottom:35px}
80
+.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:block;}
81
+.is-touch.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:none}
82
+.flowplayer .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
83
+.flowplayer .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
84
+.flowplayer .fp-subtitle p:after{content:'';clear:both}
85
+.flowplayer .fp-subtitle p b{font-weight:bold}
86
+.flowplayer .fp-subtitle p i{font-style:italic}
87
+.flowplayer .fp-subtitle p u{text-decoration:underline}
88
+.flowplayer .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
89
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-mute,.flowplayer .fp-embed,.flowplayer .fp-close,.flowplayer .fp-play,.flowplayer .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
90
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-mute,.is-rtl.flowplayer .fp-embed,.is-rtl.flowplayer .fp-close,.is-rtl.flowplayer .fp-play,.is-rtl.flowplayer .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
91
+.is-rtl.flowplayer .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
92
+.flowplayer .fp-fullscreen:before{content:"\e602"}
93
+.flowplayer .fp-unload:before,.flowplayer .fp-close:before{content:"\e600"}
94
+.flowplayer .fp-mute:before{content:"\e606"}
95
+.flowplayer .fp-embed:before{content:"\e603"}
96
+.flowplayer .fp-play:before{content:"\e608"}
97
+.flowplayer .fp-menu:before{content:"\e604"}
98
+.flowplayer .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
99
+.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url(img/play_white.png) center no-repeat;background-size:11%;}
100
+.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url(img/play_white_rtl.png) center no-repeat;background-size:11%}
101
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url(img/play_white@x2.png) center no-repeat;background-size:11%}
102
+.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url(img/play_white_rtl@x2.png) center no-repeat;background-size:11%}
103
+}.is-fullscreen.flowplayer .fp-ui{background-size:auto}
104
+.is-seeking.flowplayer .fp-ui,.is-loading.flowplayer .fp-ui{background-image:none}
105
+.flowplayer .fp-brand{color:#fff !important;position:absolute;right:115px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:9px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
106
+.has-menu.flowplayer .fp-brand{right:152px}
107
+.is-rtl.flowplayer .fp-brand{right:auto;left:125px}
108
+.has-menu.is-rtl.flowplayer .fp-brand{left:152px}
109
+.no-brand.flowplayer .fp-brand{display:none}
110
+.no-volume.no-mute.flowplayer .fp-brand{right:10px;}
111
+.has-menu.no-volume.no-mute.flowplayer .fp-brand{right:47px}
112
+.no-volume.flowplayer .fp-brand{right:50px}
113
+.no-mute.flowplayer .fp-brand{right:95px}
114
+.flowplayer .fp-logo{position:absolute;top:auto;left:15px;bottom:40px;cursor:pointer;display:none;z-index:100;}
115
+.flowplayer .fp-logo img{width:100%}
116
+.is-embedded.flowplayer .fp-logo{display:block}
117
+.fixed-controls.flowplayer .fp-logo{bottom:15px}
118
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close{position:absolute;top:10px;left:auto;right:10px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:30px;width:30px;}
119
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-close{right:auto;left:10px}
120
+.flowplayer .fp-unload,.flowplayer .fp-close{display:none}
121
+.flowplayer .fp-play{display:none;height:30px !important;position:absolute;bottom:0;left:0;text-align:center;}
122
+.is-rtl.flowplayer .fp-play{left:auto;right:0}
123
+.is-playing.flowplayer .fp-play:before{content:"\e607"}
124
+.flowplayer .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:10px;}
125
+.is-rtl.flowplayer .fp-menu{right:auto;left:10px}
126
+.has-menu.flowplayer .fp-menu{display:block}
127
+.flowplayer .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:149px;-webkit-transform:none;-moz-transform:none;transform:none;}
128
+.is-rtl.flowplayer .fp-menu .fp-dropdown{left:-10px}
129
+.flowplayer .fp-menu.dropdown-open .fp-dropdown{display:block}
130
+.flowplayer.is-ready.is-closeable .fp-unload{display:block}
131
+.flowplayer.is-ready.is-closeable .fp-embed{right:90px}
132
+.flowplayer.is-ready.is-closeable .fp-fullscreen{right:50px}
133
+.flowplayer.is-ready.is-closeable.is-rtl .fp-embed{right:auto;left:90px}
134
+.flowplayer.is-ready.is-closeable.is-rtl .fp-fullscreen{right:auto;left:50px}
135
+.flowplayer.is-fullscreen .fp-fullscreen{display:block !important;}
136
+.flowplayer.is-fullscreen .fp-fullscreen:before{content:"\e601"}
137
+.flowplayer .fp-timeline{height:3px;position:relative;overflow:hidden;top:10px;height:10px;margin:0 225px 0 55px;}
138
+.no-brand.flowplayer .fp-timeline{margin-right:160px;}
139
+.has-menu.no-brand.flowplayer .fp-timeline{margin-right:187px}
140
+.no-volume.no-brand.flowplayer .fp-timeline{margin-right:95px}
141
+.no-mute.no-brand.flowplayer .fp-timeline{margin-right:130px}
142
+.no-mute.no-volume.no-brand.flowplayer .fp-timeline{margin-right:55px}
143
+.has-menu.flowplayer .fp-timeline{margin-right:252px}
144
+.no-volume.flowplayer .fp-timeline{margin-right:160px}
145
+.no-mute.flowplayer .fp-timeline{margin-right:195px}
146
+.no-mute.no-volume.flowplayer .fp-timeline{margin-right:120px;}
147
+.has-menu.no-mute.no-volume.flowplayer .fp-timeline{margin-right:157px}
148
+.is-rtl.flowplayer .fp-timeline{margin:0 55px 0 225px;}
149
+.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:160px;}
150
+.has-menu.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:197px}
151
+.has-menu.is-rtl.flowplayer .fp-timeline{margin-left:262px}
152
+.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:95px}
153
+.no-mute.is-rtl.flowplayer .fp-timeline{margin-left:130px}
154
+.no-mute.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:55px}
155
+.is-long.flowplayer .fp-timeline{margin:0 255px 0 85px;}
156
+.no-volume.is-long.flowplayer .fp-timeline{margin-right:180px}
157
+.no-mute.is-long.flowplayer .fp-timeline{margin-right:140px}
158
+.has-menu.is-long.flowplayer .fp-timeline{margin-right:292px}
159
+.no-brand.is-long.flowplayer .fp-timeline{margin-right:190px;}
160
+.no-volume.no-brand.is-long.flowplayer .fp-timeline{margin-right:125px}
161
+.no-mute.no-brand.is-long.flowplayer .fp-timeline{margin-right:85px}
162
+.has-menu.no-brand.is-long.flowplayer .fp-timeline{margin-right:227px}
163
+.is-rtl.is-long.flowplayer .fp-timeline{margin:85px 0 190px 0;}
164
+.no-volume.is-rtl.is-long.flowplayer .fp-timeline{margin-left:125px}
165
+.no-mute.is-rtl.is-long.flowplayer .fp-timeline{margin-left:85px}
166
+.aside-time.flowplayer .fp-timeline,.no-time.flowplayer .fp-timeline{margin:0 190px 0 10px;}
167
+.has-menu.aside-time.flowplayer .fp-timeline,.has-menu.no-time.flowplayer .fp-timeline{margin-right:227px}
168
+.aside-time.no-brand.flowplayer .fp-timeline{margin-right:115px}
169
+.aside-time.no-volume.flowplayer .fp-timeline,.no-time.no-volume.flowplayer .fp-timeline{margin-right:115px}
170
+.aside-time.no-mute.flowplayer .fp-timeline,.no-time.no-mute.flowplayer .fp-timeline{margin-right:75px}
171
+.is-rtl.aside-time.flowplayer .fp-timeline,.is-rtl.no-time.flowplayer .fp-timeline{margin:0 10px 0 115px}
172
+.is-rtl.aside-time.no-volume.flowplayer .fp-timeline,.is-rtl.no-time.no-volume.flowplayer .fp-timeline{margin-left:50px}
173
+.is-rtl.aside-time.no-mute.flowplayer .fp-timeline,.is-rtl.no-time.no-mute.flowplayer .fp-timeline{margin-left:10px}
174
+.flowplayer .fp-buffer,.flowplayer .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
175
+.flowplayer .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
176
+.flowplayer .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
177
+.flowplayer .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
178
+.flowplayer.is-touch .fp-timeline{overflow:visible}
179
+.flowplayer.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
180
+.flowplayer.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
181
+.flowplayer.is-touch.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
182
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
183
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
184
+.flowplayer.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
185
+.flowplayer.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
186
+.flowplayer.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
187
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
188
+.flowplayer .fp-volume{position:absolute;height:6px;bottom:12px;right:10px;}
189
+.has-menu.flowplayer .fp-volume{right:37px}
190
+.is-rtl.flowplayer .fp-volume{right:auto;left:10px}
191
+.is-rtl.has-menu.flowplayer .fp-volume{left:37px}
192
+.flowplayer .fp-mute{position:relative;width:30px;height:30px;float:left;top:-12px;cursor:pointer;}
193
+.is-rtl.flowplayer .fp-mute{float:right}
194
+.no-mute.flowplayer .fp-mute{display:none}
195
+.flowplayer .fp-volumeslider{width:75px;height:6px;cursor:col-resize;float:left;}
196
+.is-rtl.flowplayer .fp-volumeslider{float:right}
197
+.no-volume.flowplayer .fp-volumeslider{display:none}
198
+.flowplayer .fp-volumelevel{height:100%}
199
+.flowplayer .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
200
+.flowplayer .fp-time.is-inverted .fp-duration{display:none}
201
+.flowplayer .fp-time.is-inverted .fp-remaining{display:inline}
202
+.flowplayer .fp-time em{width:35px;height:10px;line-height:10px;text-align:center;position:absolute;bottom:9px}
203
+.no-time.flowplayer .fp-time{display:none}
204
+.is-long.flowplayer .fp-time em{width:65px}
205
+.flowplayer .fp-elapsed{left:10px;}
206
+.is-rtl.flowplayer .fp-elapsed{left:auto;right:10px}
207
+.flowplayer .fp-remaining,.flowplayer .fp-duration{right:180px;color:#eee;}
208
+.no-brand.flowplayer .fp-remaining,.no-brand.flowplayer .fp-duration{right:125px;}
209
+.has-menu.no-brand.flowplayer .fp-remaining,.has-menu.no-brand.flowplayer .fp-duration{right:152px}
210
+.no-volume.no-brand.flowplayer .fp-remaining,.no-volume.no-brand.flowplayer .fp-duration{right:50px}
211
+.no-mute.no-brand.flowplayer .fp-remaining,.no-mute.no-brand.flowplayer .fp-duration{right:95px}
212
+.no-mute.no-volume.no-brand.flowplayer .fp-remaining,.no-mute.no-volume.no-brand.flowplayer .fp-duration{right:10px}
213
+.has-menu.flowplayer .fp-remaining,.has-menu.flowplayer .fp-duration{right:217px}
214
+.no-volume.flowplayer .fp-remaining,.no-volume.flowplayer .fp-duration{right:115px}
215
+.no-mute.flowplayer .fp-remaining,.no-mute.flowplayer .fp-duration{right:160px}
216
+.no-mute.no-volume.flowplayer .fp-remaining,.no-mute.no-volume.flowplayer .fp-duration{right:75px;}
217
+.has-menu.no-mute.no-volume.flowplayer .fp-remaining,.has-menu.no-mute.no-volume.flowplayer .fp-duration{right:112px}
218
+.is-rtl.flowplayer .fp-remaining,.is-rtl.flowplayer .fp-duration{right:auto;left:180px;}
219
+.no-brand.is-rtl.flowplayer .fp-remaining,.no-brand.is-rtl.flowplayer .fp-duration{left:115px;}
220
+.has-menu.no-brand.is-rtl.flowplayer .fp-remaining,.has-menu.no-brand.is-rtl.flowplayer .fp-duration{left:142px}
221
+.has-menu.is-rtl.flowplayer .fp-remaining,.has-menu.is-rtl.flowplayer .fp-duration{left:227px}
222
+.no-volume.is-rtl.flowplayer .fp-remaining,.no-volume.is-rtl.flowplayer .fp-duration{left:50px}
223
+.no-mute.is-rtl.flowplayer .fp-remaining,.no-mute.is-rtl.flowplayer .fp-duration{left:95px}
224
+.no-mute.no-volume.is-rtl.flowplayer .fp-remaining,.no-mute.no-volume.is-rtl.flowplayer .fp-duration{left:10px}
225
+.flowplayer .fp-remaining{display:none}
226
+.flowplayer.aside-time .fp-time{position:absolute;top:10px;left:10px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:30px;padding:0 5px;-webkit-border-radius:control_border_radius;-moz-border-radius:control_border_radius;border-radius:control_border_radius;line-height:30px;text-align:center;font-size:15px;}
227
+.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important}
228
+.flowplayer.aside-time .fp-time strong,.flowplayer.aside-time .fp-time em{position:static}
229
+.flowplayer.aside-time .fp-time .fp-elapsed::after{content:' / '}
230
+.flowplayer.is-splash,.flowplayer.is-poster{cursor:pointer;}
231
+.flowplayer.is-splash .fp-controls,.flowplayer.is-poster .fp-controls,.flowplayer.is-splash .fp-fullscreen,.flowplayer.is-poster .fp-fullscreen,.flowplayer.is-splash .fp-unload,.flowplayer.is-poster .fp-unload,.flowplayer.is-splash .fp-time,.flowplayer.is-poster .fp-time,.flowplayer.is-splash .fp-embed,.flowplayer.is-poster .fp-embed,.flowplayer.is-splash .fp-title,.flowplayer.is-poster .fp-title,.flowplayer.is-splash .fp-brand,.flowplayer.is-poster .fp-brand{display:none !important}
232
+.flowplayer.is-poster .fp-engine{top:-9999em}
233
+.flowplayer.is-loading .fp-waiting{display:block}
234
+.flowplayer.is-loading .fp-controls,.flowplayer.is-loading .fp-time{display:none}
235
+.flowplayer.is-loading .fp-ui{background-position:-9999em}
236
+.flowplayer.is-loading video.fp-engine{position:absolute;top:-9999em}
237
+.flowplayer.is-seeking .fp-waiting{display:block}
238
+.flowplayer.is-playing{background-image:none !important;background-color:#333;}
239
+.flowplayer.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
240
+.flowplayer.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
241
+.is-rtl.flowplayer.is-fullscreen{left:auto !important;right:0 !important}
242
+.flowplayer.is-fullscreen .fp-player{background-color:#333}
243
+.flowplayer.is-error{border:1px solid #909090;background:#fdfdfd !important;}
244
+.flowplayer.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
245
+.flowplayer.is-error .fp-message{display:block}
246
+.flowplayer.is-error object,.flowplayer.is-error video,.flowplayer.is-error .fp-controls,.flowplayer.is-error .fp-time,.flowplayer.is-error .fp-subtitle{display:none}
247
+.flowplayer.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
248
+.flowplayer.is-ready.is-muted .fp-mute:before{content:"\e605"}
249
+.flowplayer.is-mouseout .fp-controls{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
250
+.is-fullscreen.flowplayer.is-mouseout .fp-controls{height:3px;bottom:0}
251
+.flowplayer.is-mouseout .fp-title{overflow:hidden}
252
+.flowplayer.is-mouseout .fp-timeline{margin:0 !important}
253
+.flowplayer.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
254
+.flowplayer.is-mouseout .fp-fullscreen,.flowplayer.is-mouseout .fp-unload,.flowplayer.is-mouseout .fp-elapsed,.flowplayer.is-mouseout .fp-remaining,.flowplayer.is-mouseout .fp-duration,.flowplayer.is-mouseout .fp-embed,.flowplayer.is-mouseout .fp-title,.flowplayer.is-mouseout .fp-volume,.flowplayer.is-mouseout .fp-play,.flowplayer.is-mouseout .fp-menu,.flowplayer.is-mouseout .fp-brand,.flowplayer.is-mouseout .fp-timeline-tooltip,.flowplayer.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
255
+.flowplayer.is-mouseover .fp-controls,.flowplayer.fixed-controls .fp-controls{height:30px}
256
+.flowplayer.is-mouseover .fp-title,.flowplayer.fixed-controls .fp-title{height:30px}
257
+.flowplayer.is-mouseover .fp-fullscreen,.flowplayer.fixed-controls .fp-fullscreen,.flowplayer.is-mouseover .fp-unload,.flowplayer.fixed-controls .fp-unload,.flowplayer.is-mouseover .fp-elapsed,.flowplayer.fixed-controls .fp-elapsed,.flowplayer.is-mouseover .fp-remaining,.flowplayer.fixed-controls .fp-remaining,.flowplayer.is-mouseover .fp-duration,.flowplayer.fixed-controls .fp-duration,.flowplayer.is-mouseover .fp-embed,.flowplayer.fixed-controls .fp-embed,.flowplayer.is-mouseover .fp-logo,.flowplayer.fixed-controls .fp-logo,.flowplayer.is-mouseover .fp-volume,.flowplayer.fixed-controls .fp-volume,.flowplayer.is-mouseover .fp-play,.flowplayer.fixed-controls .fp-play,.flowplayer.is-mouseover .fp-menu,.flowplayer.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
258
+.flowplayer.fixed-controls .fp-volume{display:block}
259
+.flowplayer.fixed-controls .fp-controls{bottom:-30px;}
260
+.is-fullscreen.flowplayer.fixed-controls .fp-controls{bottom:0}
261
+.flowplayer.fixed-controls .fp-time em{bottom:-20px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
262
+.is-fullscreen.flowplayer.fixed-controls .fp-time em{bottom:10px}
263
+.flowplayer.is-disabled .fp-progress{background-color:#999}
264
+.flowplayer.is-flash-disabled{background-color:#333;}
265
+.flowplayer.is-flash-disabled object.fp-engine{z-index:100}
266
+.flowplayer.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
267
+.flowplayer .fp-embed{position:absolute;top:10px;left:auto;right:50px;display:block;width:30px;height:30px;text-align:center;}
268
+.is-rtl.flowplayer .fp-embed{right:auto;left:50px}
269
+.flowplayer .fp-embed-code{position:absolute;display:none;top:10px;right:67px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
270
+.is-closeable.flowplayer .fp-embed-code{right:99px}
271
+.flowplayer .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
272
+.is-rtl.flowplayer .fp-embed-code{right:auto;left:67px;}
273
+.is-rtl.flowplayer .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
274
+.flowplayer .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
275
+.flowplayer .fp-embed-code label{display:block;color:#999}
276
+.flowplayer.is-embedding .fp-embed,.flowplayer.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
277
+.flowplayer.no-time .fp-embed{left:10px !important;}
278
+.is-rtl.flowplayer.no-time .fp-embed{left:auto;right:10px !important}
279
+.flowplayer.is-live .fp-timeline,.flowplayer.is-live .fp-duration,.flowplayer.is-live .fp-remaining{display:none}
280
+.flowplayer .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
281
+.flowplayer .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
282
+.flowplayer .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
283
+.flowplayer .fp-context-menu li:hover:not(.copyright){background-color:#eee}
284
+.flowplayer .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
285
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.flowplayer .fp-context-menu li.copyright{background-image:url("img/flowplayer@2x.png")}
286
+}@-moz-keyframes pulse{0%{opacity:0}
287
+100%{opacity:1}
288
+}@-webkit-keyframes pulse{0%{opacity:0}
289
+100%{opacity:1}
290
+}@-o-keyframes pulse{0%{opacity:0}
291
+100%{opacity:1}
292
+}@-ms-keyframes pulse{0%{opacity:0}
293
+100%{opacity:1}
294
+}@keyframes pulse{0%{opacity:0}
295
+100%{opacity:1}
296
+}.flowplayer.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
297
+.flowplayer .fp-menu .fp-dropdown{right:-10px;left:auto;bottom:30px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
298
+.flowplayer .fp-menu .fp-dropdown:before{display:none}
299
+.is-rtl.flowplayer .fp-menu .fp-dropdown{right:auto;left:-10px}
300
+.flowplayer .fp-play{width:30px}
301
+.flowplayer.aside-time .fp-time{top:0;left:0}
302
+.no-brand.flowplayer .fp-remaining,.no-brand.flowplayer .fp-duration{right:115px}
303
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close,.flowplayer .fp-embed{right:0;top:0;}
304
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-close,.is-rtl.flowplayer .fp-embed{right:auto;left:0}
305
+.flowplayer .fp-embed{right:32px;}
306
+.is-rtl.flowplayer .fp-embed{right:auto;left:32px}
307
+.flowplayer.is-closeable.is-ready .fp-fullscreen{right:32px}
308
+.flowplayer.is-closeable.is-ready .fp-embed{right:64px}
309
+.is-rtl.flowplayer.is-closeable.is-ready .fp-fullscreen{right:auto;left:32px}
310
+.is-rtl.flowplayer.is-closeable.is-ready .fp-embed{right:auto;left:64px}
311
+.flowplayer.play-button .fp-play{display:block}
312
+.flowplayer.play-button .fp-elapsed{left:27px;}
313
+.is-rtl.flowplayer.play-button .fp-elapsed{right:27px}
314
+.flowplayer.play-button .fp-timeline{margin-left:72px;}
315
+.is-rtl.flowplayer.play-button .fp-timeline{margin-right:72px}
316
+.is-long.flowplayer.play-button .fp-timeline{margin-left:102px;}
317
+.is-rtl.is-long.flowplayer.play-button .fp-timeline{margin-right:102px}
318
+.no-time.flowplayer.play-button .fp-timeline,.aside-time.flowplayer.play-button .fp-timeline{margin-left:27px;}
319
+.is-rtl.no-time.flowplayer.play-button .fp-timeline,.is-rtl.aside-time.flowplayer.play-button .fp-timeline{margin-right:27px}
+352
skin/playful.css
... ...
@@ -0,0 +1,352 @@
1
+@font-face {
2
+  font-family: 'fpicons';
3
+  src:url('fonts/fpicons.eot?yg5dv7');
4
+  src:url('fonts/fpicons.eot?#iefixyg5dv7') format('embedded-opentype'),
5
+    url('fonts/fpicons.woff?yg5dv7') format('woff'),
6
+    url('fonts/fpicons.ttf?yg5dv7') format('truetype'),
7
+    url('fonts/fpicons.svg?yg5dv7#fpicons') format('svg');
8
+  font-weight: normal;
9
+  font-style: normal;
10
+}
11
+
12
+[class^="fp-i-"], [class*=" fp-i-"] {
13
+  font-family: 'fpicons';
14
+  speak: none;
15
+  font-style: normal;
16
+  font-weight: normal;
17
+  font-variant: normal;
18
+  text-transform: none;
19
+  line-height: 1;
20
+
21
+  /* Better Font Rendering =========== */
22
+  -webkit-font-smoothing: antialiased;
23
+  -moz-osx-font-smoothing: grayscale;
24
+}
25
+.flowplayer{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
26
+.flowplayer *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
27
+.flowplayer a:focus{outline:0}
28
+.flowplayer video{width:100%}
29
+.flowplayer.is-ipad video{-webkit-transform:translateX(-2048px);}
30
+.is-ready.flowplayer.is-ipad video{-webkit-transform:translateX(0)}
31
+.flowplayer .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
32
+.flowplayer .fp-engine,.flowplayer .fp-ui,.flowplayer .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
33
+.flowplayer .fp-ui{z-index:11}
34
+.flowplayer .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
35
+.flowplayer .fp-message h2{font-size:120%;margin-bottom:1em}
36
+.flowplayer .fp-message p{color:#666;font-size:95%}
37
+.flowplayer .fp-title{line-height:35px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 24px;}
38
+.is-rtl.flowplayer .fp-title{float:right}
39
+.aside-time.flowplayer .fp-title{display:none !important}
40
+.flowplayer .fp-controls{position:absolute;bottom:0;width:100%;}
41
+.no-background.flowplayer .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
42
+.is-fullscreen.flowplayer .fp-controls{bottom:3px}
43
+.is-mouseover.flowplayer .fp-controls{bottom:0}
44
+.flowplayer .fp-controls,.flowplayer .fp-title,.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close,.flowplayer .fp-embed,.flowplayer.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
45
+.no-background.flowplayer .fp-controls,.no-background.flowplayer .fp-title,.no-background.flowplayer .fp-fullscreen,.no-background.flowplayer .fp-unload,.no-background.flowplayer .fp-close,.no-background.flowplayer .fp-embed,.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
46
+.no-background.flowplayer .fp-play,.no-background.flowplayer .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
47
+.flowplayer.fixed-controls .fp-controls{background-color:#000}
48
+.flowplayer .fp-timeline{background-color:#a5a5a5}
49
+.flowplayer .fp-buffer{background-color:#eee}
50
+.flowplayer .fp-progress{background-color:#00a7c8}
51
+.flowplayer .fp-volumeslider{background-color:#a5a5a5}
52
+.flowplayer .fp-volumelevel{background-color:#00a7c8}
53
+.flowplayer .fp-waiting{display:none;margin:19% auto;text-align:center;}
54
+.flowplayer .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
55
+.flowplayer .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
56
+.flowplayer .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
57
+.flowplayer .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
58
+.flowplayer .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
59
+.flowplayer .fp-waiting p{color:#ccc;font-weight:bold}
60
+.flowplayer .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
61
+.flowplayer .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
62
+.flowplayer .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
63
+.is-help.flowplayer .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
64
+.flowplayer .fp-help .fp-help-section{margin:3%;direction:ltr}
65
+.flowplayer .fp-help .fp-help-basics{margin-top:6%}
66
+.flowplayer .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
67
+.flowplayer .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
68
+.flowplayer .fp-help small{font-size:90%;color:#aaa}
69
+.flowplayer .fp-help .fp-close{display:block}
70
+@media (max-width: 600px){.flowplayer .fp-help p{font-size:9px}
71
+}.flowplayer .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
72
+.flowplayer .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
73
+.flowplayer .fp-dropdown li{padding:12px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
74
+.flowplayer .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
75
+.flowplayer .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
76
+.flowplayer .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
77
+.flowplayer .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
78
+.flowplayer .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
79
+.flowplayer .fp-timeline-tooltip{bottom:41px}
80
+.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:block;}
81
+.is-touch.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:none}
82
+.flowplayer .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
83
+.flowplayer .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
84
+.flowplayer .fp-subtitle p:after{content:'';clear:both}
85
+.flowplayer .fp-subtitle p b{font-weight:bold}
86
+.flowplayer .fp-subtitle p i{font-style:italic}
87
+.flowplayer .fp-subtitle p u{text-decoration:underline}
88
+.flowplayer .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
89
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-mute,.flowplayer .fp-embed,.flowplayer .fp-close,.flowplayer .fp-play,.flowplayer .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
90
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-mute,.is-rtl.flowplayer .fp-embed,.is-rtl.flowplayer .fp-close,.is-rtl.flowplayer .fp-play,.is-rtl.flowplayer .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
91
+.is-rtl.flowplayer .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
92
+.flowplayer .fp-fullscreen:before{content:"\e602"}
93
+.flowplayer .fp-unload:before,.flowplayer .fp-close:before{content:"\e600"}
94
+.flowplayer .fp-mute:before{content:"\e606"}
95
+.flowplayer .fp-embed:before{content:"\e603"}
96
+.flowplayer .fp-play:before{content:"\e608"}
97
+.flowplayer .fp-menu:before{content:"\e604"}
98
+.flowplayer .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
99
+.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url(img/play_white.png) center no-repeat;background-size:11%;}
100
+.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url(img/play_white_rtl.png) center no-repeat;background-size:11%}
101
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url(img/play_white@x2.png) center no-repeat;background-size:11%}
102
+.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url(img/play_white_rtl@x2.png) center no-repeat;background-size:11%}
103
+}.is-fullscreen.flowplayer .fp-ui{background-size:auto}
104
+.is-seeking.flowplayer .fp-ui,.is-loading.flowplayer .fp-ui{background-image:none}
105
+.flowplayer .fp-brand{color:#fff !important;position:absolute;right:124px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:11px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
106
+.has-menu.flowplayer .fp-brand{right:161px}
107
+.is-rtl.flowplayer .fp-brand{right:auto;left:134px}
108
+.has-menu.is-rtl.flowplayer .fp-brand{left:161px}
109
+.no-brand.flowplayer .fp-brand{display:none}
110
+.no-volume.no-mute.flowplayer .fp-brand{right:12px;}
111
+.has-menu.no-volume.no-mute.flowplayer .fp-brand{right:51px}
112
+.no-volume.flowplayer .fp-brand{right:62px}
113
+.no-mute.flowplayer .fp-brand{right:99px}
114
+.flowplayer .fp-logo{position:absolute;top:auto;left:15px;bottom:45px;cursor:pointer;display:none;z-index:100;}
115
+.flowplayer .fp-logo img{width:100%}
116
+.is-embedded.flowplayer .fp-logo{display:block}
117
+.fixed-controls.flowplayer .fp-logo{bottom:15px}
118
+.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close{position:absolute;top:12px;left:auto;right:12px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:35px;width:35px;}
119
+.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-close{right:auto;left:12px}
120
+.flowplayer .fp-unload,.flowplayer .fp-close{display:none}
121
+.flowplayer .fp-play{display:none;height:35px !important;position:absolute;bottom:0;left:0;text-align:center;}
122
+.is-rtl.flowplayer .fp-play{left:auto;right:0}
123
+.is-playing.flowplayer .fp-play:before{content:"\e607"}
124
+.flowplayer .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:12px;}
125
+.is-rtl.flowplayer .fp-menu{right:auto;left:12px}
126
+.has-menu.flowplayer .fp-menu{display:block}
127
+.flowplayer .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:153px;-webkit-transform:none;-moz-transform:none;transform:none;}
128
+.is-rtl.flowplayer .fp-menu .fp-dropdown{left:-12px}
129
+.flowplayer .fp-menu.dropdown-open .fp-dropdown{display:block}
130
+.flowplayer.is-ready.is-closeable .fp-unload{display:block}
131
+.flowplayer.is-ready.is-closeable .fp-embed{right:106px}
132
+.flowplayer.is-ready.is-closeable .fp-fullscreen{right:59px}
133
+.flowplayer.is-ready.is-closeable.is-rtl .fp-embed{right:auto;left:106px}
134
+.flowplayer.is-ready.is-closeable.is-rtl .fp-fullscreen{right:auto;left:59px}
135
+.flowplayer.is-fullscreen .fp-fullscreen{display:block !important;}
136
+.flowplayer.is-fullscreen .fp-fullscreen:before{content:"\e601"}
137
+.flowplayer .fp-timeline{height:3px;position:relative;overflow:hidden;top:12px;height:11px;margin:0 238px 0 59px;}
138
+.no-brand.flowplayer .fp-timeline{margin-right:171px;}
139
+.has-menu.no-brand.flowplayer .fp-timeline{margin-right:198px}
140
+.no-volume.no-brand.flowplayer .fp-timeline{margin-right:109px}
141
+.no-mute.no-brand.flowplayer .fp-timeline{margin-right:133px}
142
+.no-mute.no-volume.no-brand.flowplayer .fp-timeline{margin-right:59px}
143
+.has-menu.flowplayer .fp-timeline{margin-right:265px}
144
+.no-volume.flowplayer .fp-timeline{margin-right:176px}
145
+.no-mute.flowplayer .fp-timeline{margin-right:200px}
146
+.no-mute.no-volume.flowplayer .fp-timeline{margin-right:126px;}
147
+.has-menu.no-mute.no-volume.flowplayer .fp-timeline{margin-right:165px}
148
+.is-rtl.flowplayer .fp-timeline{margin:0 59px 0 238px;}
149
+.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:171px;}
150
+.has-menu.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:210px}
151
+.has-menu.is-rtl.flowplayer .fp-timeline{margin-left:277px}
152
+.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:109px}
153
+.no-mute.is-rtl.flowplayer .fp-timeline{margin-left:133px}
154
+.no-mute.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:59px}
155
+.is-long.flowplayer .fp-timeline{margin:0 268px 0 89px;}
156
+.no-volume.is-long.flowplayer .fp-timeline{margin-right:194px}
157
+.no-mute.is-long.flowplayer .fp-timeline{margin-right:144px}
158
+.has-menu.is-long.flowplayer .fp-timeline{margin-right:307px}
159
+.no-brand.is-long.flowplayer .fp-timeline{margin-right:201px;}
160
+.no-volume.no-brand.is-long.flowplayer .fp-timeline{margin-right:139px}
161
+.no-mute.no-brand.is-long.flowplayer .fp-timeline{margin-right:89px}
162
+.has-menu.no-brand.is-long.flowplayer .fp-timeline{margin-right:240px}
163
+.is-rtl.is-long.flowplayer .fp-timeline{margin:89px 0 201px 0;}
164
+.no-volume.is-rtl.is-long.flowplayer .fp-timeline{margin-left:139px}
165
+.no-mute.is-rtl.is-long.flowplayer .fp-timeline{margin-left:89px}
166
+.aside-time.flowplayer .fp-timeline,.no-time.flowplayer .fp-timeline{margin:0 203px 0 12px;}
167
+.has-menu.aside-time.flowplayer .fp-timeline,.has-menu.no-time.flowplayer .fp-timeline{margin-right:242px}
168
+.aside-time.no-brand.flowplayer .fp-timeline{margin-right:124px}
169
+.aside-time.no-volume.flowplayer .fp-timeline,.no-time.no-volume.flowplayer .fp-timeline{margin-right:129px}
170
+.aside-time.no-mute.flowplayer .fp-timeline,.no-time.no-mute.flowplayer .fp-timeline{margin-right:79px}
171
+.is-rtl.aside-time.flowplayer .fp-timeline,.is-rtl.no-time.flowplayer .fp-timeline{margin:0 12px 0 124px}
172
+.is-rtl.aside-time.no-volume.flowplayer .fp-timeline,.is-rtl.no-time.no-volume.flowplayer .fp-timeline{margin-left:62px}
173
+.is-rtl.aside-time.no-mute.flowplayer .fp-timeline,.is-rtl.no-time.no-mute.flowplayer .fp-timeline{margin-left:12px}
174
+.flowplayer .fp-buffer,.flowplayer .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
175
+.flowplayer .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
176
+.flowplayer .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
177
+.flowplayer .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
178
+.flowplayer.is-touch .fp-timeline{overflow:visible}
179
+.flowplayer.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
180
+.flowplayer.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
181
+.flowplayer.is-touch.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
182
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
183
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
184
+.flowplayer.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
185
+.flowplayer.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
186
+.flowplayer.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
187
+.flowplayer.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
188
+.flowplayer .fp-volume{position:absolute;height:11px;bottom:12px;right:12px;}
189
+.has-menu.flowplayer .fp-volume{right:39px}
190
+.is-rtl.flowplayer .fp-volume{right:auto;left:12px}
191
+.is-rtl.has-menu.flowplayer .fp-volume{left:39px}
192
+.flowplayer .fp-mute{position:relative;width:38px;height:20px;float:left;top:-4.5px;cursor:pointer;}
193
+.is-rtl.flowplayer .fp-mute{float:right}
194
+.no-mute.flowplayer .fp-mute{display:none}
195
+.flowplayer .fp-volumeslider{width:75px;height:11px;cursor:col-resize;float:left;}
196
+.is-rtl.flowplayer .fp-volumeslider{float:right}
197
+.no-volume.flowplayer .fp-volumeslider{display:none}
198
+.flowplayer .fp-volumelevel{height:100%}
199
+.flowplayer .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
200
+.flowplayer .fp-time.is-inverted .fp-duration{display:none}
201
+.flowplayer .fp-time.is-inverted .fp-remaining{display:inline}
202
+.flowplayer .fp-time em{width:35px;height:11px;line-height:11px;text-align:center;position:absolute;bottom:11px}
203
+.no-time.flowplayer .fp-time{display:none}
204
+.is-long.flowplayer .fp-time em{width:65px}
205
+.flowplayer .fp-elapsed{left:12px;}
206
+.is-rtl.flowplayer .fp-elapsed{left:auto;right:12px}
207
+.flowplayer .fp-remaining,.flowplayer .fp-duration{right:191px;color:#eee;}
208
+.no-brand.flowplayer .fp-remaining,.no-brand.flowplayer .fp-duration{right:136px;}
209
+.has-menu.no-brand.flowplayer .fp-remaining,.has-menu.no-brand.flowplayer .fp-duration{right:163px}
210
+.no-volume.no-brand.flowplayer .fp-remaining,.no-volume.no-brand.flowplayer .fp-duration{right:62px}
211
+.no-mute.no-brand.flowplayer .fp-remaining,.no-mute.no-brand.flowplayer .fp-duration{right:99px}
212
+.no-mute.no-volume.no-brand.flowplayer .fp-remaining,.no-mute.no-volume.no-brand.flowplayer .fp-duration{right:12px}
213
+.has-menu.flowplayer .fp-remaining,.has-menu.flowplayer .fp-duration{right:230px}
214
+.no-volume.flowplayer .fp-remaining,.no-volume.flowplayer .fp-duration{right:129px}
215
+.no-mute.flowplayer .fp-remaining,.no-mute.flowplayer .fp-duration{right:166px}
216
+.no-mute.no-volume.flowplayer .fp-remaining,.no-mute.no-volume.flowplayer .fp-duration{right:79px;}
217
+.has-menu.no-mute.no-volume.flowplayer .fp-remaining,.has-menu.no-mute.no-volume.flowplayer .fp-duration{right:118px}
218
+.is-rtl.flowplayer .fp-remaining,.is-rtl.flowplayer .fp-duration{right:auto;left:191px;}
219
+.no-brand.is-rtl.flowplayer .fp-remaining,.no-brand.is-rtl.flowplayer .fp-duration{left:124px;}
220
+.has-menu.no-brand.is-rtl.flowplayer .fp-remaining,.has-menu.no-brand.is-rtl.flowplayer .fp-duration{left:151px}
221
+.has-menu.is-rtl.flowplayer .fp-remaining,.has-menu.is-rtl.flowplayer .fp-duration{left:242px}
222
+.no-volume.is-rtl.flowplayer .fp-remaining,.no-volume.is-rtl.flowplayer .fp-duration{left:62px}
223
+.no-mute.is-rtl.flowplayer .fp-remaining,.no-mute.is-rtl.flowplayer .fp-duration{left:99px}
224
+.no-mute.no-volume.is-rtl.flowplayer .fp-remaining,.no-mute.no-volume.is-rtl.flowplayer .fp-duration{left:12px}
225
+.flowplayer .fp-remaining{display:none}
226
+.flowplayer.aside-time .fp-time{position:absolute;top:12px;left:12px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:35px;padding:0 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;line-height:35px;text-align:center;font-size:15px;}
227
+.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important}
228
+.flowplayer.aside-time .fp-time strong,.flowplayer.aside-time .fp-time em{position:static}
229
+.flowplayer.aside-time .fp-time .fp-elapsed::after{content:' / '}
230
+.flowplayer.is-splash,.flowplayer.is-poster{cursor:pointer;}
231
+.flowplayer.is-splash .fp-controls,.flowplayer.is-poster .fp-controls,.flowplayer.is-splash .fp-fullscreen,.flowplayer.is-poster .fp-fullscreen,.flowplayer.is-splash .fp-unload,.flowplayer.is-poster .fp-unload,.flowplayer.is-splash .fp-time,.flowplayer.is-poster .fp-time,.flowplayer.is-splash .fp-embed,.flowplayer.is-poster .fp-embed,.flowplayer.is-splash .fp-title,.flowplayer.is-poster .fp-title,.flowplayer.is-splash .fp-brand,.flowplayer.is-poster .fp-brand{display:none !important}
232
+.flowplayer.is-poster .fp-engine{top:-9999em}
233
+.flowplayer.is-loading .fp-waiting{display:block}
234
+.flowplayer.is-loading .fp-controls,.flowplayer.is-loading .fp-time{display:none}
235
+.flowplayer.is-loading .fp-ui{background-position:-9999em}
236
+.flowplayer.is-loading video.fp-engine{position:absolute;top:-9999em}
237
+.flowplayer.is-seeking .fp-waiting{display:block}
238
+.flowplayer.is-playing{background-image:none !important;background-color:#333;}
239
+.flowplayer.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
240
+.flowplayer.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
241
+.is-rtl.flowplayer.is-fullscreen{left:auto !important;right:0 !important}
242
+.flowplayer.is-fullscreen .fp-player{background-color:#333}
243
+.flowplayer.is-error{border:1px solid #909090;background:#fdfdfd !important;}
244
+.flowplayer.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
245
+.flowplayer.is-error .fp-message{display:block}
246
+.flowplayer.is-error object,.flowplayer.is-error video,.flowplayer.is-error .fp-controls,.flowplayer.is-error .fp-time,.flowplayer.is-error .fp-subtitle{display:none}
247
+.flowplayer.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
248
+.flowplayer.is-ready.is-muted .fp-mute:before{content:"\e605"}
249
+.flowplayer.is-mouseout .fp-controls{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
250
+.is-fullscreen.flowplayer.is-mouseout .fp-controls{height:3px;bottom:0}
251
+.flowplayer.is-mouseout .fp-title{overflow:hidden}
252
+.flowplayer.is-mouseout .fp-timeline{margin:0 !important}
253
+.flowplayer.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
254
+.flowplayer.is-mouseout .fp-fullscreen,.flowplayer.is-mouseout .fp-unload,.flowplayer.is-mouseout .fp-elapsed,.flowplayer.is-mouseout .fp-remaining,.flowplayer.is-mouseout .fp-duration,.flowplayer.is-mouseout .fp-embed,.flowplayer.is-mouseout .fp-title,.flowplayer.is-mouseout .fp-volume,.flowplayer.is-mouseout .fp-play,.flowplayer.is-mouseout .fp-menu,.flowplayer.is-mouseout .fp-brand,.flowplayer.is-mouseout .fp-timeline-tooltip,.flowplayer.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
255
+.flowplayer.is-mouseover .fp-controls,.flowplayer.fixed-controls .fp-controls{height:35px}
256
+.flowplayer.is-mouseover .fp-title,.flowplayer.fixed-controls .fp-title{height:35px}
257
+.flowplayer.is-mouseover .fp-fullscreen,.flowplayer.fixed-controls .fp-fullscreen,.flowplayer.is-mouseover .fp-unload,.flowplayer.fixed-controls .fp-unload,.flowplayer.is-mouseover .fp-elapsed,.flowplayer.fixed-controls .fp-elapsed,.flowplayer.is-mouseover .fp-remaining,.flowplayer.fixed-controls .fp-remaining,.flowplayer.is-mouseover .fp-duration,.flowplayer.fixed-controls .fp-duration,.flowplayer.is-mouseover .fp-embed,.flowplayer.fixed-controls .fp-embed,.flowplayer.is-mouseover .fp-logo,.flowplayer.fixed-controls .fp-logo,.flowplayer.is-mouseover .fp-volume,.flowplayer.fixed-controls .fp-volume,.flowplayer.is-mouseover .fp-play,.flowplayer.fixed-controls .fp-play,.flowplayer.is-mouseover .fp-menu,.flowplayer.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
258
+.flowplayer.fixed-controls .fp-volume{display:block}
259
+.flowplayer.fixed-controls .fp-controls{bottom:-35px;}
260
+.is-fullscreen.flowplayer.fixed-controls .fp-controls{bottom:0}
261
+.flowplayer.fixed-controls .fp-time em{bottom:-23px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
262
+.is-fullscreen.flowplayer.fixed-controls .fp-time em{bottom:12px}
263
+.flowplayer.is-disabled .fp-progress{background-color:#999}
264
+.flowplayer.is-flash-disabled{background-color:#333;}
265
+.flowplayer.is-flash-disabled object.fp-engine{z-index:100}
266
+.flowplayer.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
267
+.flowplayer .fp-embed{position:absolute;top:12px;left:auto;right:59px;display:block;width:35px;height:35px;text-align:center;}
268
+.is-rtl.flowplayer .fp-embed{right:auto;left:59px}
269
+.flowplayer .fp-embed-code{position:absolute;display:none;top:10px;right:77px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
270
+.is-closeable.flowplayer .fp-embed-code{right:114px}
271
+.flowplayer .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
272
+.is-rtl.flowplayer .fp-embed-code{right:auto;left:77px;}
273
+.is-rtl.flowplayer .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
274
+.flowplayer .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
275
+.flowplayer .fp-embed-code label{display:block;color:#999}
276
+.flowplayer.is-embedding .fp-embed,.flowplayer.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
277
+.flowplayer.no-time .fp-embed{left:12px !important;}
278
+.is-rtl.flowplayer.no-time .fp-embed{left:auto;right:12px !important}
279
+.flowplayer.is-live .fp-timeline,.flowplayer.is-live .fp-duration,.flowplayer.is-live .fp-remaining{display:none}
280
+.flowplayer .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
281
+.flowplayer .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
282
+.flowplayer .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
283
+.flowplayer .fp-context-menu li:hover:not(.copyright){background-color:#eee}
284
+.flowplayer .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
285
+@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){.flowplayer .fp-context-menu li.copyright{background-image:url("img/flowplayer@2x.png")}
286
+}@-moz-keyframes pulse{0%{opacity:0}
287
+100%{opacity:1}
288
+}@-webkit-keyframes pulse{0%{opacity:0}
289
+100%{opacity:1}
290
+}@-o-keyframes pulse{0%{opacity:0}
291
+100%{opacity:1}
292
+}@-ms-keyframes pulse{0%{opacity:0}
293
+100%{opacity:1}
294
+}@keyframes pulse{0%{opacity:0}
295
+100%{opacity:1}
296
+}.flowplayer.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
297
+.flowplayer .fp-title{position:absolute;top:12px;left:12px;}
298
+.is-rtl.flowplayer .fp-title{left:auto;right:12px}
299
+.flowplayer .fp-title,.flowplayer .fp-unload,.flowplayer .fp-fullscreen,.flowplayer .fp-embed{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
300
+.flowplayer .fp-embed-code{right:99px;}
301
+.is-closeable.flowplayer .fp-embed-code{right:146px}
302
+.is-rtl.flowplayer .fp-embed-code{right:auto;left:99px}
303
+.flowplayer.is-mouseout .fp-menu{display:none}
304
+.flowplayer.is-mouseout .fp-controls{-webkit-transition:none;-moz-transition:none;transition:none;-webkit-animation:functional-controls-hide 1s 1;-moz-animation:functional-controls-hide 1s 1;animation:functional-controls-hide 1s 1}
305
+.flowplayer.is-mouseout .fp-timeline{-webkit-transition:none;-moz-transition:none;transition:none}
306
+.flowplayer.is-mouseout .fp-volume,.flowplayer.is-mouseout .fp-brand,.flowplayer.is-mouseout .fp-play,.flowplayer.is-mouseout .fp-time{-webkit-transition:none;-moz-transition:none;transition:none;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
307
+.flowplayer.fixed-controls .fp-elapsed,.flowplayer.fixed-controls.is-mouseover .fp-elapsed{left:59px}
308
+.flowplayer.fixed-controls .fp-controls,.flowplayer.fixed-controls.is-mouseover .fp-controls{bottom:-35px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;left:0;right:0;}
309
+.is-fullscreen.flowplayer.fixed-controls .fp-controls,.is-fullscreen.flowplayer.fixed-controls.is-mouseover .fp-controls{bottom:0}
310
+.flowplayer.fixed-controls .fp-controls .fp-play,.flowplayer.fixed-controls.is-mouseover .fp-controls .fp-play{left:12px}
311
+.flowplayer.fixed-controls .fp-controls .fp-timeline,.flowplayer.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:106px;}
312
+.is-long.flowplayer.fixed-controls .fp-controls .fp-timeline,.is-long.flowplayer.fixed-controls.is-mouseover .fp-controls .fp-timeline{margin-left:136px}
313
+.flowplayer.is-mouseover .fp-controls{bottom:12px;left:59px;right:12px;width:auto;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
314
+.is-rtl.flowplayer.is-mouseover .fp-controls{left:12px;right:59px}
315
+.flowplayer.is-mouseover .fp-controls .fp-play{left:-47px;display:block;background-color:#000;background-color:rgba(0,0,0,0.65);width:35px;height:35px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
316
+.is-rtl.flowplayer.is-mouseover .fp-controls .fp-play{left:auto;right:-47px}
317
+.flowplayer.is-mouseover .fp-controls .fp-timeline{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
318
+.flowplayer.is-mouseover .fp-controls .fp-timeline .fp-progress,.flowplayer.is-mouseover .fp-controls .fp-timeline .fp-buffer{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
319
+.flowplayer.is-mouseover .fp-controls .fp-menu .fp-dropdown{bottom:41px;left:auto;right:-12px;}
320
+.is-rtl.flowplayer.is-mouseover .fp-controls .fp-menu .fp-dropdown{right:auto;left:-12px}
321
+.flowplayer.is-mouseover .fp-controls .fp-menu .fp-dropdown:before{display:none}
322
+.flowplayer.is-mouseover .fp-controls li{border-color:#000;}
323
+.flowplayer.is-mouseover .fp-controls li.active{border-color:#00a7c8}
324
+.flowplayer.is-mouseover .fp-controls li:last-child:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;right:12px;border-bottom:none;border-top-width:5px;border-top-style:solid;border-top-color:inherit;border-left:5px solid transparent;border-right:5px solid transparent;}
325
+.is-rtl.flowplayer.is-mouseover .fp-controls li:last-child:before{right:auto;left:12px}
326
+.flowplayer .fp-elapsed,.flowplayer.play-button .fp-elapsed{left:71px;}
327
+.is-rtl.flowplayer .fp-elapsed,.is-rtl.flowplayer.play-button .fp-elapsed{right:71px;left:auto}
328
+.flowplayer .fp-time em{bottom:23px}
329
+@-moz-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
330
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
331
+}@-webkit-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
332
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
333
+}@-o-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
334
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
335
+}@-ms-keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
336
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
337
+}@keyframes functional-controls-hide{0%{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}
338
+100%{bottom:0;right:0;left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
339
+}.flowplayer .fp-controls,.flowplayer .fp-title,.flowplayer .fp-embed,.flowplayer .fp-play,.flowplayer .fp-fullscreen,.flowplayer .fp-close,.flowplayer.aside-time .fp-time,.flowplayer .fp-unload{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(136,136,136,0.85)),to(rgba(0,0,0,0.85)));background-image:-webkit-linear-gradient(top,rgba(136,136,136,0.85),rgba(0,0,0,0.85));background-image:-moz-linear-gradient(top,rgba(136,136,136,0.85),rgba(0,0,0,0.85));background-image:-o-linear-gradient(top,rgba(136,136,136,0.85),rgba(0,0,0,0.85));background-image:linear-gradient(to bottom,rgba(136,136,136,0.85),rgba(0,0,0,0.85));color:#eee !important;}
340
+.flowplayer .fp-controls:before,.flowplayer .fp-title:before,.flowplayer .fp-embed:before,.flowplayer .fp-play:before,.flowplayer .fp-fullscreen:before,.flowplayer .fp-close:before,.flowplayer.aside-time .fp-time:before,.flowplayer .fp-unload:before{color:#eee}
341
+.flowplayer .fp-dropdown{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
342
+.flowplayer .fp-dropdown li:last-child{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px}
343
+.flowplayer .fp-fullscreen:before,.flowplayer .fp-unload:before,.flowplayer .fp-mute:before,.flowplayer .fp-embed:before,.flowplayer .fp-close:before,.flowplayer .fp-play:before,.flowplayer .fp-menu:before{vertical-align:-2px}
344
+.flowplayer .fp-controls .fp-menu{bottom:3px;}
345
+.is-mouseover.flowplayer .fp-controls .fp-menu .fp-dropdown{bottom:36px}
346
+.flowplayer .fp-volumeslider{height:8px;margin-top:1px;margin-left:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
347
+.flowplayer .fp-volumeslider .fp-volumelevel{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
348
+.flowplayer .fp-mute{top:-9.5px;}
349
+.flowplayer .fp-mute:before{content:"\e60c";vertical-align:0;}
350
+.is-muted.is-ready.flowplayer .fp-mute:before{content:"\e60c";color:#ccc}
351
+.flowplayer .fp-mute:after{content:'';background-color:#9ebb11;width:6px;height:6px;display:block;position:absolute;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;right:2px;top:11px;}
352
+.is-muted.flowplayer .fp-mute:after{background-color:#f00}