<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.views_slideshow_controls_text span:hover{text-decoration:underline;cursor:pointer;}
/*})'"*/
.views_slideshow_cycle_no_display,.views_slideshow_cycle_hidden,.views_slideshow_cycle_controls,.views_slideshow_cycle_image_count{display:none;}.views_slideshow_cycle_pager div a img{width:75px;height:75px;}.views_slideshow_pager_numbered div,.views_slideshow_pager_thumbnails div{display:inline;padding-left:10px;}.views_slideshow_cycle_pager.thumbnails a.activeSlide img{border:3px solid #000;}.views_slideshow_cycle_pager.numbered a.activeSlide{text-decoration:underline;}
/*})'"*/
ï»¿
   
  
  (function($){$.fn.hoverIntent = function(handlerIn,handlerOut,selector){// default configuration values
          var cfg ={interval:100,sensitivity:7,timeout:0};if (typeof handlerIn === "object"){cfg = $.extend(cfg,handlerIn);}else if ($.isFunction(handlerOut)){cfg = $.extend(cfg,{over:handlerIn,out:handlerOut,selector:selector});}else{cfg = $.extend(cfg,{over:handlerIn,out:handlerIn,selector:handlerOut});}// instantiate variables
          // cX,cY = current X and Y position of mouse,updated by mousemove event
          // pX,pY = previous X and Y position of mouse,set by mouseover and polling interval
          var cX,cY,pX,pY;// A private function for getting mouse position
          var track = function(ev){cX = ev.pageX;cY = ev.pageY;};// A private function for comparing current and previous mouse position
          var compare = function(ev,ob){ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);// compare mouse positions to see if they've crossed the threshold
              if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) &lt; cfg.sensitivity ) {
                  $(ob).off("mousemove.hoverIntent",track);
                  // set hoverIntent state to true (so mouseOut can be called)
                  ob.hoverIntent_s = 1;
                  return cfg.over.apply(ob,[ev]);
              } else {
                  // set previous coordinates for next time
                  pX = cX; pY = cY;
                  // use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
                  ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
              }
          };
  
          // A private function for delaying the mouseOut function
          var delay = function(ev,ob) {
              ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
              ob.hoverIntent_s = 0;
              return cfg.out.apply(ob,[ev]);
          };
  
          // A private function for handling mouse 'hovering'
          var handleHover = function(e) {
              // copy objects to be passed into t (required for event object to be passed in IE)
              var ev = jQuery.extend({},e);
              var ob = this;
  
              // cancel hoverIntent timer if it exists
              if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }
  
              // if e.type == "mouseenter"
              if (e.type == "mouseenter") {
                  // set "previous" X and Y position based on initial entry point
                  pX = ev.pageX; pY = ev.pageY;
                  // update "current" X and Y position based on mousemove
                  $(ob).on("mousemove.hoverIntent",track);
                  // start polling interval (self-calling timeout) to compare mouse coordinates over time
                  if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}
  
                  // else e.type == "mouseleave"
              } else {
                  // unbind expensive mousemove event
                  $(ob).off("mousemove.hoverIntent",track);
                  // if hoverIntent state is true, then call the mouseOut function after the specified delay
                  if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
              }
          };
  
          // listen for mouseenter and mouseleave
          return this.on({'mouseenter.hoverIntent':handleHover,'mouseleave.hoverIntent':handleHover},cfg.selector);};})(jQuery);
/*})'"*/
.top-bar &gt; ul.menu{background-color:#222;display:block;height:auto;max-height:320px;overflow-y:auto;margin:0;width:100%;}.top-bar &gt; ul.menu li{position:relative;}.top-bar &gt; ul.menu li &gt; a{color:#FFFFFF;display:block;font-size:14px;font-weight:bold;padding:12px 15px;}.top-bar &gt; ul.menu li:hover &gt; a{background-color:#000;}.top-bar &gt; ul.menu li &gt; .head{color:rgba(255,255,255,0.5);cursor:pointer;font-family:fontawesome;height:45px;line-height:44px;position:absolute;right:0;text-align:center;width:45px;z-index:99;}.top-bar &gt; ul.menu li &gt; .head:before{content:"\f0d7";}.top-bar &gt; ul.menu li &gt; .head.click:before{content:"\f0d8";}.top-bar &gt; ul.menu li ul.menu{display:none;}.top-bar &gt; ul.menu li &gt; .head.click +  ul.menu{display:block;}
/*})'"*/
</pre></body></html>