@northdata/fomantic-ui 2.8.714 → 2.8.715

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2536,6 +2536,625 @@ $.fn.form.settings = {
2536
2536
 
2537
2537
  })( jQuery, window, document );
2538
2538
 
2539
+ /*!
2540
+ * # Fomantic-UI - Accordion
2541
+ * http://github.com/fomantic/Fomantic-UI/
2542
+ *
2543
+ *
2544
+ * Released under the MIT license
2545
+ * http://opensource.org/licenses/MIT
2546
+ *
2547
+ */
2548
+
2549
+ ;(function ($, window, document, undefined) {
2550
+
2551
+ 'use strict';
2552
+
2553
+ $.isFunction = $.isFunction || function(obj) {
2554
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
2555
+ };
2556
+
2557
+ window = (typeof window != 'undefined' && window.Math == Math)
2558
+ ? window
2559
+ : (typeof self != 'undefined' && self.Math == Math)
2560
+ ? self
2561
+ : Function('return this')()
2562
+ ;
2563
+
2564
+ $.fn.accordion = function(parameters) {
2565
+ var
2566
+ $allModules = $(this),
2567
+
2568
+ time = new Date().getTime(),
2569
+ performance = [],
2570
+
2571
+ query = arguments[0],
2572
+ methodInvoked = (typeof query == 'string'),
2573
+ queryArguments = [].slice.call(arguments, 1),
2574
+
2575
+ returnedValue
2576
+ ;
2577
+ $allModules
2578
+ .each(function() {
2579
+ var
2580
+ settings = ( $.isPlainObject(parameters) )
2581
+ ? $.extend(true, {}, $.fn.accordion.settings, parameters)
2582
+ : $.extend({}, $.fn.accordion.settings),
2583
+
2584
+ className = settings.className,
2585
+ namespace = settings.namespace,
2586
+ selector = settings.selector,
2587
+ error = settings.error,
2588
+
2589
+ eventNamespace = '.' + namespace,
2590
+ moduleNamespace = 'module-' + namespace,
2591
+ moduleSelector = $allModules.selector || '',
2592
+
2593
+ $module = $(this),
2594
+ $title = $module.find(selector.title),
2595
+ $content = $module.find(selector.content),
2596
+
2597
+ element = this,
2598
+ instance = $module.data(moduleNamespace),
2599
+ observer,
2600
+ module
2601
+ ;
2602
+
2603
+ module = {
2604
+
2605
+ initialize: function() {
2606
+ module.debug('Initializing', $module);
2607
+ module.bind.events();
2608
+ if(settings.observeChanges) {
2609
+ module.observeChanges();
2610
+ }
2611
+ module.instantiate();
2612
+ },
2613
+
2614
+ instantiate: function() {
2615
+ instance = module;
2616
+ $module
2617
+ .data(moduleNamespace, module)
2618
+ ;
2619
+ },
2620
+
2621
+ destroy: function() {
2622
+ module.debug('Destroying previous instance', $module);
2623
+ $module
2624
+ .off(eventNamespace)
2625
+ .removeData(moduleNamespace)
2626
+ ;
2627
+ },
2628
+
2629
+ refresh: function() {
2630
+ $title = $module.find(selector.title);
2631
+ $content = $module.find(selector.content);
2632
+ },
2633
+
2634
+ observeChanges: function() {
2635
+ if('MutationObserver' in window) {
2636
+ observer = new MutationObserver(function(mutations) {
2637
+ module.debug('DOM tree modified, updating selector cache');
2638
+ module.refresh();
2639
+ });
2640
+ observer.observe(element, {
2641
+ childList : true,
2642
+ subtree : true
2643
+ });
2644
+ module.debug('Setting up mutation observer', observer);
2645
+ }
2646
+ },
2647
+
2648
+ bind: {
2649
+ events: function() {
2650
+ module.debug('Binding delegated events');
2651
+ $module
2652
+ .on(settings.on + eventNamespace, selector.trigger, module.event.click)
2653
+ ;
2654
+ }
2655
+ },
2656
+
2657
+ event: {
2658
+ click: function() {
2659
+ module.toggle.call(this);
2660
+ }
2661
+ },
2662
+
2663
+ toggle: function(query) {
2664
+ var
2665
+ $activeTitle = (query !== undefined)
2666
+ ? (typeof query === 'number')
2667
+ ? $title.eq(query)
2668
+ : $(query).closest(selector.title)
2669
+ : $(this).closest(selector.title),
2670
+ $activeContent = $activeTitle.next($content),
2671
+ isAnimating = $activeContent.hasClass(className.animating),
2672
+ isActive = $activeContent.hasClass(className.active),
2673
+ isOpen = (isActive && !isAnimating),
2674
+ isOpening = (!isActive && isAnimating)
2675
+ ;
2676
+ module.debug('Toggling visibility of content', $activeTitle);
2677
+ if(isOpen || isOpening) {
2678
+ if(settings.collapsible) {
2679
+ module.close.call($activeTitle);
2680
+ }
2681
+ else {
2682
+ module.debug('Cannot close accordion content collapsing is disabled');
2683
+ }
2684
+ }
2685
+ else {
2686
+ module.open.call($activeTitle);
2687
+ }
2688
+ },
2689
+
2690
+ open: function(query) {
2691
+ var
2692
+ $activeTitle = (query !== undefined)
2693
+ ? (typeof query === 'number')
2694
+ ? $title.eq(query)
2695
+ : $(query).closest(selector.title)
2696
+ : $(this).closest(selector.title),
2697
+ $activeContent = $activeTitle.next($content),
2698
+ isAnimating = $activeContent.hasClass(className.animating),
2699
+ isActive = $activeContent.hasClass(className.active),
2700
+ isOpen = (isActive || isAnimating)
2701
+ ;
2702
+ if(isOpen) {
2703
+ module.debug('Accordion already open, skipping', $activeContent);
2704
+ return;
2705
+ }
2706
+ module.debug('Opening accordion content', $activeTitle);
2707
+ settings.onOpening.call($activeContent);
2708
+ settings.onChanging.call($activeContent);
2709
+ if(settings.exclusive) {
2710
+ module.closeOthers.call($activeTitle);
2711
+ }
2712
+ $activeTitle
2713
+ .addClass(className.active)
2714
+ ;
2715
+ $activeContent
2716
+ .stop(true, true)
2717
+ .addClass(className.animating)
2718
+ ;
2719
+ if(settings.animateChildren) {
2720
+ if($.fn.transition !== undefined && $module.transition('is supported')) {
2721
+ $activeContent
2722
+ .children()
2723
+ .transition({
2724
+ animation : 'fade in',
2725
+ queue : false,
2726
+ useFailSafe : true,
2727
+ debug : settings.debug,
2728
+ verbose : settings.verbose,
2729
+ duration : settings.duration,
2730
+ skipInlineHidden : true,
2731
+ onComplete: function() {
2732
+ $activeContent.children().removeClass(className.transition);
2733
+ }
2734
+ })
2735
+ ;
2736
+ }
2737
+ else {
2738
+ $activeContent
2739
+ .children()
2740
+ .stop(true, true)
2741
+ .animate({
2742
+ opacity: 1
2743
+ }, settings.duration, module.resetOpacity)
2744
+ ;
2745
+ }
2746
+ }
2747
+ $activeContent
2748
+ .slideDown(settings.duration, settings.easing, function() {
2749
+ $activeContent
2750
+ .removeClass(className.animating)
2751
+ .addClass(className.active)
2752
+ ;
2753
+ module.reset.display.call(this);
2754
+ settings.onOpen.call(this);
2755
+ settings.onChange.call(this);
2756
+ })
2757
+ ;
2758
+ },
2759
+
2760
+ close: function(query) {
2761
+ var
2762
+ $activeTitle = (query !== undefined)
2763
+ ? (typeof query === 'number')
2764
+ ? $title.eq(query)
2765
+ : $(query).closest(selector.title)
2766
+ : $(this).closest(selector.title),
2767
+ $activeContent = $activeTitle.next($content),
2768
+ isAnimating = $activeContent.hasClass(className.animating),
2769
+ isActive = $activeContent.hasClass(className.active),
2770
+ isOpening = (!isActive && isAnimating),
2771
+ isClosing = (isActive && isAnimating)
2772
+ ;
2773
+ if((isActive || isOpening) && !isClosing) {
2774
+ module.debug('Closing accordion content', $activeContent);
2775
+ settings.onClosing.call($activeContent);
2776
+ settings.onChanging.call($activeContent);
2777
+ $activeTitle
2778
+ .removeClass(className.active)
2779
+ ;
2780
+ $activeContent
2781
+ .stop(true, true)
2782
+ .addClass(className.animating)
2783
+ ;
2784
+ if(settings.animateChildren) {
2785
+ if($.fn.transition !== undefined && $module.transition('is supported')) {
2786
+ $activeContent
2787
+ .children()
2788
+ .transition({
2789
+ animation : 'fade out',
2790
+ queue : false,
2791
+ useFailSafe : true,
2792
+ debug : settings.debug,
2793
+ verbose : settings.verbose,
2794
+ duration : settings.duration,
2795
+ skipInlineHidden : true
2796
+ })
2797
+ ;
2798
+ }
2799
+ else {
2800
+ $activeContent
2801
+ .children()
2802
+ .stop(true, true)
2803
+ .animate({
2804
+ opacity: 0
2805
+ }, settings.duration, module.resetOpacity)
2806
+ ;
2807
+ }
2808
+ }
2809
+ $activeContent
2810
+ .slideUp(settings.duration, settings.easing, function() {
2811
+ $activeContent
2812
+ .removeClass(className.animating)
2813
+ .removeClass(className.active)
2814
+ ;
2815
+ module.reset.display.call(this);
2816
+ settings.onClose.call(this);
2817
+ settings.onChange.call(this);
2818
+ })
2819
+ ;
2820
+ }
2821
+ },
2822
+
2823
+ closeOthers: function(index) {
2824
+ var
2825
+ $activeTitle = (index !== undefined)
2826
+ ? $title.eq(index)
2827
+ : $(this).closest(selector.title),
2828
+ $parentTitles = $activeTitle.parents(selector.content).prev(selector.title),
2829
+ $activeAccordion = $activeTitle.closest(selector.accordion),
2830
+ activeSelector = selector.title + '.' + className.active + ':visible',
2831
+ activeContent = selector.content + '.' + className.active + ':visible',
2832
+ $openTitles,
2833
+ $nestedTitles,
2834
+ $openContents
2835
+ ;
2836
+ if(settings.closeNested) {
2837
+ $openTitles = $activeAccordion.find(activeSelector).not($parentTitles);
2838
+ $openContents = $openTitles.next($content);
2839
+ }
2840
+ else {
2841
+ $openTitles = $activeAccordion.find(activeSelector).not($parentTitles);
2842
+ $nestedTitles = $activeAccordion.find(activeContent).find(activeSelector).not($parentTitles);
2843
+ $openTitles = $openTitles.not($nestedTitles);
2844
+ $openContents = $openTitles.next($content);
2845
+ }
2846
+ if( ($openTitles.length > 0) ) {
2847
+ module.debug('Exclusive enabled, closing other content', $openTitles);
2848
+ $openTitles
2849
+ .removeClass(className.active)
2850
+ ;
2851
+ $openContents
2852
+ .removeClass(className.animating)
2853
+ .stop(true, true)
2854
+ ;
2855
+ if(settings.animateChildren) {
2856
+ if($.fn.transition !== undefined && $module.transition('is supported')) {
2857
+ $openContents
2858
+ .children()
2859
+ .transition({
2860
+ animation : 'fade out',
2861
+ useFailSafe : true,
2862
+ debug : settings.debug,
2863
+ verbose : settings.verbose,
2864
+ duration : settings.duration,
2865
+ skipInlineHidden : true
2866
+ })
2867
+ ;
2868
+ }
2869
+ else {
2870
+ $openContents
2871
+ .children()
2872
+ .stop(true, true)
2873
+ .animate({
2874
+ opacity: 0
2875
+ }, settings.duration, module.resetOpacity)
2876
+ ;
2877
+ }
2878
+ }
2879
+ $openContents
2880
+ .slideUp(settings.duration , settings.easing, function() {
2881
+ $(this).removeClass(className.active);
2882
+ module.reset.display.call(this);
2883
+ })
2884
+ ;
2885
+ }
2886
+ },
2887
+
2888
+ reset: {
2889
+
2890
+ display: function() {
2891
+ module.verbose('Removing inline display from element', this);
2892
+ $(this).css('display', '');
2893
+ if( $(this).attr('style') === '') {
2894
+ $(this)
2895
+ .attr('style', '')
2896
+ .removeAttr('style')
2897
+ ;
2898
+ }
2899
+ },
2900
+
2901
+ opacity: function() {
2902
+ module.verbose('Removing inline opacity from element', this);
2903
+ $(this).css('opacity', '');
2904
+ if( $(this).attr('style') === '') {
2905
+ $(this)
2906
+ .attr('style', '')
2907
+ .removeAttr('style')
2908
+ ;
2909
+ }
2910
+ },
2911
+
2912
+ },
2913
+
2914
+ setting: function(name, value) {
2915
+ module.debug('Changing setting', name, value);
2916
+ if( $.isPlainObject(name) ) {
2917
+ $.extend(true, settings, name);
2918
+ }
2919
+ else if(value !== undefined) {
2920
+ if($.isPlainObject(settings[name])) {
2921
+ $.extend(true, settings[name], value);
2922
+ }
2923
+ else {
2924
+ settings[name] = value;
2925
+ }
2926
+ }
2927
+ else {
2928
+ return settings[name];
2929
+ }
2930
+ },
2931
+ internal: function(name, value) {
2932
+ module.debug('Changing internal', name, value);
2933
+ if(value !== undefined) {
2934
+ if( $.isPlainObject(name) ) {
2935
+ $.extend(true, module, name);
2936
+ }
2937
+ else {
2938
+ module[name] = value;
2939
+ }
2940
+ }
2941
+ else {
2942
+ return module[name];
2943
+ }
2944
+ },
2945
+ debug: function() {
2946
+ if(!settings.silent && settings.debug) {
2947
+ if(settings.performance) {
2948
+ module.performance.log(arguments);
2949
+ }
2950
+ else {
2951
+ module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
2952
+ module.debug.apply(console, arguments);
2953
+ }
2954
+ }
2955
+ },
2956
+ verbose: function() {
2957
+ if(!settings.silent && settings.verbose && settings.debug) {
2958
+ if(settings.performance) {
2959
+ module.performance.log(arguments);
2960
+ }
2961
+ else {
2962
+ module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
2963
+ module.verbose.apply(console, arguments);
2964
+ }
2965
+ }
2966
+ },
2967
+ error: function() {
2968
+ if(!settings.silent) {
2969
+ module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
2970
+ module.error.apply(console, arguments);
2971
+ }
2972
+ },
2973
+ performance: {
2974
+ log: function(message) {
2975
+ var
2976
+ currentTime,
2977
+ executionTime,
2978
+ previousTime
2979
+ ;
2980
+ if(settings.performance) {
2981
+ currentTime = new Date().getTime();
2982
+ previousTime = time || currentTime;
2983
+ executionTime = currentTime - previousTime;
2984
+ time = currentTime;
2985
+ performance.push({
2986
+ 'Name' : message[0],
2987
+ 'Arguments' : [].slice.call(message, 1) || '',
2988
+ 'Element' : element,
2989
+ 'Execution Time' : executionTime
2990
+ });
2991
+ }
2992
+ clearTimeout(module.performance.timer);
2993
+ module.performance.timer = setTimeout(module.performance.display, 500);
2994
+ },
2995
+ display: function() {
2996
+ var
2997
+ title = settings.name + ':',
2998
+ totalTime = 0
2999
+ ;
3000
+ time = false;
3001
+ clearTimeout(module.performance.timer);
3002
+ $.each(performance, function(index, data) {
3003
+ totalTime += data['Execution Time'];
3004
+ });
3005
+ title += ' ' + totalTime + 'ms';
3006
+ if(moduleSelector) {
3007
+ title += ' \'' + moduleSelector + '\'';
3008
+ }
3009
+ if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
3010
+ console.groupCollapsed(title);
3011
+ if(console.table) {
3012
+ console.table(performance);
3013
+ }
3014
+ else {
3015
+ $.each(performance, function(index, data) {
3016
+ console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
3017
+ });
3018
+ }
3019
+ console.groupEnd();
3020
+ }
3021
+ performance = [];
3022
+ }
3023
+ },
3024
+ invoke: function(query, passedArguments, context) {
3025
+ var
3026
+ object = instance,
3027
+ maxDepth,
3028
+ found,
3029
+ response
3030
+ ;
3031
+ passedArguments = passedArguments || queryArguments;
3032
+ context = element || context;
3033
+ if(typeof query == 'string' && object !== undefined) {
3034
+ query = query.split(/[\. ]/);
3035
+ maxDepth = query.length - 1;
3036
+ $.each(query, function(depth, value) {
3037
+ var camelCaseValue = (depth != maxDepth)
3038
+ ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
3039
+ : query
3040
+ ;
3041
+ if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
3042
+ object = object[camelCaseValue];
3043
+ }
3044
+ else if( object[camelCaseValue] !== undefined ) {
3045
+ found = object[camelCaseValue];
3046
+ return false;
3047
+ }
3048
+ else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
3049
+ object = object[value];
3050
+ }
3051
+ else if( object[value] !== undefined ) {
3052
+ found = object[value];
3053
+ return false;
3054
+ }
3055
+ else {
3056
+ module.error(error.method, query);
3057
+ return false;
3058
+ }
3059
+ });
3060
+ }
3061
+ if ( $.isFunction( found ) ) {
3062
+ response = found.apply(context, passedArguments);
3063
+ }
3064
+ else if(found !== undefined) {
3065
+ response = found;
3066
+ }
3067
+ if(Array.isArray(returnedValue)) {
3068
+ returnedValue.push(response);
3069
+ }
3070
+ else if(returnedValue !== undefined) {
3071
+ returnedValue = [returnedValue, response];
3072
+ }
3073
+ else if(response !== undefined) {
3074
+ returnedValue = response;
3075
+ }
3076
+ return found;
3077
+ }
3078
+ };
3079
+ if(methodInvoked) {
3080
+ if(instance === undefined) {
3081
+ module.initialize();
3082
+ }
3083
+ module.invoke(query);
3084
+ }
3085
+ else {
3086
+ if(instance !== undefined) {
3087
+ instance.invoke('destroy');
3088
+ }
3089
+ module.initialize();
3090
+ }
3091
+ })
3092
+ ;
3093
+ return (returnedValue !== undefined)
3094
+ ? returnedValue
3095
+ : this
3096
+ ;
3097
+ };
3098
+
3099
+ $.fn.accordion.settings = {
3100
+
3101
+ name : 'Accordion',
3102
+ namespace : 'accordion',
3103
+
3104
+ silent : false,
3105
+ debug : false,
3106
+ verbose : false,
3107
+ performance : true,
3108
+
3109
+ on : 'click', // event on title that opens accordion
3110
+
3111
+ observeChanges : true, // whether accordion should automatically refresh on DOM insertion
3112
+
3113
+ exclusive : true, // whether a single accordion content panel should be open at once
3114
+ collapsible : true, // whether accordion content can be closed
3115
+ closeNested : false, // whether nested content should be closed when a panel is closed
3116
+ animateChildren : true, // whether children opacity should be animated
3117
+
3118
+ duration : 350, // duration of animation
3119
+ easing : 'easeOutQuad', // easing equation for animation
3120
+
3121
+ onOpening : function(){}, // callback before open animation
3122
+ onClosing : function(){}, // callback before closing animation
3123
+ onChanging : function(){}, // callback before closing or opening animation
3124
+
3125
+ onOpen : function(){}, // callback after open animation
3126
+ onClose : function(){}, // callback after closing animation
3127
+ onChange : function(){}, // callback after closing or opening animation
3128
+
3129
+ error: {
3130
+ method : 'The method you called is not defined'
3131
+ },
3132
+
3133
+ className : {
3134
+ active : 'active',
3135
+ animating : 'animating',
3136
+ transition: 'transition'
3137
+ },
3138
+
3139
+ selector : {
3140
+ accordion : '.accordion',
3141
+ title : '.title',
3142
+ trigger : '.title',
3143
+ content : '.content'
3144
+ }
3145
+
3146
+ };
3147
+
3148
+ // Adds easing
3149
+ $.extend( $.easing, {
3150
+ easeOutQuad: function (x, t, b, c, d) {
3151
+ return -c *(t/=d)*(t-2) + b;
3152
+ }
3153
+ });
3154
+
3155
+ })( jQuery, window, document );
3156
+
3157
+
2539
3158
  /*!
2540
3159
  * # Fomantic-UI - Calendar
2541
3160
  * http://github.com/fomantic/Fomantic-UI/
@@ -167,6 +167,14 @@
167
167
  * http://opensource.org/licenses/MIT
168
168
  *
169
169
  */.ui.items>.item{display:-webkit-box;display:-ms-flexbox;display:flex;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:-webkit-box-shadow .1s ease;transition:-webkit-box-shadow .1s ease;transition:box-shadow .1s ease;transition:box-shadow .1s ease,-webkit-box-shadow .1s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:block;float:none;margin:0;padding:0;max-height:'';-ms-flex-item-align:start;align-self:start}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.content{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;background:0 0;color:rgba(0,0,0,.87);margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{min-width:0;width:auto;display:block;margin-left:0;-ms-flex-item-align:start;align-self:start;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:-.21425em 0 0;font-family:"Josefin Sans",serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.28571429em}.ui.items>.item [class*="left floated"]{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{-ms-flex-item-align:center;align-self:center;width:''}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:'';height:'';border-radius:500rem}.ui.items>.item>.content>.description{margin-top:.6em;max-width:auto;font-size:1em;line-height:1.4285em;color:rgba(0,0,0,.87)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{margin:.5em 0 .5em;font-size:1em;line-height:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content a:not(.ui):hover{color:''}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#006274}.ui.items>.item .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.items>.item .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.items>.item>.content .favorite.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .favorite.icon:hover{opacity:1;color:#ffb70a}.ui.items>.item>.content .active.favorite.icon{color:#ffe623}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.items>.item>.content .active.like.icon{color:#ff2733}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:.5rem 0 0;width:100%;padding:0 0 0;top:0;left:0;color:rgba(0,0,0,.4);-webkit-box-shadow:none;box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease;border-top:none}.ui.items>.item .extra>*{margin:.25rem .5rem .25rem 0}.ui.items>.item .extra>[class*="right floated"]{margin:.25rem 0 .25rem .5rem}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image:not(.ui){width:175px}@media only screen and (min-width:768px) and (max-width:991.98px){.ui.items>.item{margin:1em 0}.ui.items>.item>.image:not(.ui){width:150px}.ui.items>.item>.image+.content{display:block;padding:0 0 0 1em}}@media only screen and (max-width:767.98px){.ui.items:not(.unstackable)>.item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:2em 0}.ui.items:not(.unstackable)>.item>.image{display:block;margin-left:auto;margin-right:auto}.ui.items:not(.unstackable)>.item>.image,.ui.items:not(.unstackable)>.item>.image>img{max-width:100%!important;width:auto!important;max-height:250px!important}.ui.items:not(.unstackable)>.item>.image+.content{display:block;padding:1.5em 0 0}}.ui.items>.item>.image+[class*="top aligned"].content{-ms-flex-item-align:start;align-self:flex-start}.ui.items>.item>.image+[class*="middle aligned"].content{-ms-flex-item-align:center;align-self:center}.ui.items>.item>.image+[class*="bottom aligned"].content{-ms-flex-item-align:end;align-self:flex-end}.ui.relaxed.items>.item{margin:1.5em 0}.ui[class*="very relaxed"].items>.item{margin:2em 0}.ui.divided.items>.item{border-top:1px solid rgba(34,36,38,.15);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0!important;padding-top:0!important}.ui.divided.items>.item:last-child{margin-bottom:0!important;padding-bottom:0!important}.ui.relaxed.divided.items>.item{margin:0;padding:1.5em 0}.ui[class*="very relaxed"].divided.items>.item{margin:0;padding:2em 0}.ui.items a.item:hover,.ui.link.items>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.items>.item:hover .content .header{color:#006274}.ui.items>.item{font-size:1em}.ui.mini.items>.item{font-size:.78571429em}.ui.tiny.items>.item{font-size:.85714286em}.ui.small.items>.item{font-size:.92857143em}.ui.large.items>.item{font-size:1.14285714em}.ui.big.items>.item{font-size:1.28571429em}.ui.huge.items>.item{font-size:1.42857143em}.ui.massive.items>.item{font-size:1.71428571em}@media only screen and (max-width:767.98px){.ui.unstackable.items>.item>.image,.ui.unstackable.items>.item>.image>img{width:125px!important}}/*!
170
+ * # Fomantic-UI - Accordion
171
+ * http://github.com/fomantic/Fomantic-UI/
172
+ *
173
+ *
174
+ * Released under the MIT license
175
+ * http://opensource.org/licenses/MIT
176
+ *
177
+ */@font-face{font-family:Accordion;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}/*!
170
178
  * # Fomantic-UI - Calendar
171
179
  * http://github.com/fomantic/Fomantic-UI/
172
180
  *