From fc4d17b9091f1ea89bfb525a311cf0e614a6795f Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Wed, 16 Nov 2022 22:49:52 +0100 Subject: [PATCH] Initial commit v1 --- .htaccess | 6 + LICENSE.txt | 63 + README.txt | 32 + assets/css/fontawesome-all.min.css | 5 + assets/css/images/bg01.png | Bin 0 -> 6310 bytes assets/css/images/bg02.png | Bin 0 -> 3535 bytes assets/css/images/bg03.png | Bin 0 -> 3693 bytes assets/css/images/bg04.png | Bin 0 -> 3869 bytes assets/css/main backup.css | 2429 +++++++++ assets/css/main.css | 2429 +++++++++ assets/js/breakpoints.min.js | 2 + assets/js/browser.min.js | 2 + assets/js/jquery.dropotron.min.js | 2 + assets/js/jquery.min.js | 2 + assets/js/main.js | 67 + assets/js/util.js | 587 +++ assets/sass/libs/_breakpoints.scss | 223 + assets/sass/libs/_functions.scss | 90 + assets/sass/libs/_html-grid.scss | 149 + assets/sass/libs/_mixins.scss | 78 + assets/sass/libs/_vars.scss | 22 + assets/sass/libs/_vendor.scss | 376 ++ assets/sass/main.scss | 1414 +++++ assets/webfonts/fa-brands-400.eot | Bin 0 -> 129352 bytes assets/webfonts/fa-brands-400.svg | 3442 ++++++++++++ assets/webfonts/fa-brands-400.ttf | Bin 0 -> 129048 bytes assets/webfonts/fa-brands-400.woff | Bin 0 -> 87352 bytes assets/webfonts/fa-brands-400.woff2 | Bin 0 -> 74508 bytes assets/webfonts/fa-regular-400.eot | Bin 0 -> 34388 bytes assets/webfonts/fa-regular-400.svg | 803 +++ assets/webfonts/fa-regular-400.ttf | Bin 0 -> 34092 bytes assets/webfonts/fa-regular-400.woff | Bin 0 -> 16804 bytes assets/webfonts/fa-regular-400.woff2 | Bin 0 -> 13580 bytes assets/webfonts/fa-solid-900.eot | Bin 0 -> 192116 bytes assets/webfonts/fa-solid-900.svg | 4649 +++++++++++++++++ assets/webfonts/fa-solid-900.ttf | Bin 0 -> 191832 bytes assets/webfonts/fa-solid-900.woff | Bin 0 -> 98020 bytes assets/webfonts/fa-solid-900.woff2 | Bin 0 -> 75440 bytes fichiers/charte_20201127.pdf | Bin 0 -> 125884 bytes ...rouzivores-bulletin-adhesion-2021-2022.pdf | Bin 0 -> 67747 bytes fichiers/guide.pdf | Bin 0 -> 1060379 bytes images/AB2C.jpg | Bin 0 -> 39757 bytes images/bakery.jpg | Bin 0 -> 20266 bytes images/bonplant.jpg | Bin 0 -> 667241 bytes images/carottes.jpg | Bin 0 -> 22332 bytes images/cereals.jpg | Bin 0 -> 27813 bytes images/cocottes.jpg | Bin 0 -> 39452 bytes images/courgettes.jpg | Bin 0 -> 15698 bytes images/don.jpg | Bin 0 -> 102757 bytes images/ferrate.jpg | Bin 0 -> 452236 bytes images/frouzivores-marche-2022.jpeg | Bin 0 -> 217226 bytes images/gascons.jpg | Bin 0 -> 23092 bytes images/header.jpg | Bin 0 -> 2933150 bytes images/lacan.jpg | Bin 0 -> 13552 bytes images/logo_light.png | Bin 0 -> 64272 bytes images/macadam.jpg | Bin 0 -> 12029 bytes images/monge.png | Bin 0 -> 234526 bytes images/motive.jpg | Bin 0 -> 50692 bytes images/veilleur_vert.jpg | Bin 0 -> 20496 bytes images/viande.jpg | Bin 0 -> 30134 bytes index.html | 506 ++ 61 files changed, 17378 insertions(+) create mode 100644 .htaccess create mode 100644 LICENSE.txt create mode 100644 README.txt create mode 100644 assets/css/fontawesome-all.min.css create mode 100644 assets/css/images/bg01.png create mode 100644 assets/css/images/bg02.png create mode 100644 assets/css/images/bg03.png create mode 100644 assets/css/images/bg04.png create mode 100644 assets/css/main backup.css create mode 100644 assets/css/main.css create mode 100644 assets/js/breakpoints.min.js create mode 100644 assets/js/browser.min.js create mode 100644 assets/js/jquery.dropotron.min.js create mode 100644 assets/js/jquery.min.js create mode 100644 assets/js/main.js create mode 100644 assets/js/util.js create mode 100644 assets/sass/libs/_breakpoints.scss create mode 100644 assets/sass/libs/_functions.scss create mode 100644 assets/sass/libs/_html-grid.scss create mode 100644 assets/sass/libs/_mixins.scss create mode 100644 assets/sass/libs/_vars.scss create mode 100644 assets/sass/libs/_vendor.scss create mode 100644 assets/sass/main.scss create mode 100644 assets/webfonts/fa-brands-400.eot create mode 100644 assets/webfonts/fa-brands-400.svg create mode 100644 assets/webfonts/fa-brands-400.ttf create mode 100644 assets/webfonts/fa-brands-400.woff create mode 100644 assets/webfonts/fa-brands-400.woff2 create mode 100644 assets/webfonts/fa-regular-400.eot create mode 100644 assets/webfonts/fa-regular-400.svg create mode 100644 assets/webfonts/fa-regular-400.ttf create mode 100644 assets/webfonts/fa-regular-400.woff create mode 100644 assets/webfonts/fa-regular-400.woff2 create mode 100644 assets/webfonts/fa-solid-900.eot create mode 100644 assets/webfonts/fa-solid-900.svg create mode 100644 assets/webfonts/fa-solid-900.ttf create mode 100644 assets/webfonts/fa-solid-900.woff create mode 100644 assets/webfonts/fa-solid-900.woff2 create mode 100644 fichiers/charte_20201127.pdf create mode 100644 fichiers/frouzivores-bulletin-adhesion-2021-2022.pdf create mode 100644 fichiers/guide.pdf create mode 100644 images/AB2C.jpg create mode 100644 images/bakery.jpg create mode 100644 images/bonplant.jpg create mode 100644 images/carottes.jpg create mode 100644 images/cereals.jpg create mode 100644 images/cocottes.jpg create mode 100644 images/courgettes.jpg create mode 100644 images/don.jpg create mode 100644 images/ferrate.jpg create mode 100644 images/frouzivores-marche-2022.jpeg create mode 100644 images/gascons.jpg create mode 100644 images/header.jpg create mode 100644 images/lacan.jpg create mode 100644 images/logo_light.png create mode 100644 images/macadam.jpg create mode 100644 images/monge.png create mode 100644 images/motive.jpg create mode 100644 images/veilleur_vert.jpg create mode 100644 images/viande.jpg create mode 100644 index.html diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..5913d92 --- /dev/null +++ b/.htaccess @@ -0,0 +1,6 @@ +RewriteEngine On + +ErrorDocument 404 /404.html + +RewriteCond %{HTTPS} off +RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..856b578 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,63 @@ +Creative Commons Attribution 3.0 Unported +http://creativecommons.org/licenses/by/3.0/ + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + +1. Definitions + + 1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. + 2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License. + 3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. + 4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. + 5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. + 6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. + 7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. + 9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + 1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; + 2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; + 3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and, + 4. to Distribute and Publicly Perform Adaptations. + 5. + + For the avoidance of doubt: + 1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; + 2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, + 3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. + +The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. + +4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + 1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested. + 2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. + 3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + +8. Miscellaneous + + 1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + 2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + 6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..7d3be34 --- /dev/null +++ b/README.txt @@ -0,0 +1,32 @@ +ZeroFour by HTML5 UP +html5up.net | @ajlkn +Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) + + +A responsive general purpose site template design named as such because it's the fourth +design up here (very creative I know). Has plenty of room for all sorts of content +and even multilevel drop down menus. + +Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images +you can use for pretty much whatever. + +(* = Not included) + +Feedback, bug reports, and comments are not only welcome, but strongly encouraged :) + +AJ +aj@lkn.io | @ajlkn + + +Credits: + + Demo Images: + Unsplash (unsplash.com) + + Icons: + Font Awesome (fontawesome.io) + + Other: + jQuery (jquery.com) + Dropotron (github.com/ajlkn/jquery.dropotron) + Responsive Tools (github.com/ajlkn/responsive-tools) \ No newline at end of file diff --git a/assets/css/fontawesome-all.min.css b/assets/css/fontawesome-all.min.css new file mode 100644 index 0000000..b7d052b --- /dev/null +++ b/assets/css/fontawesome-all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/assets/css/images/bg01.png b/assets/css/images/bg01.png new file mode 100644 index 0000000000000000000000000000000000000000..65b3e95c45cfac861851defb0fe93acb12f0a9c0 GIT binary patch literal 6310 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 literal 0 HcmV?d00001 diff --git a/assets/css/images/bg02.png b/assets/css/images/bg02.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f47f56bb56437219832bb681e2918452a72148 GIT binary patch literal 3535 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 JPDHLkV1nfXhK~RM literal 0 HcmV?d00001 diff --git a/assets/css/images/bg03.png b/assets/css/images/bg03.png new file mode 100644 index 0000000000000000000000000000000000000000..fd45cf1a40edca804d0e58f8dd64d54d539230b0 GIT binary patch literal 3693 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 * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp { + order: -1; + } + + .row > .col-1 { + width: 8.33333%; + } + + .row > .off-1 { + margin-left: 8.33333%; + } + + .row > .col-2 { + width: 16.66667%; + } + + .row > .off-2 { + margin-left: 16.66667%; + } + + .row > .col-3 { + width: 25%; + } + + .row > .off-3 { + margin-left: 25%; + } + + .row > .col-4 { + width: 33.33333%; + } + + .row > .off-4 { + margin-left: 33.33333%; + } + + .row > .col-5 { + width: 41.66667%; + } + + .row > .off-5 { + margin-left: 41.66667%; + } + + .row > .col-6 { + width: 50%; + } + + .row > .off-6 { + margin-left: 50%; + } + + .row > .col-7 { + width: 58.33333%; + } + + .row > .off-7 { + margin-left: 58.33333%; + } + + .row > .col-8 { + width: 66.66667%; + } + + .row > .off-8 { + margin-left: 66.66667%; + } + + .row > .col-9 { + width: 75%; + } + + .row > .off-9 { + margin-left: 75%; + } + + .row > .col-10 { + width: 83.33333%; + } + + .row > .off-10 { + margin-left: 83.33333%; + } + + .row > .col-11 { + width: 91.66667%; + } + + .row > .off-11 { + margin-left: 91.66667%; + } + + .row > .col-12 { + width: 100%; + } + + .row > .off-12 { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -12.5px; + margin-left: -12.5px; + } + + .row.gtr-25 > * { + padding: 12.5px 0 0 12.5px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -12.5px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 12.5px; + } + + .row.gtr-50 { + margin-top: -25px; + margin-left: -25px; + } + + .row.gtr-50 > * { + padding: 25px 0 0 25px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -25px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 25px; + } + + .row { + margin-top: -50px; + margin-left: -50px; + } + + .row > * { + padding: 50px 0 0 50px; + } + + .row.gtr-uniform { + margin-top: -50px; + } + + .row.gtr-uniform > * { + padding-top: 50px; + } + + .row.gtr-150 { + margin-top: -75px; + margin-left: -75px; + } + + .row.gtr-150 > * { + padding: 75px 0 0 75px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -75px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 75px; + } + + .row.gtr-200 { + margin-top: -100px; + margin-left: -100px; + } + + .row.gtr-200 > * { + padding: 100px 0 0 100px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -100px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 100px; + } + + @media screen and (max-width: 1280px) { + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp-large { + order: -1; + } + + .row > .col-1-large { + width: 8.33333%; + } + + .row > .off-1-large { + margin-left: 8.33333%; + } + + .row > .col-2-large { + width: 16.66667%; + } + + .row > .off-2-large { + margin-left: 16.66667%; + } + + .row > .col-3-large { + width: 25%; + } + + .row > .off-3-large { + margin-left: 25%; + } + + .row > .col-4-large { + width: 33.33333%; + } + + .row > .off-4-large { + margin-left: 33.33333%; + } + + .row > .col-5-large { + width: 41.66667%; + } + + .row > .off-5-large { + margin-left: 41.66667%; + } + + .row > .col-6-large { + width: 50%; + } + + .row > .off-6-large { + margin-left: 50%; + } + + .row > .col-7-large { + width: 58.33333%; + } + + .row > .off-7-large { + margin-left: 58.33333%; + } + + .row > .col-8-large { + width: 66.66667%; + } + + .row > .off-8-large { + margin-left: 66.66667%; + } + + .row > .col-9-large { + width: 75%; + } + + .row > .off-9-large { + margin-left: 75%; + } + + .row > .col-10-large { + width: 83.33333%; + } + + .row > .off-10-large { + margin-left: 83.33333%; + } + + .row > .col-11-large { + width: 91.66667%; + } + + .row > .off-11-large { + margin-left: 91.66667%; + } + + .row > .col-12-large { + width: 100%; + } + + .row > .off-12-large { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -8.75px; + margin-left: -8.75px; + } + + .row.gtr-25 > * { + padding: 8.75px 0 0 8.75px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -8.75px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 8.75px; + } + + .row.gtr-50 { + margin-top: -17.5px; + margin-left: -17.5px; + } + + .row.gtr-50 > * { + padding: 17.5px 0 0 17.5px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -17.5px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 17.5px; + } + + .row { + margin-top: -35px; + margin-left: -35px; + } + + .row > * { + padding: 35px 0 0 35px; + } + + .row.gtr-uniform { + margin-top: -35px; + } + + .row.gtr-uniform > * { + padding-top: 35px; + } + + .row.gtr-150 { + margin-top: -52.5px; + margin-left: -52.5px; + } + + .row.gtr-150 > * { + padding: 52.5px 0 0 52.5px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -52.5px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 52.5px; + } + + .row.gtr-200 { + margin-top: -70px; + margin-left: -70px; + } + + .row.gtr-200 > * { + padding: 70px 0 0 70px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -70px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 70px; + } + + } + + @media screen and (max-width: 980px) { + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp-medium { + order: -1; + } + + .row > .col-1-medium { + width: 8.33333%; + } + + .row > .off-1-medium { + margin-left: 8.33333%; + } + + .row > .col-2-medium { + width: 16.66667%; + } + + .row > .off-2-medium { + margin-left: 16.66667%; + } + + .row > .col-3-medium { + width: 25%; + } + + .row > .off-3-medium { + margin-left: 25%; + } + + .row > .col-4-medium { + width: 33.33333%; + } + + .row > .off-4-medium { + margin-left: 33.33333%; + } + + .row > .col-5-medium { + width: 41.66667%; + } + + .row > .off-5-medium { + margin-left: 41.66667%; + } + + .row > .col-6-medium { + width: 50%; + } + + .row > .off-6-medium { + margin-left: 50%; + } + + .row > .col-7-medium { + width: 58.33333%; + } + + .row > .off-7-medium { + margin-left: 58.33333%; + } + + .row > .col-8-medium { + width: 66.66667%; + } + + .row > .off-8-medium { + margin-left: 66.66667%; + } + + .row > .col-9-medium { + width: 75%; + } + + .row > .off-9-medium { + margin-left: 75%; + } + + .row > .col-10-medium { + width: 83.33333%; + } + + .row > .off-10-medium { + margin-left: 83.33333%; + } + + .row > .col-11-medium { + width: 91.66667%; + } + + .row > .off-11-medium { + margin-left: 91.66667%; + } + + .row > .col-12-medium { + width: 100%; + } + + .row > .off-12-medium { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -12.5px; + margin-left: -12.5px; + } + + .row.gtr-25 > * { + padding: 12.5px 0 0 12.5px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -12.5px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 12.5px; + } + + .row.gtr-50 { + margin-top: -25px; + margin-left: -25px; + } + + .row.gtr-50 > * { + padding: 25px 0 0 25px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -25px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 25px; + } + + .row { + margin-top: -50px; + margin-left: -50px; + } + + .row > * { + padding: 50px 0 0 50px; + } + + .row.gtr-uniform { + margin-top: -50px; + } + + .row.gtr-uniform > * { + padding-top: 50px; + } + + .row.gtr-150 { + margin-top: -75px; + margin-left: -75px; + } + + .row.gtr-150 > * { + padding: 75px 0 0 75px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -75px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 75px; + } + + .row.gtr-200 { + margin-top: -100px; + margin-left: -100px; + } + + .row.gtr-200 > * { + padding: 100px 0 0 100px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -100px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 100px; + } + + } + + @media screen and (max-width: 736px) { + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp-small { + order: -1; + } + + .row > .col-1-small { + width: 8.33333%; + } + + .row > .off-1-small { + margin-left: 8.33333%; + } + + .row > .col-2-small { + width: 16.66667%; + } + + .row > .off-2-small { + margin-left: 16.66667%; + } + + .row > .col-3-small { + width: 25%; + } + + .row > .off-3-small { + margin-left: 25%; + } + + .row > .col-4-small { + width: 33.33333%; + } + + .row > .off-4-small { + margin-left: 33.33333%; + } + + .row > .col-5-small { + width: 41.66667%; + } + + .row > .off-5-small { + margin-left: 41.66667%; + } + + .row > .col-6-small { + width: 50%; + } + + .row > .off-6-small { + margin-left: 50%; + } + + .row > .col-7-small { + width: 58.33333%; + } + + .row > .off-7-small { + margin-left: 58.33333%; + } + + .row > .col-8-small { + width: 66.66667%; + } + + .row > .off-8-small { + margin-left: 66.66667%; + } + + .row > .col-9-small { + width: 75%; + } + + .row > .off-9-small { + margin-left: 75%; + } + + .row > .col-10-small { + width: 83.33333%; + } + + .row > .off-10-small { + margin-left: 83.33333%; + } + + .row > .col-11-small { + width: 91.66667%; + } + + .row > .off-11-small { + margin-left: 91.66667%; + } + + .row > .col-12-small { + width: 100%; + } + + .row > .off-12-small { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -2.5px; + margin-left: -2.5px; + } + + .row.gtr-25 > * { + padding: 2.5px 0 0 2.5px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -2.5px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 2.5px; + } + + .row.gtr-50 { + margin-top: -5px; + margin-left: -5px; + } + + .row.gtr-50 > * { + padding: 5px 0 0 5px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -5px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 5px; + } + + .row { + margin-top: -10px; + margin-left: -10px; + } + + .row > * { + padding: 10px 0 0 10px; + } + + .row.gtr-uniform { + margin-top: -10px; + } + + .row.gtr-uniform > * { + padding-top: 10px; + } + + .row.gtr-150 { + margin-top: -15px; + margin-left: -15px; + } + + .row.gtr-150 > * { + padding: 15px 0 0 15px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -15px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 15px; + } + + .row.gtr-200 { + margin-top: -20px; + margin-left: -20px; + } + + .row.gtr-200 > * { + padding: 20px 0 0 20px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -20px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 20px; + } + + } + +/* Section/Article */ + + section, article { + margin-bottom: 5em; + } + + section > :last-child, + article > :last-child, + section:last-child, + article:last-child { + margin-bottom: 0; + } + + header { + margin: 0 0 2em 0; + } + + header h2, header h3 { + margin: 0 0 0.25em 0; + } + + header p { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + margin: 0; + } + + header p strong { + color: #404248; + font-weight: 800; + } + + footer { + margin: 2.5em 0 0 0; + } + + header.major { + border-bottom: solid 1px #dbdbdb; + margin: 0 0 3em 0; + } + + header.major:after { + content: ''; + display: block; + border-top: solid 1px #dbdbdb; + height: 8px; + } + + header.major h2, header.major h3 { + margin: 0 0 1.2em 0; + } + + header.major p { + margin: 0 0 1.5em 0; + position: relative; + top: -1em; + } + +/* Forms */ + + form label { + display: block; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #404248; + margin: 0 0 1em 0; + font-size: 0.8em; + } + + form input[type="text"], + form input[type="email"], + form input[type="password"], + form select, + form textarea { + -webkit-appearance: none; + display: block; + width: 100%; + border-radius: 8px; + border: solid 1px #eee; + } + + form input[type="text"]:focus, + form input[type="email"]:focus, + form input[type="password"]:focus, + form select:focus, + form textarea:focus { + box-shadow: 0 0 2px 1px #4091bf; + } + + form input[type="text"], + form input[type="email"], + form input[type="password"] { + line-height: 3em; + padding: 0 1em; + } + + form select { + line-height: 3em; + padding: 0 1em; + } + + form textarea { + min-height: 9em; + padding: 1em; + } + + form ::-webkit-input-placeholder, + form :-moz-placeholder, + form ::-moz-placeholder, + form :-ms-input-placeholder { + color: #555 !important; + } + + form ::-moz-focus-inner { + border: 0; + } + +/* Tables */ + + table { + width: 100%; + } + + table.default { + width: 100%; + } + + table.default tr { + border-top: solid 1px #eee; + } + + table.default tr:first-child { + border-top: 0; + } + + table.default td { + padding: 0.5em 1em 0.5em 1em; + } + + table.default th { + text-align: left; + padding: 0.5em 1em 0.5em 1em; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + margin: 0 0 1em 0; + font-size: 0.8em; + } + + table.default thead { + background: #404248; + color: #fff; + } + +/* Image */ + + .image { + position: relative; + display: inline-block; + } + + .image img { + display: block; + width: 100%; + border-radius: 8px; + } + + .image:before { + content: ''; + display: block; + position: absolute; + left: 0; + top: 0; + background: url("images/bg01.png"); + width: 100%; + height: 100%; + opacity: 0.75; + } + + .image.fit { + display: block; + width: 100%; + } + + .image.featured { + display: block; + width: 100%; + margin: 0 0 2.5em 0; + } + + .image.left { + float: left; + margin: 0 2em 2em 0; + } + + .image.centered { + display: block; + margin: 0 0 2.5em 0; + } + + .image.centered img { + margin: 0 auto; + width: auto; + } + +/* Button */ + + input[type="button"], + input[type="submit"], + input[type="reset"], + button, + .button { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + -moz-transition: background-color 0.2s ease-in-out; + -webkit-transition: background-color 0.2s ease-in-out; + -ms-transition: background-color 0.2s ease-in-out; + transition: background-color 0.2s ease-in-out; + -webkit-appearance: none; + position: relative; + display: inline-block; + background-color: #4091bf; + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.35), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.35); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + color: #fff !important; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.95em; + letter-spacing: 0.075em; + padding: 1em 2em; + outline: 0; + border: 0; + white-space: nowrap; + cursor: pointer; + } + + input[type="button"].icon:before, + input[type="submit"].icon:before, + input[type="reset"].icon:before, + button.icon:before, + .button.icon:before { + opacity: 0.5; + margin-right: 0.5em; + position: relative; + top: 0.05em; + } + + input[type="button"]:hover, + input[type="submit"]:hover, + input[type="reset"]:hover, + button:hover, + .button:hover { + background-color: #50a1cf; + } + + input[type="button"]:active, + input[type="submit"]:active, + input[type="reset"]:active, + button:active, + .button:active { + background-color: #3081af; + } + + input[type="button"].medium, + input[type="submit"].medium, + input[type="reset"].medium, + button.medium, + .button.medium { + font-size: 1.25em; + padding: 1em 2.25em; + } + + input[type="button"].large, + input[type="submit"].large, + input[type="reset"].large, + button.large, + .button.large { + font-size: 1.5em; + padding: 1em 2.25em; + } + + input[type="button"].alt, + input[type="submit"].alt, + input[type="reset"].alt, + button.alt, + .button.alt { + background-color: #464a52; + } + + input[type="button"].alt:hover, + input[type="submit"].alt:hover, + input[type="reset"].alt:hover, + button.alt:hover, + .button.alt:hover { + background-color: #565a62; + } + + input[type="button"].alt:active, + input[type="submit"].alt:active, + input[type="reset"].alt:active, + button.alt:active, + .button.alt:active { + background-color: #363a42; + } + +/* List */ + + dl.contact dt { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + float: left; + width: 6em; + } + + dl.contact dd { + margin: 0 0 1em 6em; + } + + ul.default { + list-style: disc; + padding-left: 1em; + } + + ul.default li { + padding-left: 0.5em; + } + + ul.actions li { + display: inline-block; + padding: 0 0 0 0.25em; + margin: 0 0 0 0.25em; + } + + ul.actions li:first-child { + margin-left: 0; + padding-left: 0; + } + + ul.menu li { + border-left: solid 1px #eee; + display: inline-block; + padding: 0 0 0 1em; + margin: 0 0 0 1em; + } + + ul.menu li:first-child { + border-left: 0; + margin-left: 0; + padding-left: 0; + } + + ul.divided li { + border-top: solid 1px #eee; + padding: 0.5em 0 0 0; + margin: 0.5em 0 0 0; + } + + ul.divided li:first-child { + border-top: 0 !important; + padding-top: 0 !important; + margin-top: 0 !important; + } + + ol.default { + list-style: decimal; + padding-left: 1.25em; + } + + ol.default li { + padding-left: 0.25em; + } + +/* Box */ + + .box.excerpt { + position: relative; + overflow: hidden; + } + + .box.excerpt header { + margin: 0 0 1em 0; + } + + .box.excerpt .image, .box.excerpt p { + margin-bottom: 0; + } + + .box.feature1 { + text-align: center; + } + + .box.feature1 header { + margin-bottom: 3em; + } + + .box.feature1 header.first h2 { + font-size: 2.5em; + } + + .box.feature1 header.first p { + font-size: 1.2em; + } + + .box.feature1 header.second { + position: relative; + display: inline-block; + text-align: left; + margin: 0 auto; + white-space: nowrap; + left: 24px; + } + + .box.feature1 header.second p { + line-height: 1em; + } + + .box.feature1 header.second:before { + font-size: 48px; + position: absolute; + right: 100%; + margin-right: 18px; + opacity: 0.5; + bottom: -4px; + } + + .box.feature2 { + text-align: center; + } + + .box.article-list article { + border-bottom: solid 1px #dbdbdb; + margin: 0 0 2.75em 0; + padding: 0 0 2.75em 0; + } + + .box.article-list article:last-child { + border-bottom: 0; + margin-bottom: 0; + padding-bottom: 0; + } + +/* Icons */ + + .icon { + text-decoration: none; + text-decoration: none; + } + + .icon:before { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + text-transform: none !important; + font-family: 'Font Awesome 5 Free'; + font-weight: 400; + } + + .icon.solid:before { + font-weight: 900; + } + + .icon.brands:before { + font-family: 'Font Awesome 5 Brands'; + } + + .icon > .label { + display: none; + } + +/* Nav */ + + #nav { + position: absolute; + right: 2em; + top: 0; + line-height: 5.5em; + } + + #nav > ul > li { + float: left; + padding: 0 0.8em 0 0.8em; + } + + #nav > ul > li > a, #nav > ul > li > span { + color: #fff; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.95em; + letter-spacing: 0.075em; + padding: 0.5em 0.8em 0.5em 0.8em; + border-radius: 6px; + outline: 0; + } + + #nav > ul > li.active > a, + #nav > ul > li.current_page_item > a, + #nav > ul > li.active > span, + #nav > ul > li.current_page_item > span { + background: rgba(0, 0, 0, 0.15); + box-shadow: inset 1px 1px 0px 0px rgba(0, 0, 0, 0.025), 1px 1px 0px 0px rgba(255, 255, 255, 0.025); + } + + #nav > ul > li:last-child { + padding-right: 0; + } + + #nav > ul > li > ul { + display: none; + } + + .dropotron { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + position: relative; + background-color: #3B3E45; + background-color: rgba(59, 62, 69, 0.9); + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2), 0px 2px 14px 0px rgba(0, 0, 0, 0.4); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + padding: 1.5em; + line-height: 2.5em; + min-width: 15em; + } + + .dropotron.level-0 { + border-top-left-radius: 0; + border-top-right-radius: 0; + margin-top: -2px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.4); + } + + .dropotron a, .dropotron span { + color: #aaa; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.8em; + letter-spacing: 0.075em; + outline: 0; + } + + .dropotron li:hover > a, .dropotron li:hover > span { + color: #fff; + } + +/* Banner */ + + #banner { + text-align: center; + width: 940px; + margin: 0 auto; + overflow: hidden; + padding: 9em 0 6em 0; + } + + #banner h2 { + border: solid 1px rgba(255, 255, 255, 0.25); + border-left: 0; + border-right: 0; + color: #fff; + color: rgba(255, 255, 255, 0.75); + font-size: 2.35em; + font-weight: 700; + line-height: 1.3em; + margin: 0 0 1.5em 0; + } + + #banner h2 strong { + font-weight: 800; + color: inherit; + } + + #banner h2:before { + content: ''; + display: block; + border-top: solid 1px; + border-color: #888; + border-color: rgba(255, 255, 255, 0.25); + margin: 10px 0 1.25em 0; + } + + #banner h2:after { + content: ''; + display: block; + border-bottom: solid 1px; + border-color: #888; + border-color: rgba(255, 255, 255, 0.25); + margin: 1.25em 0 10px 0; + } + + #banner p { + text-transform: uppercase; + color: #fff; + color: rgba(255, 255, 255, 0.75); + font-size: 1.5em; + font-weight: 700; + line-height: 1.3em; + letter-spacing: 0.04em; + float: left; + text-align: right; + width: 60%; + line-height: 1.5em; + margin: 0; + } + +/* Sidebar */ + + #sidebar h2 { + font-size: 1.5em; + } + +/* Wrappers */ + + #header-wrapper { + background: url("images/bg01.png"), url("../../images/header.jpg"); + background-position: top left, center center; + background-size: auto, cover; + padding: 3em 0; + } + + #main-wrapper { + background: #fff; + } + + #footer-wrapper { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + position: relative; + background-repeat: repeat-x, no-repeat, repeat; + background-size: 100% 100%, 100% 15em, auto auto; + background-position: top left, top center, top left; + padding: 7em 0 7em 0; + } + + .wrapper { + padding: 7em 0 7em 0; + } + + .wrapper > .inner { + position: relative; + z-index: 2; + } + + .wrapper.style1 { + position: relative; + text-shadow: 1px 1px 0 #fff; + background-color: #fff; + background-image: url("images/bg03.png"), url("images/bg04.png"), url("images/bg02.png"); + background-repeat: no-repeat, no-repeat, repeat; + background-size: 100% 15em, 100% 15em, auto auto; + background-position: top center, bottom center, top left; + } + + .wrapper.style3 { + position: relative; + text-shadow: 1px 1px 0 #fff; + background-color: #fff; + background-image: url("images/bg03.png"), url("images/bg02.png"); + background-repeat: no-repeat, repeat; + background-size: 100% 15em, auto auto; + background-position: top center, top left; + } + +/* Header */ + + #header { + position: relative; + border-radius: 10px; + background: rgba(255, 255, 255, 0.1); + padding: 0.75em; + margin-bottom: 0; + } + + #header .inner { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + position: relative; + height: 5.5em; + background-color: #3B3E45; + background-color: rgba(59, 62, 69, 0.9); + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.45), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.15); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + } + + #header h1 { + position: absolute; + left: 1.75em; + top: 50%; + margin-top: -0.65em; + font-size: 1.5em; + color: #fff; + } + +/* Footer */ + + #footer { + margin-bottom: 0; + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + position: relative; + z-index: 2; + } + + #footer h2 { + font-size: 1.35em; + color: #fff; + } + + #footer strong { + color: #fff; + } + + #footer a { + color: #acb2bf; + } + + #footer .button.alt { + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.25); + } + + #footer ul.divided li, #footer ul.menu li { + border-color: #444; + border-color: rgba(255, 255, 255, 0.075); + } + + #footer ul.divided li a { + text-decoration: none; + } + + #footer ul.menu { + margin: 0; + } + + #footer dl.contact dt { + color: #ddd; + } + + #copyright { + border-top: solid 1px; + border-color: #444; + border-color: rgba(255, 255, 255, 0.075); + text-align: center; + margin-top: 2em; + padding: 3em 0 4em 0; + color: inherit; + } + + #copyright a { + color: inherit; + } + +/* Large */ + + @media screen and (max-width: 1280px) { + + /* Basic */ + + body { + line-height: 1.75em; + font-size: 10.75pt; + } + + input, select, textarea { + line-height: 1.75em; + font-size: 10.75pt; + } + + /* Wrappers */ + + #header-wrapper { + padding: 2em 0; + } + + body.homepage #header-wrapper { + height: auto; + } + + #footer-wrapper { + padding: 4.5em 0 4.5em 0; + } + + .wrapper { + padding: 4.5em 0 4.5em 0; + } + + /* Banner */ + + #banner { + width: 100%; + padding: 4em 0 2em 0; + } + + #banner h2 { + font-size: 2.2em; + line-height: 1.3em; + margin: 0 0 1em 0; + } + + #banner p { + font-size: 1.25em; + line-height: 1.75em; + letter-spacing: 0.04em; + float: none; + text-align: center; + width: 100%; + margin: 0 0 2em 0; + } + + } + +/* Medium */ + + #navPanel, #titleBar { + display: none; + } + + @media screen and (max-width: 980px) { + + /* Basic */ + + html, body { + overflow-x: hidden; + } + + /* Box */ + + .box.feature2 section { + margin: 1em 0; + } + + /* Nav */ + + #page-wrapper { + -moz-backface-visibility: hidden; + -webkit-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + -moz-transition: -moz-transform 0.5s ease; + -webkit-transition: -webkit-transform 0.5s ease; + -ms-transition: -ms-transform 0.5s ease; + transition: transform 0.5s ease; + padding-bottom: 1px; + } + + #titleBar { + -moz-backface-visibility: hidden; + -webkit-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + -moz-transition: -moz-transform 0.5s ease; + -webkit-transition: -webkit-transform 0.5s ease; + -ms-transition: -ms-transform 0.5s ease; + transition: transform 0.5s ease; + background-color: rgba(59, 62, 69, 0.9); + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), 0px 1px 6px 0px rgba(0, 0, 0, 0.35); + display: block; + height: 44px; + left: 0; + position: fixed; + text-shadow: -1px -1px 0 black; + top: 0; + width: 100%; + z-index: 10001; + } + + #titleBar .title { + display: block; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #fff; + line-height: 44px; + text-align: center; + } + + #titleBar .toggle { + text-decoration: none; + position: absolute; + left: 0; + top: 0; + width: 60px; + height: 44px; + opacity: 0.25; + } + + #titleBar .toggle:before { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + text-transform: none !important; + font-family: 'Font Awesome 5 Free'; + font-weight: 900; + } + + #titleBar .toggle:before { + display: inline-block; + text-decoration: none; + font-size: 18px; + width: 44px; + height: 44px; + line-height: 44px; + text-align: center; + color: #fff; + content: '\f0c9'; + } + + #titleBar .toggle:active { + opacity: 0.5; + } + + #navPanel { + -moz-backface-visibility: hidden; + -webkit-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + background-image: -ms-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + -moz-transform: translateX(-275px); + -webkit-transform: translateX(-275px); + -ms-transform: translateX(-275px); + transform: translateX(-275px); + -moz-transition: -moz-transform 0.5s ease; + -webkit-transition: -webkit-transform 0.5s ease; + -ms-transition: -ms-transform 0.5s ease; + transition: transform 0.5s ease; + background-color: #303238; + box-shadow: inset -1px 0px 0px 0px rgba(0, 0, 0, 0.5), inset -2px 0px 0px rgba(255, 255, 255, 0.15), inset -2px 0px 10px 0px rgba(0, 0, 0, 0.35); + display: block; + height: 100%; + left: 0; + overflow-y: auto; + position: fixed; + top: 0; + width: 275px; + z-index: 10002; + } + + #navPanel .link { + display: block; + color: #aaa; + text-decoration: none; + height: 44px; + line-height: 44px; + border-top: solid 1px rgba(255, 255, 255, 0.05); + border-bottom: solid 1px rgba(0, 0, 0, 0.15); + padding: 0 1em 0 1em; + text-transform: uppercase; + font-weight: 700; + font-size: 0.95em; + letter-spacing: 0.075em; + } + + #navPanel .link:first-child { + border-top: 0; + } + + #navPanel .link:last-child { + border-bottom: 0; + } + + #navPanel .indent-1 { + display: inline-block; + width: 1em; + } + + #navPanel .indent-2 { + display: inline-block; + width: 2em; + } + + #navPanel .indent-3 { + display: inline-block; + width: 3em; + } + + #navPanel .indent-4 { + display: inline-block; + width: 4em; + } + + #navPanel .indent-5 { + display: inline-block; + width: 5em; + } + + #navPanel .depth-0 { + color: #fff; + } + + body.navPanel-visible #page-wrapper { + -moz-transform: translateX(275px); + -webkit-transform: translateX(275px); + -ms-transform: translateX(275px); + transform: translateX(275px); + } + + body.navPanel-visible #titleBar { + -moz-transform: translateX(275px); + -webkit-transform: translateX(275px); + -ms-transform: translateX(275px); + transform: translateX(275px); + } + + body.navPanel-visible #navPanel { + -moz-transform: translateX(0); + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + + /* Header */ + + #header, #nav { + display: none; + } + + /* Wrappers */ + + #header-wrapper { + display: none; + } + + .homepage #header-wrapper { + display: block; + padding-top: 44px; + } + + #main-wrapper { + padding-top: 44px; + } + + .homepage #main-wrapper { + padding-top: 0; + } + + /* Banner */ + + #banner { + padding: 8em 0 4em 0; + } + + #banner br { + display: none; + } + + /* Sidebar */ + + #sidebar { + margin-top: 1em; + } + + } + +/* Small */ + + @media screen and (max-width: 736px) { + + /* Basic */ + + body, input, select, textarea { + line-height: 1.75em; + font-size: 10pt; + letter-spacing: 0; + } + + h2, h3, h4, h5, h6 { + font-size: 13pt !important; + } + + h2 { + line-height: 1.5em; + } + + /* Section/Article */ + + section, article { + margin-bottom: 3em; + } + + /* Image */ + + .image.left { + width: 25%; + } + + /* Button */ + + .button { + width: 100%; + font-size: 1.1em; + text-align: center; + padding: 1em 0 1em 0; + border-radius: 8px; + } + + /* List */ + + ul.menu li { + display: block; + border: 0 !important; + padding: 0 !important; + margin: 0 !important; + } + + ul.actions li { + display: block; + padding: 0; + margin: 1em 0 0 0; + } + + ul.actions li:first-child { + margin-top: 0; + } + + /* Box */ + + .box.excerpt .image-left { + margin-right: 0; + } + + .box.excerpt header { + margin-left: 32%; + } + + .box.excerpt p { + clear: both; + } + + .box.feature1 section { + margin-bottom: 2em !important; + } + + .box.spotlight { + margin-top: 2em; + } + + /* Wrappers */ + + #header-wrapper { + background-position: 35% 50%; + } + + #footer-wrapper { + padding: 3em 20px 3em 20px; + } + + #footer-wrapper section, #footer-wrapper article { + margin-bottom: 3em !important; + } + + .wrapper { + padding: 3em 20px 3em 20px; + } + + /* Banner */ + + #banner { + padding: 40px 20px 40px 20px; + } + + #banner h2 { + font-size: 18pt !important; + } + + /* Sidebar */ + + #sidebar { + margin-top: 2em; + } + + /* Footer */ + + #copyright { + margin-top: 0; + padding: 3em 0 1em 0; + } + + } \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..f5ede03 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,2429 @@ +@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,800"); +@import url("fontawesome-all.min.css"); + +/* + ZeroFour by HTML5 UP + html5up.net | @ajlkn + Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) +*/ + +html, body, div, span, applet, object, +iframe, h1, h2, h3, h4, h5, h6, p, blockquote, +pre, a, abbr, acronym, address, big, cite, +code, del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, b, +u, i, center, dl, dt, dd, ol, ul, li, fieldset, +form, label, legend, table, caption, tbody, +tfoot, thead, tr, th, td, article, aside, +canvas, details, embed, figure, figcaption, +footer, header, hgroup, menu, nav, output, ruby, +section, summary, time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline;} + +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block;} + +body { + line-height: 1; +} + +ol, ul { + list-style: none; +} + +blockquote, q { + quotes: none; +} + + blockquote:before, blockquote:after, q:before, q:after { + content: ''; + content: none; + } + +table { + border-collapse: collapse; + border-spacing: 0; +} + +body { + -webkit-text-size-adjust: none; +} + +mark { + background-color: transparent; + color: inherit; +} + +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +input, select, textarea { + -moz-appearance: none; + -webkit-appearance: none; + -ms-appearance: none; + appearance: none; +} + +/* Basic */ + + html { + box-sizing: border-box; + } + + *, *:before, *:after { + box-sizing: inherit; + } + + @-ms-viewport { + width: device-width; + } + + body { + background: #303238 url("images/bg01.png"); + } + + body.is-preload * { + -moz-transition: none !important; + -webkit-transition: none !important; + -ms-transition: none !important; + transition: none !important; + -moz-animation: none !important; + -webkit-animation: none !important; + -ms-animation: none !important; + animation: none !important; + } + + body, input, select, textarea { + font-family: 'Open Sans', sans-serif; + color: #7b818c; + font-weight: 400; + font-size: 11pt; + line-height: 1.85em; + } + + a { + color: inherit; + text-decoration: underline; + } + + a:hover { + text-decoration: none; + } + + h1, h2, h3, h4, h5, h6 { + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #404248; + margin: 0 0 1em 0; + } + + h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { + color: inherit; + text-decoration: none; + outline: 0; + } + + h2 { + font-size: 2em; + margin: 0 0 1.5em 0; + line-height: 1em; + } + + h2.icon { + line-height: 48px; + } + + h2.icon:before { + position: relative; + top: 0.05em; + margin-right: 0.5em; + opacity: 0.25; + } + + h3 { + font-size: 1.35em; + margin-top: 2em; + } + + b, strong { + color: #404248; + font-weight: 700; + } + + i, em { + font-style: italic; + } + + br.clear { + clear: both; + } + + sub { + position: relative; + top: 0.5em; + font-size: 0.8em; + } + + sup { + position: relative; + top: -0.5em; + font-size: 0.8em; + } + + hr { + border: 0; + border-top: solid 1px #ddd; + } + + blockquote { + border-left: solid 0.5em #ddd; + padding: 1em 0 1em 2em; + font-style: italic; + } + + p, ul, ol, dl, table { + margin-bottom: 2em; + } + + .date { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + margin: 0 0 0.25em 0; + } + +/* Container */ + + .container { + margin: 0 auto; + max-width: calc(100% - 100px); + width: 1200px; + } + + @media screen and (max-width: 1280px) { + + .container { + width: 100%; + } + + } + + @media screen and (max-width: 980px) { + + .container { + width: 100%; + } + + } + + @media screen and (max-width: 736px) { + + .container { + width: 100%; + max-width: 100%; + } + + } + +/* Row */ + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp { + order: -1; + } + + .row > .col-1 { + width: 8.33333%; + } + + .row > .off-1 { + margin-left: 8.33333%; + } + + .row > .col-2 { + width: 16.66667%; + } + + .row > .off-2 { + margin-left: 16.66667%; + } + + .row > .col-3 { + width: 25%; + } + + .row > .off-3 { + margin-left: 25%; + } + + .row > .col-4 { + width: 33.33333%; + } + + .row > .off-4 { + margin-left: 33.33333%; + } + + .row > .col-5 { + width: 41.66667%; + } + + .row > .off-5 { + margin-left: 41.66667%; + } + + .row > .col-6 { + width: 50%; + } + + .row > .off-6 { + margin-left: 50%; + } + + .row > .col-7 { + width: 58.33333%; + } + + .row > .off-7 { + margin-left: 58.33333%; + } + + .row > .col-8 { + width: 66.66667%; + } + + .row > .off-8 { + margin-left: 66.66667%; + } + + .row > .col-9 { + width: 75%; + } + + .row > .off-9 { + margin-left: 75%; + } + + .row > .col-10 { + width: 83.33333%; + } + + .row > .off-10 { + margin-left: 83.33333%; + } + + .row > .col-11 { + width: 91.66667%; + } + + .row > .off-11 { + margin-left: 91.66667%; + } + + .row > .col-12 { + width: 100%; + } + + .row > .off-12 { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -12.5px; + margin-left: -12.5px; + } + + .row.gtr-25 > * { + padding: 12.5px 0 0 12.5px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -12.5px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 12.5px; + } + + .row.gtr-50 { + margin-top: -25px; + margin-left: -25px; + } + + .row.gtr-50 > * { + padding: 25px 0 0 25px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -25px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 25px; + } + + .row { + margin-top: -50px; + margin-left: -50px; + } + + .row > * { + padding: 50px 0 0 50px; + } + + .row.gtr-uniform { + margin-top: -50px; + } + + .row.gtr-uniform > * { + padding-top: 50px; + } + + .row.gtr-150 { + margin-top: -75px; + margin-left: -75px; + } + + .row.gtr-150 > * { + padding: 75px 0 0 75px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -75px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 75px; + } + + .row.gtr-200 { + margin-top: -100px; + margin-left: -100px; + } + + .row.gtr-200 > * { + padding: 100px 0 0 100px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -100px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 100px; + } + + @media screen and (max-width: 1280px) { + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp-large { + order: -1; + } + + .row > .col-1-large { + width: 8.33333%; + } + + .row > .off-1-large { + margin-left: 8.33333%; + } + + .row > .col-2-large { + width: 16.66667%; + } + + .row > .off-2-large { + margin-left: 16.66667%; + } + + .row > .col-3-large { + width: 25%; + } + + .row > .off-3-large { + margin-left: 25%; + } + + .row > .col-4-large { + width: 33.33333%; + } + + .row > .off-4-large { + margin-left: 33.33333%; + } + + .row > .col-5-large { + width: 41.66667%; + } + + .row > .off-5-large { + margin-left: 41.66667%; + } + + .row > .col-6-large { + width: 50%; + } + + .row > .off-6-large { + margin-left: 50%; + } + + .row > .col-7-large { + width: 58.33333%; + } + + .row > .off-7-large { + margin-left: 58.33333%; + } + + .row > .col-8-large { + width: 66.66667%; + } + + .row > .off-8-large { + margin-left: 66.66667%; + } + + .row > .col-9-large { + width: 75%; + } + + .row > .off-9-large { + margin-left: 75%; + } + + .row > .col-10-large { + width: 83.33333%; + } + + .row > .off-10-large { + margin-left: 83.33333%; + } + + .row > .col-11-large { + width: 91.66667%; + } + + .row > .off-11-large { + margin-left: 91.66667%; + } + + .row > .col-12-large { + width: 100%; + } + + .row > .off-12-large { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -8.75px; + margin-left: -8.75px; + } + + .row.gtr-25 > * { + padding: 8.75px 0 0 8.75px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -8.75px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 8.75px; + } + + .row.gtr-50 { + margin-top: -17.5px; + margin-left: -17.5px; + } + + .row.gtr-50 > * { + padding: 17.5px 0 0 17.5px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -17.5px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 17.5px; + } + + .row { + margin-top: -35px; + margin-left: -35px; + } + + .row > * { + padding: 35px 0 0 35px; + } + + .row.gtr-uniform { + margin-top: -35px; + } + + .row.gtr-uniform > * { + padding-top: 35px; + } + + .row.gtr-150 { + margin-top: -52.5px; + margin-left: -52.5px; + } + + .row.gtr-150 > * { + padding: 52.5px 0 0 52.5px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -52.5px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 52.5px; + } + + .row.gtr-200 { + margin-top: -70px; + margin-left: -70px; + } + + .row.gtr-200 > * { + padding: 70px 0 0 70px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -70px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 70px; + } + + } + + @media screen and (max-width: 980px) { + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp-medium { + order: -1; + } + + .row > .col-1-medium { + width: 8.33333%; + } + + .row > .off-1-medium { + margin-left: 8.33333%; + } + + .row > .col-2-medium { + width: 16.66667%; + } + + .row > .off-2-medium { + margin-left: 16.66667%; + } + + .row > .col-3-medium { + width: 25%; + } + + .row > .off-3-medium { + margin-left: 25%; + } + + .row > .col-4-medium { + width: 33.33333%; + } + + .row > .off-4-medium { + margin-left: 33.33333%; + } + + .row > .col-5-medium { + width: 41.66667%; + } + + .row > .off-5-medium { + margin-left: 41.66667%; + } + + .row > .col-6-medium { + width: 50%; + } + + .row > .off-6-medium { + margin-left: 50%; + } + + .row > .col-7-medium { + width: 58.33333%; + } + + .row > .off-7-medium { + margin-left: 58.33333%; + } + + .row > .col-8-medium { + width: 66.66667%; + } + + .row > .off-8-medium { + margin-left: 66.66667%; + } + + .row > .col-9-medium { + width: 75%; + } + + .row > .off-9-medium { + margin-left: 75%; + } + + .row > .col-10-medium { + width: 83.33333%; + } + + .row > .off-10-medium { + margin-left: 83.33333%; + } + + .row > .col-11-medium { + width: 91.66667%; + } + + .row > .off-11-medium { + margin-left: 91.66667%; + } + + .row > .col-12-medium { + width: 100%; + } + + .row > .off-12-medium { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -12.5px; + margin-left: -12.5px; + } + + .row.gtr-25 > * { + padding: 12.5px 0 0 12.5px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -12.5px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 12.5px; + } + + .row.gtr-50 { + margin-top: -25px; + margin-left: -25px; + } + + .row.gtr-50 > * { + padding: 25px 0 0 25px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -25px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 25px; + } + + .row { + margin-top: -50px; + margin-left: -50px; + } + + .row > * { + padding: 50px 0 0 50px; + } + + .row.gtr-uniform { + margin-top: -50px; + } + + .row.gtr-uniform > * { + padding-top: 50px; + } + + .row.gtr-150 { + margin-top: -75px; + margin-left: -75px; + } + + .row.gtr-150 > * { + padding: 75px 0 0 75px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -75px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 75px; + } + + .row.gtr-200 { + margin-top: -100px; + margin-left: -100px; + } + + .row.gtr-200 > * { + padding: 100px 0 0 100px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -100px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 100px; + } + + } + + @media screen and (max-width: 736px) { + + .row { + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + } + + .row > * { + box-sizing: border-box; + } + + .row.gtr-uniform > * > :last-child { + margin-bottom: 0; + } + + .row.aln-left { + justify-content: flex-start; + } + + .row.aln-center { + justify-content: center; + } + + .row.aln-right { + justify-content: flex-end; + } + + .row.aln-top { + align-items: flex-start; + } + + .row.aln-middle { + align-items: center; + } + + .row.aln-bottom { + align-items: flex-end; + } + + .row > .imp-small { + order: -1; + } + + .row > .col-1-small { + width: 8.33333%; + } + + .row > .off-1-small { + margin-left: 8.33333%; + } + + .row > .col-2-small { + width: 16.66667%; + } + + .row > .off-2-small { + margin-left: 16.66667%; + } + + .row > .col-3-small { + width: 25%; + } + + .row > .off-3-small { + margin-left: 25%; + } + + .row > .col-4-small { + width: 33.33333%; + } + + .row > .off-4-small { + margin-left: 33.33333%; + } + + .row > .col-5-small { + width: 41.66667%; + } + + .row > .off-5-small { + margin-left: 41.66667%; + } + + .row > .col-6-small { + width: 50%; + } + + .row > .off-6-small { + margin-left: 50%; + } + + .row > .col-7-small { + width: 58.33333%; + } + + .row > .off-7-small { + margin-left: 58.33333%; + } + + .row > .col-8-small { + width: 66.66667%; + } + + .row > .off-8-small { + margin-left: 66.66667%; + } + + .row > .col-9-small { + width: 75%; + } + + .row > .off-9-small { + margin-left: 75%; + } + + .row > .col-10-small { + width: 83.33333%; + } + + .row > .off-10-small { + margin-left: 83.33333%; + } + + .row > .col-11-small { + width: 91.66667%; + } + + .row > .off-11-small { + margin-left: 91.66667%; + } + + .row > .col-12-small { + width: 100%; + } + + .row > .off-12-small { + margin-left: 100%; + } + + .row.gtr-0 { + margin-top: 0px; + margin-left: 0px; + } + + .row.gtr-0 > * { + padding: 0px 0 0 0px; + } + + .row.gtr-0.gtr-uniform { + margin-top: 0px; + } + + .row.gtr-0.gtr-uniform > * { + padding-top: 0px; + } + + .row.gtr-25 { + margin-top: -2.5px; + margin-left: -2.5px; + } + + .row.gtr-25 > * { + padding: 2.5px 0 0 2.5px; + } + + .row.gtr-25.gtr-uniform { + margin-top: -2.5px; + } + + .row.gtr-25.gtr-uniform > * { + padding-top: 2.5px; + } + + .row.gtr-50 { + margin-top: -5px; + margin-left: -5px; + } + + .row.gtr-50 > * { + padding: 5px 0 0 5px; + } + + .row.gtr-50.gtr-uniform { + margin-top: -5px; + } + + .row.gtr-50.gtr-uniform > * { + padding-top: 5px; + } + + .row { + margin-top: -10px; + margin-left: -10px; + } + + .row > * { + padding: 10px 0 0 10px; + } + + .row.gtr-uniform { + margin-top: -10px; + } + + .row.gtr-uniform > * { + padding-top: 10px; + } + + .row.gtr-150 { + margin-top: -15px; + margin-left: -15px; + } + + .row.gtr-150 > * { + padding: 15px 0 0 15px; + } + + .row.gtr-150.gtr-uniform { + margin-top: -15px; + } + + .row.gtr-150.gtr-uniform > * { + padding-top: 15px; + } + + .row.gtr-200 { + margin-top: -20px; + margin-left: -20px; + } + + .row.gtr-200 > * { + padding: 20px 0 0 20px; + } + + .row.gtr-200.gtr-uniform { + margin-top: -20px; + } + + .row.gtr-200.gtr-uniform > * { + padding-top: 20px; + } + + } + +/* Section/Article */ + + section, article { + margin-bottom: 5em; + } + + section > :last-child, + article > :last-child, + section:last-child, + article:last-child { + margin-bottom: 0; + } + + header { + margin: 0 0 2em 0; + } + + header h2, header h3 { + margin: 0 0 0.25em 0; + } + + header p { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + margin: 0; + } + + header p strong { + color: #404248; + font-weight: 800; + } + + footer { + margin: 2.5em 0 0 0; + } + + header.major { + border-bottom: solid 1px #dbdbdb; + margin: 0 0 3em 0; + } + + header.major:after { + content: ''; + display: block; + border-top: solid 1px #dbdbdb; + height: 8px; + } + + header.major h2, header.major h3 { + margin: 0 0 1.2em 0; + } + + header.major p { + margin: 0 0 1.5em 0; + position: relative; + top: -1em; + } + +/* Forms */ + + form label { + display: block; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #404248; + margin: 0 0 1em 0; + font-size: 0.8em; + } + + form input[type="text"], + form input[type="email"], + form input[type="password"], + form select, + form textarea { + -webkit-appearance: none; + display: block; + width: 100%; + border-radius: 8px; + border: solid 1px #eee; + } + + form input[type="text"]:focus, + form input[type="email"]:focus, + form input[type="password"]:focus, + form select:focus, + form textarea:focus { + box-shadow: 0 0 2px 1px #4091bf; + } + + form input[type="text"], + form input[type="email"], + form input[type="password"] { + line-height: 3em; + padding: 0 1em; + } + + form select { + line-height: 3em; + padding: 0 1em; + } + + form textarea { + min-height: 9em; + padding: 1em; + } + + form ::-webkit-input-placeholder, + form :-moz-placeholder, + form ::-moz-placeholder, + form :-ms-input-placeholder { + color: #555 !important; + } + + form ::-moz-focus-inner { + border: 0; + } + +/* Tables */ + + table { + width: 100%; + } + + table.default { + width: 100%; + } + + table.default tr { + border-top: solid 1px #eee; + } + + table.default tr:first-child { + border-top: 0; + } + + table.default td { + padding: 0.5em 1em 0.5em 1em; + } + + table.default th { + text-align: left; + padding: 0.5em 1em 0.5em 1em; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + margin: 0 0 1em 0; + font-size: 0.8em; + } + + table.default thead { + background: #404248; + color: #fff; + } + +/* Image */ + + .image { + position: relative; + display: inline-block; + } + + .image img { + display: block; + width: 100%; + border-radius: 8px; + } + + .image:before { + content: ''; + display: block; + position: absolute; + left: 0; + top: 0; + background: url("images/bg01.png"); + width: 100%; + height: 100%; + opacity: 0.75; + } + + .image.fit { + display: block; + width: 100%; + } + + .image.featured { + display: block; + width: 100%; + margin: 0 0 2.5em 0; + } + + .image.left { + float: left; + margin: 0 2em 2em 0; + } + + .image.centered { + display: block; + margin: 0 0 2.5em 0; + } + + .image.centered img { + margin: 0 auto; + width: auto; + } + +/* Button */ + + input[type="button"], + input[type="submit"], + input[type="reset"], + button, + .button { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("images/bg02.png"); + -moz-transition: background-color 0.2s ease-in-out; + -webkit-transition: background-color 0.2s ease-in-out; + -ms-transition: background-color 0.2s ease-in-out; + transition: background-color 0.2s ease-in-out; + -webkit-appearance: none; + position: relative; + display: inline-block; + background-color: #4091bf; + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.35), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.35); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + color: #fff !important; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.95em; + letter-spacing: 0.075em; + padding: 1em 2em; + outline: 0; + border: 0; + white-space: nowrap; + cursor: pointer; + } + + input[type="button"].icon:before, + input[type="submit"].icon:before, + input[type="reset"].icon:before, + button.icon:before, + .button.icon:before { + opacity: 0.5; + margin-right: 0.5em; + position: relative; + top: 0.05em; + } + + input[type="button"]:hover, + input[type="submit"]:hover, + input[type="reset"]:hover, + button:hover, + .button:hover { + background-color: #50a1cf; + } + + input[type="button"]:active, + input[type="submit"]:active, + input[type="reset"]:active, + button:active, + .button:active { + background-color: #3081af; + } + + input[type="button"].medium, + input[type="submit"].medium, + input[type="reset"].medium, + button.medium, + .button.medium { + font-size: 1.25em; + padding: 1em 2.25em; + } + + input[type="button"].large, + input[type="submit"].large, + input[type="reset"].large, + button.large, + .button.large { + font-size: 1.5em; + padding: 1em 2.25em; + } + + input[type="button"].alt, + input[type="submit"].alt, + input[type="reset"].alt, + button.alt, + .button.alt { + background-color: #464a52; + } + + input[type="button"].alt:hover, + input[type="submit"].alt:hover, + input[type="reset"].alt:hover, + button.alt:hover, + .button.alt:hover { + background-color: #565a62; + } + + input[type="button"].alt:active, + input[type="submit"].alt:active, + input[type="reset"].alt:active, + button.alt:active, + .button.alt:active { + background-color: #363a42; + } + +/* List */ + + dl.contact dt { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + float: left; + width: 6em; + } + + dl.contact dd { + margin: 0 0 1em 6em; + } + + ul.default { + list-style: disc; + padding-left: 1em; + } + + ul.default li { + padding-left: 0.5em; + } + + ul.actions li { + display: inline-block; + padding: 0 0 0 0.25em; + margin: 0 0 0 0.25em; + } + + ul.actions li:first-child { + margin-left: 0; + padding-left: 0; + } + + ul.menu li { + border-left: solid 1px #eee; + display: inline-block; + padding: 0 0 0 1em; + margin: 0 0 0 1em; + } + + ul.menu li:first-child { + border-left: 0; + margin-left: 0; + padding-left: 0; + } + + ul.divided li { + border-top: solid 1px #eee; + padding: 0.5em 0 0 0; + margin: 0.5em 0 0 0; + } + + ul.divided li:first-child { + border-top: 0 !important; + padding-top: 0 !important; + margin-top: 0 !important; + } + + ol.default { + list-style: decimal; + padding-left: 1.25em; + } + + ol.default li { + padding-left: 0.25em; + } + +/* Box */ + + .box.excerpt { + position: relative; + overflow: hidden; + } + + .box.excerpt header { + margin: 0 0 1em 0; + } + + .box.excerpt .image, .box.excerpt p { + margin-bottom: 0; + } + + .box.feature1 { + text-align: center; + } + + .box.feature1 header { + margin-bottom: 3em; + } + + .box.feature1 header.first h2 { + font-size: 2.5em; + } + + .box.feature1 header.first p { + font-size: 1.2em; + } + + .box.feature1 header.second { + position: relative; + display: inline-block; + text-align: left; + margin: 0 auto; + white-space: nowrap; + left: 24px; + } + + .box.feature1 header.second p { + line-height: 1em; + } + + .box.feature1 header.second:before { + font-size: 48px; + position: absolute; + right: 100%; + margin-right: 18px; + opacity: 0.5; + bottom: -4px; + } + + .box.feature2 { + text-align: center; + } + + .box.article-list article { + border-bottom: solid 1px #dbdbdb; + margin: 0 0 2.75em 0; + padding: 0 0 2.75em 0; + } + + .box.article-list article:last-child { + border-bottom: 0; + margin-bottom: 0; + padding-bottom: 0; + } + +/* Icons */ + + .icon { + text-decoration: none; + text-decoration: none; + } + + .icon:before { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + text-transform: none !important; + font-family: 'Font Awesome 5 Free'; + font-weight: 400; + } + + .icon.solid:before { + font-weight: 900; + } + + .icon.brands:before { + font-family: 'Font Awesome 5 Brands'; + } + + .icon > .label { + display: none; + } + +/* Nav */ + + #nav { + position: absolute; + right: 2em; + top: 0; + line-height: 5.5em; + } + + #nav > ul > li { + float: left; + padding: 0 0.8em 0 0.8em; + } + + #nav > ul > li > a, #nav > ul > li > span { + color: #fff; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.95em; + letter-spacing: 0.075em; + padding: 0.5em 0.8em 0.5em 0.8em; + border-radius: 6px; + outline: 0; + } + + #nav > ul > li.active > a, + #nav > ul > li.current_page_item > a, + #nav > ul > li.active > span, + #nav > ul > li.current_page_item > span { + background: rgba(0, 0, 0, 0.15); + box-shadow: inset 1px 1px 0px 0px rgba(0, 0, 0, 0.025), 1px 1px 0px 0px rgba(255, 255, 255, 0.025); + } + + #nav > ul > li:last-child { + padding-right: 0; + } + + #nav > ul > li > ul { + display: none; + } + + .dropotron { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url("images/bg02.png"); + position: relative; + background-color: #3B3E45; + background-color: rgba(59, 62, 69, 0.9); + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2), 0px 2px 14px 0px rgba(0, 0, 0, 0.4); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + padding: 1.5em; + line-height: 2.5em; + min-width: 15em; + } + + .dropotron.level-0 { + border-top-left-radius: 0; + border-top-right-radius: 0; + margin-top: -2px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.4); + } + + .dropotron a, .dropotron span { + color: #aaa; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.8em; + letter-spacing: 0.075em; + outline: 0; + } + + .dropotron li:hover > a, .dropotron li:hover > span { + color: #fff; + } + +/* Banner */ + + #banner { + text-align: center; + width: 940px; + margin: 0 auto; + overflow: hidden; + padding: 9em 0 6em 0; + } + + #banner h2 { + border: solid 1px rgba(255, 255, 255, 0.25); + border-left: 0; + border-right: 0; + color: #fff; + color: rgba(255, 255, 255); + font-size: 2.35em; + font-weight: 700; + line-height: 1.3em; + margin: 0 0 1.5em 0; + } + + #banner h2 strong { + font-weight: 800; + color: inherit; + } + + #banner h2:before { + content: ''; + display: block; + border-top: solid 1px; + border-color: #888; + border-color: rgba(255, 255, 255, 0.25); + margin: 10px 0 1.25em 0; + } + + #banner h2:after { + content: ''; + display: block; + border-bottom: solid 1px; + border-color: #888; + border-color: rgba(255, 255, 255, 0.25); + margin: 1.25em 0 10px 0; + } + + #banner p { + text-transform: uppercase; + color: #fff; + color: rgba(255, 255, 255, 0.75); + font-size: 1.5em; + font-weight: 700; + line-height: 1.3em; + letter-spacing: 0.04em; + float: left; + text-align: right; + width: 60%; + line-height: 1.5em; + margin: 0; + } + +/* Sidebar */ + + #sidebar h2 { + font-size: 1.5em; + } + +/* Wrappers */ + + #header-wrapper { + background: url("images/bg01.png"), url("../../images/header.jpg"); + background-position: top left, center center; + background-size: auto, cover; + padding: 3em 0; + } + + #main-wrapper { + background: #fff; + } + + #footer-wrapper { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("images/bg03.png"), url("images/bg02.png"); + position: relative; + background-repeat: repeat-x, no-repeat, repeat; + background-size: 100% 100%, 100% 15em, auto auto; + background-position: top left, top center, top left; + padding: 7em 0 7em 0; + } + + .wrapper { + padding: 7em 0 7em 0; + } + + .wrapper > .inner { + position: relative; + z-index: 2; + } + + .wrapper.style1 { + position: relative; + text-shadow: 1px 1px 0 #fff; + background-color: #fff; + background-image: url("images/bg03.png"), url("images/bg04.png"), url("images/bg02.png"); + background-repeat: no-repeat, no-repeat, repeat; + background-size: 100% 15em, 100% 15em, auto auto; + background-position: top center, bottom center, top left; + } + + .wrapper.style3 { + position: relative; + text-shadow: 1px 1px 0 #fff; + background-color: #fff; + background-image: url("images/bg03.png"), url("images/bg02.png"); + background-repeat: no-repeat, repeat; + background-size: 100% 15em, auto auto; + background-position: top center, top left; + } + +/* Header */ + + #header { + position: relative; + border-radius: 10px; + background: rgba(255, 255, 255, 0.1); + padding: 0.75em; + margin-bottom: 0; + } + + #header .inner { + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + position: relative; + height: 5.5em; + background-color: #3B3E45; + background-color: rgba(59, 62, 69, 0.9); + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.45), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.15); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + } + + #header h1 { + position: absolute; + left: 1.75em; + top: 50%; + margin-top: -0.65em; + font-size: 1.5em; + color: #fff; + } + +/* Footer */ + + #footer { + margin-bottom: 0; + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + position: relative; + z-index: 2; + } + + #footer h2 { + font-size: 1.35em; + color: #fff; + } + + #footer strong { + color: #fff; + } + + #footer a { + color: #acb2bf; + } + + #footer .button.alt { + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.25); + } + + #footer ul.divided li, #footer ul.menu li { + border-color: #444; + border-color: rgba(255, 255, 255, 0.075); + } + + #footer ul.divided li a { + text-decoration: none; + } + + #footer ul.menu { + margin: 0; + } + + #footer dl.contact dt { + color: #ddd; + } + + #copyright { + border-top: solid 1px; + border-color: #444; + border-color: rgba(255, 255, 255, 0.075); + text-align: center; + margin-top: 2em; + padding: 3em 0 4em 0; + color: inherit; + } + + #copyright a { + color: inherit; + } + +/* Large */ + + @media screen and (max-width: 1280px) { + + /* Basic */ + + body { + line-height: 1.75em; + font-size: 10.75pt; + } + + input, select, textarea { + line-height: 1.75em; + font-size: 10.75pt; + } + + /* Wrappers */ + + #header-wrapper { + padding: 2em 0; + } + + body.homepage #header-wrapper { + height: auto; + } + + #footer-wrapper { + padding: 4.5em 0 4.5em 0; + } + + .wrapper { + padding: 4.5em 0 4.5em 0; + } + + /* Banner */ + + #banner { + width: 100%; + padding: 4em 0 2em 0; + } + + #banner h2 { + font-size: 2.2em; + line-height: 1.3em; + margin: 0 0 1em 0; + } + + #banner p { + font-size: 1.25em; + line-height: 1.75em; + letter-spacing: 0.04em; + float: none; + text-align: center; + width: 100%; + margin: 0 0 2em 0; + } + + } + +/* Medium */ + + #navPanel, #titleBar { + display: none; + } + + @media screen and (max-width: 980px) { + + /* Basic */ + + html, body { + overflow-x: hidden; + } + + /* Box */ + + .box.feature2 section { + margin: 1em 0; + } + + /* Nav */ + + #page-wrapper { + -moz-backface-visibility: hidden; + -webkit-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + -moz-transition: -moz-transform 0.5s ease; + -webkit-transition: -webkit-transform 0.5s ease; + -ms-transition: -ms-transform 0.5s ease; + transition: transform 0.5s ease; + padding-bottom: 1px; + } + + #titleBar { + -moz-backface-visibility: hidden; + -webkit-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png"); + -moz-transition: -moz-transform 0.5s ease; + -webkit-transition: -webkit-transform 0.5s ease; + -ms-transition: -ms-transform 0.5s ease; + transition: transform 0.5s ease; + background-color: rgba(59, 62, 69, 0.9); + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), 0px 1px 6px 0px rgba(0, 0, 0, 0.35); + display: block; + height: 44px; + left: 0; + position: fixed; + text-shadow: -1px -1px 0 black; + top: 0; + width: 100%; + z-index: 10001; + } + + #titleBar .title { + display: block; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #fff; + line-height: 44px; + text-align: center; + } + + #titleBar .toggle { + text-decoration: none; + position: absolute; + left: 0; + top: 0; + width: 60px; + height: 44px; + opacity: 0.25; + } + + #titleBar .toggle:before { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + text-transform: none !important; + font-family: 'Font Awesome 5 Free'; + font-weight: 900; + } + + #titleBar .toggle:before { + display: inline-block; + text-decoration: none; + font-size: 18px; + width: 44px; + height: 44px; + line-height: 44px; + text-align: center; + color: #fff; + content: '\f0c9'; + } + + #titleBar .toggle:active { + opacity: 0.5; + } + + #navPanel { + -moz-backface-visibility: hidden; + -webkit-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + background-image: -ms-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg01.png"); + -moz-transform: translateX(-275px); + -webkit-transform: translateX(-275px); + -ms-transform: translateX(-275px); + transform: translateX(-275px); + -moz-transition: -moz-transform 0.5s ease; + -webkit-transition: -webkit-transform 0.5s ease; + -ms-transition: -ms-transform 0.5s ease; + transition: transform 0.5s ease; + background-color: #303238; + box-shadow: inset -1px 0px 0px 0px rgba(0, 0, 0, 0.5), inset -2px 0px 0px rgba(255, 255, 255, 0.15), inset -2px 0px 10px 0px rgba(0, 0, 0, 0.35); + display: block; + height: 100%; + left: 0; + overflow-y: auto; + position: fixed; + top: 0; + width: 275px; + z-index: 10002; + } + + #navPanel .link { + display: block; + color: #aaa; + text-decoration: none; + height: 44px; + line-height: 44px; + border-top: solid 1px rgba(255, 255, 255, 0.05); + border-bottom: solid 1px rgba(0, 0, 0, 0.15); + padding: 0 1em 0 1em; + text-transform: uppercase; + font-weight: 700; + font-size: 0.95em; + letter-spacing: 0.075em; + } + + #navPanel .link:first-child { + border-top: 0; + } + + #navPanel .link:last-child { + border-bottom: 0; + } + + #navPanel .indent-1 { + display: inline-block; + width: 1em; + } + + #navPanel .indent-2 { + display: inline-block; + width: 2em; + } + + #navPanel .indent-3 { + display: inline-block; + width: 3em; + } + + #navPanel .indent-4 { + display: inline-block; + width: 4em; + } + + #navPanel .indent-5 { + display: inline-block; + width: 5em; + } + + #navPanel .depth-0 { + color: #fff; + } + + body.navPanel-visible #page-wrapper { + -moz-transform: translateX(275px); + -webkit-transform: translateX(275px); + -ms-transform: translateX(275px); + transform: translateX(275px); + } + + body.navPanel-visible #titleBar { + -moz-transform: translateX(275px); + -webkit-transform: translateX(275px); + -ms-transform: translateX(275px); + transform: translateX(275px); + } + + body.navPanel-visible #navPanel { + -moz-transform: translateX(0); + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + + /* Header */ + + #header, #nav { + display: none; + } + + /* Wrappers */ + + #header-wrapper { + display: none; + } + + .homepage #header-wrapper { + display: block; + padding-top: 44px; + } + + #main-wrapper { + padding-top: 44px; + } + + .homepage #main-wrapper { + padding-top: 0; + } + + /* Banner */ + + #banner { + padding: 8em 0 4em 0; + } + + #banner br { + display: none; + } + + /* Sidebar */ + + #sidebar { + margin-top: 1em; + } + + } + +/* Small */ + + @media screen and (max-width: 736px) { + + /* Basic */ + + body, input, select, textarea { + line-height: 1.75em; + font-size: 10pt; + letter-spacing: 0; + } + + h2, h3, h4, h5, h6 { + font-size: 13pt !important; + } + + h2 { + line-height: 1.5em; + } + + /* Section/Article */ + + section, article { + margin-bottom: 3em; + } + + /* Image */ + + .image.left { + width: 25%; + } + + /* Button */ + + .button { + width: 100%; + font-size: 1.1em; + text-align: center; + padding: 1em 0 1em 0; + border-radius: 8px; + } + + /* List */ + + ul.menu li { + display: block; + border: 0 !important; + padding: 0 !important; + margin: 0 !important; + } + + ul.actions li { + display: block; + padding: 0; + margin: 1em 0 0 0; + } + + ul.actions li:first-child { + margin-top: 0; + } + + /* Box */ + + .box.excerpt .image-left { + margin-right: 0; + } + + .box.excerpt header { + margin-left: 32%; + } + + .box.excerpt p { + clear: both; + } + + .box.feature1 section { + margin-bottom: 2em !important; + } + + .box.spotlight { + margin-top: 2em; + } + + /* Wrappers */ + + #header-wrapper { + background-position: 35% 50%; + } + + #footer-wrapper { + padding: 3em 20px 3em 20px; + } + + #footer-wrapper section, #footer-wrapper article { + margin-bottom: 3em !important; + } + + .wrapper { + padding: 3em 20px 3em 20px; + } + + /* Banner */ + + #banner { + padding: 40px 20px 40px 20px; + } + + #banner h2 { + font-size: 18pt !important; + } + + /* Sidebar */ + + #sidebar { + margin-top: 2em; + } + + /* Footer */ + + #copyright { + margin-top: 0; + padding: 3em 0 1em 0; + } + + } \ No newline at end of file diff --git a/assets/js/breakpoints.min.js b/assets/js/breakpoints.min.js new file mode 100644 index 0000000..e20ae89 --- /dev/null +++ b/assets/js/breakpoints.min.js @@ -0,0 +1,2 @@ +/* breakpoints.js v1.0 | @ajlkn | MIT licensed */ +var breakpoints=function(){"use strict";function e(e){t.init(e)}var t={list:null,media:{},events:[],init:function(e){t.list=e,window.addEventListener("resize",t.poll),window.addEventListener("orientationchange",t.poll),window.addEventListener("load",t.poll),window.addEventListener("fullscreenchange",t.poll)},active:function(e){var n,a,s,i,r,d,c;if(!(e in t.media)){if(">="==e.substr(0,2)?(a="gte",n=e.substr(2)):"<="==e.substr(0,2)?(a="lte",n=e.substr(2)):">"==e.substr(0,1)?(a="gt",n=e.substr(1)):"<"==e.substr(0,1)?(a="lt",n=e.substr(1)):"!"==e.substr(0,1)?(a="not",n=e.substr(1)):(a="eq",n=e),n&&n in t.list)if(i=t.list[n],Array.isArray(i)){if(r=parseInt(i[0]),d=parseInt(i[1]),isNaN(r)){if(isNaN(d))return;c=i[1].substr(String(d).length)}else c=i[0].substr(String(r).length);if(isNaN(r))switch(a){case"gte":s="screen";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: -1px)";break;case"not":s="screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (max-width: "+d+c+")"}else if(isNaN(d))switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen";break;case"gt":s="screen and (max-width: -1px)";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+")";break;default:s="screen and (min-width: "+r+c+")"}else switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+"), screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (min-width: "+r+c+") and (max-width: "+d+c+")"}}else s="("==i.charAt(0)?"screen and "+i:i;t.media[e]=!!s&&s}return t.media[e]!==!1&&window.matchMedia(t.media[e]).matches},on:function(e,n){t.events.push({query:e,handler:n,state:!1}),t.active(e)&&n()},poll:function(){var e,n;for(e=0;e0:!!("ontouchstart"in window),e.mobile="wp"==e.os||"android"==e.os||"ios"==e.os||"bb"==e.os}};return e.init(),e}();!function(e,n){"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?module.exports=n():e.browser=n()}(this,function(){return browser}); diff --git a/assets/js/jquery.dropotron.min.js b/assets/js/jquery.dropotron.min.js new file mode 100644 index 0000000..7b14e2b --- /dev/null +++ b/assets/js/jquery.dropotron.min.js @@ -0,0 +1,2 @@ +/* jquery.dropotron.js v1.4.3 | (c) @ajlkn | github.com/ajlkn/jquery.dropotron | MIT licensed */ +!function(e){e.fn.disableSelection_dropotron=function(){return e(this).css("user-select","none").css("-khtml-user-select","none").css("-moz-user-select","none").css("-o-user-select","none").css("-webkit-user-select","none")},e.fn.dropotron=function(t){if(0==this.length)return e(this);if(this.length>1)for(var o=0;o0&&t.add(n).on("mouseleave",function(e){window.clearTimeout(c),c=window.setTimeout(function(){t.trigger("doCollapse")},o.hideDelay)}),t.disableSelection_dropotron().hide().addClass(o.menuClass).css("position","absolute").on("mouseenter",function(e){window.clearTimeout(c)}).on("doExpand",function(){if(t.is(":visible"))return!1;window.clearTimeout(c),s.each(function(){var t=e(this);e.contains(t.get(0),n.get(0))||t.trigger("doCollapse")});var i,a,d,f,u=n.offset(),p=n.position(),h=(n.parent().position(),n.outerWidth()),g=t.outerWidth(),v=t.css("z-index")==o.baseZIndex;if(v){switch(i=o.detach?u:p,f=i.top+n.outerHeight()+o.globalOffsetY,a=o.alignment,t.removeClass("left").removeClass("right").removeClass("center"),o.alignment){case"right":d=i.left-g+h,0>d&&(d=i.left,a="left");break;case"center":d=i.left-Math.floor((g-h)/2),0>d?(d=i.left,a="left"):d+g>l.width()&&(d=i.left-g+h,a="right");break;case"left":default:d=i.left,d+g>l.width()&&(d=i.left-g+h,a="right")}t.addClass(a)}else switch("relative"==n.css("position")||"absolute"==n.css("position")?(f=o.offsetY,d=-1*p.left):(f=p.top+o.offsetY,d=0),o.alignment){case"right":d+=-1*n.parent().outerWidth()+o.offsetX;break;case"center":case"left":default:d+=n.parent().outerWidth()+o.offsetX}navigator.userAgent.match(/MSIE ([0-9]+)\./)&&RegExp.$1<8&&(d+=o.IEOffsetX,f+=o.IEOffsetY),t.css("left",d+"px").css("top",f+"px").css("opacity","0.01").show();var C=!1;switch(d="relative"==n.css("position")||"absolute"==n.css("position")?-1*p.left:0,t.offset().left<0?(d+=n.parent().outerWidth()-o.offsetX,C=!0):t.offset().left+g>l.width()&&(d+=-1*n.parent().outerWidth()-o.offsetX,C=!0),C&&t.css("left",d+"px"),t.hide().css("opacity","1"),o.mode){case"zoom":r=!0,n.addClass(o.openerActiveClass),t.animate({width:"toggle",height:"toggle"},o.speed,o.easing,function(){r=!1});break;case"slide":r=!0,n.addClass(o.openerActiveClass),t.animate({height:"toggle"},o.speed,o.easing,function(){r=!1});break;case"fade":if(r=!0,v&&!o.noOpenerFade){var C;C="slow"==o.speed?80:"fast"==o.speed?40:Math.floor(o.speed/2),n.fadeTo(C,.01,function(){n.addClass(o.openerActiveClass),n.fadeTo(o.speed,1),t.fadeIn(o.speed,function(){r=!1})})}else n.addClass(o.openerActiveClass),n.fadeTo(o.speed,1),t.fadeIn(o.speed,function(){r=!1});break;case"instant":default:n.addClass(o.openerActiveClass),t.show()}return!1}).on("doCollapse",function(){return t.is(":visible")?(t.hide(),n.removeClass(o.openerActiveClass),t.find("."+o.openerActiveClass).removeClass(o.openerActiveClass),t.find("ul").hide(),!1):!1}).on("doToggle",function(e){return t.is(":visible")?t.trigger("doCollapse"):t.trigger("doExpand"),!1}),n.disableSelection_dropotron().addClass("opener").css("cursor","pointer").on("click touchend",function(e){r||(e.preventDefault(),e.stopPropagation(),t.trigger("doToggle"))}),"hover"==o.expandMode&&n.hover(function(e){r||(d=window.setTimeout(function(){t.trigger("doExpand")},o.hoverDelay))},function(e){window.clearTimeout(d)})}),s.find("a").css("display","block").on("click touchend",function(t){r||e(this).attr("href").length<1&&t.preventDefault()}),n.find("li").css("white-space","nowrap").each(function(){var t=e(this),o=t.children("a"),s=t.children("ul"),i=o.attr("href");o.on("click touchend",function(e){0==i.length||"#"==i?e.preventDefault():e.stopPropagation()}),o.length>0&&0==s.length&&t.on("click touchend",function(e){r||(n.trigger("doCollapseAll"),e.stopPropagation())})}),n.children("li").each(function(){var t,n=e(this),s=n.children("ul");if(s.length>0){o.detach&&(o.cloneOnDetach&&(t=s.clone(),t.attr("class","").hide().appendTo(s.parent())),s.detach().appendTo(i));for(var a=o.baseZIndex,l=1,r=s;r.length>0;l++)r.css("z-index",a++),o.submenuClassPrefix&&r.addClass(o.submenuClassPrefix+(a-1-o.baseZIndex)),r=r.find("> li > ul")}}),l.on("scroll",function(){n.trigger("doCollapseAll")}).on("keypress",function(e){r||27!=e.keyCode||(e.preventDefault(),n.trigger("doCollapseAll"))}),a.on("click touchend",function(){r||n.trigger("doCollapseAll")})}}(jQuery); diff --git a/assets/js/jquery.min.js b/assets/js/jquery.min.js new file mode 100644 index 0000000..a1c07fd --- /dev/null +++ b/assets/js/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0 ul').dropotron({ + offsetY: -22, + mode: 'fade', + noOpenerFade: true, + speed: 300, + detach: false + }); + + // Nav. + + // Title Bar. + $( + '
' + + '' + + '' + $('#logo').html() + '' + + '
' + ) + .appendTo($body); + + // Panel. + $( + '' + ) + .appendTo($body) + .panel({ + delay: 500, + hideOnClick: true, + hideOnSwipe: true, + resetScroll: true, + resetForms: true, + side: 'left', + target: $body, + visibleClass: 'navPanel-visible' + }); + +})(jQuery); \ No newline at end of file diff --git a/assets/js/util.js b/assets/js/util.js new file mode 100644 index 0000000..ecf7b37 --- /dev/null +++ b/assets/js/util.js @@ -0,0 +1,587 @@ +(function($) { + + /** + * Generate an indented list of links from a nav. Meant for use with panel(). + * @return {jQuery} jQuery object. + */ + $.fn.navList = function() { + + var $this = $(this); + $a = $this.find('a'), + b = []; + + $a.each(function() { + + var $this = $(this), + indent = Math.max(0, $this.parents('li').length - 1), + href = $this.attr('href'), + target = $this.attr('target'); + + b.push( + '' + + '' + + $this.text() + + '' + ); + + }); + + return b.join(''); + + }; + + /** + * Panel-ify an element. + * @param {object} userConfig User config. + * @return {jQuery} jQuery object. + */ + $.fn.panel = function(userConfig) { + + // No elements? + if (this.length == 0) + return $this; + + // Multiple elements? + if (this.length > 1) { + + for (var i=0; i < this.length; i++) + $(this[i]).panel(userConfig); + + return $this; + + } + + // Vars. + var $this = $(this), + $body = $('body'), + $window = $(window), + id = $this.attr('id'), + config; + + // Config. + config = $.extend({ + + // Delay. + delay: 0, + + // Hide panel on link click. + hideOnClick: false, + + // Hide panel on escape keypress. + hideOnEscape: false, + + // Hide panel on swipe. + hideOnSwipe: false, + + // Reset scroll position on hide. + resetScroll: false, + + // Reset forms on hide. + resetForms: false, + + // Side of viewport the panel will appear. + side: null, + + // Target element for "class". + target: $this, + + // Class to toggle. + visibleClass: 'visible' + + }, userConfig); + + // Expand "target" if it's not a jQuery object already. + if (typeof config.target != 'jQuery') + config.target = $(config.target); + + // Panel. + + // Methods. + $this._hide = function(event) { + + // Already hidden? Bail. + if (!config.target.hasClass(config.visibleClass)) + return; + + // If an event was provided, cancel it. + if (event) { + + event.preventDefault(); + event.stopPropagation(); + + } + + // Hide. + config.target.removeClass(config.visibleClass); + + // Post-hide stuff. + window.setTimeout(function() { + + // Reset scroll position. + if (config.resetScroll) + $this.scrollTop(0); + + // Reset forms. + if (config.resetForms) + $this.find('form').each(function() { + this.reset(); + }); + + }, config.delay); + + }; + + // Vendor fixes. + $this + .css('-ms-overflow-style', '-ms-autohiding-scrollbar') + .css('-webkit-overflow-scrolling', 'touch'); + + // Hide on click. + if (config.hideOnClick) { + + $this.find('a') + .css('-webkit-tap-highlight-color', 'rgba(0,0,0,0)'); + + $this + .on('click', 'a', function(event) { + + var $a = $(this), + href = $a.attr('href'), + target = $a.attr('target'); + + if (!href || href == '#' || href == '' || href == '#' + id) + return; + + // Cancel original event. + event.preventDefault(); + event.stopPropagation(); + + // Hide panel. + $this._hide(); + + // Redirect to href. + window.setTimeout(function() { + + if (target == '_blank') + window.open(href); + else + window.location.href = href; + + }, config.delay + 10); + + }); + + } + + // Event: Touch stuff. + $this.on('touchstart', function(event) { + + $this.touchPosX = event.originalEvent.touches[0].pageX; + $this.touchPosY = event.originalEvent.touches[0].pageY; + + }) + + $this.on('touchmove', function(event) { + + if ($this.touchPosX === null + || $this.touchPosY === null) + return; + + var diffX = $this.touchPosX - event.originalEvent.touches[0].pageX, + diffY = $this.touchPosY - event.originalEvent.touches[0].pageY, + th = $this.outerHeight(), + ts = ($this.get(0).scrollHeight - $this.scrollTop()); + + // Hide on swipe? + if (config.hideOnSwipe) { + + var result = false, + boundary = 20, + delta = 50; + + switch (config.side) { + + case 'left': + result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX > delta); + break; + + case 'right': + result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX < (-1 * delta)); + break; + + case 'top': + result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY > delta); + break; + + case 'bottom': + result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY < (-1 * delta)); + break; + + default: + break; + + } + + if (result) { + + $this.touchPosX = null; + $this.touchPosY = null; + $this._hide(); + + return false; + + } + + } + + // Prevent vertical scrolling past the top or bottom. + if (($this.scrollTop() < 0 && diffY < 0) + || (ts > (th - 2) && ts < (th + 2) && diffY > 0)) { + + event.preventDefault(); + event.stopPropagation(); + + } + + }); + + // Event: Prevent certain events inside the panel from bubbling. + $this.on('click touchend touchstart touchmove', function(event) { + event.stopPropagation(); + }); + + // Event: Hide panel if a child anchor tag pointing to its ID is clicked. + $this.on('click', 'a[href="#' + id + '"]', function(event) { + + event.preventDefault(); + event.stopPropagation(); + + config.target.removeClass(config.visibleClass); + + }); + + // Body. + + // Event: Hide panel on body click/tap. + $body.on('click touchend', function(event) { + $this._hide(event); + }); + + // Event: Toggle. + $body.on('click', 'a[href="#' + id + '"]', function(event) { + + event.preventDefault(); + event.stopPropagation(); + + config.target.toggleClass(config.visibleClass); + + }); + + // Window. + + // Event: Hide on ESC. + if (config.hideOnEscape) + $window.on('keydown', function(event) { + + if (event.keyCode == 27) + $this._hide(event); + + }); + + return $this; + + }; + + /** + * Apply "placeholder" attribute polyfill to one or more forms. + * @return {jQuery} jQuery object. + */ + $.fn.placeholder = function() { + + // Browser natively supports placeholders? Bail. + if (typeof (document.createElement('input')).placeholder != 'undefined') + return $(this); + + // No elements? + if (this.length == 0) + return $this; + + // Multiple elements? + if (this.length > 1) { + + for (var i=0; i < this.length; i++) + $(this[i]).placeholder(); + + return $this; + + } + + // Vars. + var $this = $(this); + + // Text, TextArea. + $this.find('input[type=text],textarea') + .each(function() { + + var i = $(this); + + if (i.val() == '' + || i.val() == i.attr('placeholder')) + i + .addClass('polyfill-placeholder') + .val(i.attr('placeholder')); + + }) + .on('blur', function() { + + var i = $(this); + + if (i.attr('name').match(/-polyfill-field$/)) + return; + + if (i.val() == '') + i + .addClass('polyfill-placeholder') + .val(i.attr('placeholder')); + + }) + .on('focus', function() { + + var i = $(this); + + if (i.attr('name').match(/-polyfill-field$/)) + return; + + if (i.val() == i.attr('placeholder')) + i + .removeClass('polyfill-placeholder') + .val(''); + + }); + + // Password. + $this.find('input[type=password]') + .each(function() { + + var i = $(this); + var x = $( + $('
') + .append(i.clone()) + .remove() + .html() + .replace(/type="password"/i, 'type="text"') + .replace(/type=password/i, 'type=text') + ); + + if (i.attr('id') != '') + x.attr('id', i.attr('id') + '-polyfill-field'); + + if (i.attr('name') != '') + x.attr('name', i.attr('name') + '-polyfill-field'); + + x.addClass('polyfill-placeholder') + .val(x.attr('placeholder')).insertAfter(i); + + if (i.val() == '') + i.hide(); + else + x.hide(); + + i + .on('blur', function(event) { + + event.preventDefault(); + + var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]'); + + if (i.val() == '') { + + i.hide(); + x.show(); + + } + + }); + + x + .on('focus', function(event) { + + event.preventDefault(); + + var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']'); + + x.hide(); + + i + .show() + .focus(); + + }) + .on('keypress', function(event) { + + event.preventDefault(); + x.val(''); + + }); + + }); + + // Events. + $this + .on('submit', function() { + + $this.find('input[type=text],input[type=password],textarea') + .each(function(event) { + + var i = $(this); + + if (i.attr('name').match(/-polyfill-field$/)) + i.attr('name', ''); + + if (i.val() == i.attr('placeholder')) { + + i.removeClass('polyfill-placeholder'); + i.val(''); + + } + + }); + + }) + .on('reset', function(event) { + + event.preventDefault(); + + $this.find('select') + .val($('option:first').val()); + + $this.find('input,textarea') + .each(function() { + + var i = $(this), + x; + + i.removeClass('polyfill-placeholder'); + + switch (this.type) { + + case 'submit': + case 'reset': + break; + + case 'password': + i.val(i.attr('defaultValue')); + + x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]'); + + if (i.val() == '') { + i.hide(); + x.show(); + } + else { + i.show(); + x.hide(); + } + + break; + + case 'checkbox': + case 'radio': + i.attr('checked', i.attr('defaultValue')); + break; + + case 'text': + case 'textarea': + i.val(i.attr('defaultValue')); + + if (i.val() == '') { + i.addClass('polyfill-placeholder'); + i.val(i.attr('placeholder')); + } + + break; + + default: + i.val(i.attr('defaultValue')); + break; + + } + }); + + }); + + return $this; + + }; + + /** + * Moves elements to/from the first positions of their respective parents. + * @param {jQuery} $elements Elements (or selector) to move. + * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations. + */ + $.prioritize = function($elements, condition) { + + var key = '__prioritize'; + + // Expand $elements if it's not already a jQuery object. + if (typeof $elements != 'jQuery') + $elements = $($elements); + + // Step through elements. + $elements.each(function() { + + var $e = $(this), $p, + $parent = $e.parent(); + + // No parent? Bail. + if ($parent.length == 0) + return; + + // Not moved? Move it. + if (!$e.data(key)) { + + // Condition is false? Bail. + if (!condition) + return; + + // Get placeholder (which will serve as our point of reference for when this element needs to move back). + $p = $e.prev(); + + // Couldn't find anything? Means this element's already at the top, so bail. + if ($p.length == 0) + return; + + // Move element to top of parent. + $e.prependTo($parent); + + // Mark element as moved. + $e.data(key, $p); + + } + + // Moved already? + else { + + // Condition is true? Bail. + if (condition) + return; + + $p = $e.data(key); + + // Move element back to its original location (using our placeholder). + $e.insertAfter($p); + + // Unmark element as moved. + $e.removeData(key); + + } + + }); + + }; + +})(jQuery); \ No newline at end of file diff --git a/assets/sass/libs/_breakpoints.scss b/assets/sass/libs/_breakpoints.scss new file mode 100644 index 0000000..c5301d8 --- /dev/null +++ b/assets/sass/libs/_breakpoints.scss @@ -0,0 +1,223 @@ +// breakpoints.scss v1.0 | @ajlkn | MIT licensed */ + +// Vars. + + /// Breakpoints. + /// @var {list} + $breakpoints: () !global; + +// Mixins. + + /// Sets breakpoints. + /// @param {map} $x Breakpoints. + @mixin breakpoints($x: ()) { + $breakpoints: $x !global; + } + + /// Wraps @content in a @media block targeting a specific orientation. + /// @param {string} $orientation Orientation. + @mixin orientation($orientation) { + @media screen and (orientation: #{$orientation}) { + @content; + } + } + + /// Wraps @content in a @media block using a given query. + /// @param {string} $query Query. + @mixin breakpoint($query: null) { + + $breakpoint: null; + $op: null; + $media: null; + + // Determine operator, breakpoint. + + // Greater than or equal. + @if (str-slice($query, 0, 2) == '>=') { + + $op: 'gte'; + $breakpoint: str-slice($query, 3); + + } + + // Less than or equal. + @elseif (str-slice($query, 0, 2) == '<=') { + + $op: 'lte'; + $breakpoint: str-slice($query, 3); + + } + + // Greater than. + @elseif (str-slice($query, 0, 1) == '>') { + + $op: 'gt'; + $breakpoint: str-slice($query, 2); + + } + + // Less than. + @elseif (str-slice($query, 0, 1) == '<') { + + $op: 'lt'; + $breakpoint: str-slice($query, 2); + + } + + // Not. + @elseif (str-slice($query, 0, 1) == '!') { + + $op: 'not'; + $breakpoint: str-slice($query, 2); + + } + + // Equal. + @else { + + $op: 'eq'; + $breakpoint: $query; + + } + + // Build media. + @if ($breakpoint and map-has-key($breakpoints, $breakpoint)) { + + $a: map-get($breakpoints, $breakpoint); + + // Range. + @if (type-of($a) == 'list') { + + $x: nth($a, 1); + $y: nth($a, 2); + + // Max only. + @if ($x == null) { + + // Greater than or equal (>= 0 / anything) + @if ($op == 'gte') { + $media: 'screen'; + } + + // Less than or equal (<= y) + @elseif ($op == 'lte') { + $media: 'screen and (max-width: ' + $y + ')'; + } + + // Greater than (> y) + @elseif ($op == 'gt') { + $media: 'screen and (min-width: ' + ($y + 1) + ')'; + } + + // Less than (< 0 / invalid) + @elseif ($op == 'lt') { + $media: 'screen and (max-width: -1px)'; + } + + // Not (> y) + @elseif ($op == 'not') { + $media: 'screen and (min-width: ' + ($y + 1) + ')'; + } + + // Equal (<= y) + @else { + $media: 'screen and (max-width: ' + $y + ')'; + } + + } + + // Min only. + @else if ($y == null) { + + // Greater than or equal (>= x) + @if ($op == 'gte') { + $media: 'screen and (min-width: ' + $x + ')'; + } + + // Less than or equal (<= inf / anything) + @elseif ($op == 'lte') { + $media: 'screen'; + } + + // Greater than (> inf / invalid) + @elseif ($op == 'gt') { + $media: 'screen and (max-width: -1px)'; + } + + // Less than (< x) + @elseif ($op == 'lt') { + $media: 'screen and (max-width: ' + ($x - 1) + ')'; + } + + // Not (< x) + @elseif ($op == 'not') { + $media: 'screen and (max-width: ' + ($x - 1) + ')'; + } + + // Equal (>= x) + @else { + $media: 'screen and (min-width: ' + $x + ')'; + } + + } + + // Min and max. + @else { + + // Greater than or equal (>= x) + @if ($op == 'gte') { + $media: 'screen and (min-width: ' + $x + ')'; + } + + // Less than or equal (<= y) + @elseif ($op == 'lte') { + $media: 'screen and (max-width: ' + $y + ')'; + } + + // Greater than (> y) + @elseif ($op == 'gt') { + $media: 'screen and (min-width: ' + ($y + 1) + ')'; + } + + // Less than (< x) + @elseif ($op == 'lt') { + $media: 'screen and (max-width: ' + ($x - 1) + ')'; + } + + // Not (< x and > y) + @elseif ($op == 'not') { + $media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')'; + } + + // Equal (>= x and <= y) + @else { + $media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')'; + } + + } + + } + + // String. + @else { + + // Missing a media type? Prefix with "screen". + @if (str-slice($a, 0, 1) == '(') { + $media: 'screen and ' + $a; + } + + // Otherwise, use as-is. + @else { + $media: $a; + } + + } + + } + + // Output. + @media #{$media} { + @content; + } + + } \ No newline at end of file diff --git a/assets/sass/libs/_functions.scss b/assets/sass/libs/_functions.scss new file mode 100644 index 0000000..f563aab --- /dev/null +++ b/assets/sass/libs/_functions.scss @@ -0,0 +1,90 @@ +/// Removes a specific item from a list. +/// @author Hugo Giraudel +/// @param {list} $list List. +/// @param {integer} $index Index. +/// @return {list} Updated list. +@function remove-nth($list, $index) { + + $result: null; + + @if type-of($index) != number { + @warn "$index: #{quote($index)} is not a number for `remove-nth`."; + } + @else if $index == 0 { + @warn "List index 0 must be a non-zero integer for `remove-nth`."; + } + @else if abs($index) > length($list) { + @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`."; + } + @else { + + $result: (); + $index: if($index < 0, length($list) + $index + 1, $index); + + @for $i from 1 through length($list) { + + @if $i != $index { + $result: append($result, nth($list, $i)); + } + + } + + } + + @return $result; + +} + +/// Gets a value from a map. +/// @author Hugo Giraudel +/// @param {map} $map Map. +/// @param {string} $keys Key(s). +/// @return {string} Value. +@function val($map, $keys...) { + + @if nth($keys, 1) == null { + $keys: remove-nth($keys, 1); + } + + @each $key in $keys { + $map: map-get($map, $key); + } + + @return $map; + +} + +/// Gets a duration value. +/// @param {string} $keys Key(s). +/// @return {string} Value. +@function _duration($keys...) { + @return val($duration, $keys...); +} + +/// Gets a font value. +/// @param {string} $keys Key(s). +/// @return {string} Value. +@function _font($keys...) { + @return val($font, $keys...); +} + +/// Gets a misc value. +/// @param {string} $keys Key(s). +/// @return {string} Value. +@function _misc($keys...) { + @return val($misc, $keys...); +} + +/// Gets a palette value. +/// @param {string} $keys Key(s). +/// @return {string} Value. +@function _palette($keys...) { + @return val($palette, $keys...); +} + +/// Gets a size value. +/// @param {string} $keys Key(s). +/// @return {string} Value. +@function _size($keys...) { + @return val($size, $keys...); +} \ No newline at end of file diff --git a/assets/sass/libs/_html-grid.scss b/assets/sass/libs/_html-grid.scss new file mode 100644 index 0000000..7438a8c --- /dev/null +++ b/assets/sass/libs/_html-grid.scss @@ -0,0 +1,149 @@ +// html-grid.scss v1.0 | @ajlkn | MIT licensed */ + +// Mixins. + + /// Initializes the current element as an HTML grid. + /// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually). + /// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list). + @mixin html-grid($gutters: 1.5em, $suffix: '') { + + // Initialize. + $cols: 12; + $multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00; + $unit: 100% / $cols; + + // Suffixes. + $suffixes: null; + + @if (type-of($suffix) == 'list') { + $suffixes: $suffix; + } + @else { + $suffixes: ($suffix); + } + + // Gutters. + $guttersCols: null; + $guttersRows: null; + + @if (type-of($gutters) == 'list') { + + $guttersCols: nth($gutters, 1); + $guttersRows: nth($gutters, 2); + + } + @else { + + $guttersCols: $gutters; + $guttersRows: 0; + + } + + // Row. + display: flex; + flex-wrap: wrap; + box-sizing: border-box; + align-items: stretch; + + // Columns. + > * { + box-sizing: border-box; + } + + // Gutters. + &.gtr-uniform { + > * { + > :last-child { + margin-bottom: 0; + } + } + } + + // Alignment. + &.aln-left { + justify-content: flex-start; + } + + &.aln-center { + justify-content: center; + } + + &.aln-right { + justify-content: flex-end; + } + + &.aln-top { + align-items: flex-start; + } + + &.aln-middle { + align-items: center; + } + + &.aln-bottom { + align-items: flex-end; + } + + // Step through suffixes. + @each $suffix in $suffixes { + + // Suffix. + @if ($suffix != '') { + $suffix: '-' + $suffix; + } + @else { + $suffix: ''; + } + + // Row. + + // Important. + > .imp#{$suffix} { + order: -1; + } + + // Columns, offsets. + @for $i from 1 through $cols { + > .col-#{$i}#{$suffix} { + width: $unit * $i; + } + + > .off-#{$i}#{$suffix} { + margin-left: $unit * $i; + } + } + + // Step through multipliers. + @each $multiplier in $multipliers { + + // Gutters. + $class: null; + + @if ($multiplier != 1) { + $class: '.gtr-' + ($multiplier * 100); + } + + &#{$class} { + margin-top: ($guttersRows * $multiplier * -1); + margin-left: ($guttersCols * $multiplier * -1); + + > * { + padding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier); + } + + // Uniform. + &.gtr-uniform { + margin-top: $guttersCols * $multiplier * -1; + + > * { + padding-top: $guttersCols * $multiplier; + } + } + + } + + } + + } + + } \ No newline at end of file diff --git a/assets/sass/libs/_mixins.scss b/assets/sass/libs/_mixins.scss new file mode 100644 index 0000000..a331483 --- /dev/null +++ b/assets/sass/libs/_mixins.scss @@ -0,0 +1,78 @@ +/// Makes an element's :before pseudoelement a FontAwesome icon. +/// @param {string} $content Optional content value to use. +/// @param {string} $category Optional category to use. +/// @param {string} $where Optional pseudoelement to target (before or after). +@mixin icon($content: false, $category: regular, $where: before) { + + text-decoration: none; + + &:#{$where} { + + @if $content { + content: $content; + } + + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + text-transform: none !important; + + @if ($category == brands) { + font-family: 'Font Awesome 5 Brands'; + } + @elseif ($category == solid) { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; + } + @else { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; + } + + } + +} + +/// Applies padding to an element, taking the current element-margin value into account. +/// @param {mixed} $tb Top/bottom padding. +/// @param {mixed} $lr Left/right padding. +/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left) +/// @param {bool} $important If true, adds !important. +@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) { + + @if $important { + $important: '!important'; + } + + $x: 0.1em; + + @if unit(_size(element-margin)) == 'rem' { + $x: 0.1rem; + } + + padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important}; + +} + +/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp). +/// @param {string} $svg SVG data URL. +/// @return {string} Encoded SVG data URL. +@function svg-url($svg) { + + $svg: str-replace($svg, '"', '\''); + $svg: str-replace($svg, '%', '%25'); + $svg: str-replace($svg, '<', '%3C'); + $svg: str-replace($svg, '>', '%3E'); + $svg: str-replace($svg, '&', '%26'); + $svg: str-replace($svg, '#', '%23'); + $svg: str-replace($svg, '{', '%7B'); + $svg: str-replace($svg, '}', '%7D'); + $svg: str-replace($svg, ';', '%3B'); + + @return url("data:image/svg+xml;charset=utf8,#{$svg}"); + +} \ No newline at end of file diff --git a/assets/sass/libs/_vars.scss b/assets/sass/libs/_vars.scss new file mode 100644 index 0000000..3358992 --- /dev/null +++ b/assets/sass/libs/_vars.scss @@ -0,0 +1,22 @@ +// Misc. + $misc: ( + z-index-base: 10000 + ); + +// Duration. + $duration: ( + navPanel: 0.5s + ); + +// Size. + $size: ( + navPanel: 275px + ); + +// Font. + $font: ( + ); + +// Palette. + $palette: ( + ); \ No newline at end of file diff --git a/assets/sass/libs/_vendor.scss b/assets/sass/libs/_vendor.scss new file mode 100644 index 0000000..6599a3f --- /dev/null +++ b/assets/sass/libs/_vendor.scss @@ -0,0 +1,376 @@ +// vendor.scss v1.0 | @ajlkn | MIT licensed */ + +// Vars. + + /// Vendor prefixes. + /// @var {list} + $vendor-prefixes: ( + '-moz-', + '-webkit-', + '-ms-', + '' + ); + + /// Properties that should be vendorized. + /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org + /// @var {list} + $vendor-properties: ( + + // Animation. + 'animation', + 'animation-delay', + 'animation-direction', + 'animation-duration', + 'animation-fill-mode', + 'animation-iteration-count', + 'animation-name', + 'animation-play-state', + 'animation-timing-function', + + // Appearance. + 'appearance', + + // Backdrop filter. + 'backdrop-filter', + + // Background image options. + 'background-clip', + 'background-origin', + 'background-size', + + // Box sizing. + 'box-sizing', + + // Clip path. + 'clip-path', + + // Filter effects. + 'filter', + + // Flexbox. + 'align-content', + 'align-items', + 'align-self', + 'flex', + 'flex-basis', + 'flex-direction', + 'flex-flow', + 'flex-grow', + 'flex-shrink', + 'flex-wrap', + 'justify-content', + 'order', + + // Font feature. + 'font-feature-settings', + 'font-language-override', + 'font-variant-ligatures', + + // Font kerning. + 'font-kerning', + + // Fragmented borders and backgrounds. + 'box-decoration-break', + + // Grid layout. + 'grid-column', + 'grid-column-align', + 'grid-column-end', + 'grid-column-start', + 'grid-row', + 'grid-row-align', + 'grid-row-end', + 'grid-row-start', + 'grid-template-columns', + 'grid-template-rows', + + // Hyphens. + 'hyphens', + 'word-break', + + // Masks. + 'mask', + 'mask-border', + 'mask-border-outset', + 'mask-border-repeat', + 'mask-border-slice', + 'mask-border-source', + 'mask-border-width', + 'mask-clip', + 'mask-composite', + 'mask-image', + 'mask-origin', + 'mask-position', + 'mask-repeat', + 'mask-size', + + // Multicolumn. + 'break-after', + 'break-before', + 'break-inside', + 'column-count', + 'column-fill', + 'column-gap', + 'column-rule', + 'column-rule-color', + 'column-rule-style', + 'column-rule-width', + 'column-span', + 'column-width', + 'columns', + + // Object fit. + 'object-fit', + 'object-position', + + // Regions. + 'flow-from', + 'flow-into', + 'region-fragment', + + // Scroll snap points. + 'scroll-snap-coordinate', + 'scroll-snap-destination', + 'scroll-snap-points-x', + 'scroll-snap-points-y', + 'scroll-snap-type', + + // Shapes. + 'shape-image-threshold', + 'shape-margin', + 'shape-outside', + + // Tab size. + 'tab-size', + + // Text align last. + 'text-align-last', + + // Text decoration. + 'text-decoration-color', + 'text-decoration-line', + 'text-decoration-skip', + 'text-decoration-style', + + // Text emphasis. + 'text-emphasis', + 'text-emphasis-color', + 'text-emphasis-position', + 'text-emphasis-style', + + // Text size adjust. + 'text-size-adjust', + + // Text spacing. + 'text-spacing', + + // Transform. + 'transform', + 'transform-origin', + + // Transform 3D. + 'backface-visibility', + 'perspective', + 'perspective-origin', + 'transform-style', + + // Transition. + 'transition', + 'transition-delay', + 'transition-duration', + 'transition-property', + 'transition-timing-function', + + // Unicode bidi. + 'unicode-bidi', + + // User select. + 'user-select', + + // Writing mode. + 'writing-mode', + + ); + + /// Values that should be vendorized. + /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org + /// @var {list} + $vendor-values: ( + + // Cross fade. + 'cross-fade', + + // Element function. + 'element', + + // Filter function. + 'filter', + + // Flexbox. + 'flex', + 'inline-flex', + + // Grab cursors. + 'grab', + 'grabbing', + + // Gradients. + 'linear-gradient', + 'repeating-linear-gradient', + 'radial-gradient', + 'repeating-radial-gradient', + + // Grid layout. + 'grid', + 'inline-grid', + + // Image set. + 'image-set', + + // Intrinsic width. + 'max-content', + 'min-content', + 'fit-content', + 'fill', + 'fill-available', + 'stretch', + + // Sticky position. + 'sticky', + + // Transform. + 'transform', + + // Zoom cursors. + 'zoom-in', + 'zoom-out', + + ); + +// Functions. + + /// Removes a specific item from a list. + /// @author Hugo Giraudel + /// @param {list} $list List. + /// @param {integer} $index Index. + /// @return {list} Updated list. + @function remove-nth($list, $index) { + + $result: null; + + @if type-of($index) != number { + @warn "$index: #{quote($index)} is not a number for `remove-nth`."; + } + @else if $index == 0 { + @warn "List index 0 must be a non-zero integer for `remove-nth`."; + } + @else if abs($index) > length($list) { + @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`."; + } + @else { + + $result: (); + $index: if($index < 0, length($list) + $index + 1, $index); + + @for $i from 1 through length($list) { + + @if $i != $index { + $result: append($result, nth($list, $i)); + } + + } + + } + + @return $result; + + } + + /// Replaces a substring within another string. + /// @author Hugo Giraudel + /// @param {string} $string String. + /// @param {string} $search Substring. + /// @param {string} $replace Replacement. + /// @return {string} Updated string. + @function str-replace($string, $search, $replace: '') { + + $index: str-index($string, $search); + + @if $index { + @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace); + } + + @return $string; + + } + + /// Replaces a substring within each string in a list. + /// @param {list} $strings List of strings. + /// @param {string} $search Substring. + /// @param {string} $replace Replacement. + /// @return {list} Updated list of strings. + @function str-replace-all($strings, $search, $replace: '') { + + @each $string in $strings { + $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace)); + } + + @return $strings; + + } + +// Mixins. + + /// Wraps @content in vendorized keyframe blocks. + /// @param {string} $name Name. + @mixin keyframes($name) { + + @-moz-keyframes #{$name} { @content; } + @-webkit-keyframes #{$name} { @content; } + @-ms-keyframes #{$name} { @content; } + @keyframes #{$name} { @content; } + + } + + /// Vendorizes a declaration's property and/or value(s). + /// @param {string} $property Property. + /// @param {mixed} $value String/list of value(s). + @mixin vendor($property, $value) { + + // Determine if property should expand. + $expandProperty: index($vendor-properties, $property); + + // Determine if value should expand (and if so, add '-prefix-' placeholder). + $expandValue: false; + + @each $x in $value { + @each $y in $vendor-values { + @if $y == str-slice($x, 1, str-length($y)) { + + $value: set-nth($value, index($value, $x), '-prefix-' + $x); + $expandValue: true; + + } + } + } + + // Expand property? + @if $expandProperty { + @each $vendor in $vendor-prefixes { + #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)}; + } + } + + // Expand just the value? + @elseif $expandValue { + @each $vendor in $vendor-prefixes { + #{$property}: #{str-replace-all($value, '-prefix-', $vendor)}; + } + } + + // Neither? Treat them as a normal declaration. + @else { + #{$property}: #{$value}; + } + + } \ No newline at end of file diff --git a/assets/sass/main.scss b/assets/sass/main.scss new file mode 100644 index 0000000..85ffe0e --- /dev/null +++ b/assets/sass/main.scss @@ -0,0 +1,1414 @@ +@import 'libs/vars'; +@import 'libs/functions'; +@import 'libs/mixins'; +@import 'libs/vendor'; +@import 'libs/breakpoints'; +@import 'libs/html-grid'; +@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,800'); +@import url('fontawesome-all.min.css'); + +/* + ZeroFour by HTML5 UP + html5up.net | @ajlkn + Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) +*/ + + @include breakpoints(( + xlarge: ( 1281px, 1680px ), + large: ( 981px, 1280px ), + medium: ( 737px, 980px ), + small: ( null, 736px ) + )); + +// Reset. +// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain) + + html, body, div, span, applet, object, + iframe, h1, h2, h3, h4, h5, h6, p, blockquote, + pre, a, abbr, acronym, address, big, cite, + code, del, dfn, em, img, ins, kbd, q, s, samp, + small, strike, strong, sub, sup, tt, var, b, + u, i, center, dl, dt, dd, ol, ul, li, fieldset, + form, label, legend, table, caption, tbody, + tfoot, thead, tr, th, td, article, aside, + canvas, details, embed, figure, figcaption, + footer, header, hgroup, menu, nav, output, ruby, + section, summary, time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; + } + + article, aside, details, figcaption, figure, + footer, header, hgroup, menu, nav, section { + display: block; + } + + body { + line-height: 1; + } + + ol, ul { + list-style:none; + } + + blockquote, q { + quotes: none; + + &:before, + &:after { + content: ''; + content: none; + } + } + + table { + border-collapse: collapse; + border-spacing: 0; + } + + body { + -webkit-text-size-adjust: none; + } + + mark { + background-color: transparent; + color: inherit; + } + + input::-moz-focus-inner { + border: 0; + padding: 0; + } + + input, select, textarea { + -moz-appearance: none; + -webkit-appearance: none; + -ms-appearance: none; + appearance: none; + } + +/* Basic */ + + // Set box model to border-box. + // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice + html { + box-sizing: border-box; + } + + *, *:before, *:after { + box-sizing: inherit; + } + + @-ms-viewport { + width: device-width; + } + + body { + background: #303238 url('images/bg01.png'); + + // Stops initial animations until page loads. + &.is-preload * { + @include vendor('transition', 'none !important'); + @include vendor('animation', 'none !important'); + } + + } + + body, input, select, textarea { + font-family: 'Open Sans', sans-serif; + color: #7b818c; + font-weight: 400; + font-size: 11pt; + line-height: 1.85em; + } + + a { + color: inherit; + text-decoration: underline; + &:hover { + text-decoration: none; + } + } + + h1, h2, h3, h4, h5, h6 { + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #404248; + margin: 0 0 1em 0; + } + + h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { + color: inherit; + text-decoration: none; + outline: 0; + } + + h2 { + font-size: 2em; + margin: 0 0 1.5em 0; + line-height: 1em; + + &.icon { + line-height: 48px; + + &:before { + position: relative; + top: 0.05em; + margin-right: 0.5em; + opacity: 0.25; + } + } + } + + h3 { + font-size: 1.35em; + margin-top: 2em; + } + + b, strong { + color: #404248; + font-weight: 700; + } + + i, em { + font-style: italic; + } + + br.clear { + clear: both; + } + + sub { + position: relative; + top: 0.5em; + font-size: 0.8em; + } + + sup { + position: relative; + top: -0.5em; + font-size: 0.8em; + } + + hr { + border: 0; + border-top: solid 1px #ddd; + } + + blockquote { + border-left: solid 0.5em #ddd; + padding: 1em 0 1em 2em; + font-style: italic; + } + + p, ul, ol, dl, table { + margin-bottom: 2em; + } + + .date { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + margin: 0 0 0.25em 0; + } + +/* Container */ + + .container { + margin: 0 auto; + max-width: calc(100% - 100px); + width: 1200px; + + @include breakpoint('<=large') { + width: 100%; + } + + @include breakpoint('<=medium') { + width: 100%; + } + + @include breakpoint('<=small') { + width: 100%; + max-width: 100%; + } + } + +/* Row */ + + .row { + @include html-grid((50px, 50px)); + + @include breakpoint('<=large') { + @include html-grid((35px, 35px), 'large'); + } + + @include breakpoint('<=medium') { + @include html-grid((50px, 50px), 'medium'); + } + + @include breakpoint('<=small') { + @include html-grid((10px, 10px), 'small'); + } + } + +/* Section/Article */ + + section, article { + margin-bottom: 5em; + } + + section > :last-child, + article > :last-child, + section:last-child, + article:last-child { + margin-bottom: 0; + } + + header { + margin: 0 0 2em 0; + + h2, h3 { + margin: 0 0 0.25em 0; + } + + p { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + margin: 0; + + strong { + color: #404248; + font-weight: 800; + } + } + } + + footer { + margin: 2.5em 0 0 0; + } + + header.major { + border-bottom: solid 1px #dbdbdb; + margin: 0 0 3em 0; + + &:after { + content: ''; + display: block; + border-top: solid 1px #dbdbdb; + height: 8px; + } + + h2, h3 { + margin: 0 0 1.2em 0; + } + + p { + margin: 0 0 1.5em 0; + position: relative; + top: -1em; + } + } + +/* Forms */ + + form { + label { + display: block; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #404248; + margin: 0 0 1em 0; + font-size: 0.8em; + } + + input[type="text"], + input[type="email"], + input[type="password"], + select, + textarea { + -webkit-appearance: none; + display: block; + width: 100%; + border-radius: 8px; + border: solid 1px #eee; + } + + input[type="text"]:focus, + input[type="email"]:focus, + input[type="password"]:focus, + select:focus, + textarea:focus { + box-shadow: 0 0 2px 1px #4091bf; + } + + input[type="text"], + input[type="email"], + input[type="password"] { + line-height: 3em; + padding: 0 1em; + } + + select { + line-height: 3em; + padding: 0 1em; + } + + textarea { + min-height: 9em; + padding: 1em; + } + + ::-webkit-input-placeholder, + :-moz-placeholder, + ::-moz-placeholder, + :-ms-input-placeholder { + color: #555 !important; + } + + ::-moz-focus-inner { + border: 0; + } + } + +/* Tables */ + + table { + width: 100%; + + &.default { + width: 100%; + + tr { + border-top: solid 1px #eee; + + &:first-child { + border-top: 0; + } + } + + td { + padding: 0.5em 1em 0.5em 1em; + } + + th { + text-align: left; + padding: 0.5em 1em 0.5em 1em; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + margin: 0 0 1em 0; + font-size: 0.8em; + } + + thead { + background: #404248; + color: #fff; + } + } + } + +/* Image */ + + .image { + position: relative; + display: inline-block; + + img { + display: block; + width: 100%; + border-radius: 8px; + } + + &:before { + content: ''; + display: block; + position: absolute; + left: 0; + top: 0; + background: url('images/bg01.png'); + width: 100%; + height: 100%; + opacity: 0.75; + } + + &.fit { + display: block; + width: 100%; + } + + &.featured { + display: block; + width: 100%; + margin: 0 0 2.5em 0; + } + + &.left { + float: left; + margin: 0 2em 2em 0; + } + + &.centered { + display: block; + margin: 0 0 2.5em 0; + img { + margin: 0 auto; + width: auto; + } + } + } + +/* Button */ + + input[type="button"], + input[type="submit"], + input[type="reset"], + button, + .button { + @include vendor('background-image', ('linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2))', 'url("images/bg02.png")')); + @include vendor('transition', 'background-color 0.2s ease-in-out'); + -webkit-appearance: none; + position: relative; + display: inline-block; + background-color: #4091bf; + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.35), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.35); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + color: #fff !important; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.95em; + letter-spacing: 0.075em; + padding: 1em 2em; + outline: 0; + border: 0; + white-space: nowrap; + cursor: pointer; + + &.icon:before { + opacity: 0.5; + margin-right: 0.5em; + position: relative; + top: 0.05em; + } + + &:hover { + background-color: #50a1cf; + } + + &:active { + background-color: #3081af; + + } + + &.medium { + font-size: 1.25em; + padding: 1em 2.25em; + } + + &.large { + font-size: 1.5em; + padding: 1em 2.25em; + } + + &.alt { + background-color: #464a52; + + &:hover { + background-color: #565a62; + } + + &:active { + background-color: #363a42; + } + } + } + +/* List */ + + dl.contact { + dt { + display: block; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 0.065em; + font-size: 0.9em; + color: #696969; + float: left; + width: 6em; + } + + dd { + margin: 0 0 1em 6em; + } + } + + ul { + &.default { + list-style: disc; + padding-left: 1em; + + li { + padding-left: 0.5em; + } + } + + &.actions { + li { + display: inline-block; + padding: 0 0 0 0.25em; + margin: 0 0 0 0.25em; + + &:first-child { + margin-left: 0; + padding-left: 0; + } + } + } + + &.menu { + li { + border-left: solid 1px #eee; + display: inline-block; + padding: 0 0 0 1em; + margin: 0 0 0 1em; + &:first-child { + border-left: 0; + margin-left: 0; + padding-left: 0; + } + } + } + + &.divided { + li { + border-top: solid 1px #eee; + padding: 0.5em 0 0 0; + margin: 0.5em 0 0 0; + &:first-child { + border-top: 0 !important; + padding-top: 0 !important; + margin-top: 0 !important; + } + } + } + } + + ol.default { + list-style: decimal; + padding-left: 1.25em; + + li { + padding-left: 0.25em; + } + } + +/* Box */ + + .box { + &.excerpt { + position: relative; + overflow: hidden; + + header { + margin: 0 0 1em 0; + } + + .image, p { + margin-bottom: 0; + } + } + + &.feature1 { + text-align: center; + + header { + margin-bottom: 3em; + + &.first { + h2 { + font-size: 2.5em; + } + + p { + font-size: 1.2em; + } + } + + &.second { + position: relative; + display: inline-block; + text-align: left; + margin: 0 auto; + white-space: nowrap; + left: 24px; + + p { + line-height: 1em; + } + + &:before { + font-size: 48px; + position: absolute; + right: 100%; + margin-right: 18px; + opacity: 0.5; + bottom: -4px; + } + } + } + } + + &.feature2 { + text-align: center; + } + + &.article-list { + article { + border-bottom: solid 1px #dbdbdb; + margin: 0 0 2.75em 0; + padding: 0 0 2.75em 0; + + &:last-child { + border-bottom: 0; + margin-bottom: 0; + padding-bottom: 0; + } + } + } + } + +/* Icons */ + + .icon { + @include icon; + text-decoration: none; + + &.solid { + &:before { + font-weight: 900; + } + } + + &.brands { + &:before { + font-family: 'Font Awesome 5 Brands'; + } + } + + > .label { + display: none; + } + } + +/* Nav */ + + #nav { + position: absolute; + right: 2em; + top: 0; + line-height: 5.5em; + + > ul > li { + float: left; + padding: 0 0.8em 0 0.8em; + + > { + a, span { + color: #fff; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.95em; + letter-spacing: 0.075em; + padding: 0.5em 0.8em 0.5em 0.8em; + border-radius: 6px; + outline: 0; + } + } + + &.active > a, + &.current_page_item > a, + &.active > span, + &.current_page_item > span { + background: rgba(0, 0, 0, 0.15); + box-shadow: inset 1px 1px 0px 0px rgba(0, 0, 0, 0.025), 1px 1px 0px 0px rgba(255, 255, 255, 0.025); + } + + &:last-child { + padding-right: 0; + } + + > ul { + display: none; + } + } + } + + .dropotron { + @include vendor('background-image', ('linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0))', 'url("images/bg02.png")')); + position: relative; + background-color: #3B3E45; + background-color: rgba(59, 62, 69, 0.9); + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2), 0px 2px 14px 0px rgba(0, 0, 0, 0.4); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + padding: 1.5em; + line-height: 2.5em; + min-width: 15em; + + &.level-0 { + border-top-left-radius: 0; + border-top-right-radius: 0; + margin-top: -2px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.4); + } + + a, span { + color: #aaa; + text-decoration: none; + text-transform: uppercase; + font-weight: 800; + font-size: 0.8em; + letter-spacing: 0.075em; + outline: 0; + } + + li:hover > { + a, span { + color: #fff; + } + } + } + +/* Banner */ + + #banner { + text-align: center; + width: 940px; + margin: 0 auto; + overflow: hidden; + padding: 9em 0 6em 0; + + h2 { + border: solid 1px rgba(255, 255, 255, 0.25); + border-left: 0; + border-right: 0; + color: #fff; + color: rgba(255, 255, 255, 0.75); + font-size: 2.35em; + font-weight: 700; + line-height: 1.3em; + margin: 0 0 1.5em 0; + + strong { + font-weight: 800; + color: inherit; + } + + &:before { + content: ''; + display: block; + border-top: solid 1px; + border-color: #888; + border-color: rgba(255, 255, 255, 0.25); + margin: 10px 0 1.25em 0; + } + + &:after { + content: ''; + display: block; + border-bottom: solid 1px; + border-color: #888; + border-color: rgba(255, 255, 255, 0.25); + margin: 1.25em 0 10px 0; + } + } + + p { + text-transform: uppercase; + color: #fff; + color: rgba(255, 255, 255, 0.75); + font-size: 1.5em; + font-weight: 700; + line-height: 1.3em; + letter-spacing: 0.04em; + float: left; + text-align: right; + width: 60%; + line-height: 1.5em; + margin: 0; + } + } + +/* Sidebar */ + + #sidebar { + h2 { + font-size: 1.5em; + } + } + +/* Wrappers */ + + #header-wrapper { + background: url('images/bg01.png'), url('../../images/header.jpg'); + background-position: top left, center center; + background-size: auto, cover; + padding: 3em 0; + } + + #banner-wrapper { + } + + #main-wrapper { + background: #fff; + } + + #footer-wrapper { + @include vendor('background-image', ('linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5))', 'url("images/bg03.png")', 'url("images/bg02.png")')); + position: relative; + background-repeat: repeat-x, no-repeat, repeat; + background-size: 100% 100%, 100% 15em, auto auto; + background-position: top left, top center, top left; + padding: 7em 0 7em 0; + } + + .wrapper { + padding: 7em 0 7em 0; + + > .inner { + position: relative; + z-index: 2; + } + + &.style1 { + position: relative; + text-shadow: 1px 1px 0 #fff; + background-color: #fff; + background-image: url('images/bg03.png'), url('images/bg04.png'), url('images/bg02.png'); + background-repeat: no-repeat, no-repeat, repeat; + background-size: 100% 15em, 100% 15em, auto auto; + background-position: top center, bottom center, top left; + } + + &.style2 { + } + + &.style3 { + position: relative; + text-shadow: 1px 1px 0 #fff; + background-color: #fff; + background-image: url('images/bg03.png'), url('images/bg02.png'); + background-repeat: no-repeat, repeat; + background-size: 100% 15em, auto auto; + background-position: top center, top left; + } + } + +/* Header */ + + #header { + position: relative; + border-radius: 10px; + background: rgba(255, 255, 255, 0.1); + padding: 0.75em; + margin-bottom: 0; + + .inner { + @include vendor('background-image', ('linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35))', 'url("images/bg02.png")')); + position: relative; + height: 5.5em; + background-color: #3B3E45; + background-color: rgba(59, 62, 69, 0.9); + border-radius: 8px; + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.45), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.15); + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + } + + h1 { + position: absolute; + left: 1.75em; + top: 50%; + margin-top: -0.65em; + font-size: 1.5em; + color: #fff; + } + } + +/* Footer */ + + #footer { + margin-bottom: 0; + text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); + position: relative; + z-index: 2; + + h2 { + font-size: 1.35em; + color: #fff; + } + + strong { + color: #fff; + } + + a { + color: #acb2bf; + } + + .button.alt { + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.25); + } + + ul { + &.divided li, &.menu li { + border-color: #444; + border-color: rgba(255, 255, 255, 0.075); + } + + &.divided li a { + text-decoration: none; + } + + &.menu { + margin: 0; + } + } + + dl.contact dt { + color: #ddd; + } + } + + #copyright { + border-top: solid 1px; + border-color: #444; + border-color: rgba(255, 255, 255, 0.075); + text-align: center; + margin-top: 2em; + padding: 3em 0 4em 0; + color: inherit; + + a { + color: inherit; + } + } + +/* Large */ + + @include breakpoint('<=large') { + + /* Basic */ + + body { + line-height: 1.75em; + font-size: 10.75pt; + } + + input, select, textarea { + line-height: 1.75em; + font-size: 10.75pt; + } + + /* Wrappers */ + + #header-wrapper { + padding: 2em 0; + } + + body.homepage #header-wrapper { + height: auto; + } + + #footer-wrapper { + padding: 4.5em 0 4.5em 0; + } + + .wrapper { + padding: 4.5em 0 4.5em 0; + } + + /* Banner */ + + #banner { + width: 100%; + padding: 4em 0 2em 0; + + h2 { + font-size: 2.2em; + line-height: 1.3em; + margin: 0 0 1em 0; + } + + p { + font-size: 1.25em; + line-height: 1.75em; + letter-spacing: 0.04em; + float: none; + text-align: center; + width: 100%; + margin: 0 0 2em 0; + } + } + + } + +/* Medium */ + + #navPanel, #titleBar { + display: none; + } + + @include breakpoint('<=medium') { + + /* Basic */ + + html, body { + overflow-x: hidden; + } + + /* Box */ + + .box { + &.feature2 { + section { + margin: 1em 0; + } + } + } + + /* Nav */ + + #page-wrapper { + @include vendor('backface-visibility', 'hidden'); + @include vendor('transition', 'transform #{_duration(navPanel)} ease'); + padding-bottom: 1px; + } + + #titleBar { + @include vendor('backface-visibility', 'hidden'); + @include vendor('background-image', ('linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35))', 'url("images/bg02.png")')); + @include vendor('transition', 'transform #{_duration(navPanel)} ease'); + background-color: rgba(59, 62, 69, 0.9); + box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.075), 0px 1px 6px 0px rgba(0, 0, 0, 0.35); + display: block; + height: 44px; + left: 0; + position: fixed; + text-shadow: -1px -1px 0 rgba(0, 0, 0, 1); + top: 0; + width: 100%; + z-index: _misc(z-index-base) + 1; + + .title { + display: block; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 0.04em; + color: #fff; + line-height: 44px; + text-align: center; + } + + .toggle { + @include icon(false, solid); + position: absolute; + left: 0; + top: 0; + width: 60px; + height: 44px; + opacity: 0.25; + + &:before { + display: inline-block; + text-decoration: none; + font-size: 18px; + width: 44px; + height: 44px; + line-height: 44px; + text-align: center; + color: #fff; + content: '\f0c9'; + } + + &:active { + opacity: 0.5; + } + } + } + + #navPanel { + @include vendor('backface-visibility', 'hidden'); + @include vendor('background-image', ('linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35))', 'url("images/bg01.png")')); + @include vendor('transform', 'translateX(#{_size(navPanel) * -1})'); + @include vendor('transition', ('transform #{_duration(navPanel)} ease')); + background-color: #303238; + box-shadow: inset -1px 0px 0px 0px rgba(0, 0, 0, 0.5), inset -2px 0px 0px rgba(255, 255, 255, 0.15), inset -2px 0px 10px 0px rgba(0, 0, 0, 0.35); + display: block; + height: 100%; + left: 0; + overflow-y: auto; + position: fixed; + top: 0; + width: _size(navPanel); + z-index: _misc(z-index-base) + 2; + + .link { + display: block; + color: #aaa; + text-decoration: none; + height: 44px; + line-height: 44px; + border-top: solid 1px rgba(255, 255, 255, 0.05); + border-bottom: solid 1px rgba(0, 0, 0, 0.15); + padding: 0 1em 0 1em; + text-transform: uppercase; + font-weight: 700; + font-size: 0.95em; + letter-spacing: 0.075em; + + &:first-child { + border-top: 0; + } + + &:last-child { + border-bottom: 0; + } + } + + .indent-1 { + display: inline-block; + width: 1em; + } + + .indent-2 { + display: inline-block; + width: 2em; + } + + .indent-3 { + display: inline-block; + width: 3em; + } + + .indent-4 { + display: inline-block; + width: 4em; + } + + .indent-5 { + display: inline-block; + width: 5em; + } + + .depth-0 { + color: #fff; + } + } + + body { + &.navPanel-visible { + #page-wrapper { + @include vendor('transform', 'translateX(#{_size(navPanel)})'); + } + + #titleBar { + @include vendor('transform', 'translateX(#{_size(navPanel)})'); + } + + #navPanel { + @include vendor('transform', 'translateX(0)'); + } + } + } + + /* Header */ + + #header, #nav { + display: none; + } + + /* Wrappers */ + + #header-wrapper { + display: none; + } + + .homepage #header-wrapper { + display: block; + padding-top: 44px; + } + + #main-wrapper { + padding-top: 44px; + } + + .homepage #main-wrapper { + padding-top: 0; + } + + /* Banner */ + + #banner { + padding: 8em 0 4em 0; + + br { + display: none; + } + } + + /* Sidebar */ + + #sidebar { + margin-top: 1em; + } + + } + +/* Small */ + + @include breakpoint('<=small') { + + /* Basic */ + + body, input, select, textarea { + line-height: 1.75em; + font-size: 10pt; + letter-spacing: 0; + } + + h2, h3, h4, h5, h6 { + font-size: 13pt !important; + } + + h2 { + line-height: 1.5em; + } + + /* Section/Article */ + + section, article { + margin-bottom: 3em; + } + + /* Image */ + + .image.left { + width: 25%; + } + + /* Button */ + + .button { + width: 100%; + font-size: 1.1em; + text-align: center; + padding: 1em 0 1em 0; + border-radius: 8px; + } + + /* List */ + + ul { + &.menu li { + display: block; + border: 0 !important; + padding: 0 !important; + margin: 0 !important; + } + + &.actions li { + display: block; + padding: 0; + margin: 1em 0 0 0; + + &:first-child { + margin-top: 0; + } + } + } + + /* Box */ + + .box { + &.excerpt { + .image-left { + margin-right: 0; + } + + header { + margin-left: 32%; + } + + p { + clear: both; + } + } + + &.feature1 { + section { + margin-bottom: 2em !important; + } + } + + &.spotlight { + margin-top: 2em; + } + } + + /* Wrappers */ + + #header-wrapper { + background-position: 35% 50%; + } + + #footer-wrapper { + padding: 3em 20px 3em 20px; + + section, article { + margin-bottom: 3em !important; + } + } + + .wrapper { + padding: 3em 20px 3em 20px; + } + + /* Banner */ + + #banner { + padding: 40px 20px 40px 20px; + + h2 { + font-size: 18pt !important; + } + } + + /* Sidebar */ + + #sidebar { + margin-top: 2em; + } + + /* Footer */ + + #copyright { + margin-top: 0; + padding: 3em 0 1em 0; + } + + } \ No newline at end of file diff --git a/assets/webfonts/fa-brands-400.eot b/assets/webfonts/fa-brands-400.eot new file mode 100644 index 0000000000000000000000000000000000000000..e79f40f98a8be036d04d8b0def788bd02609b877 GIT binary patch literal 129352 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�W~j5AmI?=WrGa?KDn7M<7h_2n!0fpM z-|E2K2#5x&M5%uUR0pe%_ECvaAhiII$AczCNqe?~Xnz0&>8(^jpcEIWMxbZF7dr># z&<>zc4l_LhliWvdAc4%+H5&jCV*ShUq^3n+#9#u82Ag#w;}dSA>V(@0h4W)`RW+iO zOR!QKejUeXyO$aw60J$vGN#fnc_;_F6{QiE+%H{P$>wNfhPw-(H z_mW^b!3Eagv(g`79)QQ@TU0BC(nTjo1+lc0A;NWo03i@CPTucC72rIDS|&oDgy*F` zM16S;%qgl(fbeMyAth^i({Et)WRN>pXdLOq)M?&qG?Sb8M#&J1PaM3r5X`t{Awkv% z{5`mAlqv2K)b%M{wGG8SpGGLTScgC|VdBX=_w)CN{;?dsUt$Bpg#!l*W1Isp6-#M=A!vw-b-2$3&v6kfG@{D6*nCV3IWYt(tHD#9$Y$e= zEVgM?o>dG>F|vYc##t>KXZO9!;1i!t2WxE`A4Hs%tHDN}?n#Y#g& z0MCRjl;JXXpMdot3n_}_*D!2>1celZl^3BJ7Q(J-=x;idkgD+4A{2-+vRa)6XTggS zfpQ*zGc*|?P;{7SIap3Zeb;yjMUg+rYC%vgfwxCTl$`j5cV+A1cw7&MY@p(LJZ^>} zVb_n(kLM$HNamtvL)@hc>PVqbxHytX;@eDYreJ(E9yMHi?y4o^eTx za-^E{os$LXJFvb*Ny&+dqldznpn6V@EJ>y1T~@*hMDyZP|w_~e*hY{93yB)S|g(v}$ERD?mb2$REI zo1{5hhXL=c!zP3n406QNT(w}n%^48&2qo3iZJ|tSNl{k75h6d zH(=f$3r}bpDrQ?ZDTD!Jp|LET`n(6C=+r;lPx2-sYT0 zOPnq6L&;(Xr;4aAR#vm6Zks5`pvqXBs%$!pHq2qF?3!Z=*dyqhBD-X}h3f1cCC+2Ev`uUxuzi5hofKMLQ)ML=k4` zJg668Yte^k4)$EtG}W4L*N!DuCnruiPm0s8&`T0+*)*`~GLf{?tLZ-kSJN-OM6c+M zVEwY`$9CMcdh*1{mS_~`J%g96nmxGy*Z6~N-i=uAyMgcU1 zLkj#*`w*l&$_KWg1-EYCT5tiEl}ka;;E71T5@Mw2YKSJ0Qve9y19fA9Ur-|!KqP|Z z(MydKN^5cnkO6w54D_v0B4=j3^VTldT$R&dS?>|CUa{DKOb^?Bi{bjqv$-D4{!X`; z#9~YtYuBU^OAvd%*b)&{`wWBvlU+Ouhos}kaLci+SR#t07OB37XaiyuIHen294$1_ zHLniML`nXq+*?|A>4w2U)04w_;l`xqnDRqdVp%Qrv?L;FXOp-uZ1c%IJa_hl!2Vwd zJPfUnd27Q{iRDAG3G+{AB@sww(I~reR*~2_W@4VFL=>RwygIj#ZR>f=6?BOLB9wNT zbBGP%r|9=U{6igUiFPv2nzwoH<}-IjN!$M4pCmY@A13Y7ubc_jrVlLm zC%}TgjySfZz!^3(=iuvf7lY$p#$3gG2xEH(a}RSLb3gMrtiygBaTwo5Watku;-FlM zl5emJ{K|O%+tfi#i68&~=?>z$)Q3GK2aJ|q1w2s&LkloKAL7H62#v^vAEi;l9G4)V zCBN543M_Z(TNi4Q-vC~NFL_85-zhh64eI$c7I! zz=VJ{k8F4=K7QlZ=d$?*DhGs!))C8Y8Z4IMHHh91&nNy}Aeh4W&@C0xuakzZ*NHNK z;7Hs#zj+5|WB_0PntrIWvx{_AIli9^@YPPXyOZqNHkN-z_x0tgmY)&2TAa*XwrU$b zxS{h84XWo>?>Uv%_tdLU;Mz_b9xfCv2(8SMGtVO24d-nrZP?1|SBEcMk5wIc&m$pz zE$Plj2=^1#(7DYVt8?q&8-~hu7{e*Zej0V1eJx)4xbt&=S)2OobIn&w|YY;vGCB<>&^xOxt(ys zBUjez0$J$R$%<7SYvx|Mq*R#`Ui*{H>j5Ti-YiI~@V?{-wB>N*LQF6Iv@dwUhj3WN z0blqk_<{ir#{?mAltIxT^r{o7B1WBB$w3UgM;4w_EB&TatCczrRRMwBjsRz}?%e4$ z#opfHZ_AD8AClS!A%b1wqXxWhJm~+IkRhJ|BIcm_VXa2wfi$-~)bB>Tmk@j}>c^tX0RTq%lc_T|$pxlirTZ)s`S@FAga z`_}B2b~&k?4`-d}|Lh$#-I#REc-IB_8`kpLxu40=1wIcH>GiKfEP(zM z&M2K6{~qY(8H^hJA`tz45B(ZTI*9J;h81qf$ADCyD=NN{5_Qyv!8jcpiK7wxn;W{{{_c)m4)R#iH0J4}l z&R$de10Mr{!b|UaRE$HQmz&l-^}l&d5l0Pw$}*cMHq7{%fc!-qIrwkNMfgj72P+kQ zq|l9)NpqCxM$>Sl>m2Agtq0WXnXB!58jGw`{2eJib+eEXK92KmrG#{6T1f9o^XYHr z4E%d6yEnHYH`8(YGkW6 z{aLM@9Q=>h$b-{YJ@-GRuZjXx-J2sE4$ov?#{Q1%iri&>t|wPQOf|0>Y8;wm1n1-U z*jCJdXB*d}rfQHK>id4vFXeJSM-hHb`%P_0t+r$cYP=v@7QSE*g42tWEW_4$>y%vX zC%N3xY?ky+pTBLJL(J)^HDvFcIs3BNj%;?Hrac&(>_KE?F1HW4QK**lwOmevSxe_R zxDKKJ*9ZNkL3^ODoeU*{=xN|X@a0&RdPXVaJ#!?#3RaDe(*5~Zb@Y_=zv+4t0LkvM z+`Ip$&RSKc_Nr6++EvwicXf4Dbx+Uq^z1V|`(!d(mdQRzNFWOdYrS$e(Pb)0RyMy!ytXzienBZLA<c;OCbQ^tU13UktD|EOp%LILSt-2 zt~KX+=}Y7uKTGb(NK(chpZ(sBU;#3m%FrYO)PRTp*0S$F`f3ZlVJwS=XZ*VdUXdK# z)=G^zkQW`xjfS8~>TUr?yqs|Ig=DssbawQ%9wU1@J^2Rp?9~TGcW}E6I z9CJ=#&#g|fIu|4VG?6@*Oy;Wdoy@|PBU`;GWfxZFj@@**Jr*6Q3P*gyihnU~9>73_ zo+oxY^e3XCgN(Pq>nCC+XVMh|7p)c)YcOJ2fjA&iP!H^S^y;O~{nhfrS6_Ygp;xM< z{`>DN>B+s;)h237b^F5w_g45 z`fYa}T3hVjai}+K?M~?Vw;7t5w&O}qq_!J_cLSFj}T{??*rSxUOXl15MMP)8&+2vVUT? ziUUXj^_v6@H#sK%aHKY4nc?Zip|Zc(=Pr#rbydVIT=gVmfh-z(zlRXrGeqFtKk}14 zw)Odu-x>L%k>^MLe&hwP&9+(u@xDsEQoUY1q@Dot{#o@a>hoeHTNzq$TYi0tWvh?P z+2TPE0oVi54`)vMhCl%L(Up+uLQle~gMP*nz7L46{}t>SzSyRfc$qB;xv)I0H9$1Bg zB%0qNb~^B(9ELYm@mhR^`H6$ZC40I zl(iyKXVS4OKXO9``amc@Z7v2392raalufpVJ}Z}mt1Usmlz&8hjihYV^~&z2e>76^ zu-A2sIGi3Oe5J=iRx+X4HBzf^=*ZUs!?O}&XbhyeRPqx5A=lkVs8%eso9^sSoXo?X z2S#L@DrzOk>y5UP*ztTd04iuWDh)uPmjUE;*YQCckccB0TfyKKzXRkK9+0Lj*gCWr zWGB{-*%^XI7Mo4L$QKz9+}Gnhi^G7w0Y@P(~l#{}^PC61Ml<&Id1dGxqr zaVz4Hu8ge30PF|Ugu_zm3Kvo4TsW0slZmCpcYZ?SdgwY(nhg{==nQ^Jn@(aew)RiAL1Dc2z*JRCwUCJJ7q znFUMt#+8<1Ho=qfOyY{fF5=~(#CgT_?K<7>vEZlJ7p->!#oUNIp=Ygw}Sr@SWk5dTN zxF>;t?K0G~iE`>=h%BkZs7v-7@Va5wS~hfNuIZQ&ub04%6r%V)#qFt1Pgg6`A5)2J zoc@xqs<8Ww(u~;(Dqu}r^vHxC;|Hfn-%Px&2V}n0}E&HejEE?FY4A zBDp&g*UT0T9;#RDXdzdLd3|my?qDDg@J=A86Li2k_>vu~1Nvt|y%Hd>S;^q(KTX}zdp4B*7yPf6xI|=o;~}vs>yWFq@s2?hQ(oIR$4x!Tr$7F{10R3j)yhHJsX3Z=;?B}o zemei%koAJZ%z1i&P`K_G?})QXB3<6d^8b-vfAgDv{mtqIKPhO2J z<)^>%gye}o!8V?JOxGVXdg)-raVjX^rqjyxsm$x2WD9Tp^_OsJVpuK9L~Czke(H5Q zjEfeTm`n=|LX$7!fEXm!HZIz-aD^FGvCb0dKq)csGdi;)RQs-R1r;uxy&%w=HKqoFF4gOCvgf|vMLEL?~;A-_Ade1UFi7G0gm zRd=^R&M<{15f3q#sf!6|69#SKc}=)R7RZH%&)C1LJ#cnZVen5YAY%EKdjMVh;$fTc zLCWq&p1N@1sS9tZj*Z<#6^(Er6CUQ24Ws_~qpy3-@vC}g7VbH!?z-@Uw8N6ldqgRw|L~PA^!2(zJ`1XF4Q8qQRHRQC{xVB!q=26 zX)H=VMDVg@#N9TmX|bY{o4_eH^uN}EiCQh=l+#neOg=VUocXDmlawWu%w#B&i%l11 zUU%C&$M>9@yXC3v_wGIZ`undub>D0LE}lA*j<(H6-5YC;Zoa8y$C@8~^49*f+nevY zu=AeX>)Y-x8Vi{>_B$1xg+ZXKDqw4 z*A8cUg~NwKxyFOfKlq@$%O5!s%5EgVedpkjTrbbZ+0h5z_~3&tzC)Yx(hDO|ZJ&CD z&ynlWhXgaYX5@Bo17X(>^DJcmXbwYU;@Ep;t8KL-emZcgjg2CvKW>=U#X2%aHylT? zmc)6JUyQl3hK{eFp|d$`%J4J9#xcV-GCE~X=Eep-%!KJgqsfSJgg6UWf79%1nw9eC zy|Z(PhLb!u`l?BcmB9F&qt_*ajp+LC?mEAF_xbDeV}rtxGMpf-e5_EMZ)R1bcIw<% z?ey98Kb%;em{^V%Qenbr?Sk5ps-{XT8Ari~#Lkb9D@a+hNJRDwizM>4W^{ITW}5Ku z{d1Lq2*2kmv-efb?_y664i0G{GF>u_&g9uKe-CevtxxP%$wD~eCJTjRvX+!RcKobS z>6_H=yYv~gRXvB-upqu6y&54~t|gb$B)z)d8Hh>C#UorMF(PbcNeyjEckm+;7=PlH zZ(KZ;tSzMvQC}jOS~}!5obaLaauv~bvyj$forO7q;02P}!V!eL`i-rPLw6k7iH>S3 zA1}x6Nt=AN;e_O?Y~e7TXu?alBxMC-5!*tmDin@|ezSk5u{_#4bf}kaHuHsM957Uu zF~*O9S&T3h>A!s+@i7rK#CsJCPW1N(@j$urK?G0cMBG|vjhL$9A(HNBnVId9A>W@R z4PZq*ldWd6)qi}+u<`q|yJu&2ze$fpGR;`oG6~R`#3@rv=+Z@ZZZypEtlLP(gX^_y zw&p#4**JOyU)?qL3$WA>q=ZM#IoTLEVKqygIsdDXxv=hrg#POLRH7#&IOrrk)sU~t z5f1@hIX?fQbM%(nqoJ=Z&da=df82ZInrj}(#(ytc9|yS!#_HVtVijTaM0BE_b+YPW zHvZ;o9(m-NH^;N<|Lj%U2)HG}HT2R86<&nmV^xpZ8t{<*HyFt~sSPj!$&*_F{YQL( zR)=YbO9;oNoA!MY(IH|PiAtLb@TWK|)_`ds);kwD$pR8l+i`QUHJ^x_u+|b$?|Lsd zm-xv<)wFJRty0Z2mhI5=6G-+r=vu%5O~vC|$BkBMIk2j|-YAFFJHl$rz46?=<6nq8 z(Nt>i&Be?dNry<2(kuV9=q_$^gKws%x{xbUJClQ%pliyzgU*C&eL ziI*8;mb1w!b#GCh*CCxa zmSG#ttA-g*zaSfa=#5%%M zW$531NIm@~nP;T0eGzBt)6C{skh>|a8g_}GEyNr_TbKqJeZ>TA`kpz?ZyWD#U*R~#8UArq6D1Ie%cw+mx*N%PX{;9cIb0-%j zU0Y^7*6O_RijU1S^k*=0q=V@a&707O_b3351E*Ni|hx4oQ! zJ4#NTlfads?1f*r$A$nem=1K5VgVA16AD97F|mquE#v6PCRvccU1WCzVQb^xuqL;k z&EqWcL}DRH>o~3QfsJI8QHbLj3Ofg$o2?Z}mW5EG8wtBJt14I}U>~=$TG_Rf8^L9- zlvpurr18`_GD)mn|6`^8C=?1TpcNSkl@k%@YhVg^rVdRU8Mb(9=Ugumo*oao^$K(> zBkRfGGnGQ_aSV)KN!unrJ4ntpBnf;kF;D>|VSa-Xu(^;NE=%AS_@^XU+I(MxR^+>E zjUWzWF3uAe0zccxm{c0#n+U-uh7De0I|l+grgNEOHIz(PNewTiRnI{+E9F(h%_Qv{ zcmv}nS_fv}8os(Yet%W{Z{}8yIM#?_r0{R^fT5!yT|s#LUMp!zY>hNErr1nMZP|9+ zgxlJ7x;L};ysh8(_`5EsYxhpiRrZx92K~v(zRFSc<7=;YaPDAvyYbGOF1%}ddHvpG zARW8m!5d=GpVq$N_s?I)6aR0hGfj{ig;FruKsES1G;Z#n zZ!L)8j9zt4D0ORcU-gm7r7x(TVys!iv%MR{ zl2|GGrkjEoGV%d}fp_7@$^0x+W>HILSOLZ}5lYi)@bS>A#lMwOK4M2jG~}X~d^lUo zFY!1yvsSV%ptj7a+@x}#k2E`DgN(IYsW~-0lO)?yQ<>)6u7>G+ z+e{gqhhBBkQPF6yci_Z{cc+*%gt3=kqDjP!5PES8A~1A}TY*0UW;u3kbFehlS&jyZ z0jHcVwG;?=G+fBcCbQvc>&`Z69sppv{h46-v9V_I8DS&m%T%#mir-jHJ_oqOygM|A&X-~ zZ4Jyw;UW;qwr{ASYL&u+W@wh{jH4Ftdd$mUsC`tlL>h@JOlFksW0x|^n}Qj)Tl^Apx5WYJd@Sqx#x`mC8&O-8_4#Ww|r+)1^FmEQyoFQatz;YxLyo+_l{p!;Y5C z3|gy8YwdtJiuyO8P)Ii?Tq0`0kkNuCqe=juE(0P%jp?K!*4S#ImM{+dgoon*ZQ^?@`a)dTM>$j}iTc`l5OS<=_!|n%}6}GXN7L zl8W3mgnmwwuh-U2gLSutBzS=l$;`#Vr{OT{$T1;3U4r#4zN6nl+S_1%mC2dxS*l zkW{vjW9?xu5Ep?0=QG>!mAwHvo$UKFrWNQm%K2KNh%u9XWD0UhXg5>k6>GV-|8E z>Ejt44<}a8GmcfQSblV)3#w;UGLcFy-3+`6>5+Vn+oEZAH#IE_qV!KWf1Y}Onc40R zXw-j`4Hk>RY|W0xZU5XNT#tXER>cHLE&Ke+PI#h{3C(Ts?Wh^wxD=19BCoKwWRw(b zfW9FF(2e*Vrg>kQF$07cA~4}M-3AZ}^-Q7cWCL$FvvmC;k*{(g6I(i3(VXkUUfhGN z>76MaTZ*m!c{XNKx7v$^5~2TY@soZ9hL2?xURPjAHWu@|e{OY<``LbWe9wd%a_8Ey zvA|m$EtBzTWa6YA2(+WO#XQn0ZE&Q-t@35koh{2Oo(LvFaZk1(_f#9nfj9gOwx#BC zQ06*Dx+W77E{3RT^jb_=UBol|!~lP^^)h+&yX#+4E2pn6=Z@UaUf8X@K5u_KkSte1 z;eB_HhF^c<>aFF{pTriX`%W@*TQnU_-OztzsWwxdOriX+Z{eCZE%y;Z6+HFJ>VJTB z*!Tma7&Fa4Fp;3X3=segf+<*D+rQBA&cokfu9U0YS09eLIH&p3=^bb0MJ09LU5#fy zux;|_%IVW9`=^&H*9@+D=%K5&-0&~?!qoNeo!QmG+CQ-4&R16UpI%uxy}dEpd+665 zTK4a~&ApdA!A(xZNR#CCh^e(1W^ zJGYeoc>UkD{0`qtz!mym>NkmP-^?7vx%lZEz9sgHxvETsbSh z^KkBr0qOtZ8%>`lK16cqS0J{-*Xr+#Pt_;tpE3%@=*FWNa$G2r|ozOC|~TbK^$OXI2bo0N%V0 zC`oMJ{}37}=6((9t)jGtjkEM=&G=t-K0{pMtixX+*G}alH=C^-NKPr&GL5)F)dwby zNII8D5i}^oNeOVG*=W3AmfcL=QGLfa`&&WMI8Xx^b+^_*pV?Mnsz2qGC$>zKv3iLu zU|Uz}QR=p)9K_EfIqFZ;wz>@n!vLz%em8ZOB?p_xGTy77Al3Jy0U%iduQLu(AZTwU zx_58%%f7=I?~cB9e(&hNR5EKN-%d1ku)%2ZyPq{2 zXfQ&6sRu(Ch;d4c7%_LGbBqe^4NN2k5W_Axj+ehxKbx+n7TfE8HoJ2$5kJ%4aa{za zr;|j4QP0K=b8VryJzCBL?Q|$zl1r+&QoG9?9*S>kt$%Llwm=2}2(1Gj6cvIY8 z3T6}&kjzJ4LpSLc;WEKMlgMqqizK^8Cu~{5I`C}*tOG8IxPJ{2sXrj{QGTYW-%Z zd*GOIE8*z=Y`du@8d=9mC;LgyNQFlyCdZ>w>Of?Fu|2ng2%T+b5{1&3#=Sx_@;Njk zpX2BaI5jehTWt!nN#?XPZy(wyYu2Eh7BtwO;hK|5O}sIbElN`u|gQ#-r) z4;_7At#HjXg*EL>Dm{5>{r{etJlj1wXr-M@|CaaMwwTQ>T{w8=&7U}szxL|FfuFzV zx4#_wZ?pdph*g}c#?|6_fk5~0eM{Qli#Pmm;8f*~J1VE1T9}{z?1lGy=~VTOJF2I? z@?-Ni-F_3cK6Tpu-9Qt=H`yiuw?BW|(xZ!k z$StM6d?EBRpS^bEk{){DFBcadUE-E}N zU;lyeRrG7e{gGZEO`0eH_J+J*Ze?g+(LjmKCRu72i!Guvs?BTl`zbv?Xp{$0BV|Mf z<;Ebdr#z#!?c6Qrw$+UF_e@NDWBTUt)*W|#_`?svC9LGLSy0-=Z0qFOa-*@lc5-^l zlOEdKxq9Mu+Ll;lX#R5N=(Sa}s6-h{cyoQ9`}i{SG7x8kmCH)18m+1}@6S)nQE+b! znW}~_ll)W9-JZxbP3KkHw!I39khplTH`-*A zFhS4gUdxpF#bP%KSBKvj{nTT}dTGnFj_3E91+P|ZwvzcqHj>}%X+bALPX4|FE#C71?_91zqQ|L22vt#KFbYJnlr;4@5D=|g-ty#E`Pfz6tPz>ks z;c-Plf^Vb!FyQz@4xLzdK`%#y0r+L80*=847y3LQFv$%;DTe%Ji=K_Y(78NK2JBVG zf|QMU-(zf7q`tvxH{IX794cPT5YIN?ONNjKC!V`IH<^!wGgYZ6qpT9%fr+9{$+BI@ zMcG)rOKKV@1b?-hQB{+{*wmO&OyuT*diOFA`D->zKWs@U2CuB`@$K2>#CSCwR%$EZ z0%|u&ts)TLxP=Dk;;0$sJ?IDpN#&l&7{M=`s_SJu$MbA(?%>dj-}C?(=lp<{KJ<2GMQvU-O6)6O4_ z5qGH`W(Fcjh4eT@$8Cy;`7xZ|qep&X%~g zh&>bViE};`jl^dtu_Qq=3J8%wt_mQ4&vaumUaCXYq_R?%?5zx90Y|4`b1E@bFHa;= z$zUETB?lYJ7L^m>oDs~M1|Pl=7f?0DD)R${;iMe~}0Dkq>- zGCc~lYmk6p6oSU#gvqsp8Dk*&O}RBQ>Yy!%xOW1fCS?6AP$OL-#1$lMIeQ?PAB|G( zzK}eS6|@+T4AzoOtp-F}@@Y~mm8F-)~dQ zf&XcndP#=exd5tC*tG!GFK=4mnZo5Q%ZRD~8I><>SG1u2qFKGP%l#HoNw!>DVEC6c zuzYc|eF2(s4Gjv5UDmkJU3q!i8sauzz;+43_klAZD%~|Ph*hj3aaRTpI*23=fvcm3FBfPEaCZ@~DbS4n|&bPkxt^el#eD<@SRqCxb-0;>LzV+y3 zYbDr>e!v%dgUv>xqQRkJvZLChpA5RjjuEJ{{mL^jHrVryB0kkZyohW#seT}?p8N~5T*r? z-2+3zWb1l^IMK{*e4#zaT=lH=$AMBL0(I)%zx*P zgW9J$);9I($*NFc-;U0YJ-+_O5kq-1 z@kGkckA4p9|2bZr;jZ2{^61D@Y;nKe;og`$HJb1F%fqj1F(FjD+3-6MGqJNBlSp9J57@d;cnl zN!aJA_~WHqHUHi4vmbcvBSthXX*vErK$qo@y>TF7OIm(90i@XeSA#KZ7L=*b$&Me% zD`v}><5V5H>NqjSweppEJ{qm2Ml1b@66vE7K;zq;gkQA9l7k*k$<_8W|587-LqeU8hi5*DR- zS1E_f8|evEfALFS{bqTlaNGV|ZhmFvR4E?ye`19r@0{2^`Z$wfDml*Z;J5ir`=BXa z%BBMNFghct@zQ)Y>0M#~fmn#kCz(ZQDyj^p{ZBLoCGEbwf$@B-m<~@mfUnPR-H-Kst0a4aJ$GiGB|!8QVV{kCEC zXnuZr15susk3o+rG<_Q7&>-onCsO5dYW=6>SOMrp}?_Rv(4Js5A)7%bMD&e)s0cRpHmAZh!Vb^4QXIY*UhX~xp^+f;n^hX(r6W1aQyZo78NA8gyb^^ujm+ortTo~5E_ zq3)X9y|!ztTu@rQuzhp~?Nmd{@_F?v^JpF(7FSoskG8pCnTwf48vxN4zf0QauuTkO zGtwl0i&51pE;qNl`rvDi9DU82mq%FMxF_CQTDkr(J~63X`?*ZBC)?t;EJ| z+HvJwuR3*p%P8r5#+K&xV@Hl0J9@-$6Hwl>o`jCTO6*JD(-zeOLCBcrPyzhnf*d6wg2(CrUd3qpp$hGc}5VcIe!>>^7V2(8LVwWwFadl^yv1>$bt zexy?baRhMXBD7>ulEig!O#^6%_*^a)cK4LElAUzX$FeJpT&`BZRxzUaXG^17IQ2j_ z=p{(066?^4RjJApjzrN13q)c#rV&I`r;xtXzu;8rP`qkE-9fXVk}93X^yHv$pj@i0yF3~68p4VW<;M?E)h zz%vPkW1fqP*B0go*$a?xq`og$jnr?Q^^(^_W)g|9_CIitjuWIFEE46oE^>INmdh(6 z86HiQD?|`Ai^ggN65)YCT%ODoZOHigQ_4u7O&*~5HqD7-1k!Dq1f`J`F0x!DqU9<^ zJ|rI3cEZY9PDB5R#$tx)bd%t1MksBCQk=YsJHet`tidLu-5{10PbBP!-3td_IZs*@Pm4aWB}K~S2TYbk6zM{TsvVN3?DGk zHh=)r!Q0xp<{DXN)RHz&Y?gBzVzpA&RCHN)QQh*YADquEQQX0hV33plo~R+>K65=} z#A9Sb4sXb?@zody4Dcj8q>JE7J%2=H;%E4i^yJIk#KNK4Q8X;r)5(n_NuDW>f;@0ux#VfBoeL6A`4<;D?)s3T} zkQ1D^Xa}$E2#R2wLtUHVG~tY?U{cfh6h30D#`8COBZb$WK4V-@(^ z%rLdnPem;>!+gK_%S!!$sE5i&CUig#!~v=s=CD7d@%ah^8tgegdL(ge88O(hi2rBQ z`}&I%V2cmBVLOp=oV|C#c~Bb7RtpuY0d2QE&UBv+qWWpMZ}+@qJieD^!Ackb%Em7A>PP=aE$ikXTH@U)iM%|IU zcJbIfok)&+CymOCh02ktmZz3vB5P*R8Oyf47!`r{>7;(0%r6n<;UXJ@G{9&=P zz!h#0!v|*}xHhBeb28V$J7k#*X^fueb1+uQ8r{?!V_aVfD6B}vU}qjjgw@pb`KcV? zwsmCL+Mk)ojKU((^&}OAfbp`kDOwGAu5mr)L=uRTjlR)Bf5m7XA5S--qZ+biG94bS zNKR`=Q%~on^25z3t-ZMZ;|GqXfo@5R!*@5rv*XBX$XmK6flmM(Zb&ek4%w;9{_n3D z{Qino=yE+(7E^y!sTdvA7(aL72l?KH1U@2{56=vsZXz4f#nfI2eN#2xyc7Iz}W zex*Xy$jC~NJdn6Fz`Mxz82qvP8 zJE{{+5H+FVp7ABvB8*<3ns*vZv5faTYlsCF!W1g>zn?;GxIDtK%PN;s}pcz%tG#KY6sH^gpRXx3AdEa8}r*UjWu(Av>M;h z3$9)lL}KX%w?wDI$_R(aRb?W#&0@V+&?wreV)`pIw6H?P-av?TwMxCL*&*Yg9Zbc< zY;mrDmTPm|Q8Dp+UwAloP1BMN`!g0vb$(<_;0PvSD~$sR5G1y?04gBt=i7{Udc+Qsbdp4v8S5OZ*==pT%xAsbHrIbz;$P}& z2I;gOc(a)1aW%zY5eeI0N0*P1oFwaMt{aHG?IrH(J@Os-KKD(|D@zW`&*Q6(<2&ua z_F$~Q@f5O@MD)bFu-Z&0ZE5KKywWM-PSRgmL$ZhXF98z0=qh+L@*gDoXI-sQQo-@q z1oBatPNiLHH)ak^cB56x-5pE5J#2)w+#X3zPn65)h!^=zIo~er-O;br#$sA__PHNR zx{2iL(Z5@nZhKqj8~JwCK9!qs-AZIzBy`-ahIg4N_4e{anJ=f;FUHX=PPBKldK2yJ z;!IiY7r7VT)gDvt!YAzb>fCb?)sc`)hTDWMB{+Szg3l?PmC{4_f#N-J_H=SOxQv*b zQG-7cxd(HM0s{(Y;a8Ifx^rgg8cW@y5}LaIb!6?K$k}~5@ORup49+cEl3^?UdGeR< zM(*QDO69zsJ`y#_J@}FLLA?&YJ7750@=`K>zmasmI5A!aqR$4JcpSQV^=mOt*um=p zYSJfL>rVRHNu6n*d<1NWLqi_6s@E~YbP{P*a4ln_4h2BTbV#n?2ycCU(9HN1eS9uuuT3LjQ1vHIW3E-7F}Q|&POD182K`H*`o#J&Su^qX;MTR5 zsWPqwI=c{x;Eaq09w=9X0m~qZe03YLsu3$@qA4*@T`Fp-FMUbDon`7J)AwykNcf1( z>j?6DkcM16=a|*;=@gd=o>K_k>w?p4I9@i~i$&D>*GQ3ubI(;y>wB=sTk2^J=8Z|} zJ*Xdwhd)bAR?D_R?M$Uc#Z4x7h9PX{2solsiBJ@Yz-Yc=lIyslQ2=p>)C$jiAh+gAhp(K<@=!H(;DNPmceHw^a_;EhN0t4Gh1w0b zFI2B}!v`N+TbPdQ?R34`$zj{@ZEp*9N!{=3jAEO&7qTH4xt#+{B-}_^gg?JOx3;jbw(x#NI$gcldw$aGGNd=OrRFVOh zLb4}Ka@{EwVj)RrnK5(cZEI_{ttp4EF066?N43B%UHe~refVXymTg>#zs2>XFhDpw zZO{}bw}3jGl(;q4`Su!21^n3L~|6QrYnDpDdMdKCHT7+gi6X>A?ugi2hjKFg$ zG*g-VlRfG1CS-G;z3`9MpEm-lJ@Wa^)GKp2oG5N!(8~PCZY`8ekDV&$_@ZVYc<4iw zJt;s98k0oB5^ydKY+wKH9GJ3m@mwNb$yh2DPLWO(hSu%0z-XLOLMPx!L5RWnPro7n zjS@{73f$7lm^EX;k5C)3%@`fk2J)x)!+aVb z^kf-r-pcvN+0B=Yj*Qg+fBu@H1SM-lp^`F^w=6%1%Pril2^a!6=J8$N!&$z-y8fRf zf!ng>Z-~A4+X4>2T4PTU22p=o!)72=)rT#@+OAn#QBl+2chJ@@1{zv}M?J6_o~>pp zZuPY!`K^B|iKugWG+)!SX32I%7#T^}rV-c?7^Mj``R!+`P9|^=Flq~W13zDI;!-mM zor-A8Ei9{WGywVlJYc1N%#OaBRjNzbO0du}OHk{}306kUJwPvO=R-!-^(vD_$%tw7 zd{g!H$c12QTj1cOfiCoLS-CTFxG z)7tdpXr!$*+geqD-jN#=m>A<5M;QT;-3d^dnD9DCN*3`QTv+0j(MVji#1Gx%IOZ4u z2C%*lGCR;-WI|{DBcKI+6J_q9@hg~+KjowN4aS7WjX5l~Ew=0+(;6nJEiglDLaKc= z;^^^+VVvF`jar|UxWmHElwm~T`rf1=ne@@@r+c!P`^avCQHI=%&u{I!g(7x#rQA+15Y%q55q=!<;Yvn!TcyuWbBwB4aK>1TL-r@^hSIbocx{h}b=3 z7=H=rtG-dpm^u_krgzGI#J*zgZwwb&7!HkzxJ#}iF0*QxPID@#x4{|gNXSd1+Cj^v zrog!to=X&vfF_fTG6l4c+ftDN6L(8XS$q<7`6LFdcle1^Zm@f9xK_;`lHSco7i@q? zAI4uY)ivzENyQ@#fJnaa2d3l2=qY-_3@4rFp(FrzJe7>kkx*lVZR30zfF#r$bCDR? zdq+APN)UZL`U4B2u1VT>2*wV&EH;!0TO;lm4s}8PBtdY7i4VCa4OJIdExWmQ63hB$ zZHIafOvQnZ_QCrzEl8QB_{Cf~233Fj%y>ypnkY7zAUs%Eqz?2Mr!hk{GhIAz%S^6R zdy6+(%iLVwqb8PbL4vV78J_?3_a$Qow%qfIdrqD{_ovtO54Y666beUgsg2g&mPx#F zU(oI~bye>c2jdgls=;)wHgiQrmA@U09eGPUUWrW2&qVC@ptkgOJN)_|S7y)0u>OrU z_d~oAE%gb>s&1x@X3rSR2#7`5X`kL=NRzV|6F4JTlwrQ0cNyBn_2<@~Q>zd5e{MJC za_OpGV`ne9{?CoATN^X=g~|^{(&LXEKK$5tM|Gb1kb3tE{V#vH|K*GO(u=w_G4G8R zJDpBx?p2}8_5%mDm(}hasgu$dv`hbvy=3?{FDfqBx>TrF66Wv=9VG{|3i=^A4;&(s z8{ONqM5cAn?hicmTcx_OWOPdFU*3FSo)-?FWonUxLB+)jPI6B=9o`aK7*Ay4xqH>q zpMP#RzV8T&Ps5d=@BQlk+`=yw~Xn@SnC5}VuRu7+X|Va!Y4yL1UZDJ&^Fj-wKpizj>Op}h39M`m|VmcqlWzsn= z1u^P$Krdtx>Qp8h&{D}L-gf-c!N5H8s~6NpYbY&*v|3XOC7IvU0=wOE8AYJ=F_{?V`JsuMq1sW2wAEm&gQj<0(|CZcdW1XsBqy zO=MK)XC!}Ih2HTFjQ7wx-wD}C*M1h7X!!BRnO4Ije>(_aSz*J&*pqZv8nvB|XX@Cr zL^UkmTn#ypEy<6?cnst!jayse`{p57Habjzkr>2AikLWPW*trw=eP`Gh=QIG$$Yuz zCSWfHxFzv*G7+c<0wPXQ6U$~4*16=wX4KQ-`>$V=XSF)E8ecWl>Z)>=;=GAuXSif( zZzda2PrtYp>#kpFOpLV;{%xZ@wjZXT5hLj{ijsoFFu$x`@HI@f6UV+lpWDFn@EI71 zAO!J5bDJaTh!!DsV0W(GruDTt7O~DQL2AYTo@h+%KCvduaOyvm4HV^Z3^jCX%BFh3 zpTq;!wooC&98d^_%_ejQnp1?LxHyFgw6oj>%smn{3lOk)s&_-tvC@(vs^LO{b?M%T zU;=KIG#(srD~L{VL;+k$#Xi;c!#aO7k)AduwZN1$%>Z4(#L~lvsO`5kqk`e2v}p_6 zbK0DCVx{S{)kkPT*mr@g5(IJFg5Nuq2f$*H~y2whCjWpiNq;2_;hI#pY)r`$beNb(+}W14hASwe3X;>?P6WZ#z$ zm=rqS{!1%XT)*u)xUg|o%UpRfsJm}-U^X5-L6kJErLX-_JM1`NXJ0I~hjJJ(;Kid(R+WqqMTg1(R z`{pJm=a@36cG{`MV^v8tz&jloaXIIEiR#43Gmu<>dEwkAr8$blD3F)`+L9N;W&VFj zK$iCeG8qGT!3viA|8TvvFTJ~zd$5$NHTNdoT+AQXn|`5~-?tZQxs=@KZ$o5 zbc?X;14{v0-!+cBn`Sw43-o;wOg+ubMC_mW8H;9Y!hY3^0^`mBvlcb9Q<&@p-OeR5 zMtwd$$>5_~)S$ZGfxZVf^FMGbHNUDAGErxUPf_52K@`CEk%))hriM%81jE)xK5QlP z;1O0iRDJv>KS2RTyn_g-=Quf5Y{uNOFOsQBY*x?2Jd5I*f|m`iQOmElNgP_vOD=?5 z6aFZs!Bt>N;!5%BpK+!sA%r2_3!krUdNR#0iSS)nYr9gPXV1Z0I9G~AJ|C(tllV-C zcDkBqFDzQk(ipvSDiBC~KJOIC5~WZCm-H)U&IWKnyf*^EgQZMH%|`5TGcWMJ z)>ebK(_uGhZ!H1^^v zf7#`4Y0k_O>e6qhe^;NO7ka`R9Ti87ctv0as;KYK0pOW;$9pv%i~H_f zbnJtRv$vex&lvc@{dT!`aJe`c&v)PXm0r!5V6F8((2qU1clG8%Mju_dX5r5FeY(DD zex?u{fA+rc@@2l2=u}IMg%Q;k|BK3^Jz7Lt4=G zC@bgY3#09UQpmuzuS}&<2mA=ohaSE5+DETdE#Zfpq1t%dvx8&`EKWF~{*n6KtoP@B zsOWpFb?u{E6S1kktPV3z1xKn_ro((g8B^Or_~F?61H$*=u<&Npp-kJW&(H7aoUG5x z?d#0f8{@r3V|u!{p_TFn)8IvvbnlHf>hp-Fun)mkFKKsE^M0Ht{jKmT9~ya*v1DVg zrUaG<@~y~B4Czyb4Dxq~{$N!x5nwu%<=zNpM&H8a#HyEIub5q4+4h(d80`nG_KVva ziWW&BYsoqFEjEBFUNS|99Wb2w{h5M=@9Drr&}SKd9V413gk~mEgWhbYKOYY6n;*Tq zxqSRjO>)$xEb6VOT()8lMpqV2q$2&fM4^i7MTiLg185X_S9WV-fiB$O*a^?>N zgVeVQKI{-Y&Nz2jdY*|-&xN0~j4^f^GaMsLdcjnWWSr<^C4ROuxzq&lS($1UO>?}| zs;5#jp~mX0?kw25yu4;cx+UB=Hjl%rGL)(4jz-<`Pp~_GpJs3@ScKPJ4Cee@p3Jfv zgC}kSHub-cyh(dVx%eUTVEfmOyapZgkpa9fW)U%hKr>17l8H#(k+nxnYk5JzGA=GR zK?J2SLWFDM8&AU}yp%f#a>gryATm?Q-NTJW^NdC=E4O++W*}Rab-eE8s}-_hH@4{S zcDNb7^oIc>l5wjhYNrl9Vida*ZMQ(E>BQaO2e=4fj8nuQb5)Csr7<*Q{yG{DM2zH8 zIEFA$cn&qzw5~S@N~ypWipd7l2e7d9Tx?XczY))e0efupjY5Gi?kz7dUGwigKyYg( zMaY8zO1aPS0@b2kAP~w3ux`{WL`DB9LX|87`IhrGxb7(FG+6E56%!z|NTq)$HY zb6Rx4vg5UY)ke{{3q7&pML|;<6(UMhsJz(tu^&^Je=^@--KBq6@Am>7^Tr$8SK)1~ zzj|RoZJiCwV&6vH)>^6b)V$A?`Lg;LeLYW4&k%9qruzNbGcAAi5z^<1QfD$d8s~eG zPu@G<*pYGjrHPf5iDaw%#EC|05{q-P)i~i*R!*+?i9l3qy!07ug1qk;boM{0!s@*W zvR0CC5MH<`p14eEOpDTY1vQpund(w$k`_vMa;DcZ=De0~6Y!bn8l^<*Ykr}_w+His zx(|#}*cAUW(;-|eOlA_|2J@Y+Z%SlX&EFAGdp=|jaHbJCo*QZ}4aEQF6Ap$~oGAil_HzO5#;zY9uDKid_IS{3ckSBGQzS! zFh${p@{ZoZH~LK;o_s}oM-Ort+Zo1mST_8XE%VF4WQY+C7h)OtI!qW6a?GglxYM80@^Jf8D9p=PU|4VZ^bY1Ur$E;ZY;PF3>I^%fr@_BQlt`&1Vt{RLNWT-2h zo*9~)2pAQ&7>i{xcC9j6KtiL85gaPUNeCn_jQAV%Ov_cvst|=MBw}Tp97F;UZAMZ= ze0VpW;6}1R$W3TiqmyStAdtXaumV< zOmj)i#mOEfVqk}}bn`>eUcKx?e|T(O#ymh8s?}zmyPPtm9$Z+6Oh;2$FBO@It|m&b z+^L%R@WO&S6LC{vFU_Z`RM!B8CtYs$2H4<34teA#*DuPmTKva!+_arm&TCVmEVd<* zOhNMsMnB*$H`ArqWgn1rk@{THy)@$E7Ccv5`AZ}Ic6cUhNper0$H&gX=h-KUiXH>a ziZLVvw!0}NYKtn&a3d)v!Zc5?53mg3I4}mRrh#t=q*Fqw1_0A6uirAiQt`kI#8ZgC zCJP)5It%sC)31qtyl`%jJMhzi0Y;YXkY=nXC{D!MM^E6hiEb42LmJm zR>;sj3rB((fcpcg4SF$9M05)a^WID}irqD~Wm{zZPt%o3TAfK(4p3@5=*0=0 z1d>(LoVs|^6G~lzWOhJ=v?pM!P^f;y%Rb0^rN48?0NmFht{8F z$-!Q&crX?AyX**U_DS^|TZTl0cBjPBCsiEBDBbe^_tXRp z0Wg^KYxBU$n5mdB8L7-8cfPOunmT!SZp8l z{FCb+Kf6C*k{J`w=PFi`c_(buvV}TCklOyj_*j-)E4Xm+`r)hUv+IBDCSZ=X?>*Ow zkv7|yW2ou$=TEF&a{~HCaW>(3;Xn)p{b-WHJrlW{w-9Agc48z~&#aVI&g>ZU3*W{L zhOKkM?pik*9o53wg>5@I$M18RP0+s#-uO6oXNR1t_Zx87>KTvwvr^r9e#=Kc zdg}a5$6v9kp5D9ts)=K(t<~$duU<#6%ced5w)zWS|1>u;O8oLyN4_-jjgh})^DDq` z49u;FMx4W+v@+(5mXU5a9F#VZ1jB3txe*)5FxZf;fU$}8AMK{!?PH&d9gQUnuG*qV zUmf`o>Q}@5+T^QI#l!@A^_v_9u_^eT)+Iw*#x9A5Z*0xCb;W4}hGk>eqh%}A9LACa z_mXBT1!V=}C5!@$DP9NWtBlnUh8Y2ILY7oEOw6C?Lo5<9e}~jdmumM`I2Qjrg*_!x z<-Kk&=sN01sF%83vm>=tia2OCT7MBJk}yTYLUOd}>HP{yfg4ptGlOYXLOqX?I?-zM zhWJv*%+`Y#PZDR;JnRdUOJkLEdUP6zQ7uFZf zUFBv<(KgV4Ywe@PwB9u_FJaj*erhC|W3ar#97{J~Gdugua9TYXL}S9=8{S?Z44Hyd zB7Da?oCq9F68QP=L_Sa`-ipzUb_J0WQg}FqP>d&ti=iMaPcs6IG=v5}*+f#%B8+X6 zyQWl(<}*|lajaMf$)^JJd}1&WOB-|S6s~gECI~>Hr*06i2O5T*jzNz%outN^V^U4p z`tewjE1}%zQSjEFkuP?%l%V?@6Ig|PrAUe-)6p3#h_4D-KcX`i{tM&m+pxA=v~%DP zCh<KUk+S8a;KOg9-;K}3F{B=7{@7t~J3#hjq zz5Agn)DJr|&CywB{T21ux!aVw{cOxWPan!K=Td)6W*E^E?8yi&8Cmn03LQu&bzS8h zyy^Jy@?bPJ8VrsVb7!A^{`qV6jxCbzua1_|GPY_j#%0=M8TyeTAg?w>-ANNQ@rQd` zRckA=v;fsKQ=$2ob%xLeEO)akOip1l;yNmI+Y{Hl`w;C$=Y|Gt*ay1J?ZQgcjnu(`|!nc z`MmtgujbdksmREH3vuyc{^G^e5AeL2Up=Qj%tChK$JG9m{k(&5d8_bUAS1xlO`CGD zL2`iBWB?n&f@w?0EXXRLgpJ*|@%b#_4EYB4C*WCai-6alOZED$ch5D^!xRMnWXZA1 zREwOL-2)#%?0FS^M==zvIj;np&y>T#iOFENY_!sDx@A1y{Sd4kZbpNu<{u1nOY<|8 z2}#9^M5;pWT>l=9t@Fc>9ml>(hr**!OVhzjCOF*;wptPY+HJ<wUC8fTs$=o+Q)J`~LddcNvPMxMAvR}{I>R3oO;fz}fr*qgCo-ZGyfV{_ zsYRS_Bz+hMk@ZP+crynP(Ci53ouz4jjkyWUoX|Q1wF4dE$fi#nMKZ+y4__3)mez#P z;TjY6<{!&JC_oYzL>qIG%GjGxWNNTv4#^Dr zUifWYX4UpWr#&Z2c#`bMp8slL_?EB9GJo73j{g3$Ok^I~);@@VUJbY&?35q;-{|$} zq+Kb$!nx7KU`9)#G1-@1`al1Qzo{WOLJI@H^>_GHUC-$H+x_Pc%+Ol?%O66Iem|ry zF5gUllwVrJ<})AC(TG#~3;a)qpAFaH$d9ZneedWF#8jAYnC*zamC4EpR)ET5$-w%* z?$`DFlRWbNql^pLp{5bzsIZg*=QcmkpJWB1>Xo=-94dNV@eqZZDoJ8)|9I)!>i-4QVcVXSo-J)ExQrT(Of*sRvA>@ZcvO z+;Zdc!YsK+P9%OfYOCv_z4Dz=C(>v(%bhFJsUHbCou#vHdehnE8@J?u$cow8LeyrA zw9%yB&scm1NctljhwRqs;Yf=sD5$4TocHLLcx67Iz@nj%)AL#XGXZ)9_-5BHOB4zC zTB}ytPfu%eD#BdyH_0+KAdA4UHaKGo8#0JOyVLrKpSU+1zV{~*RCm(jkKPap_fB^9 zEXj3WSUIv{0j>n1(eO~Kdz}zg%XH_a_qcD=^jqECH!kkJr)q|RM(M)Jo>%3r z4xr7D3Kr0Eu%qS2H0`l+6lQ3+lnJK73H|EaU3<1&C>g|X)2shKYi|N2*Ik|a_Wz7k zr>ag3=bSn3+SRZZ7TbZii&5kj=$A2a zrav>!+#u>zSj#(p>;b zU0s+0<+78_a;Z&NTiMx*n|sJ9>@*?O+Ns6H*reaO_}P7%KWP0QBPv%JBdup;6;wAKKc=^=w#`ZG;(|df|uOI5@Bn>z1rWfixb?JNG{T}rFmoC}*z2>FAbjfQ} zdF!vkN7OGrvh|OM2pH)6KBfLP!WH6Rf|Q`{^vq5iPFQxqlsFXuRoHF&zNHFVzoFFD zxxD(ktK8MyySM(}TdQCH(EkE82K<8f1o;M#zh@23hms zpb*q1#%omg%r!@vf2i%zjfUyMf}&6~AUpsMSpr$YRD0iI!k9HvqE2Dt{8|#RyR=zf z&K1YP#@g)6ViC_HoCwN0Mwbu{-m_nuj9I}#jtaXIRUOEYtT+V4#?p>$+efKMuW`R# zO?&C0S9vjf`WuG+iJ?7<$i+-l3-dQnk9bObS$#wOHFkd#fncCr7a|TpMer>QbfJ4h z&4S5OGn5FTJ!}IICa+>If;_TfzM5=+n(yRIC{CH+hKZCnaFc~^7eSj%XX&NJTg)6ZgiY>5Mdc4$V^&q zB&lbiKP)Lil+&P$hGyB{)ZtLsBmQ(@WF(vpyaECRSX6m5+^Cw6N~7b$SCB!O82DIv z+EFBBSCYvxK^qlN6jC?ZG~p~~hMQ{|VL6#hg$|oLt{8er0!11T3JfEDR3?q!r)b6n zBZ&W#LxJXBhNufvns|zUk^y5*6!z2>>1mlHuqQY`Hh?IdG-pxS!(Cx5o1k=xIDdgS zM%+Rp>2BN15)sx6wDV!#*~%g3Q*Hzy3&uoza`*zSSL$LN*3E3=vPRZypn%XVp+Ahm z5}1IZA`0pN(G8;nHub1RZ0H60E)=U4Q&d-p-?$b++w|`7pi#aF!H>ALpVF7^D*jQz z9({v_jY-leRSvjbijk(MLMYG%HxnRXJkGNN;RQmFXGm5NPm@TvnF`1ng*<8%%v2I0 zM9lHV8H6;^yVFoPNFj`X38!1k|C*g$$mP%|DLic%lhh9~ChamX zifxy2<`O-OlJn%~IU`ora-=@m3~R|OV%tOweI)GbF)4CM z5Q!QHabkDG|B^AEkY!aY&t%5&Vx*|LPP?2_v*<2xtI6@@Tgwao(b(&$#3G6jS5bNg{~We6irjJxdY4XE%n_Y7wDDJX9&9 zYQ<`X)pRK|kw#&=X&KbBRX^XM^^SzL*FO1o*Me2p}!jXF7peq zaVrA$=%{l#)3J2Zc8em9G7|Eh+Pk<~{KXZOHFR?cX321PezdTy0Xgs4&)XX=^=8^# zIbakYw}^=2;j!-wBMT#+yj`Hm8GoW5N@PaCXimb_h=2^n4jI?jHVUxIU>4~G$QLl0 z$@nO%upl_3O~ifMkYku)yb97#q857Kk5oMY6Si%lpGmAgKfMMdU=R zB>j`=h_~kC*T(rDjbx1*tuu^5c_Zc{(KmW<;uF6k|K$!8Bj+JETDv2n@6f5*(lQmUDRi z|NZW}_hRLwcG2$j9nRkUAcxAR>?j^Zqcdh4EvA%{QptxBG)F6gm=7w41kVXg$7P1K zj2yDxbP@4U5te7jB1b6!SsK)kF_bP0S&6|6MKlyD(=NMFn@Er8&4CZbHPZa3#tE(` zIou{SFSxSgwUkl<89hqu+z2>-AVpuGD{;Rlh3x2Lt5+>DKq!V}SdHv!g}=(MFuTE& zr>WIZgEr1R;sxmMxi)hei>iUm{8KSeJCqz68$d0p$^B-(avo?efAf-dAtbFnZiimy zX#FP>e13cB7bmAHmYL7awBC7BcB5^qKv$0E}|88S2b>WgKxJ#+UI* z9dsF91U?q*$nTx|iu!Ht@vz+CsC$YC7A6>XL=-+SHpIY*B9(@ESLh~^7q664jdr76 z>{bH0RO*GT;@H}7(?SI`Uc2mqBdRuX?c~(4T=(?BSbwrjMXp43cQJE#^`^1n%Ip}D z23DadHniC0f5Ue#5e337m*=;w2M}3n^5nStJWJdxd}79uDA!)>lZY}Ya`{jt2kJI3 zSQ76^xr9l_>ss}G$In;FJgn*Uiy+p?YYvK9iv{|tB!om8?rkttZ#)3ul%tD$T(lA)PAG3bnb`#PX{~s_ZqoBf`I*-p&tRLruv5_e$!{z`>16>r0Nr;>tc$iK}h@hJM~5U`s>jW{M68wiJtuhb^HEp z=*M7I4K>Foa+ECeo4C3UsQ;>dPyMm_ORiBKT~nY_i3!Ny!t;wrsL?1Pm(F8?(S_D5 zt1$5;6w5x;41;u_b2}uTYYA^AlBDIaE_Q{7mJj9#iIG;+6Vn~9KzbK0Vl>5yxj&_B zzAu#QBRQUktiV(Wr7y}P&jI0-LmrUKCh;Z&;O(*vyfHT7OkJ(#w+0S=kFTUC6`&J- zfIUAW$LKL0a$MYo**>AYR)3YVA!5@9?2U|mTq7oN&WE!g^`hOidW_^$C|sBeb}EjD zIl;Aada_(5Z+a>r=p~&UxCdQZgqFz5BfSN(Az#^N1HYyZI43NxMO$*oa&PeZ#D`nL z_u?+H5Hx}%93KzaMS2lb4ed6*iF0Dq;+BJ#;Z0jzzEzr{ z*uL&el}R&%8dh|PwqPI1EY=|3AeYFSiE8Jjnw?F%hNlU^0SW6Q0!qjtZ~aYWAx@^F zB9RGcZHX#kJm|N&hCjw^%|M;7Ta>a+FHwrDP(sME9ZW9Sxd}wH?M4bT#KE!_wQjSr zzrKgG0};ExIkR)ZWGd%Oi1uRs{RJ~>zKTI%qB^bXPCV^FWwpv~Qp-3QgpEvFonacs zBx(Kf$5HPdODhJ?(Ot2BjbXtk2m6+Ei3~ohxLWu+2`Yn-;~#m zBvYv19U%4{)AC5%Gq5OCvH#JmBE@cGU3`%X!(hkM=7k@nqXVbLf+l7%Qg;uB%UWgn z3jB#q8k2?x!XX+c9W_fRYhqxy4xUQ_(q0+&&q->evIg17Jl-ddGN!MmDIty-Xh?~t z&`f7@_Q)$|f`o>$H^QQt_!1AqS^>;Bxg%-ZQ;a8mPGuI7ejaVaxR&0Z(w`nKl2&G0 zrK(@>D|WhPl-5tpfxX~7io=AB#n8g=-|RSrT!~8ToGf-$K0^+la)?B8eGh5aOXP?o zLY-U+rddXzoG#-t_MA!r*pQB8QtVRVT$q^Iov?l(b){5hI*XE=(gSFA+$mZn(%?y= z$SJb;YGR!lULI{ll(yNC5t{r#$7)b*6H1(@{E;}9=r#!A@*o0rk|;Bgn>_ww0bN-zMQr!kxEVkT?T9u3PzAGLwisex9%Eb?iYF(nu>x+adcRye5ZH} z*t%?ImQkVLJo2%?8Xi$1FkvC>jSsBcTAas>$|ZqsjqG^^=63Gy&wYZn^GV{BEpmuN zvu;~1N+4A*BVhoz2E-?NH3n9Xk&Ir<02i*I=OhCu7no<{5Z8cN#sJ9S2%t+dAp@>@ z`SI!7zVw^ZOYJ+?_ul~}?ZEt=9J!9-7s#9)??3NX=RX!->>v8I>2a#3boWn=!eZ5c zMAKHb`IpGhO?{|UH+_mii53Y6Kmx}jo>^CKS>m|2ed)^OwXJtZdqO7B!7?V5GFMbf zuT{p{i(6BphxQ%yyVDKqI;a9**I?h}B~l#qP)h`GWAScv%i^B5$f9okq|K~j%~D25 zD$hyY4AOfTHQa-u`HTy;?R1cY#! z-e{#&DvE?7WZYtgE)-UI5?NS{M!iz3FpR*xi$T?FHD;;^IvF+;g=EPmJ^5K2 zJPmJhlPC65Hof=%`dpu5_J8p|f6nJU1$El5Y`y0{d-_8*IR2OL6+Q{)aSHXatD~Hg zdqk~WW;3Q1i-}^6sZWed%*tqvCz8n&M#c-%6x5=n9!r^5q#-iZEcJWrM6M9I4Flto zMhf?u`B4ndHIPbal{_&fGUiBoK2puaYVL2W&K{ZWp}V4HckY>2!@6B91m#inas-j4 z3+Y5GSL8WOuHzwY{htYaDjn+qXkiU%Qzh0S_N(slDitqbuFHV}Im#%ha9^$S zs}kwigfp>oqMM&x-n&?4WdUihYOkWL?$$smDK<6^w- z%X)!{Gb!VzVP4;mK}tqEYds9Squpnj#n4DtW&c&nDq4ja`(03tV&7SDY#} zu5ud@=jzYZ{n)7}`FR1~$v2C>GtU!%GwMVF`^zAdf6Jx${duNFQMpNTEBjbctv?4SqYJ&?xEzBv-$|SL=8#%0DJ{JhTA8n9G7)DI5$ZQt7 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 literal 0 HcmV?d00001 diff --git a/assets/webfonts/fa-brands-400.svg b/assets/webfonts/fa-brands-400.svg new file mode 100644 index 0000000..ba0d850 --- /dev/null +++ b/assets/webfonts/fa-brands-400.svg @@ -0,0 +1,3442 @@ + + + + + +Created by FontForge 20190112 at Tue Jun 4 15:16:44 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +