Version Description
Release Date: 21.12.2015
-
New features
- Recent posts shortcode
- Recent posts shortcode
-
Bugfixes
- Button color
- Bootstrap if exist
Download this release
Release Info
Developer | fruitfulcode |
Plugin | Fruitful Shortcodes |
Version | 1.4 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.4
- ff-shortcodes.php +2 -2
- includes/admin/admin-mce.php +5 -1
- includes/admin/tinymce/ffs.tinymce.js +42 -0
- includes/admin/tinymce/recent_news.png +0 -0
- includes/admin/tinymce/recent_news_slider.png +0 -0
- includes/shortcodes/css/ffs_styles.css +1 -1
- includes/shortcodes/js/slider_init.js +6 -0
- includes/shortcodes/shortcodes.php +176 -4
- readme.txt +16 -5
ff-shortcodes.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/*
|
3 |
Plugin Name: Fruitful Shortcodes
|
4 |
Plugin URI: http://plugins.fruitfulcode.com/shortcodes/
|
5 |
-
Description: Add additional content shortcodes: horizontal tabs, vertical tabs, accordion, promo text, columns, infobox, separator, alert, progress bar, button,
|
6 |
-
Version: 1.
|
7 |
Author: fruitfulcode
|
8 |
Author URI: http://fruitfulcode.com
|
9 |
License: GPL2
|
2 |
/*
|
3 |
Plugin Name: Fruitful Shortcodes
|
4 |
Plugin URI: http://plugins.fruitfulcode.com/shortcodes/
|
5 |
+
Description: Add additional content shortcodes: horizontal tabs, vertical tabs, accordion, promo text, columns, infobox, separator, alert, progress bar, button, recent post, recent news
|
6 |
+
Version: 1.4
|
7 |
Author: fruitfulcode
|
8 |
Author URI: http://fruitfulcode.com
|
9 |
License: GPL2
|
includes/admin/admin-mce.php
CHANGED
@@ -40,7 +40,9 @@
|
|
40 |
'fruitful_sep',
|
41 |
'fruitful_alerts',
|
42 |
'fruitful_pbar',
|
43 |
-
'fruitful_btn'
|
|
|
|
|
44 |
);
|
45 |
return $buttons;
|
46 |
}
|
@@ -60,6 +62,8 @@
|
|
60 |
$plugin_array['fruitful_alerts'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
61 |
$plugin_array['fruitful_pbar'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
62 |
$plugin_array['fruitful_btn'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
|
|
|
|
63 |
|
64 |
|
65 |
return $plugin_array;
|
40 |
'fruitful_sep',
|
41 |
'fruitful_alerts',
|
42 |
'fruitful_pbar',
|
43 |
+
'fruitful_btn',
|
44 |
+
'fruitful_recent_posts',
|
45 |
+
'fruitful_recent_posts_slider'
|
46 |
);
|
47 |
return $buttons;
|
48 |
}
|
62 |
$plugin_array['fruitful_alerts'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
63 |
$plugin_array['fruitful_pbar'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
64 |
$plugin_array['fruitful_btn'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
65 |
+
$plugin_array['fruitful_recent_posts'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
66 |
+
$plugin_array['fruitful_recent_posts_slider'] = plugins_url('/tinymce', __FILE__) . '/ffs.tinymce.js';
|
67 |
|
68 |
|
69 |
return $plugin_array;
|
includes/admin/tinymce/ffs.tinymce.js
CHANGED
@@ -273,4 +273,46 @@
|
|
273 |
},
|
274 |
});
|
275 |
tinymce.PluginManager.add('fruitful_btn', tinymce.plugins.fruitful_btn);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
})();
|
273 |
},
|
274 |
});
|
275 |
tinymce.PluginManager.add('fruitful_btn', tinymce.plugins.fruitful_btn);
|
276 |
+
})();
|
277 |
+
|
278 |
+
/*-----------------------------------------------------------------------------------*/
|
279 |
+
/* ffs TinyMCE "Recent posts" Button
|
280 |
+
/*-----------------------------------------------------------------------------------*/
|
281 |
+
(function() {
|
282 |
+
tinymce.create('tinymce.plugins.fruitful_recent_posts', {
|
283 |
+
init : function(ed, url) {
|
284 |
+
ed.addButton('fruitful_recent_posts', {
|
285 |
+
title : 'Add recent posts',
|
286 |
+
image : url+'/recent_news.png',
|
287 |
+
onclick : function() {
|
288 |
+
ed.selection.setContent('[fruitful_recent_posts]');
|
289 |
+
}
|
290 |
+
});
|
291 |
+
},
|
292 |
+
createControl : function(n, cm) {
|
293 |
+
return null;
|
294 |
+
},
|
295 |
+
});
|
296 |
+
tinymce.PluginManager.add('fruitful_recent_posts', tinymce.plugins.fruitful_recent_posts);
|
297 |
+
})();
|
298 |
+
|
299 |
+
/*-----------------------------------------------------------------------------------*/
|
300 |
+
/* ffs TinyMCE "Recent posts slider" Button
|
301 |
+
/*-----------------------------------------------------------------------------------*/
|
302 |
+
(function() {
|
303 |
+
tinymce.create('tinymce.plugins.fruitful_recent_posts_slider', {
|
304 |
+
init : function(ed, url) {
|
305 |
+
ed.addButton('fruitful_recent_posts_slider', {
|
306 |
+
title : 'Add recent posts slider',
|
307 |
+
image : url+'/recent_news_slider.png',
|
308 |
+
onclick : function() {
|
309 |
+
ed.selection.setContent('[fruitful_recent_posts_slider]');
|
310 |
+
}
|
311 |
+
});
|
312 |
+
},
|
313 |
+
createControl : function(n, cm) {
|
314 |
+
return null;
|
315 |
+
},
|
316 |
+
});
|
317 |
+
tinymce.PluginManager.add('fruitful_recent_posts_slider', tinymce.plugins.fruitful_recent_posts_slider);
|
318 |
})();
|
includes/admin/tinymce/recent_news.png
ADDED
Binary file
|
includes/admin/tinymce/recent_news_slider.png
ADDED
Binary file
|
includes/shortcodes/css/ffs_styles.css
CHANGED
@@ -5,4 +5,4 @@
|
|
5 |
*//*!
|
6 |
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7a0177954ea91b8438df)
|
7 |
* Config saved to config.json and https://gist.github.com/7a0177954ea91b8438df
|
8 |
-
*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */}.ffs-bs html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.ffs-bs body{margin:0}.ffs-bs article,.ffs-bs aside,.ffs-bs details,.ffs-bs figcaption,.ffs-bs figure,.ffs-bs footer,.ffs-bs header,.ffs-bs hgroup,.ffs-bs main,.ffs-bs menu,.ffs-bs nav,.ffs-bs section,.ffs-bs summary{display:block}.ffs-bs audio,.ffs-bs canvas,.ffs-bs progress,.ffs-bs video{display:inline-block;vertical-align:baseline}.ffs-bs audio:not([controls]){display:none;height:0}.ffs-bs [hidden],.ffs-bs template{display:none}.ffs-bs a{background-color:transparent}.ffs-bs a:active,.ffs-bs a:hover{outline:0}.ffs-bs abbr[title]{border-bottom:1px dotted}.ffs-bs b,.ffs-bs strong{font-weight:bold}.ffs-bs dfn{font-style:italic}.ffs-bs mark{background:#ff0;color:#000}.ffs-bs small{font-size:80%}.ffs-bs sub,.ffs-bs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.ffs-bs sup{top:-0.5em}.ffs-bs sub{bottom:-0.25em}.ffs-bs img{border:0}.ffs-bs svg:not(:root){overflow:hidden}.ffs-bs figure{margin:1em 40px}.ffs-bs hr{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;height:0}.ffs-bs pre{overflow:auto}.ffs-bs code,.ffs-bs kbd,.ffs-bs pre,.ffs-bs samp{font-family:monospace,monospace;font-size:1em}.ffs-bs button,.ffs-bs input,.ffs-bs optgroup,.ffs-bs select,.ffs-bs textarea{color:inherit;font:inherit;margin:0}.ffs-bs button{overflow:visible}.ffs-bs button,.ffs-bs select{text-transform:none}.ffs-bs button,.ffs-bs html input[type="button"],.ffs-bs input[type="reset"],.ffs-bs input[type="submit"]{-webkit-appearance:button;cursor:pointer}.ffs-bs button[disabled],.ffs-bs html input[disabled]{cursor:default}.ffs-bs button::-moz-focus-inner,.ffs-bs input::-moz-focus-inner{border:0;padding:0}.ffs-bs input{line-height:normal}.ffs-bs input[type="checkbox"],.ffs-bs input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.ffs-bs input[type="number"]::-webkit-inner-spin-button,.ffs-bs input[type="number"]::-webkit-outer-spin-button{height:auto}.ffs-bs input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}.ffs-bs input[type="search"]::-webkit-search-cancel-button,.ffs-bs input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}.ffs-bs fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}.ffs-bs legend{border:0;padding:0}.ffs-bs textarea{overflow:auto}.ffs-bs optgroup{font-weight:bold}.ffs-bs table{border-collapse:collapse;border-spacing:0}.ffs-bs td,.ffs-bs th{padding:0}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.ffs-bs .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ffs-bs .glyphicon-asterisk:before{content:"\2a"}.ffs-bs .glyphicon-plus:before{content:"\2b"}.ffs-bs .glyphicon-euro:before,.ffs-bs .glyphicon-eur:before{content:"\20ac"}.ffs-bs .glyphicon-minus:before{content:"\2212"}.ffs-bs .glyphicon-cloud:before{content:"\2601"}.ffs-bs .glyphicon-envelope:before{content:"\2709"}.ffs-bs .glyphicon-pencil:before{content:"\270f"}.ffs-bs .glyphicon-glass:before{content:"\e001"}.ffs-bs .glyphicon-music:before{content:"\e002"}.ffs-bs .glyphicon-search:before{content:"\e003"}.ffs-bs .glyphicon-heart:before{content:"\e005"}.ffs-bs .glyphicon-star:before{content:"\e006"}.ffs-bs .glyphicon-star-empty:before{content:"\e007"}.ffs-bs .glyphicon-user:before{content:"\e008"}.ffs-bs .glyphicon-film:before{content:"\e009"}.ffs-bs .glyphicon-th-large:before{content:"\e010"}.ffs-bs .glyphicon-th:before{content:"\e011"}.ffs-bs .glyphicon-th-list:before{content:"\e012"}.ffs-bs .glyphicon-ok:before{content:"\e013"}.ffs-bs .glyphicon-remove:before{content:"\e014"}.ffs-bs .glyphicon-zoom-in:before{content:"\e015"}.ffs-bs .glyphicon-zoom-out:before{content:"\e016"}.ffs-bs .glyphicon-off:before{content:"\e017"}.ffs-bs .glyphicon-signal:before{content:"\e018"}.ffs-bs .glyphicon-cog:before{content:"\e019"}.ffs-bs .glyphicon-trash:before{content:"\e020"}.ffs-bs .glyphicon-home:before{content:"\e021"}.ffs-bs .glyphicon-file:before{content:"\e022"}.ffs-bs .glyphicon-time:before{content:"\e023"}.ffs-bs .glyphicon-road:before{content:"\e024"}.ffs-bs .glyphicon-download-alt:before{content:"\e025"}.ffs-bs .glyphicon-download:before{content:"\e026"}.ffs-bs .glyphicon-upload:before{content:"\e027"}.ffs-bs .glyphicon-inbox:before{content:"\e028"}.ffs-bs .glyphicon-play-circle:before{content:"\e029"}.ffs-bs .glyphicon-repeat:before{content:"\e030"}.ffs-bs .glyphicon-refresh:before{content:"\e031"}.ffs-bs .glyphicon-list-alt:before{content:"\e032"}.ffs-bs .glyphicon-lock:before{content:"\e033"}.ffs-bs .glyphicon-flag:before{content:"\e034"}.ffs-bs .glyphicon-headphones:before{content:"\e035"}.ffs-bs .glyphicon-volume-off:before{content:"\e036"}.ffs-bs .glyphicon-volume-down:before{content:"\e037"}.ffs-bs .glyphicon-volume-up:before{content:"\e038"}.ffs-bs .glyphicon-qrcode:before{content:"\e039"}.ffs-bs .glyphicon-barcode:before{content:"\e040"}.ffs-bs .glyphicon-tag:before{content:"\e041"}.ffs-bs .glyphicon-tags:before{content:"\e042"}.ffs-bs .glyphicon-book:before{content:"\e043"}.ffs-bs .glyphicon-bookmark:before{content:"\e044"}.ffs-bs .glyphicon-print:before{content:"\e045"}.ffs-bs .glyphicon-camera:before{content:"\e046"}.ffs-bs .glyphicon-font:before{content:"\e047"}.ffs-bs .glyphicon-bold:before{content:"\e048"}.ffs-bs .glyphicon-italic:before{content:"\e049"}.ffs-bs .glyphicon-text-height:before{content:"\e050"}.ffs-bs .glyphicon-text-width:before{content:"\e051"}.ffs-bs .glyphicon-align-left:before{content:"\e052"}.ffs-bs .glyphicon-align-center:before{content:"\e053"}.ffs-bs .glyphicon-align-right:before{content:"\e054"}.ffs-bs .glyphicon-align-justify:before{content:"\e055"}.ffs-bs .glyphicon-list:before{content:"\e056"}.ffs-bs .glyphicon-indent-left:before{content:"\e057"}.ffs-bs .glyphicon-indent-right:before{content:"\e058"}.ffs-bs .glyphicon-facetime-video:before{content:"\e059"}.ffs-bs .glyphicon-picture:before{content:"\e060"}.ffs-bs .glyphicon-map-marker:before{content:"\e062"}.ffs-bs .glyphicon-adjust:before{content:"\e063"}.ffs-bs .glyphicon-tint:before{content:"\e064"}.ffs-bs .glyphicon-edit:before{content:"\e065"}.ffs-bs .glyphicon-share:before{content:"\e066"}.ffs-bs .glyphicon-check:before{content:"\e067"}.ffs-bs .glyphicon-move:before{content:"\e068"}.ffs-bs .glyphicon-step-backward:before{content:"\e069"}.ffs-bs .glyphicon-fast-backward:before{content:"\e070"}.ffs-bs .glyphicon-backward:before{content:"\e071"}.ffs-bs .glyphicon-play:before{content:"\e072"}.ffs-bs .glyphicon-pause:before{content:"\e073"}.ffs-bs .glyphicon-stop:before{content:"\e074"}.ffs-bs .glyphicon-forward:before{content:"\e075"}.ffs-bs .glyphicon-fast-forward:before{content:"\e076"}.ffs-bs .glyphicon-step-forward:before{content:"\e077"}.ffs-bs .glyphicon-eject:before{content:"\e078"}.ffs-bs .glyphicon-chevron-left:before{content:"\e079"}.ffs-bs .glyphicon-chevron-right:before{content:"\e080"}.ffs-bs .glyphicon-plus-sign:before{content:"\e081"}.ffs-bs .glyphicon-minus-sign:before{content:"\e082"}.ffs-bs .glyphicon-remove-sign:before{content:"\e083"}.ffs-bs .glyphicon-ok-sign:before{content:"\e084"}.ffs-bs .glyphicon-question-sign:before{content:"\e085"}.ffs-bs .glyphicon-info-sign:before{content:"\e086"}.ffs-bs .glyphicon-screenshot:before{content:"\e087"}.ffs-bs .glyphicon-remove-circle:before{content:"\e088"}.ffs-bs .glyphicon-ok-circle:before{content:"\e089"}.ffs-bs .glyphicon-ban-circle:before{content:"\e090"}.ffs-bs .glyphicon-arrow-left:before{content:"\e091"}.ffs-bs .glyphicon-arrow-right:before{content:"\e092"}.ffs-bs .glyphicon-arrow-up:before{content:"\e093"}.ffs-bs .glyphicon-arrow-down:before{content:"\e094"}.ffs-bs .glyphicon-share-alt:before{content:"\e095"}.ffs-bs .glyphicon-resize-full:before{content:"\e096"}.ffs-bs .glyphicon-resize-small:before{content:"\e097"}.ffs-bs .glyphicon-exclamation-sign:before{content:"\e101"}.ffs-bs .glyphicon-gift:before{content:"\e102"}.ffs-bs .glyphicon-leaf:before{content:"\e103"}.ffs-bs .glyphicon-fire:before{content:"\e104"}.ffs-bs .glyphicon-eye-open:before{content:"\e105"}.ffs-bs .glyphicon-eye-close:before{content:"\e106"}.ffs-bs .glyphicon-warning-sign:before{content:"\e107"}.ffs-bs .glyphicon-plane:before{content:"\e108"}.ffs-bs .glyphicon-calendar:before{content:"\e109"}.ffs-bs .glyphicon-random:before{content:"\e110"}.ffs-bs .glyphicon-comment:before{content:"\e111"}.ffs-bs .glyphicon-magnet:before{content:"\e112"}.ffs-bs .glyphicon-chevron-up:before{content:"\e113"}.ffs-bs .glyphicon-chevron-down:before{content:"\e114"}.ffs-bs .glyphicon-retweet:before{content:"\e115"}.ffs-bs .glyphicon-shopping-cart:before{content:"\e116"}.ffs-bs .glyphicon-folder-close:before{content:"\e117"}.ffs-bs .glyphicon-folder-open:before{content:"\e118"}.ffs-bs .glyphicon-resize-vertical:before{content:"\e119"}.ffs-bs .glyphicon-resize-horizontal:before{content:"\e120"}.ffs-bs .glyphicon-hdd:before{content:"\e121"}.ffs-bs .glyphicon-bullhorn:before{content:"\e122"}.ffs-bs .glyphicon-bell:before{content:"\e123"}.ffs-bs .glyphicon-certificate:before{content:"\e124"}.ffs-bs .glyphicon-thumbs-up:before{content:"\e125"}.ffs-bs .glyphicon-thumbs-down:before{content:"\e126"}.ffs-bs .glyphicon-hand-right:before{content:"\e127"}.ffs-bs .glyphicon-hand-left:before{content:"\e128"}.ffs-bs .glyphicon-hand-up:before{content:"\e129"}.ffs-bs .glyphicon-hand-down:before{content:"\e130"}.ffs-bs .glyphicon-circle-arrow-right:before{content:"\e131"}.ffs-bs .glyphicon-circle-arrow-left:before{content:"\e132"}.ffs-bs .glyphicon-circle-arrow-up:before{content:"\e133"}.ffs-bs .glyphicon-circle-arrow-down:before{content:"\e134"}.ffs-bs .glyphicon-globe:before{content:"\e135"}.ffs-bs .glyphicon-wrench:before{content:"\e136"}.ffs-bs .glyphicon-tasks:before{content:"\e137"}.ffs-bs .glyphicon-filter:before{content:"\e138"}.ffs-bs .glyphicon-briefcase:before{content:"\e139"}.ffs-bs .glyphicon-fullscreen:before{content:"\e140"}.ffs-bs .glyphicon-dashboard:before{content:"\e141"}.ffs-bs .glyphicon-paperclip:before{content:"\e142"}.ffs-bs .glyphicon-heart-empty:before{content:"\e143"}.ffs-bs .glyphicon-link:before{content:"\e144"}.ffs-bs .glyphicon-phone:before{content:"\e145"}.ffs-bs .glyphicon-pushpin:before{content:"\e146"}.ffs-bs .glyphicon-usd:before{content:"\e148"}.ffs-bs .glyphicon-gbp:before{content:"\e149"}.ffs-bs .glyphicon-sort:before{content:"\e150"}.ffs-bs .glyphicon-sort-by-alphabet:before{content:"\e151"}.ffs-bs .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.ffs-bs .glyphicon-sort-by-order:before{content:"\e153"}.ffs-bs .glyphicon-sort-by-order-alt:before{content:"\e154"}.ffs-bs .glyphicon-sort-by-attributes:before{content:"\e155"}.ffs-bs .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.ffs-bs .glyphicon-unchecked:before{content:"\e157"}.ffs-bs .glyphicon-expand:before{content:"\e158"}.ffs-bs .glyphicon-collapse-down:before{content:"\e159"}.ffs-bs .glyphicon-collapse-up:before{content:"\e160"}.ffs-bs .glyphicon-log-in:before{content:"\e161"}.ffs-bs .glyphicon-flash:before{content:"\e162"}.ffs-bs .glyphicon-log-out:before{content:"\e163"}.ffs-bs .glyphicon-new-window:before{content:"\e164"}.ffs-bs .glyphicon-record:before{content:"\e165"}.ffs-bs .glyphicon-save:before{content:"\e166"}.ffs-bs .glyphicon-open:before{content:"\e167"}.ffs-bs .glyphicon-saved:before{content:"\e168"}.ffs-bs .glyphicon-import:before{content:"\e169"}.ffs-bs .glyphicon-export:before{content:"\e170"}.ffs-bs .glyphicon-send:before{content:"\e171"}.ffs-bs .glyphicon-floppy-disk:before{content:"\e172"}.ffs-bs .glyphicon-floppy-saved:before{content:"\e173"}.ffs-bs .glyphicon-floppy-remove:before{content:"\e174"}.ffs-bs .glyphicon-floppy-save:before{content:"\e175"}.ffs-bs .glyphicon-floppy-open:before{content:"\e176"}.ffs-bs .glyphicon-credit-card:before{content:"\e177"}.ffs-bs .glyphicon-transfer:before{content:"\e178"}.ffs-bs .glyphicon-cutlery:before{content:"\e179"}.ffs-bs .glyphicon-header:before{content:"\e180"}.ffs-bs .glyphicon-compressed:before{content:"\e181"}.ffs-bs .glyphicon-earphone:before{content:"\e182"}.ffs-bs .glyphicon-phone-alt:before{content:"\e183"}.ffs-bs .glyphicon-tower:before{content:"\e184"}.ffs-bs .glyphicon-stats:before{content:"\e185"}.ffs-bs .glyphicon-sd-video:before{content:"\e186"}.ffs-bs .glyphicon-hd-video:before{content:"\e187"}.ffs-bs .glyphicon-subtitles:before{content:"\e188"}.ffs-bs .glyphicon-sound-stereo:before{content:"\e189"}.ffs-bs .glyphicon-sound-dolby:before{content:"\e190"}.ffs-bs .glyphicon-sound-5-1:before{content:"\e191"}.ffs-bs .glyphicon-sound-6-1:before{content:"\e192"}.ffs-bs .glyphicon-sound-7-1:before{content:"\e193"}.ffs-bs .glyphicon-copyright-mark:before{content:"\e194"}.ffs-bs .glyphicon-registration-mark:before{content:"\e195"}.ffs-bs .glyphicon-cloud-download:before{content:"\e197"}.ffs-bs .glyphicon-cloud-upload:before{content:"\e198"}.ffs-bs .glyphicon-tree-conifer:before{content:"\e199"}.ffs-bs .glyphicon-tree-deciduous:before{content:"\e200"}.ffs-bs *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ffs-bs *:before,.ffs-bs *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ffs-bs html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ffs-bs body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}.ffs-bs input,.ffs-bs button,.ffs-bs select,.ffs-bs textarea{font-family:inherit;font-size:inherit;line-height:inherit}.ffs-bs a{color:#337ab7;text-decoration:none}.ffs-bs a:hover,.ffs-bs a:focus{color:#23527c;text-decoration:underline}.ffs-bs a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ffs-bs figure{margin:0}.ffs-bs img{vertical-align:middle}.ffs-bs .img-responsive,.ffs-bs .thumbnail>img,.ffs-bs .thumbnail a>img{display:block;max-width:100%;height:auto}.ffs-bs .img-rounded{border-radius:6px}.ffs-bs .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.ffs-bs .img-circle{border-radius:50%}.ffs-bs hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.ffs-bs .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.ffs-bs .sr-only-focusable:active,.ffs-bs .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.ffs-bs .btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ffs-bs .btn:focus,.ffs-bs .btn:active:focus,.ffs-bs .btn.active:focus,.ffs-bs .btn.focus,.ffs-bs .btn:active.focus,.ffs-bs .btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ffs-bs .btn:hover,.ffs-bs .btn:focus,.ffs-bs .btn.focus{color:#333;text-decoration:none}.ffs-bs .btn:active,.ffs-bs .btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.ffs-bs .btn.disabled,.ffs-bs .btn[disabled],.ffs-bs fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.ffs-bs .btn-default{color:#333;background-color:#fff;border-color:#ccc}.ffs-bs .btn-default:hover,.ffs-bs .btn-default:focus,.ffs-bs .btn-default.focus,.ffs-bs .btn-default:active,.ffs-bs .btn-default.active,.ffs-bs .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.ffs-bs .btn-default:active,.ffs-bs .btn-default.active,.ffs-bs .open>.dropdown-toggle.btn-default{background-image:none}.ffs-bs .btn-default.disabled,.ffs-bs .btn-default[disabled],.ffs-bs fieldset[disabled] .btn-default,.ffs-bs .btn-default.disabled:hover,.ffs-bs .btn-default[disabled]:hover,.ffs-bs fieldset[disabled] .btn-default:hover,.ffs-bs .btn-default.disabled:focus,.ffs-bs .btn-default[disabled]:focus,.ffs-bs fieldset[disabled] .btn-default:focus,.ffs-bs .btn-default.disabled.focus,.ffs-bs .btn-default[disabled].focus,.ffs-bs fieldset[disabled] .btn-default.focus,.ffs-bs .btn-default.disabled:active,.ffs-bs .btn-default[disabled]:active,.ffs-bs fieldset[disabled] .btn-default:active,.ffs-bs .btn-default.disabled.active,.ffs-bs .btn-default[disabled].active,.ffs-bs fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.ffs-bs .btn-default .badge{color:#fff;background-color:#333}.ffs-bs .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.ffs-bs .btn-primary:hover,.ffs-bs .btn-primary:focus,.ffs-bs .btn-primary.focus,.ffs-bs .btn-primary:active,.ffs-bs .btn-primary.active,.ffs-bs .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.ffs-bs .btn-primary:active,.ffs-bs .btn-primary.active,.ffs-bs .open>.dropdown-toggle.btn-primary{background-image:none}.ffs-bs .btn-primary.disabled,.ffs-bs .btn-primary[disabled],.ffs-bs fieldset[disabled] .btn-primary,.ffs-bs .btn-primary.disabled:hover,.ffs-bs .btn-primary[disabled]:hover,.ffs-bs fieldset[disabled] .btn-primary:hover,.ffs-bs .btn-primary.disabled:focus,.ffs-bs .btn-primary[disabled]:focus,.ffs-bs fieldset[disabled] .btn-primary:focus,.ffs-bs .btn-primary.disabled.focus,.ffs-bs .btn-primary[disabled].focus,.ffs-bs fieldset[disabled] .btn-primary.focus,.ffs-bs .btn-primary.disabled:active,.ffs-bs .btn-primary[disabled]:active,.ffs-bs fieldset[disabled] .btn-primary:active,.ffs-bs .btn-primary.disabled.active,.ffs-bs .btn-primary[disabled].active,.ffs-bs fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.ffs-bs .btn-primary .badge{color:#337ab7;background-color:#fff}.ffs-bs .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.ffs-bs .btn-success:hover,.ffs-bs .btn-success:focus,.ffs-bs .btn-success.focus,.ffs-bs .btn-success:active,.ffs-bs .btn-success.active,.ffs-bs .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.ffs-bs .btn-success:active,.ffs-bs .btn-success.active,.ffs-bs .open>.dropdown-toggle.btn-success{background-image:none}.ffs-bs .btn-success.disabled,.ffs-bs .btn-success[disabled],.ffs-bs fieldset[disabled] .btn-success,.ffs-bs .btn-success.disabled:hover,.ffs-bs .btn-success[disabled]:hover,.ffs-bs fieldset[disabled] .btn-success:hover,.ffs-bs .btn-success.disabled:focus,.ffs-bs .btn-success[disabled]:focus,.ffs-bs fieldset[disabled] .btn-success:focus,.ffs-bs .btn-success.disabled.focus,.ffs-bs .btn-success[disabled].focus,.ffs-bs fieldset[disabled] .btn-success.focus,.ffs-bs .btn-success.disabled:active,.ffs-bs .btn-success[disabled]:active,.ffs-bs fieldset[disabled] .btn-success:active,.ffs-bs .btn-success.disabled.active,.ffs-bs .btn-success[disabled].active,.ffs-bs fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.ffs-bs .btn-success .badge{color:#5cb85c;background-color:#fff}.ffs-bs .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.ffs-bs .btn-info:hover,.ffs-bs .btn-info:focus,.ffs-bs .btn-info.focus,.ffs-bs .btn-info:active,.ffs-bs .btn-info.active,.ffs-bs .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.ffs-bs .btn-info:active,.ffs-bs .btn-info.active,.ffs-bs .open>.dropdown-toggle.btn-info{background-image:none}.ffs-bs .btn-info.disabled,.ffs-bs .btn-info[disabled],.ffs-bs fieldset[disabled] .btn-info,.ffs-bs .btn-info.disabled:hover,.ffs-bs .btn-info[disabled]:hover,.ffs-bs fieldset[disabled] .btn-info:hover,.ffs-bs .btn-info.disabled:focus,.ffs-bs .btn-info[disabled]:focus,.ffs-bs fieldset[disabled] .btn-info:focus,.ffs-bs .btn-info.disabled.focus,.ffs-bs .btn-info[disabled].focus,.ffs-bs fieldset[disabled] .btn-info.focus,.ffs-bs .btn-info.disabled:active,.ffs-bs .btn-info[disabled]:active,.ffs-bs fieldset[disabled] .btn-info:active,.ffs-bs .btn-info.disabled.active,.ffs-bs .btn-info[disabled].active,.ffs-bs fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.ffs-bs .btn-info .badge{color:#5bc0de;background-color:#fff}.ffs-bs .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.ffs-bs .btn-warning:hover,.ffs-bs .btn-warning:focus,.ffs-bs .btn-warning.focus,.ffs-bs .btn-warning:active,.ffs-bs .btn-warning.active,.ffs-bs .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.ffs-bs .btn-warning:active,.ffs-bs .btn-warning.active,.ffs-bs .open>.dropdown-toggle.btn-warning{background-image:none}.ffs-bs .btn-warning.disabled,.ffs-bs .btn-warning[disabled],.ffs-bs fieldset[disabled] .btn-warning,.ffs-bs .btn-warning.disabled:hover,.ffs-bs .btn-warning[disabled]:hover,.ffs-bs fieldset[disabled] .btn-warning:hover,.ffs-bs .btn-warning.disabled:focus,.ffs-bs .btn-warning[disabled]:focus,.ffs-bs fieldset[disabled] .btn-warning:focus,.ffs-bs .btn-warning.disabled.focus,.ffs-bs .btn-warning[disabled].focus,.ffs-bs fieldset[disabled] .btn-warning.focus,.ffs-bs .btn-warning.disabled:active,.ffs-bs .btn-warning[disabled]:active,.ffs-bs fieldset[disabled] .btn-warning:active,.ffs-bs .btn-warning.disabled.active,.ffs-bs .btn-warning[disabled].active,.ffs-bs fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.ffs-bs .btn-warning .badge{color:#f0ad4e;background-color:#fff}.ffs-bs .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.ffs-bs .btn-danger:hover,.ffs-bs .btn-danger:focus,.ffs-bs .btn-danger.focus,.ffs-bs .btn-danger:active,.ffs-bs .btn-danger.active,.ffs-bs .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.ffs-bs .btn-danger:active,.ffs-bs .btn-danger.active,.ffs-bs .open>.dropdown-toggle.btn-danger{background-image:none}.ffs-bs .btn-danger.disabled,.ffs-bs .btn-danger[disabled],.ffs-bs fieldset[disabled] .btn-danger,.ffs-bs .btn-danger.disabled:hover,.ffs-bs .btn-danger[disabled]:hover,.ffs-bs fieldset[disabled] .btn-danger:hover,.ffs-bs .btn-danger.disabled:focus,.ffs-bs .btn-danger[disabled]:focus,.ffs-bs fieldset[disabled] .btn-danger:focus,.ffs-bs .btn-danger.disabled.focus,.ffs-bs .btn-danger[disabled].focus,.ffs-bs fieldset[disabled] .btn-danger.focus,.ffs-bs .btn-danger.disabled:active,.ffs-bs .btn-danger[disabled]:active,.ffs-bs fieldset[disabled] .btn-danger:active,.ffs-bs .btn-danger.disabled.active,.ffs-bs .btn-danger[disabled].active,.ffs-bs fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.ffs-bs .btn-danger .badge{color:#d9534f;background-color:#fff}.ffs-bs .btn-link{color:#337ab7;font-weight:normal;border-radius:0}.ffs-bs .btn-link,.ffs-bs .btn-link:active,.ffs-bs .btn-link.active,.ffs-bs .btn-link[disabled],.ffs-bs fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.ffs-bs .btn-link,.ffs-bs .btn-link:hover,.ffs-bs .btn-link:focus,.ffs-bs .btn-link:active{border-color:transparent}.ffs-bs .btn-link:hover,.ffs-bs .btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.ffs-bs .btn-link[disabled]:hover,.ffs-bs fieldset[disabled] .btn-link:hover,.ffs-bs .btn-link[disabled]:focus,.ffs-bs fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.ffs-bs .btn-lg,.ffs-bs .btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.ffs-bs .btn-sm,.ffs-bs .btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ffs-bs .btn-xs,.ffs-bs .btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.ffs-bs .btn-block{display:block;width:100%}.ffs-bs .btn-block+.btn-block{margin-top:5px}.ffs-bs input[type="submit"].btn-block,.ffs-bs input[type="reset"].btn-block,.ffs-bs input[type="button"].btn-block{width:100%}.ffs-bs .btn-group,.ffs-bs .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.ffs-bs .btn-group>.btn,.ffs-bs .btn-group-vertical>.btn{position:relative;float:left}.ffs-bs .btn-group>.btn:hover,.ffs-bs .btn-group-vertical>.btn:hover,.ffs-bs .btn-group>.btn:focus,.ffs-bs .btn-group-vertical>.btn:focus,.ffs-bs .btn-group>.btn:active,.ffs-bs .btn-group-vertical>.btn:active,.ffs-bs .btn-group>.btn.active,.ffs-bs .btn-group-vertical>.btn.active{z-index:2}.ffs-bs .btn-group .btn+.btn,.ffs-bs .btn-group .btn+.btn-group,.ffs-bs .btn-group .btn-group+.btn,.ffs-bs .btn-group .btn-group+.btn-group{margin-left:-1px}.ffs-bs .btn-toolbar{margin-left:-5px}.ffs-bs .btn-toolbar .btn-group,.ffs-bs .btn-toolbar .input-group{float:left}.ffs-bs .btn-toolbar>.btn,.ffs-bs .btn-toolbar>.btn-group,.ffs-bs .btn-toolbar>.input-group{margin-left:5px}.ffs-bs .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.ffs-bs .btn-group>.btn:first-child{margin-left:0}.ffs-bs .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.ffs-bs .btn-group>.btn:last-child:not(:first-child),.ffs-bs .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.ffs-bs .btn-group>.btn-group{float:left}.ffs-bs .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.ffs-bs .btn-group>.btn-group:first-child>.btn:last-child,.ffs-bs .btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.ffs-bs .btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.ffs-bs .btn-group .dropdown-toggle:active,.ffs-bs .btn-group.open .dropdown-toggle{outline:0}.ffs-bs .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.ffs-bs .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.ffs-bs .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.ffs-bs .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.ffs-bs .btn .caret{margin-left:0}.ffs-bs .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.ffs-bs .dropup .btn-lg .caret{border-width:0 5px 5px}.ffs-bs .btn-group-vertical>.btn,.ffs-bs .btn-group-vertical>.btn-group,.ffs-bs .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.ffs-bs .btn-group-vertical>.btn-group>.btn{float:none}.ffs-bs .btn-group-vertical>.btn+.btn,.ffs-bs .btn-group-vertical>.btn+.btn-group,.ffs-bs .btn-group-vertical>.btn-group+.btn,.ffs-bs .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.ffs-bs .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.ffs-bs .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.ffs-bs .btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.ffs-bs .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.ffs-bs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.ffs-bs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.ffs-bs .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.ffs-bs .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.ffs-bs .btn-group-justified>.btn,.ffs-bs .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.ffs-bs .btn-group-justified>.btn-group .btn{width:100%}.ffs-bs .btn-group-justified>.btn-group .dropdown-menu{left:auto}.ffs-bs [data-toggle="buttons"]>.btn input[type="radio"],.ffs-bs [data-toggle="buttons"]>.btn-group>.btn input[type="radio"],.ffs-bs [data-toggle="buttons"]>.btn input[type="checkbox"],.ffs-bs [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.ffs-bs .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.ffs-bs .thumbnail>img,.ffs-bs .thumbnail a>img{margin-left:auto;margin-right:auto}.ffs-bs a.thumbnail:hover,.ffs-bs a.thumbnail:focus,.ffs-bs a.thumbnail.active{border-color:#337ab7}.ffs-bs .thumbnail .caption{padding:9px;color:#333}.ffs-bs .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.ffs-bs .alert h4{margin-top:0;color:inherit}.ffs-bs .alert .alert-link{font-weight:bold}.ffs-bs .alert>p,.ffs-bs .alert>ul{margin-bottom:0}.ffs-bs .alert>p+p{margin-top:5px}.ffs-bs .alert-dismissable,.ffs-bs .alert-dismissible{padding-right:35px}.ffs-bs .alert-dismissable .close,.ffs-bs .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.ffs-bs .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.ffs-bs .alert-success hr{border-top-color:#c9e2b3}.ffs-bs .alert-success .alert-link{color:#2b542c}.ffs-bs .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.ffs-bs .alert-info hr{border-top-color:#a6e1ec}.ffs-bs .alert-info .alert-link{color:#245269}.ffs-bs .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.ffs-bs .alert-warning hr{border-top-color:#f7e1b5}.ffs-bs .alert-warning .alert-link{color:#66512c}.ffs-bs .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.ffs-bs .alert-danger hr{border-top-color:#e4b9c0}.ffs-bs .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.ffs-bs .progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.ffs-bs .progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.ffs-bs .progress-striped .progress-bar,.ffs-bs .progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.ffs-bs .progress.active .progress-bar,.ffs-bs .progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.ffs-bs .progress-bar-success{background-color:#5cb85c}.ffs-bs .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .progress-bar-info{background-color:#5bc0de}.ffs-bs .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .progress-bar-warning{background-color:#f0ad4e}.ffs-bs .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .progress-bar-danger{background-color:#d9534f}.ffs-bs .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.ffs-bs .tooltip.in{opacity:.9;filter:alpha(opacity=90)}.ffs-bs .tooltip.top{margin-top:-3px;padding:5px 0}.ffs-bs .tooltip.right{margin-left:3px;padding:0 5px}.ffs-bs .tooltip.bottom{margin-top:3px;padding:5px 0}.ffs-bs .tooltip.left{margin-left:-3px;padding:0 5px}.ffs-bs .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.ffs-bs .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.ffs-bs .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.ffs-bs .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.ffs-bs .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.ffs-bs .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.ffs-bs .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.ffs-bs .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.ffs-bs .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.ffs-bs .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.ffs-bs .clearfix:before,.ffs-bs .clearfix:after,.ffs-bs .btn-toolbar:before,.ffs-bs .btn-toolbar:after,.ffs-bs .btn-group-vertical>.btn-group:before,.ffs-bs .btn-group-vertical>.btn-group:after{content:" ";display:table}.ffs-bs .clearfix:after,.ffs-bs .btn-toolbar:after,.ffs-bs .btn-group-vertical>.btn-group:after{clear:both}.ffs-bs .center-block{display:block;margin-left:auto;margin-right:auto}.ffs-bs .pull-right{float:right !important}.ffs-bs .pull-left{float:left !important}.ffs-bs .hide{display:none !important}.ffs-bs .show{display:block !important}.ffs-bs .invisible{visibility:hidden}.ffs-bs .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.ffs-bs .hidden{display:none !important;visibility:hidden !important}.ffs-bs .affix{position:fixed}}.row,.clearfix{zoom:1}.clearfix:before,.clearfix:after,.row:before,.row:after{content:'';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.ffs-two-one{width:48%}.ffs-three-one{width:30.66%}.ffs-three-two{width:65.33%}.ffs-four-one{width:22%}.ffs-four-two{width:48%}.ffs-four-three{width:74%}.ffs-five-one{width:16.8%}.ffs-five-two{width:37.6%}.ffs-five-three{width:58.4%}.ffs-five-four{width:67.2%}.ffs-six-one{width:13.33%}.ffs-six-two{width:30.66%}.ffs-six-three{width:47.99%}.ffs-six-four{width:65.33%}.ffs-six-five{width:82.67%}.ffs-two-one,.ffs-three-one,.ffs-three-two,.ffs-four-one,.ffs-four-two,.ffs-four-three,.ffs-five-one,.ffs-five-two,.ffs-five-three,.ffs-five-four,.ffs-six-one,.ffs-six-two,.ffs-six-three,.ffs-six-four,.ffs-six-five{float:left;margin-right:4%;margin-bottom:4%;position:relative}.last{clear:right;margin-right:0 !important}@media only screen and (max-width:768px){.ffs-two-one,.ffs-three-one,.ffs-three-two,.ffs-four-one,.ffs-four-two,.ffs-four-three,.ffs-five-one,.ffs-five-two,.ffs-five-three,.ffs-five-four,.ffs-six-one,.ffs-six-two,.ffs-six-three,.ffs-six-four,.ffs-six-five{margin-right:0;width:100% !important}}.info-box-row{display:block;float:left;margin:30px 0 25px;width:100%}.info-box-row .ffs-info-box .infobox-title{margin:0 0 5px;font-weight:300}.info-box-row .ffs-info-box .infobox-text{padding:0}.info-box-row .ffs-info-box img.icon{display:block;min-height:51px;margin:0 auto 15px;min-width:51px}.info-box-row .ffs-info-box .ffs-icon-container{text-align:center;margin:0 auto;display:block;width:auto}.info-box-row .ffs-info-box .ffs-icon-container i{text-align:center;font-size:26px;padding:10px;margin:5px 0}.ffs-info-box.center .ffs-icon-box,.ffs-info-box.center .ffs-content-box{width:100%}.ffs-info-box.left .ffs-icon-box,.ffs-info-box.right .ffs-icon-box{width:20%;display:block}.ffs-info-box.left .ffs-content-box,.ffs-info-box.right .ffs-content-box{width:80%;display:block}.ffs-info-box.left .ffs-icon-box,.ffs-info-box.right .ffs-content-box{float:left}.ffs-info-box.right .ffs-icon-box,.ffs-info-box.left .ffs-content-box{float:right}.btn .ffs-icon-container{font-size:inherit}.btn .ffs-icon-container.left{padding:0 8px 0 0;text-align:left}.btn .ffs-icon-container.right{padding:0 0 0 8px;text-align:right}.fruitful_description_box{position:relative;z-index:0}.fruitful_description{float:left;width:100%;min-height:50px;margin:10px 0 20px 0;position:relative;display:block;background:#fff}.fruitful_description.shadow-type-4:before,.fruitful_description.shadow-type-5:before{position:absolute;width:80%;height:45%;left:10%;border-radius:50%;z-index:-1;top:0;content:"";-moz-box-shadow:0 -2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 -2px 16px rgba(0,0,0,0.4);box-shadow:0 -2px 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-4:after,.fruitful_description.shadow-type-5:after{position:absolute;width:80%;height:45%;left:10%;border-radius:50%;z-index:-1;bottom:0;content:"";-moz-box-shadow:0 2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 2px 16px rgba(0,0,0,0.4);box-shadow:0 2px 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-1:before,.fruitful_description.shadow-type-1:after{display:none}.fruitful_description.shadow-type-1 .top_line{z-index:2;display:block;width:100%;height:15px;overflow:hidden;position:absolute;top:0;left:0}.fruitful_description.shadow-type-1 .top_line:before,.fruitful_description.shadow-type-1 .top_line:after{z-index:1;position:absolute;content:"";top:-20px;left:10px;width:50%;bottom:31px;max-width:300px;background:#777;-webkit-box-shadow:0 13px 16px #777;-moz-box-shadow:0 13px 16px #777;box-shadow:0 13px 16px #777;-webkit-transform:rotate(-1.5deg);-moz-transform:rotate(-1.5deg);-o-transform:rotate(-1.5deg);-ms-transform:rotate(-1.5deg);transform:rotate(-1.5deg)}.fruitful_description.shadow-type-1 .top_line:after{-webkit-transform:rotate(1.5deg);-moz-transform:rotate(1.5deg);-o-transform:rotate(1.5deg);-ms-transform:rotate(1.5deg);transform:rotate(1.5deg);right:10px;left:auto}.fruitful_description.shadow-type-1 .bottom_line{z-index:2;display:block;width:100%;height:15px;overflow:hidden;position:absolute;bottom:0;left:0}.fruitful_description.shadow-type-1 .bottom_line:before,.fruitful_description.shadow-type-1 .bottom_line:after{z-index:1;position:absolute;content:"";top:31px;left:10px;width:50%;bottom:-20px;max-width:300px;background:#777;-webkit-box-shadow:0 -13px 16px #777;box-shadow:0 -13px 16px #777;-webkit-transform:rotate(1.5deg);-moz-transform:rotate(1.5deg);-o-transform:rotate(1.5deg);-ms-transform:rotate(1.5deg);transform:rotate(1.5deg)}.fruitful_description.shadow-type-1 .bottom_line:after{-webkit-transform:rotate(-1.5deg);-moz-transform:rotate(-1.5deg);-o-transform:rotate(-1.5deg);-ms-transform:rotate(-1.5deg);transform:rotate(-1.5deg);right:10px;left:auto}.fruitful_description.shadow-type-2:before,.fruitful_description.shadow-type-2:after{display:none}.fruitful_description.shadow-type-2 .top_line{position:absolute;width:100%;height:10px;overflow:hidden}.fruitful_description.shadow-type-2 .top_line:before{position:absolute;width:50%;height:45%;overflow:hidden;left:25%;border-radius:50%;z-index:1;top:-38%;content:"";-moz-box-shadow:0 -2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 -2px 16px rgba(0,0,0,0.4);box-shadow:0 0 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-2 .bottom_line{position:absolute;width:100%;height:10px;overflow:hidden;bottom:0}.fruitful_description.shadow-type-2 .bottom_line:before{position:absolute;width:50%;height:45%;overflow:hidden;left:25%;border-radius:50%;z-index:1;top:100%;content:"";-moz-box-shadow:0 -2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 -2px 16px rgba(0,0,0,0.4);box-shadow:0 0 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-3:before,.fruitful_description.shadow-type-3:after{display:none}.fruitful_description.shadow-type-3 .top_line:before,.fruitful_description.shadow-type-3 .top_line:after,.fruitful_description.shadow-type-5 .top_line:before,.fruitful_description.shadow-type-5 .top_line:after{z-index:-1;position:absolute;content:"";top:15px;left:10px;width:50%;bottom:80%;max-width:300px;min-height:4px;background:#777;-webkit-box-shadow:0 -13px 16px #777;box-shadow:0 -13px 16px #777;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg)}.fruitful_description.shadow-type-3 .top_line:after,.fruitful_description.shadow-type-5 .top_line:after{-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg);right:10px;left:auto}.fruitful_description.shadow-type-3 .bottom_line:before,.fruitful_description.shadow-type-3 .bottom_line:after,.fruitful_description.shadow-type-5 .bottom_line:before,.fruitful_description.shadow-type-5 .bottom_line:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:75%;max-width:300px;min-height:4px;background:#777;-webkit-box-shadow:0 13px 16px #777;-moz-box-shadow:0 13px 16px #777;box-shadow:0 13px 16px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.fruitful_description.shadow-type-3 .bottom_line:after,.fruitful_description.shadow-type-5 .bottom_line:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.fruitful_description .text{margin:0 auto;width:90%;padding:10px 0}.ffs-sep{display:block;margin:0 0 30px}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0 !important;border:0;float:right}.ffs-bs .btn{-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;border:0 none}.resp-arrow{margin-top:8px}@media only screen and (max-width:480px){.fruitful_description .text{font-size:20px !important}}
|
5 |
*//*!
|
6 |
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7a0177954ea91b8438df)
|
7 |
* Config saved to config.json and https://gist.github.com/7a0177954ea91b8438df
|
8 |
+
*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */}.ffs-bs html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.ffs-bs body{margin:0}.ffs-bs article,.ffs-bs aside,.ffs-bs details,.ffs-bs figcaption,.ffs-bs figure,.ffs-bs footer,.ffs-bs header,.ffs-bs hgroup,.ffs-bs main,.ffs-bs menu,.ffs-bs nav,.ffs-bs section,.ffs-bs summary{display:block}.ffs-bs audio,.ffs-bs canvas,.ffs-bs progress,.ffs-bs video{display:inline-block;vertical-align:baseline}.ffs-bs audio:not([controls]){display:none;height:0}.ffs-bs [hidden],.ffs-bs template{display:none}.ffs-bs a{background-color:transparent}.ffs-bs a:active,.ffs-bs a:hover{outline:0}.ffs-bs abbr[title]{border-bottom:1px dotted}.ffs-bs b,.ffs-bs strong{font-weight:bold}.ffs-bs dfn{font-style:italic}.ffs-bs mark{background:#ff0;color:#000}.ffs-bs small{font-size:80%}.ffs-bs sub,.ffs-bs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.ffs-bs sup{top:-0.5em}.ffs-bs sub{bottom:-0.25em}.ffs-bs img{border:0}.ffs-bs svg:not(:root){overflow:hidden}.ffs-bs figure{margin:1em 40px}.ffs-bs hr{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;height:0}.ffs-bs pre{overflow:auto}.ffs-bs code,.ffs-bs kbd,.ffs-bs pre,.ffs-bs samp{font-family:monospace,monospace;font-size:1em}.ffs-bs button,.ffs-bs input,.ffs-bs optgroup,.ffs-bs select,.ffs-bs textarea{color:inherit;font:inherit;margin:0}.ffs-bs button{overflow:visible}.ffs-bs button,.ffs-bs select{text-transform:none}.ffs-bs button,.ffs-bs html input[type="button"],.ffs-bs input[type="reset"],.ffs-bs input[type="submit"]{-webkit-appearance:button;cursor:pointer}.ffs-bs button[disabled],.ffs-bs html input[disabled]{cursor:default}.ffs-bs button::-moz-focus-inner,.ffs-bs input::-moz-focus-inner{border:0;padding:0}.ffs-bs input{line-height:normal}.ffs-bs input[type="checkbox"],.ffs-bs input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.ffs-bs input[type="number"]::-webkit-inner-spin-button,.ffs-bs input[type="number"]::-webkit-outer-spin-button{height:auto}.ffs-bs input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}.ffs-bs input[type="search"]::-webkit-search-cancel-button,.ffs-bs input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}.ffs-bs fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}.ffs-bs legend{border:0;padding:0}.ffs-bs textarea{overflow:auto}.ffs-bs optgroup{font-weight:bold}.ffs-bs table{border-collapse:collapse;border-spacing:0}.ffs-bs td,.ffs-bs th{padding:0}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.ffs-bs .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ffs-bs .glyphicon-asterisk:before{content:"\2a"}.ffs-bs .glyphicon-plus:before{content:"\2b"}.ffs-bs .glyphicon-euro:before,.ffs-bs .glyphicon-eur:before{content:"\20ac"}.ffs-bs .glyphicon-minus:before{content:"\2212"}.ffs-bs .glyphicon-cloud:before{content:"\2601"}.ffs-bs .glyphicon-envelope:before{content:"\2709"}.ffs-bs .glyphicon-pencil:before{content:"\270f"}.ffs-bs .glyphicon-glass:before{content:"\e001"}.ffs-bs .glyphicon-music:before{content:"\e002"}.ffs-bs .glyphicon-search:before{content:"\e003"}.ffs-bs .glyphicon-heart:before{content:"\e005"}.ffs-bs .glyphicon-star:before{content:"\e006"}.ffs-bs .glyphicon-star-empty:before{content:"\e007"}.ffs-bs .glyphicon-user:before{content:"\e008"}.ffs-bs .glyphicon-film:before{content:"\e009"}.ffs-bs .glyphicon-th-large:before{content:"\e010"}.ffs-bs .glyphicon-th:before{content:"\e011"}.ffs-bs .glyphicon-th-list:before{content:"\e012"}.ffs-bs .glyphicon-ok:before{content:"\e013"}.ffs-bs .glyphicon-remove:before{content:"\e014"}.ffs-bs .glyphicon-zoom-in:before{content:"\e015"}.ffs-bs .glyphicon-zoom-out:before{content:"\e016"}.ffs-bs .glyphicon-off:before{content:"\e017"}.ffs-bs .glyphicon-signal:before{content:"\e018"}.ffs-bs .glyphicon-cog:before{content:"\e019"}.ffs-bs .glyphicon-trash:before{content:"\e020"}.ffs-bs .glyphicon-home:before{content:"\e021"}.ffs-bs .glyphicon-file:before{content:"\e022"}.ffs-bs .glyphicon-time:before{content:"\e023"}.ffs-bs .glyphicon-road:before{content:"\e024"}.ffs-bs .glyphicon-download-alt:before{content:"\e025"}.ffs-bs .glyphicon-download:before{content:"\e026"}.ffs-bs .glyphicon-upload:before{content:"\e027"}.ffs-bs .glyphicon-inbox:before{content:"\e028"}.ffs-bs .glyphicon-play-circle:before{content:"\e029"}.ffs-bs .glyphicon-repeat:before{content:"\e030"}.ffs-bs .glyphicon-refresh:before{content:"\e031"}.ffs-bs .glyphicon-list-alt:before{content:"\e032"}.ffs-bs .glyphicon-lock:before{content:"\e033"}.ffs-bs .glyphicon-flag:before{content:"\e034"}.ffs-bs .glyphicon-headphones:before{content:"\e035"}.ffs-bs .glyphicon-volume-off:before{content:"\e036"}.ffs-bs .glyphicon-volume-down:before{content:"\e037"}.ffs-bs .glyphicon-volume-up:before{content:"\e038"}.ffs-bs .glyphicon-qrcode:before{content:"\e039"}.ffs-bs .glyphicon-barcode:before{content:"\e040"}.ffs-bs .glyphicon-tag:before{content:"\e041"}.ffs-bs .glyphicon-tags:before{content:"\e042"}.ffs-bs .glyphicon-book:before{content:"\e043"}.ffs-bs .glyphicon-bookmark:before{content:"\e044"}.ffs-bs .glyphicon-print:before{content:"\e045"}.ffs-bs .glyphicon-camera:before{content:"\e046"}.ffs-bs .glyphicon-font:before{content:"\e047"}.ffs-bs .glyphicon-bold:before{content:"\e048"}.ffs-bs .glyphicon-italic:before{content:"\e049"}.ffs-bs .glyphicon-text-height:before{content:"\e050"}.ffs-bs .glyphicon-text-width:before{content:"\e051"}.ffs-bs .glyphicon-align-left:before{content:"\e052"}.ffs-bs .glyphicon-align-center:before{content:"\e053"}.ffs-bs .glyphicon-align-right:before{content:"\e054"}.ffs-bs .glyphicon-align-justify:before{content:"\e055"}.ffs-bs .glyphicon-list:before{content:"\e056"}.ffs-bs .glyphicon-indent-left:before{content:"\e057"}.ffs-bs .glyphicon-indent-right:before{content:"\e058"}.ffs-bs .glyphicon-facetime-video:before{content:"\e059"}.ffs-bs .glyphicon-picture:before{content:"\e060"}.ffs-bs .glyphicon-map-marker:before{content:"\e062"}.ffs-bs .glyphicon-adjust:before{content:"\e063"}.ffs-bs .glyphicon-tint:before{content:"\e064"}.ffs-bs .glyphicon-edit:before{content:"\e065"}.ffs-bs .glyphicon-share:before{content:"\e066"}.ffs-bs .glyphicon-check:before{content:"\e067"}.ffs-bs .glyphicon-move:before{content:"\e068"}.ffs-bs .glyphicon-step-backward:before{content:"\e069"}.ffs-bs .glyphicon-fast-backward:before{content:"\e070"}.ffs-bs .glyphicon-backward:before{content:"\e071"}.ffs-bs .glyphicon-play:before{content:"\e072"}.ffs-bs .glyphicon-pause:before{content:"\e073"}.ffs-bs .glyphicon-stop:before{content:"\e074"}.ffs-bs .glyphicon-forward:before{content:"\e075"}.ffs-bs .glyphicon-fast-forward:before{content:"\e076"}.ffs-bs .glyphicon-step-forward:before{content:"\e077"}.ffs-bs .glyphicon-eject:before{content:"\e078"}.ffs-bs .glyphicon-chevron-left:before{content:"\e079"}.ffs-bs .glyphicon-chevron-right:before{content:"\e080"}.ffs-bs .glyphicon-plus-sign:before{content:"\e081"}.ffs-bs .glyphicon-minus-sign:before{content:"\e082"}.ffs-bs .glyphicon-remove-sign:before{content:"\e083"}.ffs-bs .glyphicon-ok-sign:before{content:"\e084"}.ffs-bs .glyphicon-question-sign:before{content:"\e085"}.ffs-bs .glyphicon-info-sign:before{content:"\e086"}.ffs-bs .glyphicon-screenshot:before{content:"\e087"}.ffs-bs .glyphicon-remove-circle:before{content:"\e088"}.ffs-bs .glyphicon-ok-circle:before{content:"\e089"}.ffs-bs .glyphicon-ban-circle:before{content:"\e090"}.ffs-bs .glyphicon-arrow-left:before{content:"\e091"}.ffs-bs .glyphicon-arrow-right:before{content:"\e092"}.ffs-bs .glyphicon-arrow-up:before{content:"\e093"}.ffs-bs .glyphicon-arrow-down:before{content:"\e094"}.ffs-bs .glyphicon-share-alt:before{content:"\e095"}.ffs-bs .glyphicon-resize-full:before{content:"\e096"}.ffs-bs .glyphicon-resize-small:before{content:"\e097"}.ffs-bs .glyphicon-exclamation-sign:before{content:"\e101"}.ffs-bs .glyphicon-gift:before{content:"\e102"}.ffs-bs .glyphicon-leaf:before{content:"\e103"}.ffs-bs .glyphicon-fire:before{content:"\e104"}.ffs-bs .glyphicon-eye-open:before{content:"\e105"}.ffs-bs .glyphicon-eye-close:before{content:"\e106"}.ffs-bs .glyphicon-warning-sign:before{content:"\e107"}.ffs-bs .glyphicon-plane:before{content:"\e108"}.ffs-bs .glyphicon-calendar:before{content:"\e109"}.ffs-bs .glyphicon-random:before{content:"\e110"}.ffs-bs .glyphicon-comment:before{content:"\e111"}.ffs-bs .glyphicon-magnet:before{content:"\e112"}.ffs-bs .glyphicon-chevron-up:before{content:"\e113"}.ffs-bs .glyphicon-chevron-down:before{content:"\e114"}.ffs-bs .glyphicon-retweet:before{content:"\e115"}.ffs-bs .glyphicon-shopping-cart:before{content:"\e116"}.ffs-bs .glyphicon-folder-close:before{content:"\e117"}.ffs-bs .glyphicon-folder-open:before{content:"\e118"}.ffs-bs .glyphicon-resize-vertical:before{content:"\e119"}.ffs-bs .glyphicon-resize-horizontal:before{content:"\e120"}.ffs-bs .glyphicon-hdd:before{content:"\e121"}.ffs-bs .glyphicon-bullhorn:before{content:"\e122"}.ffs-bs .glyphicon-bell:before{content:"\e123"}.ffs-bs .glyphicon-certificate:before{content:"\e124"}.ffs-bs .glyphicon-thumbs-up:before{content:"\e125"}.ffs-bs .glyphicon-thumbs-down:before{content:"\e126"}.ffs-bs .glyphicon-hand-right:before{content:"\e127"}.ffs-bs .glyphicon-hand-left:before{content:"\e128"}.ffs-bs .glyphicon-hand-up:before{content:"\e129"}.ffs-bs .glyphicon-hand-down:before{content:"\e130"}.ffs-bs .glyphicon-circle-arrow-right:before{content:"\e131"}.ffs-bs .glyphicon-circle-arrow-left:before{content:"\e132"}.ffs-bs .glyphicon-circle-arrow-up:before{content:"\e133"}.ffs-bs .glyphicon-circle-arrow-down:before{content:"\e134"}.ffs-bs .glyphicon-globe:before{content:"\e135"}.ffs-bs .glyphicon-wrench:before{content:"\e136"}.ffs-bs .glyphicon-tasks:before{content:"\e137"}.ffs-bs .glyphicon-filter:before{content:"\e138"}.ffs-bs .glyphicon-briefcase:before{content:"\e139"}.ffs-bs .glyphicon-fullscreen:before{content:"\e140"}.ffs-bs .glyphicon-dashboard:before{content:"\e141"}.ffs-bs .glyphicon-paperclip:before{content:"\e142"}.ffs-bs .glyphicon-heart-empty:before{content:"\e143"}.ffs-bs .glyphicon-link:before{content:"\e144"}.ffs-bs .glyphicon-phone:before{content:"\e145"}.ffs-bs .glyphicon-pushpin:before{content:"\e146"}.ffs-bs .glyphicon-usd:before{content:"\e148"}.ffs-bs .glyphicon-gbp:before{content:"\e149"}.ffs-bs .glyphicon-sort:before{content:"\e150"}.ffs-bs .glyphicon-sort-by-alphabet:before{content:"\e151"}.ffs-bs .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.ffs-bs .glyphicon-sort-by-order:before{content:"\e153"}.ffs-bs .glyphicon-sort-by-order-alt:before{content:"\e154"}.ffs-bs .glyphicon-sort-by-attributes:before{content:"\e155"}.ffs-bs .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.ffs-bs .glyphicon-unchecked:before{content:"\e157"}.ffs-bs .glyphicon-expand:before{content:"\e158"}.ffs-bs .glyphicon-collapse-down:before{content:"\e159"}.ffs-bs .glyphicon-collapse-up:before{content:"\e160"}.ffs-bs .glyphicon-log-in:before{content:"\e161"}.ffs-bs .glyphicon-flash:before{content:"\e162"}.ffs-bs .glyphicon-log-out:before{content:"\e163"}.ffs-bs .glyphicon-new-window:before{content:"\e164"}.ffs-bs .glyphicon-record:before{content:"\e165"}.ffs-bs .glyphicon-save:before{content:"\e166"}.ffs-bs .glyphicon-open:before{content:"\e167"}.ffs-bs .glyphicon-saved:before{content:"\e168"}.ffs-bs .glyphicon-import:before{content:"\e169"}.ffs-bs .glyphicon-export:before{content:"\e170"}.ffs-bs .glyphicon-send:before{content:"\e171"}.ffs-bs .glyphicon-floppy-disk:before{content:"\e172"}.ffs-bs .glyphicon-floppy-saved:before{content:"\e173"}.ffs-bs .glyphicon-floppy-remove:before{content:"\e174"}.ffs-bs .glyphicon-floppy-save:before{content:"\e175"}.ffs-bs .glyphicon-floppy-open:before{content:"\e176"}.ffs-bs .glyphicon-credit-card:before{content:"\e177"}.ffs-bs .glyphicon-transfer:before{content:"\e178"}.ffs-bs .glyphicon-cutlery:before{content:"\e179"}.ffs-bs .glyphicon-header:before{content:"\e180"}.ffs-bs .glyphicon-compressed:before{content:"\e181"}.ffs-bs .glyphicon-earphone:before{content:"\e182"}.ffs-bs .glyphicon-phone-alt:before{content:"\e183"}.ffs-bs .glyphicon-tower:before{content:"\e184"}.ffs-bs .glyphicon-stats:before{content:"\e185"}.ffs-bs .glyphicon-sd-video:before{content:"\e186"}.ffs-bs .glyphicon-hd-video:before{content:"\e187"}.ffs-bs .glyphicon-subtitles:before{content:"\e188"}.ffs-bs .glyphicon-sound-stereo:before{content:"\e189"}.ffs-bs .glyphicon-sound-dolby:before{content:"\e190"}.ffs-bs .glyphicon-sound-5-1:before{content:"\e191"}.ffs-bs .glyphicon-sound-6-1:before{content:"\e192"}.ffs-bs .glyphicon-sound-7-1:before{content:"\e193"}.ffs-bs .glyphicon-copyright-mark:before{content:"\e194"}.ffs-bs .glyphicon-registration-mark:before{content:"\e195"}.ffs-bs .glyphicon-cloud-download:before{content:"\e197"}.ffs-bs .glyphicon-cloud-upload:before{content:"\e198"}.ffs-bs .glyphicon-tree-conifer:before{content:"\e199"}.ffs-bs .glyphicon-tree-deciduous:before{content:"\e200"}.ffs-bs *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ffs-bs *:before,.ffs-bs *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ffs-bs html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ffs-bs body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}.ffs-bs input,.ffs-bs button,.ffs-bs select,.ffs-bs textarea{font-family:inherit;font-size:inherit;line-height:inherit}.ffs-bs a{color:#337ab7;text-decoration:none}.ffs-bs a:hover,.ffs-bs a:focus{color:#23527c;text-decoration:underline}.ffs-bs a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ffs-bs figure{margin:0}.ffs-bs img{vertical-align:middle}.ffs-bs .img-responsive,.ffs-bs .thumbnail>img,.ffs-bs .thumbnail a>img{display:block;max-width:100%;height:auto}.ffs-bs .img-rounded{border-radius:6px}.ffs-bs .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.ffs-bs .img-circle{border-radius:50%}.ffs-bs hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.ffs-bs .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.ffs-bs .sr-only-focusable:active,.ffs-bs .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.ffs-bs .btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ffs-bs .btn:focus,.ffs-bs .btn:active:focus,.ffs-bs .btn.active:focus,.ffs-bs .btn.focus,.ffs-bs .btn:active.focus,.ffs-bs .btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ffs-bs .btn:hover,.ffs-bs .btn:focus,.ffs-bs .btn.focus{color:#333;text-decoration:none}.ffs-bs .btn:active,.ffs-bs .btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.ffs-bs .btn.disabled,.ffs-bs .btn[disabled],.ffs-bs fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.ffs-bs .btn-default{color:#333;background-color:#fff;border-color:#ccc}.ffs-bs .btn-default:hover,.ffs-bs .btn-default:focus,.ffs-bs .btn-default.focus,.ffs-bs .btn-default:active,.ffs-bs .btn-default.active,.ffs-bs .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.ffs-bs .btn-default:active,.ffs-bs .btn-default.active,.ffs-bs .open>.dropdown-toggle.btn-default{background-image:none}.ffs-bs .btn-default.disabled,.ffs-bs .btn-default[disabled],.ffs-bs fieldset[disabled] .btn-default,.ffs-bs .btn-default.disabled:hover,.ffs-bs .btn-default[disabled]:hover,.ffs-bs fieldset[disabled] .btn-default:hover,.ffs-bs .btn-default.disabled:focus,.ffs-bs .btn-default[disabled]:focus,.ffs-bs fieldset[disabled] .btn-default:focus,.ffs-bs .btn-default.disabled.focus,.ffs-bs .btn-default[disabled].focus,.ffs-bs fieldset[disabled] .btn-default.focus,.ffs-bs .btn-default.disabled:active,.ffs-bs .btn-default[disabled]:active,.ffs-bs fieldset[disabled] .btn-default:active,.ffs-bs .btn-default.disabled.active,.ffs-bs .btn-default[disabled].active,.ffs-bs fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.ffs-bs .btn-default .badge{color:#fff;background-color:#333}.ffs-bs .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.ffs-bs .btn-primary:hover,.ffs-bs .btn-primary:focus,.ffs-bs .btn-primary.focus,.ffs-bs .btn-primary:active,.ffs-bs .btn-primary.active,.ffs-bs .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.ffs-bs .btn-primary:active,.ffs-bs .btn-primary.active,.ffs-bs .open>.dropdown-toggle.btn-primary{background-image:none}.ffs-bs .btn-primary.disabled,.ffs-bs .btn-primary[disabled],.ffs-bs fieldset[disabled] .btn-primary,.ffs-bs .btn-primary.disabled:hover,.ffs-bs .btn-primary[disabled]:hover,.ffs-bs fieldset[disabled] .btn-primary:hover,.ffs-bs .btn-primary.disabled:focus,.ffs-bs .btn-primary[disabled]:focus,.ffs-bs fieldset[disabled] .btn-primary:focus,.ffs-bs .btn-primary.disabled.focus,.ffs-bs .btn-primary[disabled].focus,.ffs-bs fieldset[disabled] .btn-primary.focus,.ffs-bs .btn-primary.disabled:active,.ffs-bs .btn-primary[disabled]:active,.ffs-bs fieldset[disabled] .btn-primary:active,.ffs-bs .btn-primary.disabled.active,.ffs-bs .btn-primary[disabled].active,.ffs-bs fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.ffs-bs .btn-primary .badge{color:#337ab7;background-color:#fff}.ffs-bs .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.ffs-bs .btn-success:hover,.ffs-bs .btn-success:focus,.ffs-bs .btn-success.focus,.ffs-bs .btn-success:active,.ffs-bs .btn-success.active,.ffs-bs .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.ffs-bs .btn-success:active,.ffs-bs .btn-success.active,.ffs-bs .open>.dropdown-toggle.btn-success{background-image:none}.ffs-bs .btn-success.disabled,.ffs-bs .btn-success[disabled],.ffs-bs fieldset[disabled] .btn-success,.ffs-bs .btn-success.disabled:hover,.ffs-bs .btn-success[disabled]:hover,.ffs-bs fieldset[disabled] .btn-success:hover,.ffs-bs .btn-success.disabled:focus,.ffs-bs .btn-success[disabled]:focus,.ffs-bs fieldset[disabled] .btn-success:focus,.ffs-bs .btn-success.disabled.focus,.ffs-bs .btn-success[disabled].focus,.ffs-bs fieldset[disabled] .btn-success.focus,.ffs-bs .btn-success.disabled:active,.ffs-bs .btn-success[disabled]:active,.ffs-bs fieldset[disabled] .btn-success:active,.ffs-bs .btn-success.disabled.active,.ffs-bs .btn-success[disabled].active,.ffs-bs fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.ffs-bs .btn-success .badge{color:#5cb85c;background-color:#fff}.ffs-bs .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.ffs-bs .btn-info:hover,.ffs-bs .btn-info:focus,.ffs-bs .btn-info.focus,.ffs-bs .btn-info:active,.ffs-bs .btn-info.active,.ffs-bs .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.ffs-bs .btn-info:active,.ffs-bs .btn-info.active,.ffs-bs .open>.dropdown-toggle.btn-info{background-image:none}.ffs-bs .btn-info.disabled,.ffs-bs .btn-info[disabled],.ffs-bs fieldset[disabled] .btn-info,.ffs-bs .btn-info.disabled:hover,.ffs-bs .btn-info[disabled]:hover,.ffs-bs fieldset[disabled] .btn-info:hover,.ffs-bs .btn-info.disabled:focus,.ffs-bs .btn-info[disabled]:focus,.ffs-bs fieldset[disabled] .btn-info:focus,.ffs-bs .btn-info.disabled.focus,.ffs-bs .btn-info[disabled].focus,.ffs-bs fieldset[disabled] .btn-info.focus,.ffs-bs .btn-info.disabled:active,.ffs-bs .btn-info[disabled]:active,.ffs-bs fieldset[disabled] .btn-info:active,.ffs-bs .btn-info.disabled.active,.ffs-bs .btn-info[disabled].active,.ffs-bs fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.ffs-bs .btn-info .badge{color:#5bc0de;background-color:#fff}.ffs-bs .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.ffs-bs .btn-warning:hover,.ffs-bs .btn-warning:focus,.ffs-bs .btn-warning.focus,.ffs-bs .btn-warning:active,.ffs-bs .btn-warning.active,.ffs-bs .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.ffs-bs .btn-warning:active,.ffs-bs .btn-warning.active,.ffs-bs .open>.dropdown-toggle.btn-warning{background-image:none}.ffs-bs .btn-warning.disabled,.ffs-bs .btn-warning[disabled],.ffs-bs fieldset[disabled] .btn-warning,.ffs-bs .btn-warning.disabled:hover,.ffs-bs .btn-warning[disabled]:hover,.ffs-bs fieldset[disabled] .btn-warning:hover,.ffs-bs .btn-warning.disabled:focus,.ffs-bs .btn-warning[disabled]:focus,.ffs-bs fieldset[disabled] .btn-warning:focus,.ffs-bs .btn-warning.disabled.focus,.ffs-bs .btn-warning[disabled].focus,.ffs-bs fieldset[disabled] .btn-warning.focus,.ffs-bs .btn-warning.disabled:active,.ffs-bs .btn-warning[disabled]:active,.ffs-bs fieldset[disabled] .btn-warning:active,.ffs-bs .btn-warning.disabled.active,.ffs-bs .btn-warning[disabled].active,.ffs-bs fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.ffs-bs .btn-warning .badge{color:#f0ad4e;background-color:#fff}.ffs-bs .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.ffs-bs .btn-danger:hover,.ffs-bs .btn-danger:focus,.ffs-bs .btn-danger.focus,.ffs-bs .btn-danger:active,.ffs-bs .btn-danger.active,.ffs-bs .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.ffs-bs .btn-danger:active,.ffs-bs .btn-danger.active,.ffs-bs .open>.dropdown-toggle.btn-danger{background-image:none}.ffs-bs .btn-danger.disabled,.ffs-bs .btn-danger[disabled],.ffs-bs fieldset[disabled] .btn-danger,.ffs-bs .btn-danger.disabled:hover,.ffs-bs .btn-danger[disabled]:hover,.ffs-bs fieldset[disabled] .btn-danger:hover,.ffs-bs .btn-danger.disabled:focus,.ffs-bs .btn-danger[disabled]:focus,.ffs-bs fieldset[disabled] .btn-danger:focus,.ffs-bs .btn-danger.disabled.focus,.ffs-bs .btn-danger[disabled].focus,.ffs-bs fieldset[disabled] .btn-danger.focus,.ffs-bs .btn-danger.disabled:active,.ffs-bs .btn-danger[disabled]:active,.ffs-bs fieldset[disabled] .btn-danger:active,.ffs-bs .btn-danger.disabled.active,.ffs-bs .btn-danger[disabled].active,.ffs-bs fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.ffs-bs .btn-danger .badge{color:#d9534f;background-color:#fff}.ffs-bs .btn-link{color:#337ab7;font-weight:normal;border-radius:0}.ffs-bs .btn-link,.ffs-bs .btn-link:active,.ffs-bs .btn-link.active,.ffs-bs .btn-link[disabled],.ffs-bs fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.ffs-bs .btn-link,.ffs-bs .btn-link:hover,.ffs-bs .btn-link:focus,.ffs-bs .btn-link:active{border-color:transparent}.ffs-bs .btn-link:hover,.ffs-bs .btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.ffs-bs .btn-link[disabled]:hover,.ffs-bs fieldset[disabled] .btn-link:hover,.ffs-bs .btn-link[disabled]:focus,.ffs-bs fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.ffs-bs .btn-lg,.ffs-bs .btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.ffs-bs .btn-sm,.ffs-bs .btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ffs-bs .btn-xs,.ffs-bs .btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.ffs-bs .btn-block{display:block;width:100%}.ffs-bs .btn-block+.btn-block{margin-top:5px}.ffs-bs input[type="submit"].btn-block,.ffs-bs input[type="reset"].btn-block,.ffs-bs input[type="button"].btn-block{width:100%}.ffs-bs .btn-group,.ffs-bs .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.ffs-bs .btn-group>.btn,.ffs-bs .btn-group-vertical>.btn{position:relative;float:left}.ffs-bs .btn-group>.btn:hover,.ffs-bs .btn-group-vertical>.btn:hover,.ffs-bs .btn-group>.btn:focus,.ffs-bs .btn-group-vertical>.btn:focus,.ffs-bs .btn-group>.btn:active,.ffs-bs .btn-group-vertical>.btn:active,.ffs-bs .btn-group>.btn.active,.ffs-bs .btn-group-vertical>.btn.active{z-index:2}.ffs-bs .btn-group .btn+.btn,.ffs-bs .btn-group .btn+.btn-group,.ffs-bs .btn-group .btn-group+.btn,.ffs-bs .btn-group .btn-group+.btn-group{margin-left:-1px}.ffs-bs .btn-toolbar{margin-left:-5px}.ffs-bs .btn-toolbar .btn-group,.ffs-bs .btn-toolbar .input-group{float:left}.ffs-bs .btn-toolbar>.btn,.ffs-bs .btn-toolbar>.btn-group,.ffs-bs .btn-toolbar>.input-group{margin-left:5px}.ffs-bs .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.ffs-bs .btn-group>.btn:first-child{margin-left:0}.ffs-bs .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.ffs-bs .btn-group>.btn:last-child:not(:first-child),.ffs-bs .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.ffs-bs .btn-group>.btn-group{float:left}.ffs-bs .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.ffs-bs .btn-group>.btn-group:first-child>.btn:last-child,.ffs-bs .btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.ffs-bs .btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.ffs-bs .btn-group .dropdown-toggle:active,.ffs-bs .btn-group.open .dropdown-toggle{outline:0}.ffs-bs .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.ffs-bs .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.ffs-bs .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.ffs-bs .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.ffs-bs .btn .caret{margin-left:0}.ffs-bs .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.ffs-bs .dropup .btn-lg .caret{border-width:0 5px 5px}.ffs-bs .btn-group-vertical>.btn,.ffs-bs .btn-group-vertical>.btn-group,.ffs-bs .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.ffs-bs .btn-group-vertical>.btn-group>.btn{float:none}.ffs-bs .btn-group-vertical>.btn+.btn,.ffs-bs .btn-group-vertical>.btn+.btn-group,.ffs-bs .btn-group-vertical>.btn-group+.btn,.ffs-bs .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.ffs-bs .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.ffs-bs .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.ffs-bs .btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.ffs-bs .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.ffs-bs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.ffs-bs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.ffs-bs .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.ffs-bs .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.ffs-bs .btn-group-justified>.btn,.ffs-bs .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.ffs-bs .btn-group-justified>.btn-group .btn{width:100%}.ffs-bs .btn-group-justified>.btn-group .dropdown-menu{left:auto}.ffs-bs [data-toggle="buttons"]>.btn input[type="radio"],.ffs-bs [data-toggle="buttons"]>.btn-group>.btn input[type="radio"],.ffs-bs [data-toggle="buttons"]>.btn input[type="checkbox"],.ffs-bs [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.ffs-bs .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.ffs-bs .thumbnail>img,.ffs-bs .thumbnail a>img{margin-left:auto;margin-right:auto}.ffs-bs a.thumbnail:hover,.ffs-bs a.thumbnail:focus,.ffs-bs a.thumbnail.active{border-color:#337ab7}.ffs-bs .thumbnail .caption{padding:9px;color:#333}.ffs-bs .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.ffs-bs .alert h4{margin-top:0;color:inherit}.ffs-bs .alert .alert-link{font-weight:bold}.ffs-bs .alert>p,.ffs-bs .alert>ul{margin-bottom:0}.ffs-bs .alert>p+p{margin-top:5px}.ffs-bs .alert-dismissable,.ffs-bs .alert-dismissible{padding-right:35px}.ffs-bs .alert-dismissable .close,.ffs-bs .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.ffs-bs .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.ffs-bs .alert-success hr{border-top-color:#c9e2b3}.ffs-bs .alert-success .alert-link{color:#2b542c}.ffs-bs .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.ffs-bs .alert-info hr{border-top-color:#a6e1ec}.ffs-bs .alert-info .alert-link{color:#245269}.ffs-bs .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.ffs-bs .alert-warning hr{border-top-color:#f7e1b5}.ffs-bs .alert-warning .alert-link{color:#66512c}.ffs-bs .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.ffs-bs .alert-danger hr{border-top-color:#e4b9c0}.ffs-bs .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.ffs-bs .progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.ffs-bs .progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.ffs-bs .progress-striped .progress-bar,.ffs-bs .progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.ffs-bs .progress.active .progress-bar,.ffs-bs .progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.ffs-bs .progress-bar-success{background-color:#5cb85c}.ffs-bs .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .progress-bar-info{background-color:#5bc0de}.ffs-bs .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .progress-bar-warning{background-color:#f0ad4e}.ffs-bs .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .progress-bar-danger{background-color:#d9534f}.ffs-bs .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.ffs-bs .tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.ffs-bs .tooltip.in{opacity:.9;filter:alpha(opacity=90)}.ffs-bs .tooltip.top{margin-top:-3px;padding:5px 0}.ffs-bs .tooltip.right{margin-left:3px;padding:0 5px}.ffs-bs .tooltip.bottom{margin-top:3px;padding:5px 0}.ffs-bs .tooltip.left{margin-left:-3px;padding:0 5px}.ffs-bs .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.ffs-bs .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.ffs-bs .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.ffs-bs .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.ffs-bs .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.ffs-bs .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.ffs-bs .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.ffs-bs .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.ffs-bs .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.ffs-bs .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.ffs-bs .clearfix:before,.ffs-bs .clearfix:after,.ffs-bs .btn-toolbar:before,.ffs-bs .btn-toolbar:after,.ffs-bs .btn-group-vertical>.btn-group:before,.ffs-bs .btn-group-vertical>.btn-group:after{content:" ";display:table}.ffs-bs .clearfix:after,.ffs-bs .btn-toolbar:after,.ffs-bs .btn-group-vertical>.btn-group:after{clear:both}.ffs-bs .center-block{display:block;margin-left:auto;margin-right:auto}.ffs-bs .pull-right{float:right !important}.ffs-bs .pull-left{float:left !important}.ffs-bs .hide{display:none !important}.ffs-bs .show{display:block !important}.ffs-bs .invisible{visibility:hidden}.ffs-bs .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.ffs-bs .hidden{display:none !important;visibility:hidden !important}.ffs-bs .affix{position:fixed}}.row,.clearfix{zoom:1}.clearfix:before,.clearfix:after,.row:before,.row:after{content:'';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.ffs-two-one{width:48%}.ffs-three-one{width:30.66%}.ffs-three-two{width:65.33%}.ffs-four-one{width:22%}.ffs-four-two{width:48%}.ffs-four-three{width:74%}.ffs-five-one{width:16.8%}.ffs-five-two{width:37.6%}.ffs-five-three{width:58.4%}.ffs-five-four{width:67.2%}.ffs-six-one{width:13.33%}.ffs-six-two{width:30.66%}.ffs-six-three{width:47.99%}.ffs-six-four{width:65.33%}.ffs-six-five{width:82.67%}.ffs-two-one,.ffs-three-one,.ffs-three-two,.ffs-four-one,.ffs-four-two,.ffs-four-three,.ffs-five-one,.ffs-five-two,.ffs-five-three,.ffs-five-four,.ffs-six-one,.ffs-six-two,.ffs-six-three,.ffs-six-four,.ffs-six-five{float:left;margin-right:4%;margin-bottom:4%;position:relative}.last{clear:right;margin-right:0 !important}.entry-content .entry-thumbnail {width: 25%;margin: 1em 0 1em 0;}@media only screen and (max-width:768px){.entry-content .entry-thumbnail {width: 100%;}.blog_post .post-content, .eleven.columns .blog_post .post-content, .search .blog_post .post-content {width: auto;}.flexslider .blog_post > a{display: none;}.ffs-two-one,.ffs-three-one,.ffs-three-two,.ffs-four-one,.ffs-four-two,.ffs-four-three,.ffs-five-one,.ffs-five-two,.ffs-five-three,.ffs-five-four,.ffs-six-one,.ffs-six-two,.ffs-six-three,.ffs-six-four,.ffs-six-five{margin-right:0;width:100% !important}}.info-box-row{display:block;float:left;margin:30px 0 25px;width:100%}.info-box-row .ffs-info-box .infobox-title{margin:0 0 5px;font-weight:300}.info-box-row .ffs-info-box .infobox-text{padding:0}.info-box-row .ffs-info-box img.icon{display:block;min-height:51px;margin:0 auto 15px;min-width:51px}.info-box-row .ffs-info-box .ffs-icon-container{text-align:center;margin:0 auto;display:block;width:auto}.info-box-row .ffs-info-box .ffs-icon-container i{text-align:center;font-size:26px;padding:10px;margin:5px 0}.ffs-info-box.center .ffs-icon-box,.ffs-info-box.center .ffs-content-box{width:100%}.ffs-info-box.left .ffs-icon-box,.ffs-info-box.right .ffs-icon-box{width:20%;display:block}.ffs-info-box.left .ffs-content-box,.ffs-info-box.right .ffs-content-box{width:80%;display:block}.ffs-info-box.left .ffs-icon-box,.ffs-info-box.right .ffs-content-box{float:left}.ffs-info-box.right .ffs-icon-box,.ffs-info-box.left .ffs-content-box{float:right}.btn .ffs-icon-container{font-size:inherit}.btn .ffs-icon-container.left{padding:0 8px 0 0;text-align:left}.btn .ffs-icon-container.right{padding:0 0 0 8px;text-align:right}.fruitful_description_box{position:relative;z-index:0}.fruitful_description{float:left;width:100%;min-height:50px;margin:10px 0 20px 0;position:relative;display:block;background:#fff}.fruitful_description.shadow-type-4:before,.fruitful_description.shadow-type-5:before{position:absolute;width:80%;height:45%;left:10%;border-radius:50%;z-index:-1;top:0;content:"";-moz-box-shadow:0 -2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 -2px 16px rgba(0,0,0,0.4);box-shadow:0 -2px 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-4:after,.fruitful_description.shadow-type-5:after{position:absolute;width:80%;height:45%;left:10%;border-radius:50%;z-index:-1;bottom:0;content:"";-moz-box-shadow:0 2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 2px 16px rgba(0,0,0,0.4);box-shadow:0 2px 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-1:before,.fruitful_description.shadow-type-1:after{display:none}.fruitful_description.shadow-type-1 .top_line{z-index:2;display:block;width:100%;height:15px;overflow:hidden;position:absolute;top:0;left:0}.fruitful_description.shadow-type-1 .top_line:before,.fruitful_description.shadow-type-1 .top_line:after{z-index:1;position:absolute;content:"";top:-20px;left:10px;width:50%;bottom:31px;max-width:300px;background:#777;-webkit-box-shadow:0 13px 16px #777;-moz-box-shadow:0 13px 16px #777;box-shadow:0 13px 16px #777;-webkit-transform:rotate(-1.5deg);-moz-transform:rotate(-1.5deg);-o-transform:rotate(-1.5deg);-ms-transform:rotate(-1.5deg);transform:rotate(-1.5deg)}.fruitful_description.shadow-type-1 .top_line:after{-webkit-transform:rotate(1.5deg);-moz-transform:rotate(1.5deg);-o-transform:rotate(1.5deg);-ms-transform:rotate(1.5deg);transform:rotate(1.5deg);right:10px;left:auto}.fruitful_description.shadow-type-1 .bottom_line{z-index:2;display:block;width:100%;height:15px;overflow:hidden;position:absolute;bottom:0;left:0}.fruitful_description.shadow-type-1 .bottom_line:before,.fruitful_description.shadow-type-1 .bottom_line:after{z-index:1;position:absolute;content:"";top:31px;left:10px;width:50%;bottom:-20px;max-width:300px;background:#777;-webkit-box-shadow:0 -13px 16px #777;box-shadow:0 -13px 16px #777;-webkit-transform:rotate(1.5deg);-moz-transform:rotate(1.5deg);-o-transform:rotate(1.5deg);-ms-transform:rotate(1.5deg);transform:rotate(1.5deg)}.fruitful_description.shadow-type-1 .bottom_line:after{-webkit-transform:rotate(-1.5deg);-moz-transform:rotate(-1.5deg);-o-transform:rotate(-1.5deg);-ms-transform:rotate(-1.5deg);transform:rotate(-1.5deg);right:10px;left:auto}.fruitful_description.shadow-type-2:before,.fruitful_description.shadow-type-2:after{display:none}.fruitful_description.shadow-type-2 .top_line{position:absolute;width:100%;height:10px;overflow:hidden}.fruitful_description.shadow-type-2 .top_line:before{position:absolute;width:50%;height:45%;overflow:hidden;left:25%;border-radius:50%;z-index:1;top:-38%;content:"";-moz-box-shadow:0 -2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 -2px 16px rgba(0,0,0,0.4);box-shadow:0 0 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-2 .bottom_line{position:absolute;width:100%;height:10px;overflow:hidden;bottom:0}.fruitful_description.shadow-type-2 .bottom_line:before{position:absolute;width:50%;height:45%;overflow:hidden;left:25%;border-radius:50%;z-index:1;top:100%;content:"";-moz-box-shadow:0 -2px 16px rgba(0,0,0,0.4);-webkit-box-shadow:0 -2px 16px rgba(0,0,0,0.4);box-shadow:0 0 16px rgba(0,0,0,0.4)}.fruitful_description.shadow-type-3:before,.fruitful_description.shadow-type-3:after{display:none}.fruitful_description.shadow-type-3 .top_line:before,.fruitful_description.shadow-type-3 .top_line:after,.fruitful_description.shadow-type-5 .top_line:before,.fruitful_description.shadow-type-5 .top_line:after{z-index:-1;position:absolute;content:"";top:15px;left:10px;width:50%;bottom:80%;max-width:300px;min-height:4px;background:#777;-webkit-box-shadow:0 -13px 16px #777;box-shadow:0 -13px 16px #777;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg)}.fruitful_description.shadow-type-3 .top_line:after,.fruitful_description.shadow-type-5 .top_line:after{-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg);right:10px;left:auto}.fruitful_description.shadow-type-3 .bottom_line:before,.fruitful_description.shadow-type-3 .bottom_line:after,.fruitful_description.shadow-type-5 .bottom_line:before,.fruitful_description.shadow-type-5 .bottom_line:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:75%;max-width:300px;min-height:4px;background:#777;-webkit-box-shadow:0 13px 16px #777;-moz-box-shadow:0 13px 16px #777;box-shadow:0 13px 16px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.fruitful_description.shadow-type-3 .bottom_line:after,.fruitful_description.shadow-type-5 .bottom_line:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.fruitful_description .text{margin:0 auto;width:90%;padding:10px 0}.ffs-sep{display:block;margin:0 0 30px}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0 !important;border:0;float:right}.ffs-bs .btn{-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;border:0 none}.resp-arrow{margin-top:8px}@media only screen and (max-width:480px){.fruitful_description .text{font-size:20px !important}}
|
includes/shortcodes/js/slider_init.js
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*starts flexslider */
|
2 |
+
jQuery(window).load(function() {
|
3 |
+
jQuery('.flexslider').flexslider({
|
4 |
+
animation: "slide"
|
5 |
+
});
|
6 |
+
});
|
includes/shortcodes/shortcodes.php
CHANGED
@@ -6,18 +6,40 @@
|
|
6 |
wp_enqueue_style( 'ffs-easyResponsiveTabs', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/tabs/easy-responsive-tabs.css');
|
7 |
wp_enqueue_style( 'ffs-fontawesome', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/css/font-awesome.min.css');
|
8 |
wp_enqueue_style( 'ffs-styles', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/css/ffs_styles.css');
|
9 |
-
|
|
|
10 |
}
|
11 |
|
12 |
function fruitful_init_shortcodes_script() {
|
13 |
wp_enqueue_script('ffs-easyResponsiveTabs', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/tabs/easyResponsiveTabs.js', array( 'jquery' ), '20142803', true );
|
14 |
wp_enqueue_script('ffs-script', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/fss_script.js', array( 'jquery' ), '20142803', true );
|
15 |
-
|
|
|
16 |
}
|
17 |
|
18 |
add_action( 'wp_enqueue_scripts', 'fruitful_init_shortcodes_style', 99 );
|
19 |
add_action( 'wp_enqueue_scripts', 'fruitful_init_shortcodes_script', 100 );
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
function fruitful_description_box ($atts, $content = null) {
|
22 |
$out = '';
|
23 |
extract(shortcode_atts(array(
|
@@ -361,7 +383,7 @@ function fruitful_btn_shortcode ( $atts, $content = null ) {
|
|
361 |
'color' => 'primary',
|
362 |
'type' => 'link',
|
363 |
'state' => '',
|
364 |
-
'text_color' => '
|
365 |
'icon' => '',
|
366 |
'icon_position' => 'left',
|
367 |
'link' => '#',
|
@@ -465,4 +487,154 @@ function fruitful_sh_esc_content_pbr($content = null) {
|
|
465 |
function fruitful_sh_esc_link($link){
|
466 |
$link = esc_url(str_replace('”','',str_replace('“','',$link)));
|
467 |
return $link;
|
468 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
wp_enqueue_style( 'ffs-easyResponsiveTabs', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/tabs/easy-responsive-tabs.css');
|
7 |
wp_enqueue_style( 'ffs-fontawesome', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/css/font-awesome.min.css');
|
8 |
wp_enqueue_style( 'ffs-styles', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/css/ffs_styles.css');
|
9 |
+
if ( !fruitful_is_bootstrap_css_loaded() )
|
10 |
+
wp_enqueue_style( 'ffs-boostrap', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/bootstrap/css/bootstrap.min.css');
|
11 |
}
|
12 |
|
13 |
function fruitful_init_shortcodes_script() {
|
14 |
wp_enqueue_script('ffs-easyResponsiveTabs', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/tabs/easyResponsiveTabs.js', array( 'jquery' ), '20142803', true );
|
15 |
wp_enqueue_script('ffs-script', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/fss_script.js', array( 'jquery' ), '20142803', true );
|
16 |
+
if ( !fruitful_is_bootstrap_js_loaded() )
|
17 |
+
wp_enqueue_script('ffs-bootstrap', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/bootstrap/js/bootstrap.min.js', array( 'jquery' ), '20142803', true );
|
18 |
}
|
19 |
|
20 |
add_action( 'wp_enqueue_scripts', 'fruitful_init_shortcodes_style', 99 );
|
21 |
add_action( 'wp_enqueue_scripts', 'fruitful_init_shortcodes_script', 100 );
|
22 |
|
23 |
+
function fruitful_is_bootstrap_js_loaded() {
|
24 |
+
global $wp_scripts;
|
25 |
+
|
26 |
+
foreach( $wp_scripts->queue as $script ) :
|
27 |
+
if ( preg_match('/\b(\w*bootstrap\w*)\b/', $script, $matches) ) return true;
|
28 |
+
endforeach;
|
29 |
+
|
30 |
+
return false;
|
31 |
+
}
|
32 |
+
|
33 |
+
function fruitful_is_bootstrap_css_loaded() {
|
34 |
+
global $wp_styles;
|
35 |
+
|
36 |
+
foreach( $wp_styles->queue as $style ) :
|
37 |
+
if ( preg_match('/\b(\w*bootstrap\w*)\b/', $style, $matches) ) return true;
|
38 |
+
endforeach;
|
39 |
+
|
40 |
+
return false;
|
41 |
+
}
|
42 |
+
|
43 |
function fruitful_description_box ($atts, $content = null) {
|
44 |
$out = '';
|
45 |
extract(shortcode_atts(array(
|
383 |
'color' => 'primary',
|
384 |
'type' => 'link',
|
385 |
'state' => '',
|
386 |
+
'text_color' => 'fff',
|
387 |
'icon' => '',
|
388 |
'icon_position' => 'left',
|
389 |
'link' => '#',
|
487 |
function fruitful_sh_esc_link($link){
|
488 |
$link = esc_url(str_replace('”','',str_replace('“','',$link)));
|
489 |
return $link;
|
490 |
+
}
|
491 |
+
|
492 |
+
function fruitful_recent_posts(){
|
493 |
+
$args = array(
|
494 |
+
'orderby' => 'modified',
|
495 |
+
'order' => 'DESC',
|
496 |
+
'post_type' => 'post',
|
497 |
+
'post_status' => 'publish',
|
498 |
+
'posts_per_page' => 4
|
499 |
+
);
|
500 |
+
$my_query = new WP_Query($args);
|
501 |
+
if( $my_query->have_posts() ) {
|
502 |
+
$out1 = "";
|
503 |
+
while ($my_query->have_posts()) : $my_query->the_post();
|
504 |
+
$day = get_the_date('d');
|
505 |
+
$month_abr = get_the_date('M');
|
506 |
+
$the_ID = get_the_ID();
|
507 |
+
$post_class = get_post_class();
|
508 |
+
$the_permalink = get_the_permalink();
|
509 |
+
$title = esc_attr( sprintf( __( 'Permalink to %s', 'fruitful' ), the_title_attribute( 'echo=0' ) ) );
|
510 |
+
$the_title = get_the_title();
|
511 |
+
$the_post_thumbnail = get_the_post_thumbnail();
|
512 |
+
$the_excerpt = get_the_excerpt();
|
513 |
+
$the_category = get_the_category_list( ', ', 'fruitful' );
|
514 |
+
$tags_list = get_the_tag_list( '', __( ', ', 'fruitful' ) );
|
515 |
+
|
516 |
+
$out1 .= '<article id="post-'.$the_ID.'" class="blog_post blog '.implode(' ', $post_class).'">';
|
517 |
+
|
518 |
+
$out1 .= '<a href="'.$the_permalink.'" rel="bookmark">
|
519 |
+
<div class="date_of_post updated">
|
520 |
+
<span class="day_post">'.$day.'</span>
|
521 |
+
<span class="month_post">'.$month_abr.'</span>
|
522 |
+
</div>
|
523 |
+
</a>';
|
524 |
+
|
525 |
+
$out1 .= '<div class="post-content">
|
526 |
+
<header class="post-header">
|
527 |
+
<h2 class="post-title entry-title">
|
528 |
+
<a href="'.$the_permalink.'" title="'.$title.'" rel="bookmark">'.$the_title.'</a>
|
529 |
+
</h2>
|
530 |
+
</header><!-- .entry-header -->';
|
531 |
+
|
532 |
+
$out1 .= '<div class="entry-content">';
|
533 |
+
if ( has_post_thumbnail() && ! post_password_required() ) :
|
534 |
+
$out1 .='<div class="entry-thumbnail">'
|
535 |
+
.$the_post_thumbnail.
|
536 |
+
'</div>';
|
537 |
+
endif;
|
538 |
+
$out1 .= $the_excerpt.
|
539 |
+
'</div><!-- .entry-content -->';
|
540 |
+
$out1 .= '<footer class="entry-meta">
|
541 |
+
<span class="author-link author"><a href="'.esc_url( get_author_posts_url( get_the_author_meta( 'ID' ))).'">'.get_the_author().'</a></span>
|
542 |
+
<span class="cat-links">
|
543 |
+
Posted in '.$the_category.'
|
544 |
+
</span>
|
545 |
+
<span class="tag-links">
|
546 |
+
'.$tags_list.'
|
547 |
+
</span> ';
|
548 |
+
$out1 .= '</footer>
|
549 |
+
</div>
|
550 |
+
</article>';
|
551 |
+
$out1 .= '<div class="clearfix"></div>';
|
552 |
+
endwhile;
|
553 |
+
}
|
554 |
+
return $out1;
|
555 |
+
wp_reset_query();
|
556 |
+
}
|
557 |
+
|
558 |
+
add_shortcode ("fruitful_recent_posts", "fruitful_recent_posts");
|
559 |
+
|
560 |
+
|
561 |
+
|
562 |
+
function fruitful_recent_posts_slider(){
|
563 |
+
//Add FlexSlider
|
564 |
+
wp_enqueue_style( 'flex-slider', get_template_directory_uri() . '/js/flex_slider/slider.css');
|
565 |
+
wp_enqueue_script('flex-fitvid-j', get_template_directory_uri() . '/js/flex_slider/jquery.flexslider-min.js', array( 'jquery' ), '20130930', false );
|
566 |
+
wp_enqueue_script('flex-slider', FRUITFUL_SHORTCODE_URI . 'includes/shortcodes/js/slider_init.js', array( 'jquery' ));
|
567 |
+
|
568 |
+
|
569 |
+
$args=array(
|
570 |
+
'orderby' => 'modified',
|
571 |
+
'order' => 'DESC',
|
572 |
+
'post_type' => 'post',
|
573 |
+
'post_status' => 'publish',
|
574 |
+
'posts_per_page'=> 4,
|
575 |
+
);
|
576 |
+
$my_query = new WP_Query($args);
|
577 |
+
if( $my_query->have_posts() ) {
|
578 |
+
$out1 = "";
|
579 |
+
$out1 .= '<h1>Chosen posts</h1>
|
580 |
+
<div class="flexslider">
|
581 |
+
<ul class="slides">';
|
582 |
+
while ($my_query->have_posts()) : $my_query->the_post();
|
583 |
+
$day = get_the_date('d');
|
584 |
+
$month_abr = get_the_date('M');
|
585 |
+
$the_ID = get_the_ID();
|
586 |
+
$post_class = get_post_class();
|
587 |
+
$the_permalink = get_the_permalink();
|
588 |
+
$title = esc_attr( sprintf( __( 'Permalink to %s', 'fruitful' ), the_title_attribute( 'echo=0' ) ) );
|
589 |
+
$the_title = get_the_title();
|
590 |
+
$the_post_thumbnail = get_the_post_thumbnail();
|
591 |
+
$the_excerpt = get_the_excerpt();
|
592 |
+
$the_category = get_the_category_list( ', ', 'fruitful' );
|
593 |
+
$tags_list = get_the_tag_list( '', __( ', ', 'fruitful' ) );
|
594 |
+
|
595 |
+
$out1 .= '<li>';
|
596 |
+
$out1 .= '<article id="post-'.$the_ID.'" class="blog_post blog '.implode(' ', $post_class).'">';
|
597 |
+
|
598 |
+
$out1 .= '<a href="'.$the_permalink.'" rel="bookmark">
|
599 |
+
<div class="date_of_post updated">
|
600 |
+
<span class="day_post">'.$day.'</span>
|
601 |
+
<span class="month_post">'.$month_abr.'</span>
|
602 |
+
</div>
|
603 |
+
</a>';
|
604 |
+
|
605 |
+
$out1 .= '<div class="post-content">
|
606 |
+
<header class="post-header">
|
607 |
+
<h2 class="post-title entry-title">
|
608 |
+
<a href="'.$the_permalink.'" title="'.$title.'" rel="bookmark">'.$the_title.'</a>
|
609 |
+
</h2>
|
610 |
+
</header><!-- .entry-header -->';
|
611 |
+
|
612 |
+
$out1 .= '<div class="entry-content">';
|
613 |
+
if ( has_post_thumbnail() && ! post_password_required() ) :
|
614 |
+
$out1 .='<div class="entry-thumbnail">'
|
615 |
+
.$the_post_thumbnail.
|
616 |
+
'</div>';
|
617 |
+
endif;
|
618 |
+
$out1 .= $the_excerpt.
|
619 |
+
'</div><!-- .entry-content -->';
|
620 |
+
$out1 .= '<footer class="entry-meta">
|
621 |
+
<span class="author-link author"><a href="'.esc_url( get_author_posts_url( get_the_author_meta( 'ID' ))).'">'.get_the_author().'</a></span>
|
622 |
+
<span class="cat-links">
|
623 |
+
Posted in '.$the_category.'
|
624 |
+
</span>
|
625 |
+
<span class="tag-links">
|
626 |
+
'.$tags_list.'
|
627 |
+
</span> ';
|
628 |
+
$out1 .= '</footer>
|
629 |
+
</div>
|
630 |
+
</article></li>';
|
631 |
+
endwhile;
|
632 |
+
$out1 .= '</ul>';
|
633 |
+
$out1 .= '</div>';
|
634 |
+
$out1 .= '<div class="clearfix"></div>';
|
635 |
+
}
|
636 |
+
return $out1;
|
637 |
+
wp_reset_query();
|
638 |
+
}
|
639 |
+
|
640 |
+
add_shortcode ("fruitful_recent_posts_slider", "fruitful_recent_posts_slider");
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: fruitfulcode
|
3 |
Donate link: http://fruitfulcode.com
|
4 |
-
Tags: admin, fruitful, shortcode, shortcodes, short code, editor, content, bootstrap, post, page, tab, tabs, horizontal tabs, vertical tabs, accordion, promo text, columns, infobox, separator, alert, progress bar, button
|
5 |
-
Requires at least: 3.
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -29,10 +29,11 @@ http://plugins.fruitfulcode.com/shortcodes/
|
|
29 |
<li><a href="http://plugins.fruitfulcode.com/shortcodes/progress-bar/">Progress bar</a></li>
|
30 |
<li><a href="http://plugins.fruitfulcode.com/shortcodes/button/">Button</a></li>
|
31 |
<li><a href="http://plugins.fruitfulcode.com/shortcodes/alert/">Alert</a></li>
|
|
|
32 |
</ol>
|
33 |
|
34 |
<h3>Technical support</h3>
|
35 |
-
If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us
|
36 |
|
37 |
<h3>How to thank a developers</h3>
|
38 |
<ol>
|
@@ -78,6 +79,16 @@ You can check <a href="http://support.fruitfulcode.com/hc/en-us/sections/2004063
|
|
78 |
|
79 |
== Changelog ==
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
= 1.3 =
|
82 |
Release Date: 13.01.2015
|
83 |
|
1 |
=== Plugin Name ===
|
2 |
Contributors: fruitfulcode
|
3 |
Donate link: http://fruitfulcode.com
|
4 |
+
Tags: admin, fruitful, shortcode, shortcodes, short code, editor, content, bootstrap, post, page, tab, tabs, horizontal tabs, vertical tabs, accordion, promo text, columns, infobox, separator, alert, progress bar, button, recent post, recent news
|
5 |
+
Requires at least: 3.4.1
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
29 |
<li><a href="http://plugins.fruitfulcode.com/shortcodes/progress-bar/">Progress bar</a></li>
|
30 |
<li><a href="http://plugins.fruitfulcode.com/shortcodes/button/">Button</a></li>
|
31 |
<li><a href="http://plugins.fruitfulcode.com/shortcodes/alert/">Alert</a></li>
|
32 |
+
<li><a href="http://plugins.fruitfulcode.com/shortcodes/recent-posts/">Recent posts</a></li>
|
33 |
</ol>
|
34 |
|
35 |
<h3>Technical support</h3>
|
36 |
+
If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to <a href="http://support.fruitfulcode.com/hc/en-us/requests/new">contact us</a>
|
37 |
|
38 |
<h3>How to thank a developers</h3>
|
39 |
<ol>
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 1.4 =
|
83 |
+
Release Date: 21.12.2015
|
84 |
+
|
85 |
+
* New features
|
86 |
+
* Recent posts shortcode
|
87 |
+
|
88 |
+
* Bugfixes
|
89 |
+
* Button color
|
90 |
+
* Bootstrap if exist
|
91 |
+
|
92 |
= 1.3 =
|
93 |
Release Date: 13.01.2015
|
94 |
|