diff --git a/libs/hexo-theme-material/1.5.2/CONTRIBUTING.md b/libs/hexo-theme-material/1.5.2/CONTRIBUTING.md new file mode 100644 index 000000000..0882672e4 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/CONTRIBUTING.md @@ -0,0 +1,103 @@ + + +# Commit message format + +*Read this in other languages: [English](CONTRIBUTING.md), [简体中文](CONTRIBUTING.zh-cn.md).* + +## 1. Title (Header) + +**(1)type** + +`type` is used to describe the commit class. It must be one of the following: + +>- feat: A new feature +- fix: A bug fix +- docs: Documentation only changes +- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) +- refactor: A code change that neither fixes a bug nor adds a feature +- test: Adding missing tests or correcting existing tests +- chore: Changes that affect the build system or external dependencies + + +**(2)scope** + +`scope` is used to describe the scope of the impact of commit, such as sns, lang, share. + +`scope` is placed after `type` and within parenthesis (`()`). + +**(3)subject** + +`subject` is a short description of the commit purpose, not more than 50 characters. + +> - starts with a verb and uses the first person present, such as change, not changed or changes +- The first letter is lowercase +- End without a period (.) + +--- +See #119 `refactor(sns): simplify conditional display` for example. + +## 2. Body + +Body is a detailed description that can be divided into multiple lines. The following is an example. + +>More detailed explanatory text, if necessary. Wrap it around +72 characters or so. + +>Further paragraphs come after blank lines. + +>- Bullet points are okay, too +- Use a hanging indent + +There are two points to note: + +(1) Use the first person present, such as `change` instead of `changed` or `changes`. + +(2) The motivation for the code change should be stated, as well as the comparison with the previous behavior. + +## 3. Footer + +The Footer section is used only in two cases. + +** (1) Incompatible changes ** + +If the current code is incompatible with the previous version, the Footer section begins with `BREAKING CHANGE`, followed by a description of the change, along with the reason for the change and the migration method. + + BREAKING CHANGE: isolate scope bindings definition has changed. + + To migrate the code follow the example below: + + Before: + + scope: { + myAttr: 'attribute', + } + + After: + + scope: { + myAttr: '@', + } + + The removed `inject` wasn't generally useful for directives so there should be no code using it. + +** (2) Close Issue ** + +If the current commit is for an issue, then you can close the issue in the Footer section. + + Closes #234 + +You can also close more than one issue at a time. + + Closes #123, #245, #992. + +## 4. Revert + +There is also a special case that if the current commit is used to revoke a previous commit, it must begin with `revert:` followed by the commit header. + + revert: feat(pencil): add 'graphiteWidth' option + + This reverts commit 667ecc1654a317a13331b17617d973392f415f02. + +Body part of the format is fixed, must be written as `This reverts commit .`, Where `hash` is revoked SHA identifier of the commit. + +If the current commit is in the same release as the revoked commit, they will not appear in the Change log. If the two are in different releases, the current commit will appear in the Change log under the `Reverts` subtitle. diff --git a/libs/hexo-theme-material/1.5.2/CONTRIBUTING.zh-cn.md b/libs/hexo-theme-material/1.5.2/CONTRIBUTING.zh-cn.md new file mode 100644 index 000000000..c58639b6f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/CONTRIBUTING.zh-cn.md @@ -0,0 +1,102 @@ + + +# Commit message format + +*其他语言版本: [English](CONTRIBUTING.md), [简体中文](CONTRIBUTING.zh-cn.md).* + +## 1. Title (Header) + +**(1)type** + +`type` 用于说明 commit 的类别,只允许使用下面 7 个标识。 + +>- feat: New feature 新功能 +- fix: Fix bug 修补 bug +- docs: Documentation 文档 +- style: Format 格式(不影响代码运行的变动) +- refactor: Refactor 重构(即不是新增功能,也不是修改 bug 的代码变动) +- test: Test 增加测试 +- chore: 构建过程或辅助工具的变动 + +**(2)scope** + +`scope` 用于说明 commit 影响的范围,比如 sns,lang,share。 + +`scope` 紧接 `type` 置于 `()` 之内。 + +**(3)subject** + +`subject` 是 commit 目的的简短描述,不超过 50 个字符。 + +>- 以动词开头,使用第一人称现在时,比如change,而不是changed或changes +- 第一个字母小写 +- 结尾不加句号(.) + +--- +Title 可参考 #119 `refactor(sns): simplify conditional display` + +## 2. Body + +Body 部分是对本次 commit 的详细描述,可以分成多行。下面是一个范例。 + +>More detailed explanatory text, if necessary. Wrap it to +about 72 characters or so. + +>Further paragraphs come after blank lines. + +>- Bullet points are okay, too +- Use a hanging indent + +有两个注意点: + +(1)使用第一人称现在时,比如使用 `change` 而不是 `changed` 或 `changes`。 + +(2)应该说明代码变动的动机,以及与以前行为的对比。 + +## 3. Footer + +Footer 部分只用于两种情况。 + +**(1)不兼容变动** + +如果当前代码与上一个版本不兼容,则 Footer 部分以 `BREAKING CHANGE` 开头,后面是对变动的描述、以及变动理由和迁移方法。 + + BREAKING CHANGE: isolate scope bindings definition has changed. + + To migrate the code follow the example below: + + Before: + + scope: { + myAttr: 'attribute', + } + + After: + + scope: { + myAttr: '@', + } + + The removed `inject` wasn't generally useful for directives so there should be no code using it. + +**(2)关闭 Issue** + +如果当前 commit 针对某个 issue,那么可以在 Footer 部分关闭这个 issue 。 + + Closes #234 + +也可以一次关闭多个 issue 。 + + Closes #123, #245, #992 + +## 4. Revert + +还有一种特殊情况,如果当前 commit 用于撤销以前的 commit,则必须以 `revert:` 开头,后面跟着被撤销 Commit 的 Header。 + + revert: feat(pencil): add 'graphiteWidth' option + + This reverts commit 667ecc1654a317a13331b17617d973392f415f02. + +Body 部分的格式是固定的,必须写成 `This reverts commit .`,其中的 `hash` 是被撤销 commit 的 SHA 标识符。 + +如果当前 commit 与被撤销的 commit,在同一个发布(release)里面,那么它们都不会出现在 Change log 里面。如果两者在不同的发布,那么当前 commit,会出现在 Change log 的 `Reverts` 小标题下面。 diff --git a/libs/hexo-theme-material/1.5.2/LICENSE b/libs/hexo-theme-material/1.5.2/LICENSE new file mode 100644 index 000000000..9cecc1d46 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/libs/hexo-theme-material/1.5.2/README.md b/libs/hexo-theme-material/1.5.2/README.md new file mode 100644 index 000000000..a11d857f3 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/README.md @@ -0,0 +1,141 @@ +

+Material Render Phone +

+ +

Material Theme

+ +> Nature, Pure | 原质,纯粹 + +

+Version +Author +Hexo +node.js +Build Status +npm +

+ + +## Contents 目录 + +- [Introduction 介绍](#introduction-介绍) +- [Demo 演示](#demo-演示) +- [Download 下载](#download-下载) +- [Docs 文档](#docs-文档) +- [Contributing 贡献](#contributing-贡献) +- [License 许可证](#license-许可证) +- [Changelog 更新日志](#changelog-更新日志) +- [Support 支持](#support-支持) +- [Render 渲染](#render-渲染) + + +## Introduction 介绍 + +An elegant, Pure & Material Design Theme for Hexo. +优雅、纯粹、质感的 Hexo 主题。 + + +## Demo 演示 + +- [Viosey's Blog](https://blog.viosey.com) +- [neoFelhz's Blog](https://blog.nfz.moe) +- [liyin's Blog](https://liyin.date) + + +## Download 下载 + +#### [Download latest release version](https://github.com/viosey/hexo-theme-material/releases/latest) + +> Should be the most stable. Recommended for most users. +> 最稳定的版本,适合所有的用户。 + +#### [Download latest canary branch](https://github.com/viosey/hexo-theme-material/archive/canary.zip) + +> Maybe unstable, but includes latest features. Recommended for developers. +> 包含最新的、尚在开发中的特性,可能不稳定;适合进阶用户。 + +#### [Download other version](https://github.com/viosey/hexo-theme-material/releases) + +> You can decide which version to use. May no longer provide support. +> 你可以自己决定想要使用的版本;部分版本可能不再提供技术支持。 + +#### [Download using git](https://github.com/viosey/hexo-theme-material/releases) + +> You can using git to choose which branch you want. For developer only. +> 你可以自己决定想要使用的分支;仅限开发者使用。 + +```bash +cd themes +git clone https://github.com/viosey/hexo-theme-material.git material +cd material +git checkout {branch/tags name} +``` + +---- + +> ATTENTION! As the theme is developing, the theme config template will changes. To avoid conflict for users who are using `git pull` to upgrade the theme, we save the theme config template as `_config.template.yml`. You should make a copy of it and rename to `_config.yml`, then configure `_config.yml` when using the theme. +> **注意!** 在主题的开发迭代过程中,主题的配置文件模板 可能会改动。为了避免使用 `git pull` 更新主题的用户出现冲突,我们将 主题配置文件模板 命名为 `_config.template.yml`。配置主题时,你应该拷贝一份 `_config.template.yml` 并将其重命名为 `_config.yml`。 + +## Docs 文档 + +[Material Theme Docs](https://material.viosey.com/docs/) + +[Material 主题文档](https://material.viosey.com/docs/) + +> [Docs Source Code](https://github.com/neko-dev/material-theme-docs) + + +## Contributing 贡献 + +All kinds of contributions (enhancements, new features, documentation & code improvements, issues & bugs reporting) are welcome. + +Before you start your contributing, please read the [Contributing Rules Wiki](https://github.com/viosey/hexo-theme-material/wiki) first. + +欢迎各种形式的贡献,包括但不限于优化,添加功能,文档 & 代码的改进,问题和 bugs 的报告。期待你的 `Pull Request`。 + +在参与贡献之前,请阅读[项目贡献 Wiki](https://github.com/viosey/hexo-theme-material/wiki),了解如何为 Material 主题贡献。 + +## Changelog 更新日志 + +[View our release notes](https://github.com/viosey/hexo-theme-material/releases) + +[阅读我们的更新日志](https://github.com/viosey/hexo-theme-material/releases) + + +## License 许可证 + +[![license](https://img.shields.io/github/license/viosey/hexo-theme-material.svg?style=flat-square)](https://github.com/viosey/hexo-theme-material/blob/master/LICENSE) + +Open sourced under the GPL v3.0 license. + +根据 GPL V3.0 许可证开源。 + +## Support 支持 + +### BroswerStack + +![BrowserStack Status](https://www.browserstack.com/automate/badge.svg?badge_key=V1VkWmJMRjJqcHBjN1BIVFRlNzExM05XUk5hemcydEpZTHRBdGd5V244ST0tLTlvNklDT1NuVXFDaTh0RDBnQ3RCdXc9PQ==--c986c45d7c10a3264f46b414944d6393ba74ea22%) + +Proudly using BrowserStack. + +[![](https://i.loli.net/2017/09/27/59cbc16b0f8b4.png)](https://www.browserstack.com/) + +> **BrowserStack** is a cloud-based cross-browser testing tool that enables developers to test their websites across various browsers on different operating systems and mobile devices, without requiring users to install virtual machines, devices or emulators. + +### jsDelivr + +Thanks jsDelivr for providing MaterialCDN service. + +> **jsDelivr** – Open Source CDN. free, fast, and reliable. You can using the files from GitHub or NPM and serve them using jsDelivr. + +[![](https://data.jsdelivr.com/v1/package/npm/hexo-material/badge)](https://www.jsdelivr.com/package/npm/hexo-material) + +[`http://cdn.jsdelivr.net/npm/hexo-material/source/`](http://cdn.jsdelivr.net/npm/hexo-material/source/) + +[![](https://data.jsdelivr.com/v1/package/gh/viosey/hexo-theme-material/badge)](https://www.jsdelivr.com/package/gh/viosey/hexo-theme-material) + +[`https://cdn.jsdelivr.net/gh/viosey/hexo-theme-material/source/`](https://cdn.jsdelivr.net/gh/viosey/hexo-theme-material/source/) + +## Render 渲染 + +![Materia-overview-tiny.png](https://i.loli.net/2017/09/28/59cccb0b25520.png) diff --git a/libs/hexo-theme-material/1.5.2/_config.template.yml b/libs/hexo-theme-material/1.5.2/_config.template.yml new file mode 100644 index 000000000..da187f465 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/_config.template.yml @@ -0,0 +1,307 @@ +# --------------------------------------------------------------- +# Site Information Settings +# --------------------------------------------------------------- + +# Head info +head: + favicon: "/img/favicon.png" + high_res_favicon: "/img/favicon.png" + apple_touch_icon: "/img/favicon.png" + keywords: + site_verification: + google: + baidu: + + # Enable generate structured-data as JSON+LD for SEO or not. + # Set as 'false' if it cause some wrong when `hexo g`. + structured_data: true + +# Jump Links Settings +url: + rss: + daily_pic: "#" + logo: "#" + + +# --------------------------------------------------------------- +# Style Settings +# --------------------------------------------------------------- + +# Schemes +scheme: Paradox +#scheme: Isolation + +# UI & UX: slogan, color, effect +uiux: + slogan: "Hi, nice to meet you" + theme_color: "#0097A7" + theme_sub_color: "#00838F" + hyperlink_color: "#00838F" + button_color: "#757575" + android_chrome_color: "#0097A7" + nprogress_color: "#29d" + nprogress_buffer: "800" + +# JS Effect Switches +js_effect: + fade: true + smoothscroll: false + +# Reading experience +reading: + entry_excerpt: 80 + +# Thumbnail Settings +thumbnail: + purecolor: + random_amount: 19 + +# Background Settings +# bing available parameter: +# new | color= | type= +# color available value: black, blue, brown, green, multi, orange, pink, purple, red, white, yellow +# type available value: A (animal), C (culture), N (nature), S (space), T (travel) +background: + purecolor: "#F5F5F5" + #bgimg: "/img/bg.png" + bing: + enable: false + parameter: + +# Images Settings +img: + logo: "/img/logo.png" + avatar: "/img/avatar.png" + daily_pic: "/img/daily_pic.png" + sidebar_header: "/img/sidebar_header.png" + random_thumbnail: "/img/random/material-" + footer_image: + #upyun_logo: + #link: "https://www.upyun.com/" + #src: "/img/upyun_logo.svg" + +# Custom Fonts +# family: the font-family which will be used in the theme +# use: uri of fonts host. +# Available value: google | baomitu | ustc | custom | catnet +# - When you set as 'custom', you should fill in the value of 'custom_font_host', which should be a mirror of google fonts. +# - If you have setup your custom font-family, don't forget to add style tag with @font-face or link.tag with font css +# to /source/data/head.yml as custom code, to load custom font files. +fonts: + family: Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif + use: google + custom_font_host: + +# Card Elevation Level +card_elevation: 2 + +# Copyright +# Specify the date when the site was setup. +# For example, if you set it as 2015, then footer will show '© 2015 - 2017' +copyright_since: + +# Footer Text +# You can specify the text you want to show in footer, HTML tag is supported. +# For example, you can setup ICP license number as: +# '某ICP备xxxxxxxx号-x' +footer_text: + +# Qrcode for redirect at other device +# use: choose which method to generate the qrcode for each posts. +# Available value: plugin | online +# - When use "plugin", you need to install the hexo-helper-qrcode. +# - When use "online", the qrcode will be generated by 'pan.baidu.com' in China. +qrcode: + enable: false + use: plugin + +# Code highlight +# You can only enable one of them to avoid issues. +# Also you need to disable highlight option in hexo's _config.yml. +# +# Prettify +# theme: # Available value in /source/css/prettify/[theme].min.css +prettify: + enable: false + theme: "github-v2" + +# Hanabi (https://github.com/egoist/hanabi) +# line_number: [true/false] # Show line number for code block +# includeDefaultColors: [true/false] # Use default hanabi colors +# customColors: This value accept a string or am array to setting for hanabi colors. +# - If `includeDefaultColors` is true, this will append colors to the color pool +# - If `includeDefaultColors` is false, this will instead default color pool +hanabi: + enable: false + line_number: true + includeDefaultColors: true + customColors: + +# Post License +# You can specify the text you want to show in the end of your posts and pages, HTML tag is supported. +# For example, you can setup a CC license as: +# 'This blog is under a CC BY-NC-SA 3.0 Unported License' +# You can also use Front-Matter `license` to override this setting. +license: + +# --------------------------------------------------------------- +# Menu Settings +# --------------------------------------------------------------- + +# TOC Button + +toc: +# use: choose whether the line_number of toc will show or not. +# Available value of "linenumber": true | false + linenumber: true + +# SNS Menu +sns: + email: youremail@email.com + facebook: "https://www.facebook.com/facebook" + twitter: "https://twitter.com/twitter" + googleplus: "https://www.google.com/" + weibo: + instagram: + tumblr: + github: + linkedin: + zhihu: + bilibili: + telegram: + v2ex: + +# SNS Share Switch +sns_share: + twitter: true + facebook: true + googleplus: true + weibo: true + linkedin: false + qq: false + telegram: false + +# Sidebar Customize +sidebar: + dropdown: + Email Me: + link: "#" + icon: email + homepage: + use: true + icon: home + divider: false + archives: + use: true + icon: inbox + divider: false + categories: + use: false + icon: chrome_reader_mode + divider: false + pages: + #About: + #link: "/about" + #icon: person + #divider: false + article_num: + use: false + divider: false + footer: + divider: true + theme: true + support: false + feedback: false + material: false + + +# --------------------------------------------------------------- +# Integrated Services +# --------------------------------------------------------------- + +# Comment Systems +# Available value of "use": +# disqus | disqus_click | changyan | livere | gitment | gitalk | valine +# If you want to use gitment or gitalk,you should get the client_id and client_secret form https://github.com/settings/applications/new +# If you want to use valine,you should get the app_id and app_key form https://leancloud.cn ,more setting please see https://valine.js.org +comment: + use: + shortname: # duoshuo or disqus shortname + changyan_appid: + changyan_conf: + changyan_thread_key_type: path + livere_data_uid: + gitment_repo: # git repo of the hexo + gitment_owner: # git repo's owner + gitment_client_id: # github app client id + gitment_client_secret : # github app client secret + valine_leancloud_appId: # leancloud application app id + valine_leancloud_appKey: # leancloud application app key + valine_notify: false # valine mail notify (true/false) https://github.com/xCss/Valine/wiki + valine_verify: false # valine verify code (true/false) + valine_pageSize: 10 # comment list page size + valine_avatar: identicon # gravatar style https://valine.js.org/#/avatar + valine_lang: zh-cn # i18n + valine_placeholder: Just go go # valine comment input placeholder(like: Please leave your footprints ) + valine_guest_info: nick,mail,link #valine comment header info + gitalk_repo: # git repo of the hexo + gitalk_owner: # git repo's owner + gitalk_client_id: # github app client id + gitalk_client_secret: # github app client secret + +# Search Systems +# Available value: +# swiftype | google | local +search: + use: google + swiftype_key: + +# Analytics Systems +# Available value: +# baidu | google | cnzz +analytics: + google_site_id: + baidu_site_id: + cnzz_site_id: + +# Leancloud Views +leancloud: + enable: false + app_id: #你的 app_id + app_key: #你的 app_key + av_core_mini: "https://cdn1.lncld.net/static/js/av-core-mini-0.6.1.js" + +# Busuanzi 不蒜子 Views +busuanzi: + enable: false + all_site_uv: false + post_pv: false + busuanzi_pure_mini_js: "https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js" + +# Files Vendors +# Set a CDN for the files src you want to customize. The url should with protocol. +# Default(empty) will load the files from the origin server. +vendors: +# MaterialCDN +# You can load theme unique files from your private cdn or oss. +# The new src will have the base domain you configured below. +# For example +# materialcdn: https://cdn.jsdelivr.net/npm/hexo-material@1.4.0/source + materialcdn: + +# Third party library +# You can load these files from public cdn. +# For example +# jquery: https://cdn.bootcss.com/jquery/2.2.1/jquery.js + # jQuery 2.2.0 + jquery: + # nprogress 0.2.0 + nprogress: + # FontAwesome 4.5.0 + fontawesome: + # MathJax 2.7.0-2.7.1 + mathjax: + # Prettify r298 (only prettify.js) + prettify: + # Material Icons 3.0.1 + material_icons: diff --git a/libs/hexo-theme-material/1.5.2/contributing.json b/libs/hexo-theme-material/1.5.2/contributing.json new file mode 100644 index 000000000..16f7ce8a3 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/contributing.json @@ -0,0 +1,40 @@ +// https://gitmagic.io/rules +{ + "commit": { + "subject_cannot_be_empty": true, + "subject_must_be_in_tense": "imperative", + "subject_must_not_end_with_dot": true, + "subject_lines_must_be_shorter_than": 51, + "subject_must_be_single_line": true, + "subject_must_be_in_case": "lower", + "subject_must_include_prefix": { + "prefixes": ["feat", "fix", "docs", "style", "refactor", "test", "chore"], + "require_after_prefix": "(*): " + } + }, + "pull_request": { + "subject_cannot_be_empty": true, + "subject_must_be_in_tense": "imperative", + "subject_must_start_with_case": "lower", + "subject_must_not_end_with_dot": true, + "subject_must_include_prefix": { + "prefixes": ["feat", "fix", "docs", "style", "refactor", "test", "chore"], + "require_after_prefix": "(*): " + }, + "body_cannot_be_empty": true, + "body_must_include_verification_steps": true + }, + "issue": { + "subject_cannot_be_empty": true, + "subject_must_start_with_case": "upper", + "subject_must_not_end_with_dot": true, + "body_cannot_be_empty": true, + "body_must_include_reproduction_steps": ["bug"] + }, + "branch": { + "name_must_be_longer_than": 4, + "name_must_include_prefix": { + "prefixes": ["feat", "fix", "refactor", "chore"], + "require_after_prefix": "/" + } +} diff --git a/libs/hexo-theme-material/1.5.2/languages/ar.yml b/libs/hexo-theme-material/1.5.2/languages/ar.yml new file mode 100644 index 000000000..be1ab4d17 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/ar.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "الرئيسية" + archive: "أرشيف" + article_num: "رقم المقالة" +post: + visitor: "زوار" + views: "مشاهدات" + continue: "واصل القراءة" + older: "أقدم" + newer: "أحدث" + qrcode: "اقرأ هذا المقال على جهاز آخر" + comments_load_button: "قراءة تعليقات 「تأكد !disq.us & disquscdn.com & disqus.com يمكن تحميل」" + permalink: " هذا الرابط " +share: + article_rss: "مقالات RSS" + comment_rss: "تعليقات RSS" + toTwitter: "شارك على Twitter" + toFacebook: "شارك على Facebook" + toLinkedIn: "شارك على LinkedIn" + toTelegram: "شارك على Telegram" + toGplus: "شارك على Google+" + toWeibo: "شارك على Weibo" + toQQ: "شارك على QQ" +title: + category: "فئة" + tag: "وسم" +misc: + home: "رئيسية" + theme: "سمة" \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/languages/de.yml b/libs/hexo-theme-material/1.5.2/languages/de.yml new file mode 100644 index 000000000..041775b0e --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/de.yml @@ -0,0 +1,28 @@ +sidebar: + homepage: "Home" + archive: "Archive" + article_num: "Artikel Nummer" +post: + visitor: "Besucher" + views: "Aufrufe" + continue: "Weiterlesen" + older: "Älteren" + newer: "Neuren" + qrcode: "Lesen Sie diesen Artikel auf anderem Gerät" + comments_load_button: "Lesen Sie Kommentare 「Stellen Sie sicher, dass 'disq.us & disquscdn.com & disqus.com' geladen werden kann 」" +share: + article_rss: "Artikel als RSS" + comment_rss: "Kommentare als RSS" + toTwitter: "Auf Twitter teilen" + toFacebook: "Auf Facebook teilen" + toLinkedIn: "Auf LinkedIn teilen" + toTelegram: "Auf Telegram teilen" + toGplus: "Auf Google+ teilen" + toWeibo: "Auf Weibo teilen" + toQQ: "Auf QQ teilen" +title: + category: "Kategorie" + tag: "Tag" +misc: + home: "Home" + theme: "Theme" \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/languages/en.yml b/libs/hexo-theme-material/1.5.2/languages/en.yml new file mode 100644 index 000000000..30e3d21e4 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/en.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "Home" + archive: "Archives" + article_num: "Number of articles" +post: + visitor: "Visitors" + views: "Views" + continue: "Read more" + older: "Older" + newer: "Newer" + qrcode: "Read this article on other devices" + comments_load_button: "Read Comments (Make sure disq.us, disquscdn.com and disqus.com can load properly)" + permalink: "Link to this article: " +share: + article_rss: "Article RSS" + comment_rss: "Comment RSS" + toTwitter: "Share to Twitter" + toFacebook: "Share to Facebook" + toLinkedIn: "Share to LinkedIn" + toTelegram: "Share to Telegram" + toGplus: "Share to Google+" + toWeibo: "Share to Weibo" + toQQ: "Share to QQ" +title: + category: "Categories" + tag: "Tag" +misc: + home: "Home" + theme: "Theme" diff --git a/libs/hexo-theme-material/1.5.2/languages/es.yml b/libs/hexo-theme-material/1.5.2/languages/es.yml new file mode 100644 index 000000000..b82f9bbdf --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/es.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "Casa" + archive: "Archivo" + article_num: "Número de artículo" +post: + visitor: "Visitantes" + views: "Vista" + continue: "Sigue leyendo" + older: "Mayor" + newer: "Más nuevo" + qrcode: "Lea este artículo en otro dispositivo" + comments_load_button: "Leer comentarios 「Asegúrese de que 'disq.us & disquscdn.com & disqus.com' se puede cargar」" + permalink: "Link to this article: " +share: + article_rss: "Artículo RSS" + comment_rss: "Comentario RSS" + toTwitter: "Compartir en Twitter" + toFacebook: "Compartir en Facebook" + toLinkedIn: "Compartir en LinkedIn" + toTelegram: "Compartir en Telegram" + toGplus: "Compartir en Google+" + toWeibo: "Compartir en Weibo" + toQQ: "Compartir en QQ" +title: + category: "Categoría" + tag: "Etiqueta" +misc: + home: "Casa" + theme: "tema" \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/languages/fr.yml b/libs/hexo-theme-material/1.5.2/languages/fr.yml new file mode 100644 index 000000000..34c153e31 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/fr.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "Accueil" + archive: "Archives" + article_num: "Nombre d'articles" +post: + visitor: "Visiteurs" + views: "Vues" + continue: "Continuer la lecture" + older: "Ancien" + newer: "Récent" + qrcode: "Lire cet article depuis un autre appareil" + comments_load_button: "Lire les commentaires (Assurez-vous que disq.us, disquscdn.com et disqus.com peuvent être chargés)" + permalink: "ce lien: " +share: + article_rss: "Flux RSS des articles" + comment_rss: "Flux RSS des commentaires" + toTwitter: "Partager sur Twitter" + toFacebook: "Partager sur Facebook" + toLinkedIn: "Partager sur LinkedIn" + toTelegram: "Partager sur Telegram" + toGplus: "Partager sur Google+" + toWeibo: "Partager sur Weibo" + toQQ: "Partager sur QQ" +title: + category: "Catégorie" + tag: "Libellé" +misc: + home: "Accueil" + theme: "Thème" diff --git a/libs/hexo-theme-material/1.5.2/languages/ja.yml b/libs/hexo-theme-material/1.5.2/languages/ja.yml new file mode 100644 index 000000000..a42ac75dd --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/ja.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "ホーム" + archive: "過去の投稿" + article_num: "記事番号" +post: + visitor: "訪問者" + views: "ビュー" + continue: "読み続けて" + older: "古い" + newer: "新しい" + qrcode: "他のデバイスでこの記事を読む" + comments_load_button: "論評を読む「 あなたは disqus & disquscdn.com & disqus.com をロードできることを確認します」" + permalink: "このリンク:" +share: + article_rss: "記事 RSS" + comment_rss: "論評 RSS" + toTwitter: "Twitter での共有" + toFacebook: "Facebook での共有" + toLinkedIn: "LinkedIn での共有" + toTelegram: "Telegram での共有" + toGplus: "Google+ での共有" + toWeibo: "Weibo での共有" + toQQ: "QQ での共有" +title: + category: "カテゴリー" + tag: "ラベル" +misc: + home: "ホーム" + theme: "テーマ" \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/languages/ms.yml b/libs/hexo-theme-material/1.5.2/languages/ms.yml new file mode 100644 index 000000000..1160071cb --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/ms.yml @@ -0,0 +1,28 @@ +sidebar: + homepage: "Laman" + archive: "Arkib" + article_num: "Bilangan Artikel" +post: + visitor: "Pelawat" + views: "Paparan" + continue: "Teruskan Membaca" + older: "Lama" + newer: "Baru" + qrcode: "Baca artikel ini pada peranti lain" + comments_load_button: "Read comments 「Pastikan 'disq.us & disquscdn.com & disqus.com' boleh dimuatkan」" +share: + article_rss: "RSS Artikel" + comment_rss: "RSS Ulasan" + toTwitter: "Kongsi ke Twitter" + toFacebook: "Kongsi ke Facebook" + toLinkedIn: "Kongsi ke LinkedIn" + toTelegram: "Kongsi ke Telegram" + toGplus: "Kongsi ke Google+" + toWeibo: "Kongsi ke Weibo" + toQQ: "Kongsi ke QQ" +title: + category: "Kategori" + tag: "Tag" +misc: + home: "Laman" + theme: "Tema" \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/languages/nl_NL.yml b/libs/hexo-theme-material/1.5.2/languages/nl_NL.yml new file mode 100644 index 000000000..58daf6a30 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/nl_NL.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "Home" + archive: "Archief" + article_num: "Aantal artikelen" +post: + visitor: "Bezoekers" + views: "Bekeken" + continue: "Lees meer" + older: "Ouder" + newer: "Nieuwer" + qrcode: "Lees dit artikel op andere apparaten" + comments_load_button: "Lees reacties (Zorg dat disq.us, disquscdn.com en disqus.com correct geladen kunnen worden)" + permalink: "Link naar dit artikel: " +share: + article_rss: "Artikel RSS" + comment_rss: "Reactie RSS" + toTwitter: "Deel op Twitter" + toFacebook: "Deel op Facebook" + toLinkedIn: "Deel op LinkedIn" + toTelegram: "Deel via Telegram" + toGplus: "Deel op Google+" + toWeibo: "Deel op Weibo" + toQQ: "Deel via QQ" +title: + category: "Categorieën" + tag: "Label" +misc: + home: "Home" + theme: "Thema" diff --git a/libs/hexo-theme-material/1.5.2/languages/pt-BR.yml b/libs/hexo-theme-material/1.5.2/languages/pt-BR.yml new file mode 100644 index 000000000..618225178 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/pt-BR.yml @@ -0,0 +1,27 @@ +sidebar: + homepage: "Home" + archive: "Arquivos" + article_num: "Número de Artigos" +post: + visitor: "Visitantes" + views: "Visualizações" + continue: "Continue lendo" + older: "Anteriores" + newer: "Recentes" + qrcode: "Veja este artigo em outro dispositivo" +share: + article_rss: "Artigos RSS" + comment_rss: "Comentários RSS" + toTwitter: "Compartilhar no Twitter" + toFacebook: "Compartilhar no Facebook" + toLinkedIn: "Compartilhar no LinkedIn" + toTelegram: "Compartilhar no Telegram" + toGplus: "Compartilhar no Google+" + toWeibo: "Compartilhar no Weibo" + toQQ: "Compartilhar no QQ" +title: + category: "Categorias" + tag: "Marcadores" +misc: + home: "Home" + theme: "Tema" diff --git a/libs/hexo-theme-material/1.5.2/languages/ru.yml b/libs/hexo-theme-material/1.5.2/languages/ru.yml new file mode 100644 index 000000000..e59edaeed --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/ru.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "Главная страница" + archive: "Архив" + article_num: "Количество статей" +post: + visitor: "Посетители" + views: "Просмотры" + continue: "Читать далее" + older: "Старые" + newer: "Новые" + qrcode: "Читать эту статью на другом устройстве" + comments_load_button: "Читать комментарии (Убедитесь, что disq.us, disquscdn.com и disqus.com могут корректно загрузиться)" + permalink: "Ссылка на эту статью: " +share: + article_rss: "RSS статьи" + comment_rss: "RSS комментариев" + toTwitter: "Поделиться на Twitter" + toFacebook: "Поделиться на Facebook" + toLinkedIn: "Поделиться на LinkedIn" + toTelegram: "Поделиться на Telegram" + toGplus: "Поделиться на Google+" + toWeibo: "Поделиться на Weibo" + toQQ: "Поделиться на QQ" +title: + category: "Категории" + tag: "Тег" +misc: + home: "Главная" + theme: "Тема" diff --git a/libs/hexo-theme-material/1.5.2/languages/zh-CN.yml b/libs/hexo-theme-material/1.5.2/languages/zh-CN.yml new file mode 100644 index 000000000..d491c02ff --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/zh-CN.yml @@ -0,0 +1,31 @@ +sidebar: + homepage: "主页" + archive: "归档" + article_num: "文章总数" +post: + visitor: "访客" + views: "浏览量" + continue: "阅读全文" + older: "旧篇" + newer: "新篇" + qrcode: "在其它设备中阅读本文章" + comments_load_button: "阅读评论(请确保 disqus 可以正常加载)" + comments_fully_load_button: "加载完整评论(请确保 disqus 可以正常加载)" + comments_proxy_load_button: "加载评论基本模式" + permalink: "本文链接:" +share: + article_rss: "文章 RSS" + comment_rss: "评论 RSS" + toTwitter: "分享到 Twitter" + toFacebook: "分享到 Facebook" + toLinkedIn: "分享到 LinkedIn" + toTelegram: "分享到 Telegram" + toGplus: "分享到 Google+" + toWeibo: "分享到微博" + toQQ: "分享到 QQ" +title: + category: "分类" + tag: "标签" +misc: + home: "主页" + theme: "主题" diff --git a/libs/hexo-theme-material/1.5.2/languages/zh-TW.yml b/libs/hexo-theme-material/1.5.2/languages/zh-TW.yml new file mode 100644 index 000000000..303534b71 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/languages/zh-TW.yml @@ -0,0 +1,29 @@ +sidebar: + homepage: "首頁" + archive: "過往" + article_num: "文章總數" +post: + visitor: "訪客" + views: "瀏覽量" + continue: "繼續閱讀" + older: "舊篇" + newer: "新篇" + qrcode: "在其他設備中閱讀本文章" + comments_load_button: "閱讀評論 「請確認 disq.us & disquscdn.com & disqus.com 可正常載入」" + permalink: "本文鏈接:" +share: + article_rss: "文章 RSS" + comment_rss: "評論 RSS" + toTwitter: "分享到 Twitter" + toFacebook: "分享到 Facebook" + toLinkedIn: "分享到 LinkedIn" + toTelegram: "分享到 Telegram" + toGplus: "分享到 Google+" + toWeibo: "分享到微博" + toQQ: "分享到 QQ" +title: + category: "分類" + tag: "標籤" +misc: + home: "主頁" + theme: "主題" \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Isolation-post-info.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Isolation-post-info.ejs new file mode 100644 index 000000000..e69de29bb diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Isolation-post_entry.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Isolation-post_entry.ejs new file mode 100644 index 000000000..8a728b20e --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/Isolation-post_entry.ejs @@ -0,0 +1,77 @@ +
+ + <% if(!post.thumbnail) { %> + +
+ + <%= config.author %>'s avatar + <%= config.author %> +
+ + +
+ <% } else { %> + +
+ + <%= config.author %>'s avatar + <%= config.author %> +
+ + +
+ + <% } %> +
+ + +
+ +

+ <% if(pin) { %>[Top]<% } %><%= post.title %> +

+ + +

+ <%if(post.excerpt) {%> + <%- strip_html(post.excerpt) %> + <%}else{%> + <%- strip_html(truncate(post.content,{length: theme.reading.entry_excerpt })) %> + <%}%> +     + + <%= __('post.continue') %> + +

+ + + <%- list_tags(post.tags, { + show_count: false, + class: 'post_entry-tags', + style: 'list', + separator: '' + }) %> +
+ + + +
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post-info.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post-info.ejs new file mode 100644 index 000000000..8979da811 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post-info.ejs @@ -0,0 +1,49 @@ +
+ + +
+ Author Avatar +
+ +
+ <%= config.author %> + <%= date(page.date, 'MMM DD, YYYY') %> +
+ +
+ + + + + + <% if(theme.qrcode.enable === true) { %> + <%- partial('_widget/qrcode') %> + <% } %> + + + <% if (page.tags && page.tags.length) { %> + +
    +
  • + <%- list_tags(page.tags, { + show_count: false, + class: 'post_tag', + style: 'none', + separator: '
  • ' + }) %> +
+ <% } %> + + + <% if(page.hide_share !== true) { %> + <%- partial('_partial/post-info-share') %> + <% } %> +
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post-thumbnail.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post-thumbnail.ejs new file mode 100644 index 000000000..f2cd556a0 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post-thumbnail.ejs @@ -0,0 +1,6 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post_entry-thumbnail.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post_entry-thumbnail.ejs new file mode 100644 index 000000000..99c7fde73 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post_entry-thumbnail.ejs @@ -0,0 +1,14 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post_entry.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post_entry.ejs new file mode 100644 index 000000000..6009b13ea --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-post_entry.ejs @@ -0,0 +1,77 @@ +
+ + <% if(!post.thumbnail) { %> + <% if(!theme.thumbnail.purecolor) { %> + +
+ <% } else { %> + +
+ <% } %> + <% } else { %> + +
+ <% } %> + + +

<% if(pin) { %>[Top]<% } %><%= post.title %>

+
+ + +
+ <%if(post.excerpt) {%> + <%- strip_html(post.excerpt) %> + <%}else{%> + <%- strip_html(truncate(post.content,{length: theme.reading.entry_excerpt })) %> + <%}%> +     + + <%= __('post.continue') %> + +
+ +
+
+ +
+ <%= config.author %>'s avatar +
+
+ <%= config.author %> + <%= date(post.date, 'MMM DD, YYYY') %> +
+
+
+ <% if (post.categories && post.categories.length) { %> + + + <% } %> + + <% if(theme.comment.use === 'duoshuo') { %> + +  |  + + + + <% } %> + + <% if(theme.comment.use === 'changyan') { %> + +  |  + + 条评论 + + <% } %> + + + + +
+
+
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-search.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-search.ejs new file mode 100644 index 000000000..a8e00efc0 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/Paradox-search.ejs @@ -0,0 +1,44 @@ +<% if( theme.search.use === 'google' ) { %> + +
+ + +
+ + + + +
+
+<% } %> + +<% if( theme.search.use === 'swiftype' ) { %> + +
+ + +
+ + +
+
+<% } %> + +<% if( theme.search.use === 'local' ) { %> + +
+ + +
+ + +
+
+
+<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/blog_info.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/blog_info.ejs new file mode 100644 index 000000000..c46256248 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/blog_info.ejs @@ -0,0 +1,119 @@ + +
+ + + <%- partial('_partial/Paradox-search') %> + + + + + +
+ +
+ <%= config.title %> +
+
+ + + + + + + + +
+
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/comment.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/comment.ejs new file mode 100644 index 000000000..319e45705 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/comment.ejs @@ -0,0 +1,3 @@ +<% if(theme.comment.use) { %> + <%- partial('_widget/comment/' + theme.comment.use + '/enter') %> +<% } %> \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/config_css.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/config_css.ejs new file mode 100644 index 000000000..24a3db333 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/config_css.ejs @@ -0,0 +1,126 @@ + + + + + + + +<% if(theme.background.bing.enable === true) { %> + +<% } else if(!theme.background.bgimg) { %> + +<% } else { %> + +<% } %> + + + + +<% if(theme.js_effect.fade === true) { %> + +<% } %> + + +<%- partial('_partial/config_font') %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/config_font.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/config_font.ejs new file mode 100644 index 000000000..1dcecbadd --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/config_font.ejs @@ -0,0 +1,81 @@ + +<% if(theme.fonts.use === "google") { %> + +<% } else if(theme.fonts.use === "ustc") { %> + +<% } else if(theme.fonts.use === "custom") { %> + +<% } else if(theme.fonts.use === "baomitu") { %> + +<% } else if(theme.fonts.use === "catnet") { %> + +<% } %> + + + +<% if(theme.vendors.materialcdn) { %> + <%- cssLsload({path:(theme.vendors.materialcdn + '/css/material-icons.css'),key:'material_icons'}) %> +<% } else { %> + <%- cssLsload({path:('css/material-icons.css'),key:'material_icons'}) %> +<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/daily_pic.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/daily_pic.ejs new file mode 100644 index 000000000..51f257d16 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/daily_pic.ejs @@ -0,0 +1,27 @@ + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/footer-left.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/footer-left.ejs new file mode 100644 index 000000000..c4a204455 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/footer-left.ejs @@ -0,0 +1,109 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/footer-option.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/footer-option.ejs new file mode 100644 index 000000000..4c62acc0b --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/footer-option.ejs @@ -0,0 +1,17 @@ +<% if(theme.leancloud.enable === true) { %> + + + + <%- partial('_widget/leancloud-views') %> +<% } %> + +<% if(theme.busuanzi.enable === true) { %> + + +<% } %> + +<% if(theme.comment.use){ %> + <%- partial('_widget/comment/' + theme.comment.use + '/common') %> +<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/footer.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/footer.ejs new file mode 100644 index 000000000..6c1e06258 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/footer.ejs @@ -0,0 +1,37 @@ + +
+ <% if(theme.scheme === 'Paradox') { %> + + <%- partial('_partial/footer-left') %> + + + + + + + + + + <% } %> +
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/footer_top.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/footer_top.ejs new file mode 100644 index 000000000..f4688edf7 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/footer_top.ejs @@ -0,0 +1,5 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/head.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/head.ejs new file mode 100644 index 000000000..6852f5845 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/head.ejs @@ -0,0 +1,200 @@ + + + + + + + <%- partial('_widget/dnsprefetch') %> + + + + + + + + <% + var title = page.title; + + if (is_archive()) { + title = __('sidebar.archive'); + + if (is_month()) { + title += ': ' + page.year + '/' + page.month; + } + else if (is_year()) { + title += ': ' + page.year; + } + } + else if (is_category()) { + title = __('title.category') + ': ' + page.category; + } + else if (is_tag()) { + title = __('title.tag') + ': ' + page.tag; + } + %> + + <% if (title) { %> + <%= title + ' | ' %> + <% } %> + <%= config.title %> + + + + + + + + + + + + + + + + + + + + + + + + + <% if(theme.vendors.materialcdn) { %> + <%- cssLsload({path:(theme.vendors.materialcdn + '/css/material.min.css'),key:'material_css'}) %> + <%- cssLsload({path:(theme.vendors.materialcdn + '/css/style.min.css'),key:'style_css'}) %> + + <% if (theme.prettify.enable){ %> + <% if ( (is_post()) ) { %> + <%- cssLsload({path:(theme.vendors.materialcdn + '/css/prettify.min.css'),key:'prettify_css'}) %> + <%- cssLsload({path:(theme.vendors.materialcdn + '/css/prettify/' + theme.prettify.theme + '.min.css'),key:'prettify_theme'}) %> + <% } %> + <% } %> + + <% } else { %> + <%- cssLsload({path:('css/material.min.css'),key:'material_css'}) %> + <%- cssLsload({path:('css/style.min.css'),key:'style_css'}) %> + + <% if (theme.prettify.enable){ %> + <% if ( (is_post()) ) { %> + <%- cssLsload({path:('css/prettify.min.css'),key:'prettify_css'}) %> + <%- cssLsload({path:('css/prettify/' + theme.prettify.theme + '.min.css'),key:'prettify_theme'}) %> + <% } %> + <% } %> + + <% } %> + + <% if(theme.scheme === 'Isolation') { %> + <% if(theme.vendors.fontawesome) { %> + + <% } else if(theme.vendors.materialcdn) { %> + + <% } else { %> + + <% } %> + <% } %> + + <%- partial('_partial/config_css') %> + + + <% if(theme.vendors.jquery) { %> + <%- jsLsload({path:(theme.vendors.jquery),key:'jq_js'}) %> + <% } else if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/jquery.min.js'),key:'jq_js'}) %> + <% } else { %> + <%- jsLsload({path:('js/jquery.min.js'),key:'jq_js'}) %> + <% } %> + + + + + + + + + + + + + <% if(theme.head.site_verification.google) { %><% } %> + <% if(theme.head.site_verification.baidu) { %><% } %> + + + <% if(theme.url.rss) { %> + <% if(config.feed.type == "atom"){ %> + + <% } else if(config.feed.type == "rss2") { %> + + <% } else { %> + <% } %> + <% } %> + + + + + + + + <% if(page.tags && page.tags.each) { page.tags.each(function(tag){ %> <% })} %> + + <% if( (is_post()) ) { %> + + + <% } %> + + + + + + <% if( (page.current === 1) && (is_home()) ) { %> + + <% } else { %> + + <% } %> + + + <% if(theme.head.structured_data === true) { %> + <%- partial('_partial/structured-data') %> + <% } %> + + + <% if(theme.analytics.google_site_id) { %> + <%- partial('_widget/analytics/google-analytics') %> + <% } %> + <% if(theme.analytics.baidu_site_id) { %> + <%- partial('_widget/analytics/baidu-analytics') %> + <% } %> + <% if(theme.analytics.cnzz_site_id) { %> + <%- partial('_widget/analytics/cnzz-analytics') %> + <% } %> + + + <% if (site.data.head) { %> + <% for (var i in site.data.head) { %> + <%- site.data.head[i] %> + <% } %> + <% } %> + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/import_js.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/import_js.ejs new file mode 100644 index 000000000..27c73cb5d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/import_js.ejs @@ -0,0 +1,162 @@ + +<% if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/lazyload.min.js'),key:'lazyload_js'}) %> +<% } else { %> + <%- jsLsload({path:('js/lazyload.min.js'),key:'lazyload_js'}) %> +<% } %> + +<% if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/js.min.js'),key:'js_js'}) %> +<% } else { %> + <%- jsLsload({path:('js/js.min.js'),key:'js_js'}) %> +<% } %> + +<%- partial('_widget/nprogress') %> + +<% if( theme.js_effect.smoothscroll === true ) { %> + <% if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/smoothscroll.js'),key:'sm_js'}) %> + <% } else { %> + <%- jsLsload({path:('js/smoothscroll.js'),key:'sm_js'}) %> + <% } %> +<% } %> + +<%- partial('_partial/footer-option') %> + +<% if( (page.current === 1) && (is_home()) ) { %> + + <% if( theme.search.use === 'swiftype' ) { %> + <%- partial('_widget/search-swiftype-js') %> + <% } %> + + + <% if( theme.search.use === 'local' ) { %> + <%- partial('_widget/search-local-js') %> + + + <% } %> +<% } %> + + + + + +<% if (theme.prettify.enable){ %> + <% if ( (is_post()) ) { %> + <% if(theme.vendors.prettify) { %> + <%- jsLsload({path:(theme.vendors.prettify),key:'prettify_js'}) %> + <% } else if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/prettify.min.js'),key:'prettify_js'}) %> + <% } else { %> + <%- jsLsload({path:('js/prettify.min.js'),key:'prettify_js'}) %> + <% } %> + <% } %> +<% } %> +<% if (theme.hanabi.enable) { %> + <% if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/hanabi-browser-bundle.js'),key:'hanabi'}) %> + <% } else { %> + <%- jsLsload({path:('js/hanabi-browser-bundle.js'),key:'hanabi'}) %> + <% } %> +<% } %> + + + + + + +<% if (page.mathjax) { %> + <%- partial('_widget/mathjax') %> +<% } %> + + +<% if(theme.background.bing.enable) { %> + +<% } %> + + + + + +<% if (site.data.footer) { %> + <% for (var i in site.data.footer) { %> + <%- site.data.footer[i] %> + <% } %> +<% } %> + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/isolate-sns_list.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/isolate-sns_list.ejs new file mode 100644 index 000000000..4efca7cd5 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/isolate-sns_list.ejs @@ -0,0 +1,64 @@ +
+ + <% if(theme.sns.twitter) { %> + + + + <% } %> + + + <% if(theme.sns.facebook) { %> + + + + <% } %> + + + <% if(theme.sns.googleplus) { %> + + + + <% } %> + + + <% if(theme.sns.weibo) { %> + + + + <% } %> + + + <% if(theme.sns.instagram) { %> + + + + <% } %> + + + <% if(theme.sns.tumblr) { %> + + + + <% } %> + + + <% if(theme.sns.github) { %> + + + + <% } %> + + + <% if(theme.sns.linkedin) { %> + + + + <% } %> + + + <% if(theme.sns.telegram) { %> + + + + <% } %> +
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/isolate_info.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/isolate_info.ejs new file mode 100644 index 000000000..859503bbc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/isolate_info.ejs @@ -0,0 +1,66 @@ +
+
+ + + + + + + <%= config.title %> + + + +

+ <% if(theme.uiux.slogan) { %> + <% if(Array.isArray(theme.uiux.slogan)) { %> + <%- theme.uiux.slogan.join('
') %> + <% } else { %> + <%- theme.uiux.slogan %> + <% } %> + <% } %> +

+ + + + + + <%- partial('_partial/isolate-sns_list') %> +
+
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/post-content.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/post-content.ejs new file mode 100644 index 000000000..dfa082c43 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/post-content.ejs @@ -0,0 +1,40 @@ +
+ <% if(theme.scheme === 'Paradox') { %> + <%- page.content %> + <% if (page.hide_license !== true && theme.license || page.license) { %> +
+

+ <% if (page.license) { %> + <%- page.license %> + <% } else { %> + <%- theme.license %> + <% } %> +
+ <%- __('post.permalink') %><%= page.permalink %> +

+
+ <% } %> + <% } %> + + <% if(theme.scheme === 'Isolation') { %> +
+

+ <%- page.title %> +

+ <%- page.content %> + <% if (page.license || theme.license) { %> +
+

+ <% if (page.license) { %> + <%- page.license %> + <% } else { %> + <%- theme.license %> + <% } %> +
+ <%- __('post.permalink') %> <%= page.permalink %> +

+
+ <% } %> +
+ <% } %> +
diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/post-header.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/post-header.ejs new file mode 100644 index 000000000..3fa0ecf9d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/post-header.ejs @@ -0,0 +1,48 @@ +<% if(theme.scheme === 'Paradox') { %> + + <% if(!page.thumbnail) { %> + <% if(!theme.thumbnail.purecolor) {%> + +
+ <%- partial('_partial/Paradox-post-thumbnail') %> + <% } else { %> + +
+ <% } %> + <% }else{ %> + +
+ <% } %> +

+ <%- page.title %> +

+
+<% } %> + +<% if(theme.scheme === 'Isolation') { %> + + + <% if(!page.thumbnail) { %> + +
+ + <%= config.author %>'s avatar + <%= config.author %> +
+ + +
+ <% } else { %> + +
+ + <%= config.author %>'s avatar + <%= config.author %> +
+ + +
+ + <% } %> +
+<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/post-info-share.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/post-info-share.ejs new file mode 100644 index 000000000..2f51e71c9 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/post-info-share.ejs @@ -0,0 +1,90 @@ + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/post-nav.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/post-nav.ejs new file mode 100644 index 000000000..b059312aa --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/post-nav.ejs @@ -0,0 +1,26 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-footer.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-footer.ejs new file mode 100644 index 000000000..ccaf6fb75 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-footer.ejs @@ -0,0 +1,60 @@ + + + +<% if(theme.sidebar.footer.divider === true) { %> + +<% } %> + + +<% if(theme.sidebar.footer.theme === true) { %> + + + +<% } %> + + + + + + + + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-footer_image.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-footer_image.ejs new file mode 100644 index 000000000..80c59b6bc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-footer_image.ejs @@ -0,0 +1,7 @@ +<% for (var i in theme.img.footer_image) { %> + + + <%= i %> + +<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-header.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-header.ejs new file mode 100644 index 000000000..89514c61c --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-header.ejs @@ -0,0 +1,24 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-navigation.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-navigation.ejs new file mode 100644 index 000000000..6e64cb149 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar-navigation.ejs @@ -0,0 +1,112 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar.ejs new file mode 100644 index 000000000..9553c4fdc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/sidebar.ejs @@ -0,0 +1,19 @@ + + + + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/structured-data.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/structured-data.ejs new file mode 100644 index 000000000..472e3e466 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/structured-data.ejs @@ -0,0 +1,55 @@ +<% if( (page.current === 1) && (is_home()) ) { %> + +<% } %> + +<% if( (is_post()) ) { %> + +<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_partial/toc_button.ejs b/libs/hexo-theme-material/1.5.2/layout/_partial/toc_button.ejs new file mode 100644 index 000000000..08fc43b53 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_partial/toc_button.ejs @@ -0,0 +1,35 @@ +<% if(theme.scheme === 'Paradox') { %> + + + + + + <% var toc_obj = toc(page.content, { + class: 'post-toc', + list_number: theme.toc.linenumber || false, + style: 'max-height:80vh; overflow-y:scroll;' + }) %> + <% if(toc_obj.length > 0) { %> + + +
    + <%- toc_obj %> +
+ <% } %> +<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/baidu-analytics.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/baidu-analytics.ejs new file mode 100644 index 000000000..56a63862f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/baidu-analytics.ejs @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/cnzz-analytics.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/cnzz-analytics.ejs new file mode 100644 index 000000000..a82b180e5 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/cnzz-analytics.ejs @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/google-analytics.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/google-analytics.ejs new file mode 100644 index 000000000..d055dfa09 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/analytics/google-analytics.ejs @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/common.ejs new file mode 100644 index 000000000..1e73fdb19 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/common.ejs @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/enter.ejs new file mode 100644 index 000000000..457ff3d5f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/enter.ejs @@ -0,0 +1,10 @@ + +
+ <%- partial('_widget/comment/' + theme.comment.use + '/main') %> +
+ \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/main.ejs new file mode 100644 index 000000000..ae954bcaa --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/changyan/main.ejs @@ -0,0 +1,9 @@ + +
<%= page.id %><% } else { %><%= page.path %><% } %>" >
+ diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/common.ejs new file mode 100644 index 000000000..a0d8f5dd3 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/common.ejs @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/enter.ejs new file mode 100644 index 000000000..352be189e --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/enter.ejs @@ -0,0 +1,10 @@ + +
+ <%- partial('_widget/comment/' + theme.comment.use + '/main') %> +
+ \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/main.ejs new file mode 100644 index 000000000..685b703bf --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus/main.ejs @@ -0,0 +1,18 @@ +
+ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/common.ejs new file mode 100644 index 000000000..ab22ee869 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/common.ejs @@ -0,0 +1 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/enter.ejs new file mode 100644 index 000000000..1ef52f01f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/enter.ejs @@ -0,0 +1,10 @@ + +
+ <%- partial('_widget/comment/' + theme.comment.use + '/main') %> +
+ \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/main.ejs new file mode 100644 index 000000000..4d9232dd6 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/disqus_click/main.ejs @@ -0,0 +1,73 @@ +
+ + + + +
+ +
+ + + + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/common.ejs new file mode 100644 index 000000000..c1f700678 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/common.ejs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/enter.ejs new file mode 100644 index 000000000..e39b96eef --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/enter.ejs @@ -0,0 +1,10 @@ + +
+ <%- partial('_widget/comment/' + theme.comment.use + '/main') %> +
+ \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/main.ejs new file mode 100644 index 000000000..ff346681d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitalk/main.ejs @@ -0,0 +1,19 @@ + +
+ + + + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/common.ejs new file mode 100644 index 000000000..bcf86a321 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/common.ejs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/enter.ejs new file mode 100644 index 000000000..80156bea7 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/enter.ejs @@ -0,0 +1,24 @@ + +
+ <%- partial('_widget/comment/' + theme.comment.use + '/main') %> +
+ + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/main.ejs new file mode 100644 index 000000000..c5bdd6460 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/gitment/main.ejs @@ -0,0 +1,2 @@ + +
\ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/common.ejs new file mode 100644 index 000000000..e69de29bb diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/enter.ejs new file mode 100644 index 000000000..dfcc2e966 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/enter.ejs @@ -0,0 +1,10 @@ + +
+ <%- partial('_widget/comment/' + theme.comment.use + '/main') %> +
+ \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/main.ejs new file mode 100644 index 000000000..338e3512b --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/livere/main.ejs @@ -0,0 +1,12 @@ +
+ +
\ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/common.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/common.ejs new file mode 100644 index 000000000..e69de29bb diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/enter.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/enter.ejs new file mode 100644 index 000000000..9841838d5 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/enter.ejs @@ -0,0 +1,2 @@ +
+<%- partial('_widget/comment/' + theme.comment.use + '/main') %> \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/main.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/main.ejs new file mode 100644 index 000000000..7622365ac --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/comment/valine/main.ejs @@ -0,0 +1,21 @@ + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/dnsprefetch.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/dnsprefetch.ejs new file mode 100644 index 000000000..3ca7b46b5 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/dnsprefetch.ejs @@ -0,0 +1,41 @@ + +<% if(theme.vendors.materialcdn) { %> + +<% } %> +<% if( (theme.leancloud.enable === true) || (theme.comment.use == "valine") ) { %> + +<% } %> +<% if(theme.busuanzi.enable === true) { %> + +<% } %> +<% if(theme.comment.use === "changyan"){ %> + +<% } %> +<% if(theme.comment.use === "livere"){ %> + +<% } %> +<% if(theme.analytics.use === "baidu") { %> + +<% } %> +<% if(theme.analytics.use === "google") { %> + +<% } %> +<% if(theme.analytics.use === "cnzz") { %> + +<% } %> +<% if(theme.fonts.host === "google") { %> + +<% } %> +<% if(theme.fonts.host === "baomitu") { %> + +<% } %> +<% if(theme.fonts.use === "custom") { %> + +<% } %> +<% if(theme.qrcode.use === "online" && theme.qrcode.enable === "true") { %> + <% if(config.language === "zh-CN") { %> + + <% } else { %> + + <% } %> +<% } %> diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-like.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-like.ejs new file mode 100644 index 000000000..5f6c77a70 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-like.ejs @@ -0,0 +1,78 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-views.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-views.ejs new file mode 100644 index 000000000..77040023f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-views.ejs @@ -0,0 +1,78 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-views_num.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-views_num.ejs new file mode 100644 index 000000000..9dd4d9a48 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/leancloud-views_num.ejs @@ -0,0 +1,3 @@ + +  <%= __('post.views') %> + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/mathjax.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/mathjax.ejs new file mode 100644 index 000000000..700e09a33 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/mathjax.ejs @@ -0,0 +1,22 @@ + + +<% if(theme.vendors.mathjax) { %> + +<% } else if(theme.vendors.materialcdn) { %> + +<% } else { %> + +<%}%> diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/nprogress.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/nprogress.ejs new file mode 100644 index 000000000..6fc0bb4f9 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/nprogress.ejs @@ -0,0 +1,28 @@ +<% if(theme.vendors.nprogress) { %> + <%- jsLsload({path:(theme.vendors.nprogress),key:'np_js'}) %> +<% } else if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/nprogress.js'),key:'np_js'}) %> +<% } else { %> + <%- jsLsload({path:('js/nprogress.js'),key:'np_js'}) %> +<% } %> + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/page-gallery.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/page-gallery.ejs new file mode 100644 index 000000000..57f5899d1 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/page-gallery.ejs @@ -0,0 +1,117 @@ +<% if(theme.vendors.materialcdn) { %> + +<% } else { %> + +<% } %> + + + +
+ + + + + +
+ <% if (site.data.gallery) { %> + <% for (var i in site.data.gallery) { %> +
+ <%= i %> +

<%= i %>

+

<%= site.data.gallery[i].descr %>

+
+ <% } %> + <% } %> +
+ + + +
+ + + <% if(theme.vendors.materialcdn) { %> + + <% } else { %> + + <% } %> + + <% if(theme.vendors.materialcdn) { %> + <%- jsLsload({path:(theme.vendors.materialcdn + '/js/lazyload.min.js'),key:'lazyload_js'}) %> + <% } else { %> + <%- jsLsload({path:('js/lazyload.min.js'),key:'lazyload_js'}) %> + <% } %> + + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/page-links.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/page-links.ejs new file mode 100644 index 000000000..951a18a92 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/page-links.ejs @@ -0,0 +1,113 @@ + + + + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/page-tagcloud.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/page-tagcloud.ejs new file mode 100644 index 000000000..999ee2a18 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/page-tagcloud.ejs @@ -0,0 +1,55 @@ + + +
+
+ <%- tagcloud({ + min_font: 16, + max_font: 35, + amount: 9999, + color: true, + start_color: '#757575', + end_color: '#212121', + }) %> +
+
+ + + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/page-timeline.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/page-timeline.ejs new file mode 100644 index 000000000..162b653dc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/page-timeline.ejs @@ -0,0 +1,442 @@ + + +
+ <% if (site.posts.length) { -%> + <% site.posts.sort('date', -1).limit(site.posts.length).each(function(post){ %> +
+
+
<%= date(post.date, 'MMM DD YYYY') %>
+
+ +
+ +
+ Categories: + <%- list_categories(post.categories, { + show_count: false, + style: 'none' + }) %> + + Tags: + <%- list_tags(post.tags, { + show_count: false, + style: 'none' + }) %> + + +
+

+ <% if(post.excerpt) { %> + <%- strip_html(post.excerpt) %> + <% }else{ %> + <%- strip_html(truncate(post.content,{length: theme.reading.entry_excerpt })) %> + <% } %>... +

+
+
+ <% }) %> + <% } -%> +
+ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/qrcode.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/qrcode.ejs new file mode 100644 index 000000000..6916a408a --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/qrcode.ejs @@ -0,0 +1,14 @@ + +
    +
  • <%= __('post.qrcode') %>
  • + <% if(theme.qrcode.use === "plugin") { %> + + <% } else if(theme.qrcode.use === "online") { %> + https://pan.baidu.com/share/qrcode?w=246&h=246&url=<%= page.permalink %><% } else { %>https://chart.googleapis.com/chart?cht=qr&chs=246x246&chl=<%= page.permalink %>&chld=M|2<% } %>"> + <% } %> +
diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/search-local-js.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/search-local-js.ejs new file mode 100644 index 000000000..990453ec6 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/search-local-js.ejs @@ -0,0 +1,3 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/_widget/search-swiftype-js.ejs b/libs/hexo-theme-material/1.5.2/layout/_widget/search-swiftype-js.ejs new file mode 100644 index 000000000..5a5f93597 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/_widget/search-swiftype-js.ejs @@ -0,0 +1,8 @@ + diff --git a/libs/hexo-theme-material/1.5.2/layout/index.ejs b/libs/hexo-theme-material/1.5.2/layout/index.ejs new file mode 100644 index 000000000..ba4dfbb15 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/index.ejs @@ -0,0 +1,54 @@ + +
+ <% if( (theme.scheme === 'Paradox') && (page.current === 1) && (is_home()) ) { %> + + <%- partial('_partial/daily_pic') %> + <%- partial('_partial/blog_info') %> + <% } %> +
+ + + <% if(typeof hasposttop === 'function') { %> + <% if(hasposttop(site.posts)) { %> + <% getposttop(site.posts).each(function(toppost){ %> + <% if(theme.scheme === 'Paradox'){ %> + + <%- partial('_partial/Paradox-post_entry', { post: toppost, index: true, pin: true }) %> + <% } %> + <% if(theme.scheme === 'Isolation'){ %> + + <%- partial('_partial/Isolation-post_entry', { post: toppost, index: true, pin: true }) %> + <% } %> + <% }); %> + <% } %> + <% } %> + + + <% page.posts.each(function(post) { %> + <% if(!((typeof hasposttop === 'function') && post.top)) { %> + <% if(theme.scheme === 'Paradox') { %> + + <%- partial('_partial/Paradox-post_entry', { post: post, index: true, pin: false }) %> + <% } %> + <% if(theme.scheme === 'Isolation') { %> + + <%- partial('_partial/Isolation-post_entry', { post: post, index: true, pin: false }) %> + <% } %> + <% } %> + <% }); %> + + <% if (page.total > 1) { %> + + + <% } %> + + <% if(theme.scheme === 'Paradox') { %> + <%- partial('_partial/Paradox-post_entry-thumbnail') %> + <% } %> +
diff --git a/libs/hexo-theme-material/1.5.2/layout/layout.ejs b/libs/hexo-theme-material/1.5.2/layout/layout.ejs new file mode 100644 index 000000000..b3d7c6f4b --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/layout.ejs @@ -0,0 +1,47 @@ + +lang="<%- config.language.substring(0,2) %>"<% } %>> + <%- partial('_partial/head') %> + + <% if(page.layout === 'gallery') { %> + + <%- partial('_widget/page-gallery') %> + <% } else { %> + +
+ <% if(theme.scheme === 'Isolation') { %> + + <%- partial('_partial/isolate_info') %> + <% } %> + + +
+ + +
+ + <% if(theme.scheme === 'Paradox') { %> + + + <% } %> + + <%- body %> + + <% if(theme.scheme === 'Paradox') { %> + <%- partial('_partial/sidebar') %> + <% } %> + + <% if( (theme.scheme === 'Paradox') && (is_post() || is_home() || is_archive() || is_category() || (page.totop === true) ) ) { %> + + <%- partial('_partial/footer_top') %> + <% } %> + + <%- partial('_partial/footer') %> + + <%- partial('_partial/import_js') %> +
+
+ + <% } %> + diff --git a/libs/hexo-theme-material/1.5.2/layout/post.ejs b/libs/hexo-theme-material/1.5.2/layout/post.ejs new file mode 100644 index 000000000..0b25e9410 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/layout/post.ejs @@ -0,0 +1,52 @@ + +<% if( (page.toc === true) || (is_post() && page.toc !== false) ) { %> + <%- partial('_partial/toc_button') %> +<% } %> + + +<% if(page.layout === 'tags') { %> + + <%- partial('_widget/page-tagcloud') %> + +<% } else if(page.layout === 'links') { %> + + <%- partial('_widget/page-links') %> + +<% } else if(page.layout === 'timeline') { %> + + <%- partial('_widget/page-timeline') %> + +<% } else { %> + +
+ +
+
+ + + <%- partial('_partial/post-header') %> + + <% if(page.hide_post_info !== true && theme.scheme === 'Paradox') { %> + + <%- partial('_partial/Paradox-post-info') %> + <% } %> + + + <%- partial('_partial/post-content') %> + + <% if(page.hide_post_info !== true && theme.scheme === 'Isolation') { %> + + <%- partial('_partial/Isolation-post-info') %> + <% } %> + + + <% if(page.comment !== false) { %> + <%- partial('_partial/comment') %> + <% } %> +
+ + + <%- partial('_partial/post-nav') %> +
+
+<% } %> diff --git a/libs/hexo-theme-material/1.5.2/package.json b/libs/hexo-theme-material/1.5.2/package.json new file mode 100644 index 000000000..a02b79517 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/package.json @@ -0,0 +1,32 @@ +{ + "name": "hexo-material", + "version": "1.5.2", + "description": "Material Design Theme for Hexo", + "scripts": { + "test": "echo \"Error: no test specified\"", + "setup": "npm cache clean && npm install", + "lint": "npm run setup && bash lint.sh" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/viosey/hexo-theme-material.git" + }, + "keywords": [ + "hexo", + "theme", + "material" + ], + "author": "Viosey", + "license": "GPL-3.0", + "bugs": { + "url": "https://github.com/viosey/hexo-theme-material/issues" + }, + "homepage": "https://github.com/viosey/hexo-theme-material#readme", + "devDependencies": { + "ejs-lint": "^0.2.0", + "eslint": "^3.14.0", + "eslint-config-airbnb-base": "^11.0.1", + "eslint-plugin-import": "^2.2.0", + "sass-lint": "^1.10.2" + } +} diff --git a/libs/hexo-theme-material/1.5.2/scripts/helper.js b/libs/hexo-theme-material/1.5.2/scripts/helper.js new file mode 100644 index 000000000..9cad14552 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/scripts/helper.js @@ -0,0 +1,11 @@ +hexo.extend.helper.register('jsHex', function(){ + return require("./lib/js_hex.js").call(hexo,...arguments); +}); + +hexo.extend.helper.register('jsLsload', function(){ + return require("./lib/js_lsload.js").call(hexo,...arguments); +}); + +hexo.extend.helper.register('cssLsload', function(){ + return require("./lib/css_lsload.js").call(hexo,...arguments); +}); \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/scripts/lib/css_lsload.js b/libs/hexo-theme-material/1.5.2/scripts/lib/css_lsload.js new file mode 100644 index 000000000..8360ee104 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/scripts/lib/css_lsload.js @@ -0,0 +1,41 @@ +'use strict'; + +var path_for = require("./path_for"); +var get_file_hex = require("./get_file_hex"); +var fs = require('fs'); + +function cssHelper() { + var result = ''; + var path = ''; + var key = '' + + for (var i = 0, len = arguments.length; i < len; i++) { + if (typeof arguments[i] === 'string'){ + path = arguments[i]; + key = path; + }else{ + path = arguments[i].path; + key = arguments[i].key + } + + if (i) result += '\n'; + + if (Array.isArray(path)) { + result += jsHelper.apply(this, path); + } else { + if (path.indexOf('?') < 0 && path.substring(path.length - 4, path.length) !== '.css') path += '.css'; + var localpath = path_for.call(this,path); + result += '' + } + } + return result; +} + +module.exports = cssHelper; \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/scripts/lib/font_lsload.js b/libs/hexo-theme-material/1.5.2/scripts/lib/font_lsload.js new file mode 100644 index 000000000..e69de29bb diff --git a/libs/hexo-theme-material/1.5.2/scripts/lib/get_file_hex.js b/libs/hexo-theme-material/1.5.2/scripts/lib/get_file_hex.js new file mode 100644 index 000000000..ce06283d0 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/scripts/lib/get_file_hex.js @@ -0,0 +1,14 @@ +var fs = require('fs'); +var crypto = require('crypto'); + + +function getFileHexSync(filepath) { + var buffer = fs.readFileSync(filepath); + var fsHash = crypto.createHash('md5'); + + fsHash.update(buffer); + var sha384 = fsHash.digest('base64'); + return sha384; +} + +module.exports = getFileHexSync \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/scripts/lib/js_hex.js b/libs/hexo-theme-material/1.5.2/scripts/lib/js_hex.js new file mode 100644 index 000000000..49047089e --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/scripts/lib/js_hex.js @@ -0,0 +1,26 @@ +'use strict'; + +var path_for = require("./path_for"); +var get_file_hex = require("./get_file_hex"); + +function jsHelper() { + var result = ''; + var path = ''; + + for (var i = 0, len = arguments.length; i < len; i++) { + path = arguments[i]; + + if (i) result += '\n'; + + if (Array.isArray(path)) { + result += jsHelper.apply(this, path); + } else { + if (path.indexOf('?') < 0 && path.substring(path.length - 3, path.length) !== '.js') path += '.js'; + result += ''; + } + } + + return result; +} + +module.exports = jsHelper; \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/scripts/lib/js_lsload.js b/libs/hexo-theme-material/1.5.2/scripts/lib/js_lsload.js new file mode 100644 index 000000000..8a769f500 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/scripts/lib/js_lsload.js @@ -0,0 +1,37 @@ +'use strict'; + +var path_for = require("./path_for"); +var get_file_hex = require("./get_file_hex"); +var fs = require('fs'); + +function jsHelper() { + var result = ''; + var path = ''; + var key = '' + + for (var i = 0, len = arguments.length; i < len; i++) { + + if (typeof arguments[i] === 'string'){ + path = arguments[i]; + key = path; + }else{ + path = arguments[i].path; + key = arguments[i].key + } + + if (i) result += '\n'; + + if (Array.isArray(path)) { + result += jsHelper.apply(this, path); + } else { + if (path.indexOf('?') < 0 && path.substring(path.length - 3, path.length) !== '.js') path += '.js'; + var localpath = path_for.call(this,path); + result += '' + } + } + return result; +} + +module.exports = jsHelper; \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/scripts/lib/path_for.js b/libs/hexo-theme-material/1.5.2/scripts/lib/path_for.js new file mode 100644 index 000000000..88f52905f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/scripts/lib/path_for.js @@ -0,0 +1,13 @@ +var path = require('path'); +var fs = require('fs'); + +function pathFor(paths) { + var res = ""; + res = path.join(this.theme_dir,"source" , paths); + if(!fs.existsSync(res)){ + res = path.join(this.source_dir, paths); + } + return res; +} + +module.exports = pathFor; \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/disqus-proxy.css b/libs/hexo-theme-material/1.5.2/source/css/disqus-proxy.css new file mode 100644 index 000000000..a7ab372ff --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/disqus-proxy.css @@ -0,0 +1,927 @@ +.comment-toggle { + display: -webkit-box; + display: -ms-flexbox; + display: flex +} + +.comment-toggle .comment-toggle-input { + display: none +} + +.comment-toggle .comment-toggle-input:checked+.comment-toggle-icon { + background-color: #2aa0ff +} + +.comment-toggle .comment-toggle-input:checked+.comment-toggle-icon:before { + margin-left: 11px +} + +.comment-toggle .comment-toggle-icon { + display: block; + width: 32px; + height: 20px; + background-color: #434343; + border-radius: 10px; + box-sizing: border-box; + cursor: pointer; + padding: 2.5px 3px; + -webkit-transition: all .3s; + transition: all .3s +} + +.comment-toggle .comment-toggle-icon:before { + -webkit-transition: all .3s; + transition: all .3s; + content: ""; + display: block; + width: 15px; + height: 15px; + border-radius: 50%; + background-color: #fff +} + +.comment-toggle .comment-toggle-button { + display: block; + color: #fff!important; + background-color: #434343; + border-radius: 2px; + line-height: 20px; + height: 20px; + padding: 0 3px; + font-size: 12px; + cursor: pointer; + margin: 0 5px +} + +.comment { + font: 13px/1.6 Helvetica Neue,Helvetica,Arial,\\5FAE\8F6F\96C5\9ED1,Microsoft YaHei,sans-serif; + min-height: 40px; + margin: 5px auto; + word-wrap: break-word +} + +.comment .icon { + max-width: 20px +} + +.comment * { + margin: 0; + padding: 0; + box-sizing: border-box +} + +.comment b,.comment strong { + font-weight: 700; + color: #000 +} + +.comment :focus { + outline: none +} + +.comment abbr[title] { + text-decoration: none +} + +.comment.loading { + position: relative; + background: url(https://a.disquscdn.com/next/embed/assets/img/loader-bg.173909e4737a7481df14d5492b5eeb48.png) no-repeat!important; + display: block; + height: 52px; + width: 54px; + margin: 20px auto; + overflow: hidden; + box-sizing: border-box +} + +.comment.loading>* { + display: none +} + +.comment.loading:after { + content: ""; + display: block; + box-sizing: border-box; + width: 26px; + height: 26px; + position: absolute; + top: 13px; + left: 15px; + border-width: 3px; + border-style: solid; + border-color: rgba(51,54,58,.4) transparent; + border-radius: 13px; + -webkit-transform-origin: 50% 50% 0; + transform-origin: 50% 50% 0; + -webkit-animation: disqus-loader-spinner-animation .7s infinite linear!important; + animation: disqus-loader-spinner-animation .7s infinite linear!important +} + +.comment.guestbook .comment-header { + display: none +} + +.comment-box { + margin: 20px 0 +} + +.comment-box,.comment-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex +} + +.comment-header { + height: 36px; + line-height: 36px; + font-weight: 700; + font-size: 15px; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + border-bottom: 2px solid #e7e9ee; + color: #656c7a +} + +.comment-header .comment-header-item { + display: inline-block; + border-bottom: 2px solid #656c7a; + margin-bottom: -2px; + padding: 0 7px +} + +.comment-header .comment-show { + position: relative; + color: #2a2e2e; + cursor: pointer; + display: none +} + +.comment-header .comment-header-count,.comment-header .comment-show { + width: 120px; + text-align: center; + -webkit-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; + text-transform: capitalize +} + +.comment-header .comment-header-count { + display: inline-block +} + +.comment-header .comment-header-count:after { + content: " "; + display: block; + height: 2px; + position: absolute; + bottom: -2px; + left: 0; + right: 0; + background: #2e9fff +} + +.comment-form { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-flex: 1; + -ms-flex: auto; + flex: auto +} + +.placeholder { + color: #7f919e; + line-height: 30px; + font-size: 12px; + position: absolute; + top: 7px; + left: 10px; + right: 9px; + white-space: nowrap; + text-overflow: ellipsis; + cursor: text; + overflow: hidden +} + +.comment-form-wrapper { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + border: 2px solid #dbdfe4; + border-radius: 4px; + width: 100% +} + +.comment-actions,.comment-form-wrapper { + display: -webkit-box; + display: -ms-flexbox; + display: flex +} + +.comment-actions { + background: #f6f8f9; + border-radius: 0 0 2px 2px; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + height: 0; + -webkit-transition: opacity .2s linear; + transition: opacity .2s linear; + opacity: 0; + filter: alpha(opacity=0); + visibility: hidden +} + +.comment-actions .comment-actions-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + position: relative +} + +.comment-actions .comment-actions-input { + display: none +} + +.comment-actions .comment-actions-input[type=checkbox]:checked+.comment-actions-label .icon { + fill: #1d2f3a +} + +.comment-actions .comment-actions-label { + display: inline-block; + width: 34px; + height: 34px; + cursor: pointer +} + +.comment-actions .comment-actions-label .icon { + height: 18px; + margin: 8px; + display: inline-block; + color: #737474; + cursor: pointer; + fill: #c2c6cc; + -webkit-transition: all .2s; + transition: all .2s +} + +.comment-actions .comment-actions-label:hover .icon { + fill: #1d2f3a!important +} + +.comment-actions .exit { + display: none +} + +.comment-actions .emojione-list { + cursor: default; + position: absolute; + opacity: 0; + filter: alpha(opacity=0); + visibility: hidden; + list-style: none; + width: 125px; + height: 125px; + background-color: hsla(0,0%,100%,.96); + padding: 5px 0 0 5px; + border-radius: 2px; + border: 2px solid #c2c6cc; + top: -125px; + left: -2px; + margin-left: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap +} + +.comment-actions .emojione-item { + position: relative; + height: 24px; + width: 24px; + margin: 0 5px 5px 0 +} + +.comment-actions .emojione-item:before { + content: ""; + display: inline-block; + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + z-index: 4 +} + +.comment-actions .emojione-item-image { + height: 22px; + width: 22px +} + +.comment-actions .comment-actions-input[type=checkbox]:checked+.emojione .emojione-list { + opacity: 1; + filter: alpha(opacity=100); + visibility: visible!important +} + +.expanded .comment-image { + display: -webkit-box; + display: -ms-flexbox; + display: flex +} + +.expanded .comment-image .comment-image-progress { + position: relative; + height: 80px; + width: 0; + background: url("https://a.disquscdn.com/next/embed/assets/img/loader.5cc23909da9c4a9874500d7a85c4125f.gif") 50% no-repeat; + margin: 0 5px; + overflow: hidden +} + +.expanded .comment-image .comment-image-progress:before { + position: absolute; + content: ""; + display: block; + top: 55px; + bottom: 20px; + left: 0; + right: 0; + height: 5px; + width: 100%; + background-color: #dbdfe4 +} + +.expanded .comment-image .comment-image-progress .comment-image-loaded { + position: absolute; + background-color: #7f919e; + top: 55px; + left: 0; + right: 0; + bottom: 20px; + height: 5px; + width: 0 +} + +.expanded .comment-image .comment-image-list { + list-style: none; + display: -webkit-box; + display: -ms-flexbox; + display: flex +} + +.expanded .comment-image .comment-image-item { + height: 80px; + margin-left: 5px; + position: relative; + border-radius: 3px; + overflow: hidden +} + +.expanded .comment-image .comment-image-item:before { + overflow: hidden; + line-height: 0; + height: 0; + -webkit-transition: all .3s; + transition: all .3s; + content: "\70B9\51FB\79FB\9664"; + display: block; + text-align: center; + position: absolute; + bottom: 0; + left: 0; + right: 0; + width: 100%; + font-size: 12px; + background-color: rgba(0,0,0,.5); + line-height: 25px; + color: #fff +} + +.expanded .comment-image .comment-image-item:hover:before { + height: 25px +} + +.expanded .comment-image .comment-image-item .comment-image-object { + height: 100%; + border-radius: 3px; + overflow: hidden +} + +.expanded .comment-image .comment-image-item.loading .comment-image-object { + width: 20px; + margin: 0 30px +} + +.comment-form-wrapper .tips,.expanded .comment-image .comment-image-item.loading:before { + display: none +} + +.comment-form-wrapper.editing+.comment-login { + opacity: 1; + height: auto; + margin-top: 10px +} + +.comment-form-wrapper.editing .comment-form-textarea { + font: 13px/15px Helvetica Neue,Helvetica,Arial,\\5FAE\8F6F\96C5\9ED1,Microsoft YaHei; + height: 74px +} + +.comment-form-wrapper.editing .comment-image { + -webkit-transition: padding-bottom .15s ease-in-out; + transition: padding-bottom .15s ease-in-out; + background-color: rgba(16,48,68,.03) +} + +.comment-form-wrapper.editing .comment-actions { + -webkit-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; + border-top: 2px solid #dbdfe4; + opacity: 1; + height: 36px; + filter: alpha(opacity=100); + visibility: visible!important +} + +.comment-form-wrapper.editing .comment-actions-form { + -webkit-transition: all .3s .5s; + transition: all .3s .5s; + margin: 87px -2px -2px +} + +.comment-form-wrapper.editing .comment-form-submit { + opacity: 1 +} + +.comment-form-wrapper.editing { + position: relative; + display: block +} + +.comment-form-wrapper.editing .comment-tips { + position: absolute; + width: 125px; + height: 70px; + font-size: 12px; + border-radius: 4px; + top: 50%; + margin-top: -35px; + left: -125px; + background-color: #fff; + border: 2px solid #c2c6cc; + padding: 5px; + line-height: 15px; + display: none; + cursor: text +} + +.comment-form-wrapper.editing .comment-tips:before { + content: ""; + width: 0; + height: 0; + position: absolute; + right: -8px; + top: 50%; + margin-top: -8px; + border-style: solid; + border-width: 8px 0 8px 8px; + border-color: transparent #c2c6cc +} + +.comment-form-wrapper.editing .comment-tips:after { + content: ""; + width: 0; + height: 0; + position: absolute; + right: -5px; + top: 50%; + margin-top: -5px; + border-style: solid; + border-width: 5px 0 5px 5px; + border-color: transparent #fff +} + +.comment-form-wrapper.editing #tips-input:checked+.tips .comment-tips { + display: block +} + +.comment-form-wrapper.focus { + border: 2px solid #c2c6cc +} + +.comment-form-wrapper.focus .comment-actions { + border-top: 2px solid #c2c6cc +} + +.comment-form-wrapper.focus .comment-actions .comment-actions-label .icon { + fill: #656c7a +} + +.comment-form-wrapper.focus.expanded .comment-image { + border-top: 2px solid #c2c6cc +} + +.comment-form-wrapper.expanded .comment-image { + border-top: 2px solid #dbdfe4; + padding: 10px 0 8px +} + +.comment-form-wrapper.logged-in .comment-form-submit { + border-radius: 0 0 4px; + -webkit-transition: none; + transition: none; + opacity: 1 +} + +.comment-form-wrapper.logged-in .comment-actions-form { + margin: 0; + -webkit-transition: all .5s; + transition: all .5s +} + +.comment-form-wrapper.logged-in+.comment-login { + height: 0; + opacity: 0; + margin-top: -40px +} + +.comment-form-wrapper.logged-in .tips { + display: none +} + +.comment-form-wrapper.logged-in .exit { + display: block +} + +.comment-form-wrapper .comment-form-textarea { + width: 100%; + display: block; + border: none; + overflow: auto; + color: #2a2e2e; + cursor: text; + resize: none; + height: 44px; + font: 18px/30px Helvetica Neue,Helvetica,Arial,\\5FAE\8F6F\96C5\9ED1,Microsoft YaHei; + padding: 7px; + -webkit-transition: all .2s ease-in-out; + transition: all .2s ease-in-out +} + +.comment-actions-form { + display: -webkit-box; + display: -ms-flexbox; + display: flex +} + +.comment-actions-form .comment-form-submit { + z-index: 1; + border: none; + opacity: 0; + margin: -2px; + white-space: nowrap; + border-radius: 4px; + height: 38px; + width: 80px; + display: inline-block; + background-color: rgba(29,47,58,.6); + cursor: pointer; + line-height: 38px +} + +.comment-actions-form .comment-form-submit .icon { + margin: 9px; + fill: #fff; + cursor: pointer; + width: 20px; + height: 20px +} + +.comment-actions-form .comment-form-submit:hover { + background-color: rgba(29,47,58,.75) +} + +.comment-login { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + opacity: 0; + -webkit-transition: all .5s .2s; + transition: all .5s .2s; + height: 0; + margin: -40px -5px 40px; + overflow: hidden; + -ms-flex-wrap: wrap; + flex-wrap: wrap +} + +.comment-thread-form { + text-align: center; + color: #656c7a; + line-height: 32px; + font-size: 14px +} + +.comment-thread-form .comment-form-submit { + background-color: rgba(29,47,58,.6); + border: none; + white-space: nowrap; + border-radius: 4px; + height: 38px; + width: 120px; + display: inline-block; + cursor: pointer; + line-height: 38px; + margin: 10px 0; + color: #fff; + font-size: 15px +} + +.comment-thread-form .comment-form-submit:hover { + background-color: rgba(29,47,58,.75) +} + +.comment-form-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin: 10px 0 +} + +.comment-form-item .comment-form-label { + display: block; + height: 32px; + line-height: 32px; + font-size: 14px; + color: #656c7a; + width: 80px; + text-align: right; + font-weight: 700 +} + +.comment-form-item .comment-form-textarea { + background-color: #fff; + border: 2px solid #dbdfe4; + -webkit-transition: all .2s linear; + transition: all .2s linear; + padding: 2px 10px; + border-radius: 4px; + font-size: 13px; + height: 64px; + margin: 0 5px; + width: 30px; + line-height: 20px; + -webkit-box-flex: 1; + -ms-flex: auto; + flex: auto +} + +.comment-form-item .comment-form-textarea:focus { + border: 2px solid #c2c6cc +} + +.comment-form-input { + background-color: #fff; + border: 2px solid #dbdfe4; + -webkit-transition: all .2s linear; + transition: all .2s linear; + padding: 0 10px; + border-radius: 4px; + font-size: 13px; + height: 32px; + margin: 0 5px; + width: 30px; + line-height: 32px; + -webkit-box-flex: 1; + -ms-flex: auto; + flex: auto +} + +.comment-form-input:focus { + border: 2px solid #c2c6cc +} + +.comment-item-children,.comment-list { + text-align: left; + list-style: none; + padding-left: 0; + margin-left: 0; + line-height: 20px +} + +.comment-avatar,.comment-item-avatar { + display: block; + width: 48px; + height: 48px; + margin-right: 12px +} + +.comment-avatar img,.comment-item-avatar img { + border-radius: 3px; + width: 48px; + height: 48px +} + +@-webkit-keyframes disqus-loader-spinner-animation { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0) + } + + to { + -webkit-transform: rotate(1turn); + transform: rotate(1turn) + } +} + +@keyframes disqus-loader-spinner-animation { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0) + } + + to { + -webkit-transform: rotate(1turn); + transform: rotate(1turn) + } +} + +.comment-list { + font-size: 13px +} + +.comment-list p { + margin: 0 +} + +.comment-list a { + text-decoration: none; + color: #0095dd +} + +.comment-list a[href="javascript:void(0);"] { + color: #000; + cursor: default +} + +.comment-list #comment-preview { + opacity: .6 +} + +.comment-list .comment-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-bottom: 10px +} + +.comment-list .comment-item .comment-item { + margin-bottom: 0 +} + +.comment-list .comment-item-header { + line-height: 1.2; + color: #c2c6cc +} + +.comment-list .comment-item-header .comment-item-time { + color: #7f919e; + word-spacing: -2px; + font-weight: 500 +} + +.comment-list .comment-item-header .comment-item-cancel,.comment-list .comment-item-header .comment-item-name { + color: #0095dd; + font-weight: 700; + border-bottom: none +} + +.comment-list .comment-item-header .comment-item-name[href^=javascript] { + cursor: text; + color: #000 +} + +.comment-list .comment-item-header .comment-item-reply { + color: #656c7a; + font-weight: 500; + border-bottom: none +} + +.comment-list .comment-item-images { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin: 0 -5px; + -ms-flex-wrap: wrap; + flex-wrap: wrap +} + +.comment-list .comment-item-images .comment-item-imagelink { + height: 100px; + margin: 0 5px +} + +.comment-list .comment-item-images .comment-item-imagelink:hover { + border-bottom: none +} + +.comment-list .comment-item-images .comment-item-image { + height: 100% +} + +.comment-list .comment-item.transparent { + opacity: .4 +} + +.comment-list .comment-item-content { + min-height: 40px; + padding: 5px 0; + font-size: 13px +} + +.comment-list .comment-item-content .at { + padding-right: 4px +} + +.comment-list .comment-item-content .comment-item-content { + min-height: 20px +} + +.comment-list .comment-item-content img.emojione { + width: 22px; + height: 22px; + margin: 0 3px +} + +.comment-list .comment-box { + margin: 6px 0 +} + +.comment-list .comment-avatar,.comment-list .comment-avatar-image,.comment-list .comment-item-children .comment-item-avatar,.comment-list .comment-item-children .comment-item-avatar img { + width: 36px; + height: 36px; + margin-right: 6px +} + +.comment-list .comment-form-textarea { + height: 32px; + padding: 5px; + line-height: 22px; + font-size: 15px +} + +.comment-list .comment-item-main { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1 +} + +.comment-list .comment-item-children .comment-item-children .comment-item-children .comment-box,.comment-list .comment-item-children .comment-item-children .comment-item-children .comment-item-children { + margin-left: -42px +} + +.comment-loadmore { + font-weight: 500; + display: block; + text-align: center; + padding: 11px 14px; + background-color: rgba(29,47,58,.6); + color: #fff!important; + line-height: 1.1; + border-radius: 3px; + -webkit-transition: background .2s; + transition: background .2s; + text-shadow: none +} + +.comment-loadmore:hover { + background-color: rgba(29,47,58,.7); + border-bottom: none!important +} + +.comment-loadmore.loading { + background-color: #edeff2; + color: #444!important; + cursor: wait +} + +@media screen and (max-width:450px) { + .comment-item .comment-item-children .comment-box,.comment-item .comment-item-children .comment-item-children { + margin-left: 0!important + } + + .comment-item .at,.comment-item .comment-avatar,.comment-item .comment-item-children .comment-item-avatar { + display: none + } +} + +.emojione .tips { + display: none!important +} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/disqus-proxy.min.css b/libs/hexo-theme-material/1.5.2/source/css/disqus-proxy.min.css new file mode 100644 index 000000000..810ac9075 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/disqus-proxy.min.css @@ -0,0 +1 @@ +.comment-toggle{display:-webkit-box;display:-ms-flexbox;display:flex}.comment-toggle .comment-toggle-input{display:none}.comment-toggle .comment-toggle-input:checked+.comment-toggle-icon{background-color:#2aa0ff}.comment-toggle .comment-toggle-input:checked+.comment-toggle-icon:before{margin-left:11px}.comment-toggle .comment-toggle-icon{display:block;width:2pc;height:20px;background-color:#434343;border-radius:10px;box-sizing:border-box;cursor:pointer;padding:2.5px 3px;-webkit-transition:all .3s;transition:all .3s}.comment-toggle .comment-toggle-icon:before{-webkit-transition:all .3s;transition:all .3s;content:"";display:block;width:15px;height:15px;border-radius:50%;background-color:#fff}.comment-toggle .comment-toggle-button{display:block;color:#fff!important;background-color:#434343;border-radius:2px;line-height:20px;height:20px;padding:0 3px;font-size:9pt;cursor:pointer;margin:0 5px}.comment{font:13px/1.6 Helvetica Neue,Helvetica,Arial,\\5fae\8F6F\96c5\9ED1,Microsoft YaHei,sans-serif;min-height:40px;margin:5px auto;word-wrap:break-word}.comment .icon{max-width:20px}.comment *{margin:0;padding:0;box-sizing:border-box}.comment b,.comment strong{font-weight:700;color:#000}.comment :focus{outline:0}.comment abbr[title]{text-decoration:none}.comment.loading{position:relative;background:url(https://a.disquscdn.com/next/embed/assets/img/loader-bg.173909e4737a7481df14d5492b5eeb48.png) no-repeat!important;display:block;height:52px;width:54px;margin:20px auto;overflow:hidden;box-sizing:border-box}.comment.loading>*{display:none}.comment.loading:after{content:"";display:block;box-sizing:border-box;width:26px;height:26px;position:absolute;top:13px;left:15px;border-width:3px;border-style:solid;border-color:rgba(51,54,58,.4) transparent;border-radius:13px;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-animation:disqus-loader-spinner-animation .7s infinite linear!important;animation:disqus-loader-spinner-animation .7s infinite linear!important}.comment.guestbook .comment-header{display:none}.comment-box{margin:20px 0}.comment-box,.comment-header{display:-webkit-box;display:-ms-flexbox;display:flex}.comment-header{height:36px;line-height:36px;font-weight:700;font-size:15px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:2px solid #e7e9ee;color:#656c7a}.comment-header .comment-header-item{display:inline-block;border-bottom:2px solid #656c7a;margin-bottom:-2px;padding:0 7px}.comment-header .comment-show{position:relative;color:#2a2e2e;cursor:pointer;display:none}.comment-header .comment-header-count,.comment-header .comment-show{width:90pt;text-align:center;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;text-transform:capitalize}.comment-header .comment-header-count{display:inline-block}.comment-header .comment-header-count:after{content:" ";display:block;height:2px;position:absolute;bottom:-2px;left:0;right:0;background:#2e9fff}.comment-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.placeholder{color:#7f919e;line-height:30px;font-size:9pt;position:absolute;top:7px;left:10px;right:9px;white-space:nowrap;text-overflow:ellipsis;cursor:text;overflow:hidden}.comment-form-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:2px solid #dbdfe4;border-radius:4px;width:100%}.comment-actions,.comment-form-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.comment-actions{background:#f6f8f9;border-radius:0 0 2px 2px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:0;-webkit-transition:opacity .2s linear;transition:opacity .2s linear;opacity:0;filter:alpha(opacity=0);visibility:hidden}.comment-actions .comment-actions-group{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.comment-actions .comment-actions-input{display:none}.comment-actions .comment-actions-input[type=checkbox]:checked+.comment-actions-label .icon{fill:#1d2f3a}.comment-actions .comment-actions-label{display:inline-block;width:34px;height:34px;cursor:pointer}.comment-actions .comment-actions-label .icon{height:18px;margin:8px;display:inline-block;color:#737474;cursor:pointer;fill:#c2c6cc;-webkit-transition:all .2s;transition:all .2s}.comment-actions .comment-actions-label:hover .icon{fill:#1d2f3a!important}.comment-actions .exit{display:none}.comment-actions .emojione-list{cursor:default;position:absolute;opacity:0;filter:alpha(opacity=0);visibility:hidden;list-style:none;width:125px;height:125px;background-color:hsla(0,0%,100%,.96);padding:5px 0 0 5px;border-radius:2px;border:2px solid #c2c6cc;top:-125px;left:-2px;margin-left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.comment-actions .emojione-item{position:relative;height:24px;width:24px;margin:0 5px 5px 0}.comment-actions .emojione-item:before{content:"";display:inline-block;position:absolute;left:0;top:0;bottom:0;right:0;z-index:4}.comment-actions .emojione-item-image{height:22px;width:22px}.comment-actions .comment-actions-input[type=checkbox]:checked+.emojione .emojione-list{opacity:1;filter:alpha(opacity=100);visibility:visible!important}.expanded .comment-image{display:-webkit-box;display:-ms-flexbox;display:flex}.expanded .comment-image .comment-image-progress{position:relative;height:5pc;width:0;background:url(https://a.disquscdn.com/next/embed/assets/img/loader.5cc23909da9c4a9874500d7a85c4125f.gif) 50% no-repeat;margin:0 5px;overflow:hidden}.expanded .comment-image .comment-image-progress:before{position:absolute;content:"";display:block;top:55px;bottom:20px;left:0;right:0;height:5px;width:100%;background-color:#dbdfe4}.expanded .comment-image .comment-image-progress .comment-image-loaded{position:absolute;background-color:#7f919e;top:55px;left:0;right:0;bottom:20px;height:5px;width:0}.expanded .comment-image .comment-image-list{list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex}.expanded .comment-image .comment-image-item{height:5pc;margin-left:5px;position:relative;border-radius:3px;overflow:hidden}.expanded .comment-image .comment-image-item:before{overflow:hidden;line-height:0;height:0;-webkit-transition:all .3s;transition:all .3s;content:"\70B9\51FB\79FB\9664";display:block;text-align:center;position:absolute;bottom:0;left:0;right:0;width:100%;font-size:9pt;background-color:rgba(0,0,0,.5);line-height:25px;color:#fff}.expanded .comment-image .comment-image-item:hover:before{height:25px}.expanded .comment-image .comment-image-item .comment-image-object{height:100%;border-radius:3px;overflow:hidden}.expanded .comment-image .comment-image-item.loading .comment-image-object{width:20px;margin:0 30px}.comment-form-wrapper .tips,.expanded .comment-image .comment-image-item.loading:before{display:none}.comment-form-wrapper.editing+.comment-login{opacity:1;height:auto;margin-top:10px}.comment-form-wrapper.editing .comment-form-textarea{font:13px/15px Helvetica Neue,Helvetica,Arial,\\5fae\8F6F\96c5\9ED1,Microsoft YaHei;height:74px}.comment-form-wrapper.editing .comment-image{-webkit-transition:padding-bottom .15s ease-in-out;transition:padding-bottom .15s ease-in-out;background-color:rgba(16,48,68,.03)}.comment-form-wrapper.editing .comment-actions{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;border-top:2px solid #dbdfe4;opacity:1;height:36px;filter:alpha(opacity=100);visibility:visible!important}.comment-form-wrapper.editing .comment-actions-form{-webkit-transition:all .3s .5s;transition:all .3s .5s;margin:87px -2px -2px}.comment-form-wrapper.editing .comment-form-submit{opacity:1}.comment-form-wrapper.editing{position:relative;display:block}.comment-form-wrapper.editing .comment-tips{position:absolute;width:125px;height:70px;font-size:9pt;border-radius:4px;top:50%;margin-top:-35px;left:-125px;background-color:#fff;border:2px solid #c2c6cc;padding:5px;line-height:15px;display:none;cursor:text}.comment-form-wrapper.editing .comment-tips:before{content:"";width:0;height:0;position:absolute;right:-8px;top:50%;margin-top:-8px;border-style:solid;border-width:8px 0 8px 8px;border-color:transparent #c2c6cc}.comment-form-wrapper.editing .comment-tips:after{content:"";width:0;height:0;position:absolute;right:-5px;top:50%;margin-top:-5px;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent #fff}.comment-form-wrapper.editing #tips-input:checked+.tips .comment-tips{display:block}.comment-form-wrapper.focus{border:2px solid #c2c6cc}.comment-form-wrapper.focus .comment-actions{border-top:2px solid #c2c6cc}.comment-form-wrapper.focus .comment-actions .comment-actions-label .icon{fill:#656c7a}.comment-form-wrapper.focus.expanded .comment-image{border-top:2px solid #c2c6cc}.comment-form-wrapper.expanded .comment-image{border-top:2px solid #dbdfe4;padding:10px 0 8px}.comment-form-wrapper.logged-in .comment-form-submit{border-radius:0 0 4px;-webkit-transition:none;transition:none;opacity:1}.comment-form-wrapper.logged-in .comment-actions-form{margin:0;-webkit-transition:all .5s;transition:all .5s}.comment-form-wrapper.logged-in+.comment-login{height:0;opacity:0;margin-top:-40px}.comment-form-wrapper.logged-in .tips{display:none}.comment-form-wrapper.logged-in .exit{display:block}.comment-form-wrapper .comment-form-textarea{width:100%;display:block;border:none;overflow:auto;color:#2a2e2e;cursor:text;resize:none;height:44px;font:18px/30px Helvetica Neue,Helvetica,Arial,\\5fae\8F6F\96c5\9ED1,Microsoft YaHei;padding:7px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.comment-actions-form{display:-webkit-box;display:-ms-flexbox;display:flex}.comment-actions-form .comment-form-submit{z-index:1;border:none;opacity:0;margin:-2px;white-space:nowrap;border-radius:4px;height:38px;width:5pc;display:inline-block;background-color:rgba(29,47,58,.6);cursor:pointer;line-height:38px}.comment-actions-form .comment-form-submit .icon{margin:9px;fill:#fff;cursor:pointer;width:20px;height:20px}.comment-actions-form .comment-form-submit:hover{background-color:rgba(29,47,58,.75)}.comment-login{display:-webkit-box;display:-ms-flexbox;display:flex;opacity:0;-webkit-transition:all .5s .2s;transition:all .5s .2s;height:0;margin:-40px -5px 40px;overflow:hidden;-ms-flex-wrap:wrap;flex-wrap:wrap}.comment-thread-form{text-align:center;color:#656c7a;line-height:2pc;font-size:14px}.comment-thread-form .comment-form-submit{background-color:rgba(29,47,58,.6);border:none;white-space:nowrap;border-radius:4px;height:38px;width:90pt;display:inline-block;cursor:pointer;line-height:38px;margin:10px 0;color:#fff;font-size:15px}.comment-thread-form .comment-form-submit:hover{background-color:rgba(29,47,58,.75)}.comment-form-item{display:-webkit-box;display:-ms-flexbox;display:flex;margin:10px 0}.comment-form-item .comment-form-label{display:block;height:2pc;line-height:2pc;font-size:14px;color:#656c7a;width:5pc;text-align:right;font-weight:700}.comment-form-item .comment-form-textarea{background-color:#fff;border:2px solid #dbdfe4;-webkit-transition:all .2s linear;transition:all .2s linear;padding:2px 10px;border-radius:4px;font-size:13px;height:4pc;margin:0 5px;width:30px;line-height:20px;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.comment-form-item .comment-form-textarea:focus{border:2px solid #c2c6cc}.comment-form-input{background-color:#fff;border:2px solid #dbdfe4;-webkit-transition:all .2s linear;transition:all .2s linear;padding:0 10px;border-radius:4px;font-size:13px;height:2pc;margin:0 5px;width:30px;line-height:2pc;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.comment-form-input:focus{border:2px solid #c2c6cc}.comment-item-children,.comment-list{text-align:left;list-style:none;padding-left:0;margin-left:0;line-height:20px}.comment-avatar,.comment-item-avatar{display:block;width:3pc;height:3pc;margin-right:9pt}.comment-avatar img,.comment-item-avatar img{border-radius:3px;width:3pc;height:3pc}@-webkit-keyframes disqus-loader-spinner-animation{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes disqus-loader-spinner-animation{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.comment-list{font-size:13px}.comment-list p{margin:0}.comment-list a{text-decoration:none;color:#0095dd}.comment-list a[href="javascript:void(0);"]{color:#000;cursor:default}.comment-list #comment-preview{opacity:.6}.comment-list .comment-item{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:10px}.comment-list .comment-item .comment-item{margin-bottom:0}.comment-list .comment-item-header{line-height:1.2;color:#c2c6cc}.comment-list .comment-item-header .comment-item-time{color:#7f919e;word-spacing:-2px;font-weight:500}.comment-list .comment-item-header .comment-item-cancel,.comment-list .comment-item-header .comment-item-name{color:#0095dd;font-weight:700;border-bottom:none}.comment-list .comment-item-header .comment-item-name[href^=javascript]{cursor:text;color:#000}.comment-list .comment-item-header .comment-item-reply{color:#656c7a;font-weight:500;border-bottom:none}.comment-list .comment-item-images{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 -5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.comment-list .comment-item-images .comment-item-imagelink{height:75pt;margin:0 5px}.comment-list .comment-item-images .comment-item-imagelink:hover{border-bottom:none}.comment-list .comment-item-images .comment-item-image{height:100%}.comment-list .comment-item.transparent{opacity:.4}.comment-list .comment-item-content{min-height:40px;padding:5px 0;font-size:13px}.comment-list .comment-item-content .at{padding-right:4px}.comment-list .comment-item-content .comment-item-content{min-height:20px}.comment-list .comment-item-content img.emojione{width:22px;height:22px;margin:0 3px}.comment-list .comment-box{margin:6px 0}.comment-list .comment-avatar,.comment-list .comment-avatar-image,.comment-list .comment-item-children .comment-item-avatar,.comment-list .comment-item-children .comment-item-avatar img{width:36px;height:36px;margin-right:6px}.comment-list .comment-form-textarea{height:2pc;padding:5px;line-height:22px;font-size:15px}.comment-list .comment-item-main{-webkit-box-flex:1;-ms-flex:1;flex:1}.comment-list .comment-item-children .comment-item-children .comment-item-children .comment-box,.comment-list .comment-item-children .comment-item-children .comment-item-children .comment-item-children{margin-left:-42px}.comment-loadmore{font-weight:500;display:block;text-align:center;padding:11px 14px;background-color:rgba(29,47,58,.6);color:#fff!important;line-height:1.1;border-radius:3px;-webkit-transition:background .2s;transition:background .2s;text-shadow:none}.comment-loadmore:hover{background-color:rgba(29,47,58,.7);border-bottom:none!important}.comment-loadmore.loading{background-color:#edeff2;color:#444!important;cursor:wait}@media screen and (max-width:450px){.comment-item .comment-item-children .comment-box,.comment-item .comment-item-children .comment-item-children{margin-left:0!important}.comment-item .at,.comment-item .comment-avatar,.comment-item .comment-item-children .comment-item-avatar{display:none}}.emojione .tips{display:none!important} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/duoshuo.css b/libs/hexo-theme-material/1.5.2/source/css/duoshuo.css new file mode 100644 index 000000000..a017b9308 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/duoshuo.css @@ -0,0 +1,479 @@ +#comments { + background-color: #eee; + padding: 2pc +} +#comments h4 { + font-size: 13px; + line-height: 18px; + color: #8a8a8a; + margin: 0 +} +#ds-thread { + background-color: #eee; + display: flex; + box-sizing: border-box; + flex-direction: column; + justify-content: flex-start; + align-items: stretch; + position: relative +} +@media screen and (max-width:480px) { + #ds-thread { + padding: 0 + } +} +#ds-thread #ds-reset .ds-comment-body p { + padding-bottom: 5px +} +#ds-thread #ds-reset .ds-replybox { + margin: 20px 0 20px 0; + padding: 0 0 0 40px +} +#ds-reset .ds-avatar, +#ds-reset .ds-avatar img { + background: 0; + width: 30px; + height: 30px; + -webkit-border-radius: 50%; + border-radius: 50%; + box-shadow: 0; + border: none +} +@media screen and (max-width:480px) { + width: auto; + height: auto +} +#ds-thread #ds-reset ul.ds-children .ds-avatar, +#ds-thread #ds-reset ul.ds-children .ds-avatar img { + width: 30px; + height: 30px; + border: none!important +} +#ds-thread #ds-reset .ds-replybox .ds-avatar { + top: 5px width: 30px; + height: 30px; + border: none +} +#ds-thread #ds-reset .ds-replybox .ds-avatar img { + width: 30px!important; + height: 30px!important; + border: none +} +#ds-thread #ds-reset .ds-user-name { + font-size: 13px +} +#ds-thread #ds-reset .ds-comment-body, +#ds-thread #ds-reset ul.ds-children .ds-comment-body { + padding-left: 60px +} +#ds-thread #ds-reset ul.ds-children { + margin-left: 3pc +} +#ds-reset .ds-highlight { + color: #000 +} +#ds-thread #ds-reset li.ds-post, +#ds-thread #ds-reset .ds-post-self { + border-top: 0 +} +#ds-thread #ds-reset .ds-post-toolbar span, +#ds-thread #ds-reset .ds-post-toolbar input, +#ds-thread #ds-reset .ds-post-toolbar label, +#ds-thread #ds-reset .ds-post-toolbar a { + display: none +} +#ds-thread #ds-reset .ds-account-control ul { + border: 0; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12) +} +#ds-thread #ds-reset a.ds-like-thread-button { + height: 30px; + line-height: 30px; + margin: 0; + min-width: 50px; + padding: 0 14px; + display: inline-block; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 14px; + font-weight: 400; + text-transform: uppercase; + letter-spacing: 0; + overflow: hidden; + will-change: box-shadow; + transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1); + outline: 0; + cursor: pointer; + text-decoration: none; + text-align: center; + vertical-align: middle; + border: 0; + background: rgba(158, 158, 158, .2); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + color: #fff; + background-color: #F06292; + text-shadow: 0 +} +#ds-thread #ds-reset .ds-thread-liked{ + background-color: #FF80AB !important; +} +#ds-thread #ds-reset li.ds-tab, +#ds-wrapper #ds-reset button { + height: 30px; + line-height: 30px; + margin: 0; + min-width: 50px; + padding: 0 14px; + display: inline-block; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 14px; + font-weight: 400; + text-transform: uppercase; + letter-spacing: 0; + overflow: hidden; + will-change: box-shadow; + transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1); + outline: 0; + cursor: pointer; + text-decoration: none; + text-align: center; + vertical-align: middle; + border: 0; + background: 0; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + text-shadow: 0 +} +#ds-thread #ds-reset li.ds-tab:hover, +#ds-wrapper #ds-reset button:hover { + background-color: rgba(102, 102, 102, 0.1) +} +#ds-thread #ds-reset li.ds-tab:active, +#ds-wrapper #ds-reset button:active { + background-color: rgba(102, 102, 102, 0.1); + -webkit-box-shadow: none; + box-shadow: none +} +#ds-thread #ds-reset li.ds-tab a.ds-current { + border: 0; + background-color: rgba(255, 255, 255, 0) +} +#ds-thread #ds-reset a.ds-like-thread-button span { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 14px; + color: #fff; + font-weight: 400 +} +#ds-thread #ds-reset li.ds-tab a { + -webkit-border-radius: 0; + border-radius: 0; + text-shadow: 0 +} +#ds-thread #ds-reset .ds-textarea-wrapper { + background: 0; + border: 0; + border-bottom: 1px solid rgba(0, 0, 0, .12); + width: 95%; + margin: 0; + padding: 0; + float: left +} +#ds-thread #ds-reset .ds-post-toolbar { + width: 5%; + padding: 0; + margin: 0; + box-shadow: 0; + float: left +} +#ds-thread #ds-reset .ds-post-options { + border: 0; + -webkit-border-bottom-left-radius: 0; + background: 0 +} +#ds-thread #ds-reset .ds-post-button { + height: 35px; + width: 35px; + line-height: 36px; + margin: 0; + padding: 0; + border-radius: 50%; + display: inline-block; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 0; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0; + overflow: hidden; + will-change: box-shadow; + transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1); + outline: 0; + cursor: pointer; + text-decoration: none; + text-align: center; + vertical-align: middle; + border: 0; + background: rgba(158, 158, 158, .2); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + color: #fff; +} +#ds-thread #ds-reset .ds-post-button:hover { + box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 3px 7px 0 rgba(0, 0, 0, .12); + color: #fff +} +#ds-thread #ds-reset .ds-meta { + border-bottom: 0 +} +#ds-thread #ds-reset #ds-bubble { + border: 0; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + background-color: rgba(255, 255, 255, .9); + border-radius: 3px +} +#ds-thread #ds-reset .ds-textarea-wrapper textarea { + height: 16px!important; + font-size: 16px!important; + line-height: 16px!important +} +#ds-thread #ds-reset .ds-like-tooltip { + box-shadow: 0 2px 24px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 55px 0 rgba(0, 0, 0, .12); + border-radius: 2px; + background: #FFF; + border: 0 +} +#ds-wrapper #ds-reset .ds-dialog-inner { + box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 1px 3px 7px 0 rgba(0, 0, 0, .12), 0px 0 20px 5px rgba(0, 0, 0, .12); + border: 0; + background: #fff +} +#ds-wrapper #ds-reset .ds-dialog-body { + padding: 0; +} +#ds-thread #ds-reset .ds-powered-by { + display: none +} +#ds-thread #ds-reset .ds-comments, +#ds-thread #ds-reset .ds-paginator { + border-bottom: 0 +} +#ds-wrapper #ds-reset .ds-icons-32 { + height: 100px +} +#ds-wrapper #ds-reset .ds-icons-32::before { + content: 'Welcome'; + font-family: 'Roboto'; + font-size: 24px; + color: #fff; + text-shadow: none; + position: relative; + float: left; + top: 60px; + left: 40px +} +#ds-wrapper #ds-reset .ds-service-list { + margin: 10px 0 10px 0; + text-align: center +} +#ds-wrapper #ds-reset .ds-actions { + padding-bottom: 30px; + padding-top: 12px; + margin: 10px 10px 20px 10px; + color: rgba(0, 0, 0, .5); + font-size: 13px +} +#ds-wrapper #ds-reset .ds-actions label { + margin-right: 12px +} +#ds-wrapper #ds-reset .ds-quote { + margin: 0; + padding: 20px 20px +} +#ds-reset .ds-service-icon, +#ds-reset .ds-service-icon-grey { + background: 0; + width: 5px!important +} +#ds-reset input[type='checkbox'] { + width: 12px +} +#ds-wrapper #ds-reset .ds-textarea-wrapper { + border: 0; + margin: 0 +} +#ds-wrapper #ds-reset .ds-dialog-footer { + border-top: 1px solid rgba(0, 0, 0, .1); + display: none +} +#ds-wrapper #ds-reset .ds-control-group { + margin-left: 40px +} +#ds-thread #ds-reset .ds-post-liked a.ds-post-likes { + font-size: 12px +} +#ds-wrapper #ds-reset .ds-control-group input { + border: 0; + box-shadow: none; + border-bottom: 1px solid rgba(0, 0, 0, .12); + display: block; + font-size: 16px; + font-family: "Helvetica", "Arial", sans-serif; + margin: 0; + padding: 4px 0; + width: 100%; + background: 0; + text-align: left; + color: inherit +} +#ds-wrapper #ds-reset .ds-dialog-body button { + margin: 10px 0 20px 40px +} +#ds-thread #ds-reset .ds-login-buttons .ds-service-list li { + margin: 0; + margin-left: 5px; + text-align: center +} +#ds-thread #ds-reset .ds-login-buttons .ds-service-list li a { + color: rgba(0, 0, 0, .6)!important +} +#ds-reset .ds-service-link { + background: 0; + padding-left: 0 +} +#ds-reset .ds-icon { + background: 0; + display: none +} +#ds-thread #ds-reset .ds-comment-actions a { + font-size: 0; + color: rgba(0, 0, 0, .24)!important +} +#ds-thread #ds-reset .ds-comment-actions a:hover { + color: rgba(0, 0, 0, .4)!important +} +#ds-thread #ds-reset .ds-comment-footer { + line-height: normal +} +#ds-thread #ds-reset .ds-time { + font-size: 13px; + position: relative; + top: -8px +} +.ds-post-reply { + left: -20px +} +.ds-post-likes::before { + content: "\E8DC"; + font-family: 'Material Icons'; + font-size: 24px +} +.ds-post-reply::before { + content: "\E0BF"; + font-family: 'Material Icons'; + font-size: 24px +} +.ds-post-repost::before { + content: "\E80D"; + font-family: 'Material Icons'; + font-size: 24px +} +.ds-post-report { + color: rgba(0, 0, 0, .14)!important +} +.ds-post-report::before { + content: "\E8B2"; + font-family: 'Material Icons'; + font-size: 24px; + display: none +} +.ds-weixin::before { + content: "\f1d7"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-weibo::before { + content: "\f18a"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-qq::before { + content: "\f1d6"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-renren::before { + content: "\f18b"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-douban::before { + content: "\f10e"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-kaixin::before { + content: "\f004"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-baidu::before { + content: "\f1b0"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-google::before { + content: "\f1a0"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-qzone::before { + content: "\f005"; + font-family: 'FontAwesome'; + margin-right: 3px +} +.ds-meta .ds-like-panel { + margin-left: 10px!important +} +#ds-thread #ds-reset .ds-post-button::before { + content: '\E5CA'; + font-family: 'Material Icons'; + font-weight: 100; + font-size: 20px +} +.ds-icons-32 a { + background: none!important +} +.ds-dialog-body h2 { + display: none!important +} +#ds-thread.ds-narrow #ds-reset .ds-post-button { + width: 35px +} +.ds-comments-info{ + display: none; +} +.ds-comments-info .ds-sort { + display: none!important +} +@media screen and (max-width:480px) { + .ds-comments-tabs, + .ds-comments-info { + display: none!important + } +} +#ds-reset #ds-ctx { + max-width: none +} +#ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-content { + margin: 5px 0; + line-height: 20px +} +#ds-reset #ds-ctx .ds-comment-actions { + margin-top: 10px; + position: relative +} +#ds-reset #ds-ctx .ds-ctx-entry:hover .ds-comment-actions { + display: none +} +#ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-head a { + top: 0 +} +#ds-thread.ds-narrow #ds-reset .ds-avatar img { + border: none +} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/duoshuo.min.css b/libs/hexo-theme-material/1.5.2/source/css/duoshuo.min.css new file mode 100644 index 000000000..6b2b1ad6b --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/duoshuo.min.css @@ -0,0 +1 @@ +#comments,#ds-thread{background-color:#eee}#comments h4,#ds-thread #ds-reset .ds-user-name{font-size:13px}#comments{padding:2pc}#comments h4{line-height:18px;color:#8a8a8a;margin:0}#ds-thread{display:flex;box-sizing:border-box;flex-direction:column;justify-content:flex-start;align-items:stretch;position:relative}@media screen and (max-width:480px) {#ds-thread{padding:0}}#ds-thread #ds-reset .ds-comment-body p{padding-bottom:5px}#ds-thread #ds-reset .ds-replybox{margin:20px 0;padding:0 0 0 40px}#ds-reset .ds-avatar,#ds-reset .ds-avatar img{background:0;width:30px;height:30px;-webkit-border-radius:50%;border-radius:50%;box-shadow:0;border:none}#ds-thread #ds-reset ul.ds-children .ds-avatar,#ds-thread #ds-reset ul.ds-children .ds-avatar img{width:30px;height:30px;border:none!important}#ds-thread #ds-reset .ds-replybox .ds-avatar{top:5px width: 30px;height:30px;border:none}#ds-thread #ds-reset .ds-replybox .ds-avatar img{width:30px!important;height:30px!important;border:none}#ds-thread #ds-reset .ds-comment-body,#ds-thread #ds-reset ul.ds-children .ds-comment-body{padding-left:60px}#ds-thread #ds-reset a.ds-like-thread-button,#ds-thread #ds-reset li.ds-tab,#ds-wrapper #ds-reset button{text-shadow:0;font-size:14px;font-weight:400;border:0;height:30px;line-height:30px;min-width:50px;padding:0 14px}#ds-thread #ds-reset ul.ds-children{margin-left:3pc}#ds-reset .ds-highlight{color:#000}#ds-thread #ds-reset .ds-post-self,#ds-thread #ds-reset li.ds-post{border-top:0}#ds-thread #ds-reset .ds-post-toolbar a,#ds-thread #ds-reset .ds-post-toolbar input,#ds-thread #ds-reset .ds-post-toolbar label,#ds-thread #ds-reset .ds-post-toolbar span{display:none}#ds-thread #ds-reset .ds-post-button,#ds-thread #ds-reset a.ds-like-thread-button,#ds-thread #ds-reset li.ds-tab,#ds-wrapper #ds-reset button{text-align:center;margin:0;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;text-transform:uppercase;letter-spacing:0;overflow:hidden;will-change:box-shadow;transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);outline:0;cursor:pointer;text-decoration:none;vertical-align:middle;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}#ds-thread #ds-reset .ds-account-control ul{border:0;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}#ds-thread #ds-reset a.ds-like-thread-button{background:rgba(158,158,158,.2);color:#fff;background-color:#F06292}#ds-thread #ds-reset .ds-thread-liked{background-color:#FF80AB!important}#ds-thread #ds-reset li.ds-tab,#ds-wrapper #ds-reset button{background:0}#ds-thread #ds-reset li.ds-tab:hover,#ds-wrapper #ds-reset button:hover{background-color:rgba(102,102,102,.1)}#ds-thread #ds-reset li.ds-tab:active,#ds-wrapper #ds-reset button:active{background-color:rgba(102,102,102,.1);-webkit-box-shadow:none;box-shadow:none}#ds-thread #ds-reset li.ds-tab a.ds-current{border:0;background-color:rgba(255,255,255,0)}#ds-thread #ds-reset a.ds-like-thread-button span{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;color:#fff;font-weight:400}#ds-thread #ds-reset li.ds-tab a{-webkit-border-radius:0;border-radius:0;text-shadow:0}#ds-thread #ds-reset .ds-textarea-wrapper{background:0;border:0;border-bottom:1px solid rgba(0,0,0,.12);width:95%;margin:0;padding:0;float:left}#ds-thread #ds-reset .ds-comments,#ds-thread #ds-reset .ds-meta,#ds-thread #ds-reset .ds-paginator{border-bottom:0}#ds-thread #ds-reset .ds-post-toolbar{width:5%;padding:0;margin:0;box-shadow:0;float:left}#ds-thread #ds-reset .ds-post-options{border:0;-webkit-border-bottom-left-radius:0;background:0}#ds-thread #ds-reset .ds-post-button{height:35px;width:35px;line-height:36px;padding:0;border-radius:50%;font-size:0;font-weight:500;border:0;background:rgba(158,158,158,.2);color:#fff}#ds-thread #ds-reset .ds-post-button:hover{box-shadow:0 5px 5px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 3px 7px 0 rgba(0,0,0,.12);color:#fff}#ds-thread #ds-reset #ds-bubble{border:0;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);background-color:rgba(255,255,255,.9);border-radius:3px}#ds-thread #ds-reset .ds-textarea-wrapper textarea{height:16px!important;font-size:16px!important;line-height:16px!important}#ds-thread #ds-reset .ds-like-tooltip{box-shadow:0 2px 24px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 55px 0 rgba(0,0,0,.12);border-radius:2px;background:#FFF;border:0}#ds-wrapper #ds-reset .ds-dialog-inner{box-shadow:0 10px 10px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),1px 3px 7px 0 rgba(0,0,0,.12),0 0 20px 5px rgba(0,0,0,.12);border:0;background:#fff}#ds-wrapper #ds-reset .ds-dialog-body{padding:0}#ds-thread #ds-reset .ds-powered-by{display:none}#ds-wrapper #ds-reset .ds-icons-32{height:100px}#ds-wrapper #ds-reset .ds-icons-32::before{content:'Welcome';font-family:Roboto;font-size:24px;color:#fff;text-shadow:none;position:relative;float:left;top:60px;left:40px}#ds-wrapper #ds-reset .ds-service-list{margin:10px 0;text-align:center}#ds-wrapper #ds-reset .ds-actions{padding-bottom:30px;padding-top:12px;margin:10px 10px 20px;color:rgba(0,0,0,.5);font-size:13px}#ds-wrapper #ds-reset .ds-actions label{margin-right:12px}#ds-wrapper #ds-reset .ds-quote{margin:0;padding:20px}#ds-reset .ds-service-icon,#ds-reset .ds-service-icon-grey{background:0;width:5px!important}#ds-reset input[type=checkbox]{width:12px}#ds-wrapper #ds-reset .ds-textarea-wrapper{border:0;margin:0}#ds-wrapper #ds-reset .ds-dialog-footer{border-top:1px solid rgba(0,0,0,.1);display:none}#ds-wrapper #ds-reset .ds-control-group{margin-left:40px}#ds-thread #ds-reset .ds-post-liked a.ds-post-likes{font-size:12px}#ds-wrapper #ds-reset .ds-control-group input{border:0;box-shadow:none;border-bottom:1px solid rgba(0,0,0,.12);display:block;font-size:16px;font-family:Helvetica,Arial,sans-serif;margin:0;padding:4px 0;width:100%;background:0;text-align:left;color:inherit}#ds-wrapper #ds-reset .ds-dialog-body button{margin:10px 0 20px 40px}#ds-thread #ds-reset .ds-login-buttons .ds-service-list li{margin:0 0 0 5px;text-align:center}#ds-thread #ds-reset .ds-login-buttons .ds-service-list li a{color:rgba(0,0,0,.6)!important}#ds-reset .ds-service-link{background:0;padding-left:0}#ds-reset .ds-icon{background:0;display:none}#ds-thread #ds-reset .ds-comment-actions a{font-size:0;color:rgba(0,0,0,.24)!important}#ds-thread #ds-reset .ds-comment-actions a:hover{color:rgba(0,0,0,.4)!important}#ds-thread #ds-reset .ds-comment-footer{line-height:normal}#ds-thread #ds-reset .ds-time{font-size:13px;position:relative;top:-8px}.ds-post-likes::before,.ds-post-reply::before,.ds-post-report::before,.ds-post-repost::before{font-family:'Material Icons';font-size:24px}.ds-post-reply{left:-20px}.ds-post-likes::before{content:"\E8DC"}.ds-post-reply::before{content:"\E0BF"}.ds-post-repost::before{content:"\E80D"}.ds-post-report{color:rgba(0,0,0,.14)!important}.ds-post-report::before{content:"\E8B2";display:none}.ds-baidu::before,.ds-douban::before,.ds-google::before,.ds-kaixin::before,.ds-qq::before,.ds-qzone::before,.ds-renren::before,.ds-weibo::before,.ds-weixin::before{font-family:FontAwesome;margin-right:3px}.ds-weixin::before{content:"\f1d7"}.ds-weibo::before{content:"\f18a"}.ds-qq::before{content:"\f1d6"}.ds-renren::before{content:"\f18b"}.ds-douban::before{content:"\f10e"}.ds-kaixin::before{content:"\f004"}.ds-baidu::before{content:"\f1b0"}.ds-google::before{content:"\f1a0"}.ds-qzone::before{content:"\f005"}.ds-meta .ds-like-panel{margin-left:10px!important}#ds-thread #ds-reset .ds-post-button::before{content:'\E5CA';font-family:'Material Icons';font-weight:100;font-size:20px}.ds-icons-32 a{background:0 0!important}.ds-dialog-body h2{display:none!important}#ds-thread.ds-narrow #ds-reset .ds-post-button{width:35px}.ds-comments-info{display:none}.ds-comments-info .ds-sort{display:none!important}@media screen and (max-width:480px) {.ds-comments-info,.ds-comments-tabs{display:none!important}}#ds-reset #ds-ctx{max-width:none}#ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-content{margin:5px 0;line-height:20px}#ds-reset #ds-ctx .ds-comment-actions{margin-top:10px;position:relative}#ds-reset #ds-ctx .ds-ctx-entry:hover .ds-comment-actions{display:none}#ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-head a{top:0}#ds-thread.ds-narrow #ds-reset .ds-avatar img{border:none} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/fontawesome.min.css b/libs/hexo-theme-material/1.5.2/source/css/fontawesome.min.css new file mode 100644 index 000000000..540440ce8 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/fontawesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/libs/hexo-theme-material/1.5.2/source/css/gallery.min.css b/libs/hexo-theme-material/1.5.2/source/css/gallery.min.css new file mode 100644 index 000000000..376c1864f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/gallery.min.css @@ -0,0 +1 @@ +.table-wrapper,pre code{overflow-x:auto}.panel,.table-wrapper,pre{-webkit-overflow-scrolling:touch}#main,#main .thumb,#main .thumb>.image,.poptrox-overlay{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}sub,sup{position:relative;font-size:.8em}blockquote,em,i{font-style:italic}code,pre{font-family:"Courier New",monospace}blockquote,p,pre{margin:0 0 2em}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}body{-webkit-text-size-adjust:none;-ms-overflow-style:scrollbar;background:#242629}*,:after,:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}@-moz-keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-viewport{width:device-width}body.loading *,body.loading :after,body.loading :before,body.resizing *,body.resizing :after,body.resizing :before{-moz-animation:none!important;-webkit-animation:none!important;-ms-animation:none!important;animation:none!important;-moz-transition:none!important;-webkit-transition:none!important;-ms-transition:none!important;transition:none!important}body,input,select,textarea{color:#a0a0a1;font-family:"Source Sans Pro",Helvetica,sans-serif;font-size:15pt;font-weight:300;letter-spacing:.025em;line-height:1.65}@media screen and (max-width:1680px) {body,input,select,textarea{font-size:11pt}}a{-moz-transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;border-bottom:dotted 1px;color:#34a58e;text-decoration:none}a:hover{border-bottom-color:transparent;color:#34a58e!important}b,strong{color:#fff;font-weight:300}h1,h2,h3,h4,h5,h6{color:#fff;font-weight:300;letter-spacing:.1em;line-height:1.5;margin:0 0 1em;text-transform:uppercase}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h1{font-size:2em}h2{font-size:1.25em}h3{font-size:1.1em}h4{font-size:1em}h5{font-size:.9em}h6{font-size:.7em}@media screen and (max-width:736px) {h2{font-size:1em}h3{font-size:.9em}h4{font-size:.8em}h5,h6{font-size:.7em}}sub{top:.5em}sup{top:-.5em}code,pre{font-size:.9em}blockquote{border-left:4px #36383c;padding:.5em 0 .5em 2em}code{background:#34363b;border:1px solid #36383c;margin:0 .25em;padding:.25em .65em}pre code{display:block;line-height:1.75;padding:1em 1.5em}hr{border:0;border-bottom:solid 1px #36383c;margin:2em 0}hr.major{margin:3em 0}.align-left{text-align:left}.align-center{text-align:center}.align-right{text-align:right}.button,button,input[type=submit],input[type=reset],input[type=button]{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;background-color:transparent;border:0;border-radius:0;box-shadow:inset 0 0 0 2px #36383c;color:#fff!important;cursor:pointer;display:inline-block;font-size:.9em;font-weight:300;height:3.05556em;letter-spacing:.1em;line-height:3.05556em;padding:0 2.5em;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:hover,button:hover,input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover{box-shadow:inset 0 0 0 2px #34a58e;color:#34a58e!important}.button:hover:active,button:hover:active,input[type=submit]:hover:active,input[type=reset]:hover:active,input[type=button]:hover:active{background-color:rgba(52,165,142,.15);color:#34a58e!important}.button.icon,button.icon,input[type=submit].icon,input[type=reset].icon,input[type=button].icon{padding-left:1.35em}.button.icon:before,button.icon:before,input[type=submit].icon:before,input[type=reset].icon:before,input[type=button].icon:before{margin-right:.5em}.button.fit,button.fit,input[type=submit].fit,input[type=reset].fit,input[type=button].fit{display:block;margin:0 0 1em;width:100%}.button.small,button.small,input[type=submit].small,input[type=reset].small,input[type=button].small{font-size:.8em}.button.big,button.big,input[type=submit].big,input[type=reset].big,input[type=button].big{font-size:1.35em}.button.special,button.special,input[type=submit].special,input[type=reset].special,input[type=button].special{background-color:#34a58e;box-shadow:none}.button.special:hover,button.special:hover,input[type=submit].special:hover,input[type=reset].special:hover,input[type=button].special:hover{background-color:#47c5ab;color:#fff!important}.button.special:hover:active,button.special:hover:active,input[type=submit].special:hover:active,input[type=reset].special:hover:active,input[type=button].special:hover:active{background-color:#287e6d}.button.disabled,.button:disabled,button.disabled,button:disabled,input[type=submit].disabled,input[type=submit]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=button].disabled,input[type=button]:disabled{-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none;pointer-events:none;opacity:.35}form{margin:0 0 2em}form .field{margin:0 0 1.3em}form .field.half{float:left;padding:0 0 0 .65em;width:50%}form .field.half.first{padding:0 .65em 0 0}form>.actions{margin:1.5em 0 0!important}ol,ul{margin:0 0 2em}@media screen and (max-width:736px) {form .field.half{float:none;padding:0;width:100%}form .field.half.first{padding:0}}label{color:#fff;display:block;font-size:.9em;font-weight:300;margin:0 0 1em}input[type=text],input[type=password],input[type=email],input[type=tel],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;background:#34363b;border:0;border-radius:0;color:#a0a0a1;display:block;outline:0;padding:0 1em;text-decoration:none;width:100%}input[type=text]:invalid,input[type=password]:invalid,input[type=email]:invalid,input[type=tel]:invalid,select:invalid,textarea:invalid{box-shadow:none}input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,input[type=tel]:focus,select:focus,textarea:focus{box-shadow:inset 0 0 0 2px #34a58e}.select-wrapper{text-decoration:none;display:block;position:relative}.select-wrapper:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important;color:#36383c;content:'\f078';display:block;height:2.75em;line-height:2.75em;pointer-events:none;position:absolute;right:0;text-align:center;top:0;width:2.75em}.select-wrapper select::-ms-expand{display:none}input[type=text],input[type=password],input[type=email],select{height:2.75em}textarea{padding:.75em 1em}input[type=checkbox],input[type=radio]{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;display:block;float:left;margin-right:-2em;opacity:0;width:1em;z-index:-1}input[type=checkbox]+label,input[type=radio]+label{text-decoration:none;color:#a0a0a1;cursor:pointer;display:inline-block;font-size:1em;font-weight:300;padding-left:2.4em;padding-right:.75em;position:relative}.icon:before,input[type=checkbox]+label:before,input[type=radio]+label:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important}input[type=checkbox]+label:before,input[type=radio]+label:before{background:#34363b;content:'';display:inline-block;height:1.65em;left:0;line-height:1.58125em;position:absolute;text-align:center;top:0;width:1.65em}input[type=checkbox]:checked+label:before,input[type=radio]:checked+label:before{background:#34a58e;border-color:#34a58e;color:#fff;content:'\f00c'}input[type=checkbox]:focus+label:before,input[type=radio]:focus+label:before{box-shadow:0 0 0 2px #34a58e}input[type=radio]+label:before{border-radius:100%}::-webkit-input-placeholder{color:#707071!important;opacity:1}:-moz-placeholder{color:#707071!important;opacity:1}::-moz-placeholder{color:#707071!important;opacity:1}:-ms-input-placeholder{color:#707071!important;opacity:1}.formerize-placeholder{color:#707071!important;opacity:1}.icon{text-decoration:none;border-bottom:none;position:relative}#header,.panel{position:fixed}dl dt,table th{font-weight:300}.icon>.label{display:none}#header h1,#header nav>ul>li,#header nav>ul>li a,ul.actions li,ul.icons li{display:inline-block}ol{list-style:decimal;padding-left:1.25em}ol li{padding-left:.25em}ul{list-style:disc;padding-left:1em}ul.actions.fit li>*,ul.actions.vertical li>*{margin-bottom:0}#header nav>ul,ul.actions,ul.alt,ul.icons{list-style:none}ul li{padding-left:.5em}ul.alt{padding-left:0}ul.alt li{border-top:solid 1px #36383c;padding:.5em 0}ul.alt li:first-child{border-top:0;padding-top:0}ul.icons{cursor:default;padding-left:0}ul.icons li{padding:0 1em 0 0}ul.icons li:last-child{padding-right:0}ul.icons li .icon{color:#505051}.poptrox-popup .caption p,table th{color:#fff}ul.icons li .icon:before{font-size:1.5em}ul.actions{cursor:default;padding-left:0}ul.actions li{padding:0 1em 0 0;vertical-align:middle}ul.actions li:last-child{padding-right:0}ul.actions.small li{padding:0 .5em 0 0}ul.actions.vertical li{display:block;padding:1em 0 0}ul.actions.vertical li:first-child{padding-top:0}ul.actions.vertical.small li{padding:.5em 0 0}ul.actions.vertical.small li:first-child{padding-top:0}ul.actions.fit{display:table;margin-left:-1em;padding:0;table-layout:fixed;width:calc(100% + 1em)}ul.actions.fit li{display:table-cell;padding:0 0 0 1em}ul.actions.fit.small{margin-left:-.5em;width:calc(100% + .5em)}ul.actions.fit.small li{padding:0 0 0 .5em}@media screen and (max-width:480px) {body,html{min-width:320px}ul.actions{margin:0 0 2em}ul.actions li{padding:1em 0 0;display:block;text-align:center;width:100%}ul.actions li:first-child{padding-top:0}ul.actions li>*{width:100%;margin:0!important}ul.actions li>.icon:before{margin-left:-2em}ul.actions.small li{padding:.5em 0 0}ul.actions.small li:first-child{padding-top:0}}dl{margin:0 0 2em}dl dt{display:block;margin:0 0 1em}dl dd{margin-left:2em}table{border-collapse:collapse;border-spacing:0;margin:0 0 2em;width:100%}table tbody tr{border:1px solid #36383c;border-left:0;border-right:0}table tbody tr:nth-child(2n+1) {background-color:#34363b}table td{padding:.75em}table th{font-size:.9em;padding:0 .75em .75em;text-align:left}table thead{border-bottom:solid 2px #36383c}table tfoot{border-top:solid 2px #36383c}table.alt{border-collapse:separate}table.alt tbody tr td{border:1px solid #36383c;border-left-width:0;border-top-width:0}table.alt tbody tr td:first-child{border-left-width:1px}table.alt tbody tr:first-child td{border-top-width:1px}table.alt thead{border-bottom:0}table.alt tfoot{border-top:0}.panel{padding:4em 4em 2em;-moz-transform:translateY(100vh);-webkit-transform:translateY(100vh);-ms-transform:translateY(100vh);transform:translateY(100vh);-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;background:rgba(36,38,41,.975);bottom:4em;left:0;max-height:calc(80vh - 4em);overflow-y:auto;width:100%;z-index:10001}.panel.active{-moz-transform:translateY(1px);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.panel>.inner{margin:0 auto;max-width:100%;width:75em}.panel>.inner.split{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex}.panel>.inner.split>div{margin-left:4em;width:50%}.panel>.inner.split>:first-child{margin-left:0}.panel>.closer{transition:opacity .2s ease-in-out;background-image:url(../img/gallery/close.svg);background-position:center;background-repeat:no-repeat;background-size:3em;cursor:pointer;height:5em;opacity:.25;position:absolute;right:0;top:0;width:5em;z-index:2}.panel>.closer,.poptrox-popup:before{-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out}.panel>.closer:hover{opacity:1}@media screen and (max-width:1280px) {.panel{padding:3em 3em 1em}.panel>.inner.split>div{margin-left:3em}.panel>.closer{background-size:2.5em;background-position:75% 25%}}@media screen and (max-width:980px) {.panel>.inner.split{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.panel>.inner.split>div{margin-left:0;width:100%}}@media screen and (max-width:736px) {.panel{-moz-transform:translateY(-100vh);-webkit-transform:translateY(-100vh);-ms-transform:translateY(-100vh);transform:translateY(-100vh);padding:4em 2em 2em;bottom:auto;top:calc(4em - 1px)}.panel.active{-moz-transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.poptrox-popup{background:rgba(31,34,36,.925);box-shadow:0 1em 3em .5em rgba(0,0,0,.25);cursor:default}.poptrox-popup:before{transition:opacity .2s ease-in-out;background-image:-moz-linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),-moz-linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));background-image:-webkit-linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),-webkit-linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));background-image:-ms-linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),-ms-linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));background-image:linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));content:'';display:block;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1;opacity:1}.poptrox-popup .closer,.poptrox-popup .nav-next,.poptrox-popup .nav-previous{background-position:center;position:absolute;background-repeat:no-repeat;opacity:0}.poptrox-popup .closer{transition:opacity .2s ease-in-out;background-image:url(../img/gallery/close.svg);background-size:3em;height:5em;right:0;top:0;width:5em;z-index:2}.poptrox-popup .closer,.poptrox-popup .nav-next,.poptrox-popup .nav-previous{-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out}.poptrox-popup .nav-next,.poptrox-popup .nav-previous{transition:opacity .2s ease-in-out;background-image:url(../img/gallery/arrow.svg);background-size:5em;cursor:pointer;height:8em;margin-top:-4em;top:50%;width:6em;z-index:2}.poptrox-popup .nav-previous{-moz-transform:scaleX(-1);-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1);left:0}.poptrox-popup .nav-next{right:0}.poptrox-popup .caption{padding:2em 2em .1em;background-image:-moz-linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);background-image:-webkit-linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);background-image:-ms-linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);background-image:linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);bottom:0;cursor:default;left:0;position:absolute;text-align:left;width:100%;z-index:2}.poptrox-popup .caption h2,.poptrox-popup .caption h3,.poptrox-popup .caption h4,.poptrox-popup .caption h5,.poptrox-popup .caption h6{margin:0 0 .5em}#wrapper:before,.poptrox-popup .loader{background-repeat:no-repeat;font-size:2em;line-height:2em;margin:-1em 0 0 -1em;text-align:center}.poptrox-popup .loader{animation:spinner 1s infinite linear!important;background-image:url(../img/gallery/spinner.svg);background-position:center;background-size:contain;display:block;height:2em;left:50%;opacity:.25;position:absolute;top:50%;width:2em}#wrapper:before,.poptrox-popup .loader{-moz-animation:spinner 1s infinite linear!important;-webkit-animation:spinner 1s infinite linear!important;-ms-animation:spinner 1s infinite linear!important}.poptrox-popup:hover .closer,.poptrox-popup:hover .nav-next,.poptrox-popup:hover .nav-previous{opacity:.5}.poptrox-popup:hover .closer:hover,.poptrox-popup:hover .nav-next:hover,.poptrox-popup:hover .nav-previous:hover{opacity:1}.poptrox-popup.loading:before{opacity:0}body.touch .poptrox-popup .closer,body.touch .poptrox-popup .nav-next,body.touch .poptrox-popup .nav-previous{opacity:1!important}@media screen and (max-width:980px) {.poptrox-popup .closer{background-size:3em}.poptrox-popup .nav-next,.poptrox-popup .nav-previous{background-size:4em}}@media screen and (max-width:736px) {.poptrox-popup:before{display:none}.poptrox-popup .caption,.poptrox-popup .closer,.poptrox-popup .nav-next,.poptrox-popup .nav-previous{display:none!important}}#wrapper:after,#wrapper:before{content:'';visibility:hidden;display:block}#wrapper{-moz-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-moz-filter .5s ease;-webkit-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-webkit-filter .5s ease;-ms-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-ms-filter .5s ease;transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,filter .5s ease;position:relative}#wrapper:after{-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none;pointer-events:none;-moz-transition:opacity .5s ease,visibility .5s;-webkit-transition:opacity .5s ease,visibility .5s;-ms-transition:opacity .5s ease,visibility .5s;transition:opacity .5s ease,visibility .5s;background:rgba(36,38,41,.5);height:100%;left:0;opacity:0;position:absolute;top:0;width:100%;z-index:1}body.ie #wrapper:after{background:rgba(36,38,41,.8)}body.modal-active #wrapper{-moz-filter:blur(8px);-webkit-filter:blur(8px);-ms-filter:blur(8px);filter:blur(8px)}body.modal-active #wrapper:after{-moz-pointer-events:auto;-webkit-pointer-events:auto;-ms-pointer-events:auto;pointer-events:auto;opacity:1;visibility:visible;z-index:10003}#wrapper:before{animation:spinner 1s infinite linear!important;-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none;pointer-events:none;-moz-transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;-webkit-transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;-ms-transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;background-image:url(../img/gallery/spinner.svg);background-position:center;background-size:contain;height:2em;left:50%;opacity:0;position:fixed;top:75%;width:2em}body.loading #wrapper:before{-moz-transition:opacity 1s ease-out!important;-webkit-transition:opacity 1s ease-out!important;-ms-transition:opacity 1s ease-out!important;transition:opacity 1s ease-out!important;-moz-transition-delay:.5s!important;-webkit-transition-delay:.5s!important;-ms-transition-delay:.5s!important;transition-delay:.5s!important;opacity:.25;top:50%;visibility:visible}body{padding:0 0 4em}#header{-moz-transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-moz-transition:-moz-transform 1s ease;-webkit-transition:-webkit-transform 1s ease;-ms-transition:-ms-transform 1s ease;transition:transform 1s ease;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background:#1f2224;bottom:-1em;height:5em;left:0;line-height:4em;padding:0 1.5em;user-select:none;width:100%;z-index:10002}body.loading #header{-moz-transform:translateY(4em);-webkit-transform:translateY(4em);-ms-transform:translateY(4em);transform:translateY(4em)}#header h1{color:#a0a0a1;font-size:1em;line-height:1;margin:0;vertical-align:middle}#header h1 a{border:0;color:inherit}#header h1 a:hover{color:inherit!important}#header nav{position:absolute;right:0;top:0}#header nav>ul{margin:0;padding:0}#header nav>ul>li{padding:0}#header nav>ul>li a{-moz-transition:background-color .5s ease;-webkit-transition:background-color .5s ease;-ms-transition:background-color .5s ease;transition:background-color .5s ease;border:0;color:#fff;letter-spacing:.1em;padding:0 1.65em;text-transform:uppercase}#header nav>ul>li a.icon:before{color:#505051;float:right;margin-left:.75em}#header nav>ul>li a:hover{color:#fff!important}#header nav>ul>li a.active{background-color:#242629}@media screen and (max-width:736px) {body{padding:4em 0 0}#header{-moz-transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);bottom:auto;height:4em;padding:0 1em;top:0}body.loading #header{-moz-transform:translateY(-3.4em);-webkit-transform:translateY(-3.4em);-ms-transform:translateY(-3.4em);transform:translateY(-3.4em)}#header h1{font-size:.9em}#header nav>ul>li a{font-size:.9em;padding:0 1.15em}}#main .thumb:after,#main .thumb>.image,#main:after{height:100%;top:0;width:100%}#main{-moz-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-moz-filter .5s ease;-webkit-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-webkit-filter .5s ease;-ms-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-ms-filter .5s ease;transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,filter .5s ease;display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#main .thumb{-moz-transition:opacity 1.25s ease-in-out;-webkit-transition:opacity 1.25s ease-in-out;-ms-transition:opacity 1.25s ease-in-out;transition:opacity 1.25s ease-in-out;-moz-pointer-events:auto;-webkit-pointer-events:auto;-ms-pointer-events:auto;pointer-events:auto;opacity:1;overflow:hidden;position:relative}#main .thumb:after{background-image:-moz-linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);background-image:-webkit-linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);background-image:-ms-linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);background-image:linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none;pointer-events:none;background-size:cover;content:'';display:block;left:0;position:absolute}#main .thumb>.image{background-position:center;background-repeat:no-repeat;background-size:cover;border:0;left:0;position:absolute}#main .thumb>h2{pointer-events:none;bottom:1.875em;font-size:.8em;left:2.1875em;margin:0;position:absolute;z-index:1}#main .thumb>h2,#main:after{-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none}#main .thumb>p{display:none}#main:after{pointer-events:none;-moz-transition:opacity .5s ease,visibility .5s;-webkit-transition:opacity .5s ease,visibility .5s;-ms-transition:opacity .5s ease,visibility .5s;transition:opacity .5s ease,visibility .5s;background:rgba(36,38,41,.25);content:'';display:block;left:0;opacity:0;position:absolute;visibility:hidden;z-index:1}body.ie #main:after{background:rgba(36,38,41,.55)}body.content-active #main{-moz-filter:blur(6px);-webkit-filter:blur(6px);-ms-filter:blur(6px);filter:blur(6px)}body.content-active #main:after{-moz-pointer-events:auto;-webkit-pointer-events:auto;-ms-pointer-events:auto;pointer-events:auto;opacity:1;visibility:visible}body.loading #main .thumb{-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none;pointer-events:none;opacity:0}#main .thumb{-moz-transition-delay:2.525s;-webkit-transition-delay:2.525s;-ms-transition-delay:2.525s;transition-delay:2.525s;height:calc(40vh - 2em);min-height:20em;width:25%}#main .thumb:nth-child(1) {-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2) {-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3) {-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4) {-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5) {-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6) {-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}#main .thumb:nth-child(7) {-moz-transition-delay:1.55s;-webkit-transition-delay:1.55s;-ms-transition-delay:1.55s;transition-delay:1.55s}#main .thumb:nth-child(8) {-moz-transition-delay:1.7s;-webkit-transition-delay:1.7s;-ms-transition-delay:1.7s;transition-delay:1.7s}#main .thumb:nth-child(9) {-moz-transition-delay:1.85s;-webkit-transition-delay:1.85s;-ms-transition-delay:1.85s;transition-delay:1.85s}#main .thumb:nth-child(10) {-moz-transition-delay:2s;-webkit-transition-delay:2s;-ms-transition-delay:2s;transition-delay:2s}#main .thumb:nth-child(11) {-moz-transition-delay:2.15s;-webkit-transition-delay:2.15s;-ms-transition-delay:2.15s;transition-delay:2.15s}#main .thumb:nth-child(12) {-moz-transition-delay:2.3s;-webkit-transition-delay:2.3s;-ms-transition-delay:2.3s;transition-delay:2.3s}@media screen and (max-width:1680px) {#main .thumb{-moz-transition-delay:2.075s;-webkit-transition-delay:2.075s;-ms-transition-delay:2.075s;transition-delay:2.075s;height:calc(40vh - 2em);min-height:20em;width:33.33333%}#main .thumb:nth-child(1) {-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2) {-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3) {-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4) {-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5) {-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6) {-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}#main .thumb:nth-child(7) {-moz-transition-delay:1.55s;-webkit-transition-delay:1.55s;-ms-transition-delay:1.55s;transition-delay:1.55s}#main .thumb:nth-child(8) {-moz-transition-delay:1.7s;-webkit-transition-delay:1.7s;-ms-transition-delay:1.7s;transition-delay:1.7s}#main .thumb:nth-child(9) {-moz-transition-delay:1.85s;-webkit-transition-delay:1.85s;-ms-transition-delay:1.85s;transition-delay:1.85s}}@media screen and (max-width:1280px) {#main .thumb{-moz-transition-delay:1.625s;-webkit-transition-delay:1.625s;-ms-transition-delay:1.625s;transition-delay:1.625s;height:calc(40vh - 2em);min-height:20em;width:50%}#main .thumb:nth-child(1) {-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2) {-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3) {-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4) {-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5) {-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6) {-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}}@media screen and (max-width:980px) {#main .thumb{-moz-transition-delay:2.075s;-webkit-transition-delay:2.075s;-ms-transition-delay:2.075s;transition-delay:2.075s;height:calc(28.57143vh - 1.33333em);min-height:18em;width:50%}#main .thumb:nth-child(1) {-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2) {-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3) {-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4) {-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5) {-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6) {-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}#main .thumb:nth-child(7) {-moz-transition-delay:1.55s;-webkit-transition-delay:1.55s;-ms-transition-delay:1.55s;transition-delay:1.55s}#main .thumb:nth-child(8) {-moz-transition-delay:1.7s;-webkit-transition-delay:1.7s;-ms-transition-delay:1.7s;transition-delay:1.7s}#main .thumb:nth-child(9) {-moz-transition-delay:1.85s;-webkit-transition-delay:1.85s;-ms-transition-delay:1.85s;transition-delay:1.85s}}@media screen and (max-width:480px) {#main .thumb{-moz-transition-delay:1.175s;-webkit-transition-delay:1.175s;-ms-transition-delay:1.175s;transition-delay:1.175s;height:calc(40vh - 2em);min-height:18em;width:100%}#main .thumb:nth-child(1) {-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2) {-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3) {-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}}#footer .copyright{color:#505051;font-size:.9em}#footer .copyright a{color:inherit} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/ie-blocker.css b/libs/hexo-theme-material/1.5.2/source/css/ie-blocker.css new file mode 100644 index 000000000..f31f4bc0b --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/ie-blocker.css @@ -0,0 +1,180 @@ +@charset "utf-8"; +body .demo-blog{ + display: none; +} + +h1{ + background-color: #fff; + font-size: 48px; + line-height: 48px; + border-left: none; + width: auto; + margin: 0px !important; +} + +#ib-container { + display: none; + width: 100%; + height: 100%; + font-family: Arial, Helvetica, sans-serif; + position: fixed; + top: 0; + left: 0; + box-sizing: content-box !important; + z-index: 99999; +} + +#ib-container * { + box-sizing: content-box !important; +} + +.ib-modal { + height: 288px; + background: #fff; + border-left: 8px solid #4fc1e9; + position: absolute; + color: #434a54; + z-index: 99999; + width: 592px; + top: 50%; + left: 50%; + transform: translateY(-50%) translateX(-50%); + padding: 49px 30px 30px; +} + +.ib-header { + height: 80px; + padding: 0; +} + +.ib-header h1 { + margin: 0; + font-size: 24px; + text-align: left; + color: #434a54; +} + +.ib-header p { + margin: 10px 0 0 0; + font-size: 14px; + line-height: 18px; + text-align: left; + color: #434a54; +} + +.ib-header p strong { + font-weight: normal; + color: #3bafda; +} + +.ib-browsers { + height: 80px; + list-style: none; + margin: 0; + padding: 0; + padding-top: 0; + margin-top: 49px; +} + +.ib-browsers li { + float: left; + width: 148px; + height: 80px; + position: relative; + list-style: none; +} + +.ib-browsers li a { + display: block; + width: 100%; + height: 100%; + position: absolute; + color: #434a54; + text-decoration: none; + cursor: pointer; +} + +.ib-browsers li a:hover { + background-color: #F2F2F2; +} + +.ib-browsers li a:hover .ib-browser-name { + background-color: #4fc1e9; + color: #fff; +} + +.ib-browser-icon { + display: block; + width: 118px; + height: 90px; + margin: 0 auto; + margin-top: 20px; +} + +.ib-browser-name { + line-height: 18px; + margin-top: 5px; + text-align: center; + font-size: 20px; +} + +.ib-browser-description { + height: 50px; + line-height: 14px; + font-size: 12px; + margin-top: 10px; + padding: 0 5px; +} + +.ib-footer { + height: 30px; +} + +.ib-try { + float: right; + height: 30px; + padding: 0 15px; + color: #fff; + background-color: #3bafda; + font-size: 12px; + line-height: 30px; + cursor: pointer; + text-decoration: none; + margin-top: 49px; +} + +.ib-try:hover { + background-color: #4fc1e9; +} + +.ib-mask { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + _position: absolute; + _top: expression(eval(document.documentElement.scrollTop) + 'px'); + _left: expression(eval(document.documentElement.scrollLeft) + 'px'); + _right: auto; + _bottom: auto; + _width: expression(eval(document.documentElement.clientWidth) + 'px'); + _height: expression(eval(document.documentElement.clientHeight) + 'px'); + z-index: 99999; +} + +.ib-mask { + background: rgb(0, 0, 0); + opacity: 0.8; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; + filter: alpha(opacity=80); + z-index: 99998; +} + +.zh-cn #ib-container { + font-family: 'Microsoft Yahei', sans-serif; +} + +.zh-cn .ib-browser-description { + font-size: 12px; +} diff --git a/libs/hexo-theme-material/1.5.2/source/css/material-icons.css b/libs/hexo-theme-material/1.5.2/source/css/material-icons.css new file mode 100644 index 000000000..7adf83920 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/material-icons.css @@ -0,0 +1 @@ +@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(data:font/woff2;base64,d09GMgABAAAAAL38AA8AAAACJ1wAAL2iAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGiQbNhyB6FYGYACMPggEEQgKhrA8hORDC5BUAAE2AiQDkFgEIAWCfAcgWwq4cUHFWx+A2oYAQHZf033Gtl+BnGx46c2ShBDfTsYV45iloHoAYNQ99dn//+clFTmqiZd2NcPdzfBM7hBW0pa6rm2r2w6tLZm5H5CZ+QEP07fYWtN+QVqkbV+T9bqUH5w9t8xifaVdVKIuKk0fdFhrrRVIKxdxh0Q3H4I7RiskJvfPuP2R3cTBiSaJCHIvdpSAREfZjpp00VtZK4nZ9SmFPnP5xwOFL8oGFHAu4qD5SNZ0YJjrAicvkdW/SfpUtilEJSpRiUpUq4MLqiBOG+c8HERf56uAcmxOjWTl5MmXvJz7L213A7vZpOl7/cDj/4GQ504YlKePJTEqBHksCRQAHM79V2CSwvaFmmabtHmB9ncBwK4GunMk7Llj6c6dtnzIZrXedlsiA2RJAp9JynLSc5P30xcVPZMxo+6fIRlCxKjo4ra7/qUVnqffj3bufX/F3l80ZDYjFsUToTBEazBdM54iqXiDVHcQTk0xoRM7iP49kyf/3E8BSFdX+AlFGRfzf9uUU6Dc3yvncilnAOg3t/Mo/OzU/uZP3dehy9Zuo+qPcb8vYhxHjDgRI2Iy1i/nzABAT/oZPaEMUkq5XsrfdvvxXwiW91rQJZwIdTfATWhQH/dsb/fNBFHEgUjoOfzj+dxsOATCmR/yA4QjISCQ9wJyBRUw+UAIkIBc/30uFeRSEhWrHF71/7VWwV62TSjQ1qM3P23tobUrtqH3VrG1u4TudhvtcYlr3KOtPbbmkJaa3PI56Mph0LbsAMpp2WlZ6yArDBNAF2jCNE74CqgCXoAUwMtDSE0vDy7gQDx/tenj2zDGve4imMDDSAIPj8vqz5rZP+1Rqn9Td9seCtg8yAl7Aiy1kvGn2a5dX67qq1S5tdvhxckaFsGwCDOThkVYWlulFJd7373KEPXQIYQA7PYKsLWFpKcNx7NSu2DRhZhk/hbIC2rNclKo/2srgxyr9ugGRUw7UKxKQ9f//yW91kNmuVyz18kVGbVuYrrjUUVWPGbyY7/74uCh0AoxE0IziWJ323v7G3gocPw7raqSdvfuqqTDNCyxInX3ECVKwxA4dkFi/bTzuls/v9av/Rs7aRgODBHE8d7s8pBVs7bDuelEUicsGIUxSfaef+tqjaVtj+ZQIO33Kv7ftzRt9X1Snehcp+K73KLzhf46usBNs35889+Sj28G4ni0kEejASyNBmuuIhiKcpz8Qy4wpNaBqJUBckgb5JAKKO06x9366rKVK5dByrO8rip1mjJdiqZK5aLs0xT5+1Itr2hqKJMToXHiOmocpY2Swz3H016uTt2vGw30b3yA/RsNAt0EiUBIBCBK3Q1CAkBSQwRySJC7BUKkigqTNBs1UzZXmxIAirMkKM0Q1Gonx5NTHGk5TiEfjnu0r2efLz766NPZPHx/b+o/Wxp9wL289Y2vL2prKQ002DXWNQylgUJQIxIwj+UvX/HqnMbcADEgdD1/RtZqblHquYinA/Zf6osBaoAYwPyvamUrzJ7u7DznXK47u3TR+V3nqnbRSB/AxyPAD3pAUXNDbdakp83SpSCCoExRujS7DvlCiJX35pxzGZs+xbL3/jI/R4BR8rMhicU24BXimfbWU6993ZkvPk5Hckmh2S+EEowxQghNGCGEJkwPp23v7fl9/2aXPT97vu9zjRo1qqKioqIiIqLqLMvZzI+pQhW8pDRle7xuXuaMf2j33bZXHLWAjBUw7CRkTP3jkDn/v3a/sazFVq2i4JigspN9SS7QfyeVQcqrrnJur05dodrVY1UDIJWVNyZnulD94snQNrBNW2UG/AJWfXa3FyHuQ5sPvni6aSORCzDNtf+X2Ku2BXqxwJhsHp5XD6G5LLRTtL+043/58m4b+v3mjDKfrlrZ+H/losD+73TYlt8SjXaeuPMK5LhzdIo0nkSMhSgIYrTPFToUBn6Sm5nquNeZAH75e598lbvZphmWEVV6nyUldGRItIJrS8qGFc2yWrvu8srl1UsLEzdcdPXpFh6f+S+CCi4Ygx0McM4kkk95UV1mU1lmRlOM5R7JbaNAUD0pU55E19xwL2a200OwS9Ej3QgMEoEG8GQAouBxaDiCMgKOg/B4Mg6BBTzVhat7gEAnP0YpxoCvsPOb44lOVHmBZw2K+bCeY1RyWDOhvDLHOrjuaGjGYrye7Re2m+XhHWoLRuRVFi8/QCrBJSuwl1PL+ro2gaqsgVW3wqBLMdoig/kOTcPSFCBjxsX7HWjrlp/tmyTdFUBBwAFrFwmFPbUMJCQAv1oQoFHAs15wmGeVI3IT5IO0IgZwh+oa8IcfCSPjx3jClAUAk2uoX2wCDXEu9/N34Go8rdRqW7WXRw+wuIBVlAkVJg+krh8EGA0FhhBKw6NnVPqdE9x+yRaz/XSt3KtCDySzj5QArlYhFksyZ7l+QkKmgk8qiJTXT8uTHWfRkqnlylJ+FkqurPiUfbOoP3uQCqGKjhRFw6hixYC+sM3C4QKpCKeB1kKsrdHaRGmMOYljkv2T40eVqHoZ08eA+nvYX8zDXbG2WAxTfnwIN6VdbKeAJDi5ob2vw9KbduSD8ZgR0aZL3SMbTyQL1KsO9PVkS4ncc5VkzZrcbAbpitAy4s7pouc5pf2HtnjaQlpuo208XYld7zvGqqTYWVSEoLnS57K4lYCTQKGrrfkYmcTvZW9TbG6Os5wf6fkzDvi2Iy4lS36Ls1sbNMT3vORIJUzUJvQZHYuiXCgsUvTBmRS/+0ozP6rkIPSDCpjeAW4rMRPtxUEYmTfiJOCAIuSdSZ2hJBpwH8q6CfFqdK4XTwPRmunuPUB3xtfza+eaWKCOGP+GFQraAWjOePxUG94IVnOJQLhC7LqnE6Y7tvrOgoYnzNXoVQNkVf5auaQIb2WHxkk20468zYjviolDnq+uuZdBaBMXH2AkCWdH7wImM+pHewytNT0+GKecFbtTBfxI5CiunxxfbtdC0zQFdtvGqp6b274XqLpuIcjt10fzFAqKexSSqp5/3tQzttjtOspk7tXfv3jdx1+mSI748UUGwsPzwVDDRwc4AJNEQDqJKLHgiVSh8FfVQtUO6ytUFZU22mNlcYQLHlZtzH6zQ5TE50xVDoU7wYTxR5wW/PfMYjeXOPaHhI4vajQzggGcfyF68pHmQMrb+MBU4RV+oKAMVsDLRfxjJWLtCSFhKPIBitdZdEA5iKkI9dfHhbuLOTVOf4BzC/Hgr7pPHGNwIu6kT4jJ/GdmqQr3RkeBZje1S+Gt6pHGJ4gKkC1OIvx8Mf9TV6d6koOiFo4Ibf+fZjPRo0GEnnCZ4uhwppjB+1TbKx47OnYeDFFsRfhqHYBeh0klcTHI+tUkiJKksvlg0Inz0uXNhngZWX044WBYRVYHj6NZla47zAaJhukysDycNv0Pp0nfw+HpfTgsPUXo96BCvawDCMqo4cVETHStPlVBWODIHTO7UmJKHDT+hfNcB9L+37kFFOyu8e3mtGrjbVIUwJqwE5utowEq9/Iogmm6jPOHyoyijvMJaNzBSxnJ2BpIwWzvJjGhJBDIlgx1VU2wKeV4ki/zL2VMnpsnB8/AN+JBbtL5SPLnBEhMfkSidbGNarGcsZMd8w+qxZa+rgm/I7Bu5saWTkRDHeVWv6RbKgELHoJCaGe0ESgVXgmTzFylyRZPVB2kdwPzXfM5OQT46b/6+EOG0XNNMySVfAjIzGEcQCkA1uG6oT6FSJ8Nsaq1hiUt9KS0mcqxMXY492B7My286+4oTN8AdCEAO+jwkEPw0viU1ddiyJxKJDXqUddPLKNCfHYoXCgW7yYpCMcKN59ZmWtlXTaDy14nRQgu1tgAoYRJf59SE6IO46vOzcysPBT+21G/9NzWdeG6UoLqkHaYBM1GPJ4MbtTsFRBMhKxyeDEJwPuBF4JbtH5NK2l7uk8tvoKSIzhDY/5CJRr/ZO3aM6UxQSw57zMcwGrGD2oWuI3UEDxvjhigXZtT/OZ2oEgUj5ZTLGYP5XxdsipCjFKGQkLGkYZsuk1LwHjP3poXId1URWtSzKvKYtHBgJ4KrP/gdBSRBadXcXihRDVuRlTiAFjjzDhBdydJIyajRWCuCkpPP6N9dYm7ipjYsXy8TUGBiRcugtd1WJSA5Z5WFNWOuiaOcKnlwCCaPCN1oXPqRjEBDXrSxxaLSpBLcuIX3eVwu0BJbaU0kDhrhzBkKVXGi3+r7F5a1cJpjuQcFIhuYHHsQ9w0Qdm3CIavstNUWyCjHW+LICjrnIEkVLEfu0PqG+kJn/bhM4CMNgWqvMKtWqtJymNg2A/2OeUQE1KBMFSpbRhka/gGIuv7x3nEZSx7grWSr0QTLusRHjqrwleQJaPERpsL4vFHXa2xz+FcHrS2Yrrmm28UmsjpmE/GN4kbwZ5ky02kcIarQKu4ocEjFTBahundC9tJcc5FEkPNRDRAVYWzmDiIN2+MNfAwzLATN4M5moOCIh8LY8H4qDSOmk4swGa1UMSOwf2RjaH2yYoM9yIQmP7eAmB+aFhgwNNH5EmeW9t2Gxwe1dFi3L+l86mgczL4U8xN3ofoRBGFwrSLF8DV1RKkdw8HEJl57ShO9JJsWt3nSNgo7NbWWRiowfZv7cS9AA6iWVayRN84x7CE3ELzWVavBhy6f6slVLvQ+F1DRC5xN/dwpArrhS3fUPwYyzzDiXOHn6KA2EcfSKzaUcopS5DNxBulezracnoy9jxOTyMvKVHGIYnWHobY1ZL7hzPStfpQ8QJYoXuzOR/Yk2iRgK1Wd4HXxlZASxvJg4np+uticQY4Eof1j68ra6x1DlFveXz12x//vbd/7V9xETMNy1HsKSVB0JsgASQA5wo6wK7qWCr3TWzUq9Ascy0VGtZSX9PlvatUqCWfWagifkgst3AGKmdTYh3a4Qw9JK5GLNzBDCWNNPwri477Yohc60vS6T7YQHpw5jF8q/cXAHtRjwEPygj/Q4og9xVxHhMw915K+RpGq3/JY5lzhsxhyNZwH0CQMJcJNRbvkyMzTKTOFSTmosOpf9x5hSiLE8OcMDakzK05zLFXNyMRFvlF9KT30WcPHC7Erw3uuof4tUZYK1xLcmh1fo2EcaLZMEE9Abbm4kmDAvGWMBwXoXsP7ZXDmHihUlE70ho53PG7ppJ7WKHd1Y8n9RQhzprVk1YreFPTyuvPrE4u90Q+5hczKbCSpAxiPKiUkJlelzPTcR4Izp7QGndCJvkJ9m/7VW6QUbyTFYM7D8nPVxyLOBOGvfF8ikRtNL5a1N/KNIbxuEBS3k5i2hskocinKgipqLAlCTX2EKiTDnEdSTETYiNFbmAaqOelNmsckH7BcQxsIGxNz7CFcsghx3Aw0PTnTtulmQqZMLv8Tawiytc8MQOKxFjElKhHUapAInL8H7C0fRUFHj4cUOn3n8AwwCSbXfDE/6yRjGUgJ7GnkLB5KFUFq1l3japCWTPVmwxE92Fkg3HwjkWtQj7JFSX21C7YkvfKyBU+S4E6d8l27EhJs5x1cJw5NCvOjHoxh5cr0LGXs0m2QNjQFSIns0/E20FEvhZYX6AkI/MP+i90bg+PO757MuRQuAIKcPC+b0dQ973JpJnD5LRyxzobnZ19SgqqK0937koDu3hrlbUzkliL84VMgWtDHfqs3ldxPZOhCJ0lrcmtevMobh1hTX5xzYwEfJr6PTWRRxzXD44n0IjenaXFuRDfgu0HHSgIdGgam/M7kv+GEzPxKgcHIRGlyVxje+cXoMtcEacOK4ctqcc3PB6qlmAf9OR/u7kuwf3v5m+/+Z6fpEme5ph6aFpk6VW6pDkjwMgiXLdr3D2pJZMKdrPYQGWhvLyf2ZG1F5iYemylwUOK+gqZMRSBEjsZbMhuTVuLUYWSxKhnw1i9Umrd9JKJXjLkKZNeso+trzBx7lamj84Y39U6SU6CJEgEjHo0ky2hJxHllfJTvXOj//Q0V23iZ5lpJVlMUElEjidDZJOLbXrawqTvXD70pDPhj3kMI68JREkrZALHQVPJkjz+HF2irbTTERBO4XmhzR004YPF10KA1i5cST8dzyan8SSTUNu8aNUVJtRSMdO7kSeXWOxxMcry4jU5Ql9QsLjgyLRAW3t8kqAmuRhWDiNCvWtVhSRbkZ3sW4k2h2/aIMH+Kr1jO6po37MB7/F9srQo5UM8Aw3c4mGkcNhE6KkmgsMh17mT+rVU0lFwZlr4JOpgN16FnLqyhJsu/8umNU3RR5f3FE1vbNl6ahuRISvmBUzZ/yhgFkonfg/3NluXcOxL2g9V1jNHYzi14BrmcoDQMwzgwd3ufa6JSbiFPpHQmjDYCPyBmlVfoS45CWS/WkNxDQDQ8T2QoqlhOnsLTu8BpuEy79ltTR6FySbxjFhUfLbwhwFEQuBZfO/fwYhR9gFmRFwn4Usy6rpmU4vKqXgcp8inJQrC4zZDvhiFMromnm86jOqdAe56nUGi9ICpi9PazeARarijJdKBSusn4RcC+2wL0IlS5xIV5/g+qtVlEc3tT6ZoyN0OjvdogiDB2LNZyhgvNGf6w3BvULHN6jYwrckYP2hiJUTeDDpTBI8NW2rUWwjETmCCZi1CIbuTOeqbxBwU8sFsszL1YHNfmRpvcOsnWIeGuWbXbe0mEuK9KzgOrmjhH++bUlCbceorhE/Gbx6LOZD9rR9KYaivfeUZgzBKo7+i1Vj/DdteVpfr04O1uXqwJhcBH3p+pcOJ3en8Oovl7FmEfDcaztK7fxSHoWPyaOQrtt/su2pZfHc3si7l9lTrmX8Gue93SY9oQlNudKE0Mf0T4C2IfjhfQjlbsB8w1PzUn08SNm0cuJ8zIW0YYbTJVtrvnNue+RyED4MMb2QzH0tI4slFZqVnabQY1MjNXo8gh0R8AqA7fVnoi6rp1ocJ+vPOSIiAvf39Mv2Gm2jZQCvbkX+VpxWhKgzFgkH11/cbkSej2N3PkyJVMVlG94deBzpjHW3pmhrPHGSbbMESGMZF3a3QoKZV/GOZwG3oEFr63OWfCgu4X2SuVf4c2IZ7rAp7kShts1O576wHs0y33QX3fE4PoY949BNIIXsB+NePZh87WIASlKbsFax0VZcJLNxj2vJR5krKGJwlKTQ6V46yEntmB+avFYcFhX2ZLGvhikyMTHNSmtgh6EbpnPb0F5STJYuoc2Ie8TdUctJJVN1mR7Qm7MiiUNRd7pyU4kCp3q9RCWy2Huw/m1Sml5w7Ww7+ugDZLPJ1x7Jg/NPa0Q0rRcSP0yQyIKTrpySnXCDHdb6wv1CcmojQ+4889mhNYdNBZDa5XXn5BGwN9GUJ3OpoZgBJbZ48ovf4d2CB5U6452/OkQ+JCCQcPb/acle17kJlH6quYdS1CkgZFElLi2B0Z+XN+B7qccZAlxEwSexkwIUFq8VaWs1DskucZEVHxBJELw3b+HSliuyy24RR8HmdSCh30yGizDDIOmmXSGmzjsKxwzsooWxprhWr0KXhE41NR6yAowYQMWt+WnSVGKqdLgdSu3wiUlUU5PrDzS44rPxEq6dfn69FxlusBt8dM744xTT5Ho9PDyexwicjnoVIkFr2/9BL2xQKWPmNbAG8XcIBlWG+/WEm2OiSF8lDmKMcklKkWHIOKZVZpECg5oHjoVM1skiFXXzKmyR8/jJUR0cZn5p26VIhDLB3zLymsIWNMagJNiofRqwgb9ni21ygyFuu8EbmZAHxwbNIdVJVecvh08BnUVPkKMnsWz56BsSWEf6iaiY77EHKEMHA1s9f9+Ih3YiZB3KRQHpRrAGte5bDtwhV3aXMPbFJhVRXUsTmcz2opdHy4ga+T91wgRV2gLX49nMngAhy+MS30UkjecOEjwycENJ5tyLouyI2ZNqCVVfpQ8+0GqNujypn3/UKwI7mmT0OR6ipeVu4qKRjlPzRqvmu6tIBD1HlfPyvBzD8c1OdNPI0i/mAIIGD6ucMAxgzt2m8eFxHqVAmkQ1Ub+jXdGoSLS50RC/U/p0pg/j5EmW1v5JSkSkdIevWHwraqTSrreY/YKUku9yI8nQbcElqrWE9qNvAhyThViFf2J9lQ5+6YGIEaqIBYgX9mvrgQBIgNli4qw0jWlzq1vmCJxTsxAKI9kzAsalT2e59TyLrop/Vn2l7Ab9Ukt2Fbbd60AoZyi5PxbmZimJfFBvodSO3KCRXImV/P7zPwBNCoZmMvmkKFJ6M/jN1QBSMOQsDpLF2FedEcE8ctHaHO84YrACTp90rjV6vRN24fyDPOoFJZb4qHPE5w+hw+STfSakBVRB4u0chlNIs5IXY2Rk6liI547RSp5hIkJrQhTpHjfbbY8BietfXhyLiWh95osnhDrPI79alhD1Jy316pjSQkuJs93lQkMzrxkgREMaaMQaditvK0vqWWBG0oBNIbRCBoebYCtBIIN27DclT5dgFQr8ELbaE1wgaRcK7dM/TnnGelhwL+cpuZ9Y0RAriaTKXatdT4tzPipE51CVuDmKVKwroApQxJ3OCszoJ9/0GwUCW7wOtzxj3jEQFbW+tbkfczXKaDnQFn7EE0dQKnFnnWlw74SVT/zsXymKABrbPh+enZMX6M3Gu+rtiPx7YFmumSR7dxZpmbz1ctVwOy+rZCsVXr/E/A2ICVmAzRzj+EW33g/ZEioavxXt41ZExpOcX/Mk3/U6a7C2GlXgtvPrbLz16/uYr9VqQYWhk1HHaX4zIB0F3ZLq4YdRRQwizR/KSgzVlTdB23g11A8bv5AzHtcKkBVvDzo36ZISKgZTTwWIKOFoRbzl0GndEy7thDcwTEcJrj6euuRJZ44wbWILMzkRNFvaFuSDNGdsb5lILvGnRzVzAcfrdb2UibMxRJH+pQOcWnBD+MJfXoAyF0cuIYpscJC5IQHwrHu4N5Z0+Tk8zfqzxfn2ivcTzELsQXMd3JZGFe5T5aoZD5s4wmckBHbfJOoyG0dHvw3DscOxHxqSxYRrc4BZ1lw3mzPjs2sY+A6x5bc4ARThdPO5TiSLUEMhFn+eFZFrGanJ5WnuHRlxzVgTVtemsDC14ubM6lLazewVOT6Zj2JM8DJwpAlZRtMo6r/uLLP8MypT3+sdpdIo4jSnL5NXfixzk02dKixJ74VsIbK039Z309oJ9FAbToKHV5wEJPBu4ZcH5HwF+yDDF85Ee1Fbb4ZRCkHe/iD6sst4VL1OH8EY/yewER0Q2C6WpeI0bb71QX0uV/YwWRhKQCcS1WUstBWMNSjSVntMEBzazA24POHwoWasR0vY63AJGM3zpPWF9ecqgwBSjfg4FAzqDaD08HKh3oCVxK28XBBDbxNVcZ3SvbU1jAoryNhggNOM4l9GGplwfy5vBImrvYUHAKc8HUo9MsnxJeVBlcYoZt1w63VUhiRwIjMTygwJCJXw5YYGt/pQYu0NAmHIWmgrbAEHB6oOHlWR1L5DDs1gxz+cEOTNoBAJNja5+yAG3xN5uIMqb5Q8tOd+TwqikQnAmHQeaEyMSaWjr7LyszfPIgeDfGwwHUCOMvPP30yYYZ6Gdzrg5ZqK4IofQlisjJdTk6ikQQUiYnhmfEkuStlM8b/vPCajT5NwVbbvmG1XdWL4YhnavCvlRiveZ6YfdeQY2UTv/xZnljNeojT9841++liy5mXFyeUgmd2Z0ztQhVPi4akqUGhSGrbObbZe2XkPjtZflefrWg53MudIASVU/YIMBjiAIbJRD1rbEnHsaDFjRV7VWCMIcRSv1kBwt3DYziEbrS602mDs028heq3MicUEOKcpTvaSguQYt/qMqoymbop4vXdk3HZ6zh+5W00VsTr54jqsGIVptbdMKtrpHkRgaev9YyyWNIfnSCQkWJHGCAtdJJjB8Jq0VhYM1mbb1dT2PYfR8MUeOGtRCMYqMlFhOqFfm7Nirp8Fvg608B0qZ08oSeTFa5aTxBcBerMdu40DE3K4C1tqaXsRQVZstg+dvSvNFgN+wzIYyenppdjL4+YhFqrrrmeqwVhCgHv6kt5wd2XGskUbsS8sFWVQ4nskr8SMFS/SkYLGJ6aWkKMFjgyq8syEDCmmd5kcpSEnVlzFU2YuppMBA4CvmCnE8HalE2eSCxHLmrpJ3D80De199V7LdPZsUKDZABpb2/7we4jRhgDZsZY9DzyxeC12Fdo1pEYUBxNxtOmwDrhJAaZevK+yiifcKRRBgyfgRVfYXfpGOyICkHBhwZU2SOX3XCINFqgbZMpse4S2UfbMc3y9FSWvShpYwlACyXVgSp1nu3hA4JLvtl2msZewXyWMVGVAybyr+o0mQoN66nS+nHBy4XpLxwWTPNWyUWG6rFtGsIWQQLvBvUzZ271Uy5fpRE3kQPIN6Q7zhuadLlXxDO3a5VMOU4unFpLkmWJDW2Cymd7CMrg5zsu0cuLgw1EG9MWSGDCzQE5VADgpFnBcOQfiRw+WFph8Ra73SEn5UAOinep1Ek1y/Knw+l9NG4xFpidR8tB0qRwb5JdYcyeXZyBufTnHBnijQZP4HtowIgk2NYpIest5JM64DFdo3fygZYBHzZVAu4OE+fNp56ICzxE3CBByz3eEBXmYf8wai0TMQ9ne3UTAI1xsDHYjesyDRPolGfTRUwODvwXABrIr2dQ/ku3wMZ/g63xxFH5aYb79rHtimxiFsnHx+NeA6ek3muM/VyLMbVz0bxYXZnIAtr3UUXL+rCSkVy/neHAqRvrf9tJlP/AYI9tQb4bI5XkNvCFOrNdhajpmsiZ/+1oH8i5p8N2VyxI07hZzFnlxcGAXBx0ESiQS29mLOgrxdFomlglWfRJoAcJaeIiJEEgMLLLYBVUlKlEap5xW11X4h2xiEqZdaGwYDOqslMBAFt5TNpH3VS7a+I284agFUE6Z7KOXJaaQYqaMiW1Chd5NUla7NfWX8eCiW5DiTvXYFJioMEomjATGif+fhjdiVuqjR24HuKaIkWjiIBwaO40ZGpAVJ1yiWOPFCJToYoQzKuCtTvEw6yqPTabY4JArNE7BvHF1yEvpZlPpOAYbaMSYR3STHuJdZMZ+iDKNG4xLEacucF3e1unFO4lB6UDrCuOdz1DxZdjI2oTc6Imv7r3EPR244CiVL30weJ3HU98cczPdJtukt8XaY/mVsznbrDzZixuBM87KtQPH0sZIYXKPimR6UFgtdmz/Fl0J+2DsbQlI0esfQLfW+Trfd8xLd6ZG9pTcBuSWkfQ5c9o6jIYevQkTWRkGaRiWDbhZfBO8GOTGHEP9/H775gf9OzTgyzswY4pLkhhzkdedKqb1W2eMeq8o6Wp0/3n7VkVmyAeNTuqQ5wcfAPD+1bdwDnTb8dU1uGXQWqxZuHVl7gYmh+dYYfvHVvvAjX+lTfs6v8Pkv788nvvZzP+OpB8/zCk8+uvVKp9/wfAenTj7nieMH83oycXIyTuGpPDemb7Ip58uESSefy3mdct7n/2uPR7TSrKwr/yq5Kq9otWRWZTFCETKjaIdWs40iaCWa1p3ooJ/dOGKV0lqSivqj9ZWTRR3gi8vT9xHiLptYpFqDTGYNah3mHFtdBoXys0lgkfWPoQcWcuEbkpet4dciPVptJLmFeTv6HXS9SuLM5mGpo9quNZtYJr8MrQ2k5JYnKGtyXeZdWuE3BU1+pVwUi3AOn12UY9NsB81+LshkxWJiyjd7FMptHX0RpFJ6loSKoCcpM4NqDRrhKCMjyJxaLNClA4FTQM0NlaStqT4qcLjqKaCdQamTwcwsRJiIdoukf5LS1RSE7iwt+KEuVCOdvE1maBIhFiaCw1ys7ndyyULPWu9fOq8J9eILnVjqU1NaxMZp0pVCAZfAG4m4as2+GcZNcs8mj0BQO3mH+qGGyErG9JGQC2QJZL9sYv7QTT0KfjFyZ8APahl1niK3A0TZOU33PL6EMdckSzWrQkV81OzmnuH8MlUVk83gJ/Td0uB/NrpQ2TlSEVzepHlzcM+vSeBqK2dSRDj2cFdcL897NkvbJlEv05gZBlR/jTSFAAc0Bcl2PtoocZ4KbpCiNC0GFIatUdb5XgvlqpXET+KejGwlLvpNsZzsQlG3KFnN03FkhCi0ZoMylKm4VguN5PZKrE7xpzk7cdQoUqRAeGXMHKWmzI3A+b0UCttRz1+yFxcUmOr4+jBVkkwV4tjITRqu/y25gXwozSaRzaGKCaUPXlnascs01qogrqppEY8hQ3uxcOyoP/QTAT7K8dTx3wTTy39L8nHHmFYiUGsBVaM96sb6JcBXRa2oWZf1NNyD7g3xwQLNJp7EI9O5RaicjFejpac4qTUzrBFu8h0w1eF6SCWCNgnZDHE9P2ru3JJpggWuAG7ZkIqFzJXceCVoIbqBUgMqkZT4oJnIqmlbPejJlnAIGwOgrDeRhwfu8CyRRjqKjMF9qF+N6DZ63bwGCrUalEWnxv/JwLSl397sE+1mK0DqkgbIeN7CY9JIwRTsFSswQROMHPU1Ey6OT4zHUwIsQk1qllZZSKuAK081VnxZ1+I7XEWwuVVxPBcZy1EHgKGoD96ypNWBwIw0lo5xKey+rYp75a2YZRj5YoWwgdO5qETIcFFT0L8pnT+2UobAY6OR69P6Cpk8a8/wOuOZ4UM/O4DKTU6906I3lQ6W+5NoFuE4cuPja0jA54w0i95RFVUK8fRR9n+clQ7LYIy97K6uU4UQtOosb0VqFng0WCByHYwYTz5DyE+9QYyDNwBKwdtgL251NXSzfixqCQA7xn92hz0IWR7f/vHDXz1//SkhkGmSUTElHhHC0fj1WhiGAvCQw9/cyx7OsvpaDJlTiSRy15om/t+Bzc2VVK1fVFtJadPZ6WRrX3Rk/5sCAJZp3VFE8qPDAJepnzzlDDdWr6Mc/TDBlAsLhoPQgc3bA0TrlIcFTEGqe7HYGRT1KfiSEGDxpMV+vTvAq5MNaSN6oixaiizItAuDqpMgTDddSGZ1yigcWtOW8TtehTA3O1o/yqvuAm1dI3ZQBpXVQSBTxUvUmaafP8noIT8iQ2id1qqtIViZVvtaA3Qn7kXxRACCtI8jV2ofX3pDnb/Nc5Zui+z4xTlgtLy7AMhdoK/xVDW3lObVhdtB/D7gjA0Xvv2d0hSmGF8lwhsSRVVDcn83FVKgjr6fXzu3G4q5eFjstGHF66o7CeMPdcqxA6h3GAUCCpiSujkrz1nkUpYP1fO63uQLzCaC+7kallgzGtkejMorX3gb0PH+pG3/Xj656y1ebjnU2D2cSz8Z5RYam45ZJC4mMDZZplnyk3I2h61cDoT1pvzq6+wzexm5UIveb7s5Jzgf180B1zuDwupUeWG3Okzuqv7cOQNrVtRZtYo1sXq13DZt3rolA4wyzlTznV0SNMRbnTK2pvROZNoj1W3Lg/ZFPccHHObGD1qM9oHIOX53pfBmTjzaf9fUFSaY7rC7PseEP7qJphlDojFDdeWtavUa3amhvOfCyMMo3KF/zHG447cMcJqYq1mz1f05F22Wl/SDAsNbqA5Ubf3TlGHw5A2xkSKY7a/NxA5+JCVeg3hfAsmuPHSTfdsULZJ/Wsna26KIk10dulBE1EDiCvoy00IDTdz8+QYIMpx1CHcU2XAax9DRIYr39BJUbwmWWDiDr4XqRA95lqgSQigZZ2yDOEluyTHNwRg2LSOkR3NVsITd/vpSoWBjX+HXuCAcerNrh5kpmifp8RJhxlrPvf2oNDLC5Q4OQssC4R7ql+bpk4siGknSmzWWkLMHO2OZjYCRSTJgEpEkboK7rSOiqZEzRSHKc4DKWbMLxLYFUvvK+e5ym9ozhthN6TlMZ/v8XdxnRSMtUo4dJcvDL3C5dc2zA/j2Y3oxz0w7XfLA96iwRz4bCe1feG1dWER4IKrC/rPcFa9yUW11jw/pR+ea72LfpQRKfjsspmojX4w0Ld5vtmU8pENMCrvYURQ26p0lN80t05HypCpkmhUjviMlOsK2Be/w9/gkr6LN99ER2tjxs5G3eH1tlE1yhwu6gHM8pEIb2j4Xy/meinpwXXGFQo7aBH1C5mc0azYikCe0pdu27OGBFrR1Pa+kyM26oISOZ8MDTeS5LPZMyW05G3zEUNcaXL81uS5Yq4LxamD7zre7P7awORAnCu4AyGfnKjC5Sm/lFNVgzGvimemgK/f7gR27P6lWq9LFNE8YbpGEOiG2yqazGbfCVCD0XA3AX4z881o1ZlKKDlpMN/LlugL8CULZw/goNXRt/nCy9yzHBnjl2UnDIJlt8OOHQjt5/4ny3T4qVCmEVAGpfqoUQfmFcg2vqIVb5dq/UF3RAVIzDYFe05P5pt68DKZkKtOpYx5Xs5lDPM8go/zSkZxSKqJT3epRZkNbY+/amV363CMv9i/8q+23nMb0on5n/zIOoibei+d4Da0rB0myKYuzMXfma5krFGrRGlyVZXmv/WcAr8dYCCRnItOYxRwWsISEpxhghMc61FEp9aGkrnQn6s8yO29xu/SZN7ryx33kvy1suT27r+7vxFaU413uD6+/cpU8C7Mum3M4X89CDStf/FdeWPmHlf+O/28w3teEWRigj4AUOZEHyH3kHu0Pc9lcMvNmxGwwrabJrDUWU2GMJjXVb5onfNlTDrvFzXKPW9FP35gfa1zJC3mpvr0aOuclFcqUKFIgT44sGdJ18z/CAB51bDiBBRcyeImB7dh8g8NOeOCCU5DBDwBr2pKXA8AFKSWc0gHgThnglBGA0BiScR4AERi3V3yZJAFiZEkwoMJIIFstBsUaNiLbhEm5pr1L8zlTAmchBuR67p1Chb6oMOHrdvbbAUQBlqyKs+tAolPnVPEPzqGh4ZyZp0yDJm0zbc7odrHUIHvrF2grdLAPJjL7URB3nyKnXnTunf/GR7gkDD+XxMENUA1esmkpV1xwJayOmCgtJpylj3GNC9dIsxio+cikKT85cuSWEyd+2Z6VGvTXxs3dCPwW74BbSPzOLVbgAiwGAqlYgsQpadGTykCADEG6Vem1bDxWgTsQJ7hb/tr0w7bVXyfc8H97q6yhXt2B9L5QcFLVu+vZwxY4iz1/5C/gXD3bnP/W1ee5160BPSsWFFS0/2/a4KdCrH+efv6PKvz61pXT5qxFVbmZpkip7Ph48AYc1eyjmrzpmHVAbbvZ4hM1UJ+fkR1BAZpNGq4iBfdcgiZkYUWrgJkgii3GyPcM1gsLYrwskCfXK4q3SAX+4GbMWXhdMYNkkx8oyeT+SfkNzOieApCYJg9TakPhgJB1t4VJpcSubtzBw7gB6I2hWj2uwUjkppEV9Gr2MEag8QNbit9IBVDxNo89K0wuc6qZWBr4SBPiD6Bc5CTyV5z6NaG0KdGGczDGWFkJRI8AgapVV/CUA2MkRDYTQFOgCcEJkw+wzickwE11LX6uDQUaEpBWaDtfNkF8FN9SLUfMSVPsPT51oAgxdmTOjtVcYcXnlc6djI+dXvuDClUjYAMYRWED1xAOKKY+0Ir7CsbKeQZ9qmXwYIm5lE2Qfs0u8XM3uDkdR6H1z3Dy/ktTxqxBo6WVpAkrQ+9gQEnTKB20cKdA9xtdYkz4EHihag/vcdQXdAZmJeH4MMRRgcOmyvgyA7DbgEeoa2C/02Ne0zc3MKIDNzsG21estnK8AdI8nfe0eEaI4yYuZOVuDdzYg9tJt2lI5V8Dofso8QEUwYM7aQy9quTVj+KizRLqiGgaaoPnlen7SEvnUcaCh9APGbJys0V6C5lbSHYV04R4AU21j0u4HREwuG8GM5VJP5s/OpTszedL4XohzeaaW3EjU1gs5HovcMjL+q8lACl8weRdFOjc5sYxAls8EpVp2OEDusc8h27yK+VMQjkNRSmtC3cCidBSSj9qgmNJaY0QV7LDV4ruXhzqqnh7YIkhu56FJVJs1w0KJIWLQ0bLwTwsMaWR+mvtLvzq/5ng7DiMj3btHR29qdXD6hYJQA5OBmdDJITsGeIXoLs4MxAGjyK5XVpq3hG1WU/nR8Wx0MvjZSmoImjhbM9iU+CAB8RBopNok2pLVjuw9eAyTGu5uT7ehoLEjBgkA09UNHAj55u8HonOdTiPgVAO/q0Ie6Qc7LnNqKTxQ7vVHw7C3p7sIDOTkYYzzHAPL5Mc2n0+dUTJ2PogDxPmhhqm5S+LQAg5Z3erpUg1Yeol5h03pMSciJmRLJupXXBdD5pF21Ky275s5lawYo3UikkJ9KcLyUL+sLuwkC5ketSPdqBL18k7ekoNW6mWO91jZaRVgiGxehNpiEmcUOcgX7oe4nhUk51gyyrMpYGHFc08eNgwt1qBlr6lDLimxMn5zqMKRo2+4uHjYBlzyKip8Bvq08/QPZTlF4fb0f3mEqikQzIphTOxh9Oecq8hlE0m/krVuT7oTATxiYpIS018Bw3LrZijoFlW8NUJhXJiA/bmfMgP9QG6/w1/S6opvBUM2a1ew070H7aNsqn3++gIeRlXrOTqSsgHw5QZHQeqMXxHAFXKr0/VUNTBmxVIeo5XlHApQGL2f9TDyMyqJDEQ01aRHehm7s1FqNW1FItClrouMucBdPrZ5BhaIz3e4ThmZ6PxhJsFiSwMdQoWYbiN7+GG1tg/UsI9ueROa615dCMyWrOJWTQr+0hGUR/GQnEWthQxlxvfsbYkFMPIq4csZc9Cnplwbj4AP7e1nBCuNR/q/v7oCCl7k3gmFspLtbJehY4WFQsCiWUuxA6zLaZy42ODbh9Z2YFY+Rts3rWHKkWbBUvjmiGABW8bNeUsSBlOd+n2ghmGzkYVsSXvs9BcSxMKZbb3PYvIXXiGu8UaPSCxB93v/Wwrn2JGtFtFN6yM7hPK2OhjySpWYOYGPifZBZiFnGFGpB7CTaxb93R6B+Fk3vwX/e0Dmz+AtT9ncFhYLtIVCLOeS9oafhvFl6OwlHWEG25hGzj11sVgiC/FvVR1mnFz8mSEtomLMQ04Iy/OlruEzJjtPExkeRp4zc8NhbhuGAxfuc9RJitjR7yyh+HRytRcrdXcUY2fixCf804PhPYmheZyAEWFtWrcHmS2hwSItgp7aeiYrkhOWDkoKBMXlJOmM3OgQa2Ur2/0hXkR2qLuNOzCz51+cZzR8wRfXonWFc3E1LFIG2X+5CFeoLUpUIiIy5PkkhJT8fBxS9cFjxJPDJBqvTOIkg94gpHCZXRQfiuGYNAShq3Z02Izj+nRRB4a/bY7Hs+KB1Qgbgf9PE8XwUxJitiZi+DECrPV904QlIOV3Y3Zj8PLxUXXPxIuCR1iO+ntiuoctSQ8H031J+7VtEJMK6a8QMsjZyGA5ZsN3od/WcjVpHf709Uowu5Qty6NQpOwWNfQDLTW2cM0TpkQb0Vp0HcclSqf+N5sRhGdyZ7bsGHDJAJZiRgZ5O/NmUGNroZlfUD0NpudAOzkkHMCm/sVTRWRCML6qnAcqIdyY5Hq86xbjpor8O2liKQkZBNzBs62CUtAi/MC1h0DoxB+663qfu6vk67bDJQggrXt6wJOourSfmAHl0vN2QyPn810HVrmPDMTyuMIywYCn6ln+uDCdSRvXfQ2eDBp8Uvi93dU5E8rAYqO57XkR3TuCLS+M9GEbNN16wTydTzJhYtFzSt//TV48UgMgyD5uYLjm/ji1TcQ+9jqEvEtzXoj6tWtkYGi/oTOqZVp8M62a0ASjQ2PUC+KSk7GoRJow3W/WMd5YgwI43FBPyeeVWvNVayVtl/y9S0B0GCiTdH+3YErSa9TqfSOjqJjEniI7DZksqp2xG1wDGg3hHz1S79dFiXQalmz3RCP6AjhwfiGoaeSjrXxdtX6pZk4Px5NW+eN+Uc5hV99OvKt03QfbU15aMaIzrLJ12aSKi/B4o2mxlrZWClxg+jxB1wUc7siCXMRG1zUu3wJqcHonw7gKkgk5NUTlYbnO7AG50BV7icia3z/bSBdosVAR/YXc7gE3MYxR8YxIYkFJFA5+1e6kLkq3UpXbqly+cd9jBgIgE/il2p5lpHe3GNGndcSXMAmLmPT1k3g7RBy7jdUSwxa6IlFFhcztS5Ynr7jr46lp3w30Pfcu+q2rPjLbvpWjCl09tj88rwQBWqGL4GhrhCjk0B9tsZVbHzsAw/o1wiGdSSdBadD71b2YRNSv4GbQQuNmjapSkgA7IZqUWlpwfxJ6qlQrO4RmSdv3JbOIlB3sUUYWm3kPytG9957ZX8mvax0aXnYRujvYJm/TPcXfxk/iBjrAkLXXyxY6Fs6MzSUiR1k+L2UycDIwzqT9FgELG08owrawz9h9t4yKsMQHBUDH4KTXHX6wXEgfCdCsNRFDdQisqavu0D/vWD/bWCWBXPjKy9kOqByMsON2aGJRE5GmNZtanSxKG9GZaGiULbtxBokeWWPdFEKV1yDA/rFMbiq08XvIcEYqyGbuo1ydJVi+lsqYrSDebtj7hpWCa/aJaHVXcND/sODfWTIEVHMUYAXSPNR0COldhbCRgFkqFTcbXepbAVUR3bOiDSCDGyQoMo4dARkqtPvqJ7bJ2H8WAzzgl0sYAJpfeH/0EtuT3XkZvi54iKIg2B0A1PYOFxD1SiP8vV1so85qhjRVTVKwBwQCFNUwQDm0a9iDWXHlBKoScJNq3UEXdBowZyhPJGHkmEBP25OCDbFK2SQeedy2LVWiwYHsFCSU5VGST/Z4D0Vdob4sYQcLTXyS9fPFsDVEkPoXl1EPCRSRa9eDLN0g2nUwQAOlIXbYQ3G9qiAAe0eGG+djoo9MvpafoqHYAWlta1Hnp7Vt0sIRsjWa6J5NFlsK68dON2nPr5fnYQyZ/hsvCuE320SaCFllOYFFQaAGMw6i00bz3OxQBJQ1h0fZzvElS6k80m5VVGnQOYgJU4iBkre/NQ19ElYz6TIxq6PRZ+MgNHK3iRhcdhMfLPVzKlEQnUasaVlUcgJf4eXsTQxwS1igGYRBm5KERxD+YUfSAyTHoR9VQHUhGcBqyAWjb25NPJATAWMJMFaptXRV2FHv2Sg/UPEOkKx9jf7C9+str17pxoAv86gM5UvCXtZtPkvg2BRsBlFw6e456mskAk1DouDxkk02qicjeAJYgSbFh63Sx7kQ9vMSYzUQo42bDtjmepxoCcw7biVeaK96sJsQPZQUcODqmKv3P9vMCPxo3PCJjiknDIHmjWOjMAGKSFPXdwjhW8H5/H5iX8NihWKxTrC5VuXW5NsUHBrY2kBmS/VSzCtZ5UVsIKfW3RByRvtAhE/LGMm3zyJUoAXA9PpwRL9IxHq3Xt7EidXizNz2jv27WPG2QPioUF27zF/alHcKustHzFikL+h9g6DDuW7X0D8sgX3vVQVVbBEPEdfX1aYKgdjFbiAunUzow0krxAKLtyG+NFjdBgfPUcsK8bn/Pj+bZIrY6Ry0ZNB0cmOsudt6kBdcDqUl24H2JwkFJAqI6IWDZ4dV9u9vOf1naMk5mrCF1LjBLGAComiJwprdSimzcGs1qeT+UiZ/ti1quswKoW6aaqTTZC9U2EglJyociUY47hsBUwkjl2lZ1n4IeRVS83i1kJmaLfyRo1J/fMQUjiI0j+dKeitmIIhl4LbBUJk3QSTNi9zkBeW8SNM4YdTuHCbnPb1woCLh8Y3acMj21wEMOTXaxz6peJzVxTFCLDIrl+3+fzW7065imKgpDCl72GXuH+FQtRk1OPhFANPBI1NJ8t9r27OSV8OR21AewgM+R7Dfwnr8ivRsXbxsPogYsDFDIwQNWZhLi+p+RDwVns5Ql/XyHC9Q59MWlF0qzOABfggga8SfLkas23E1g86c1uqISMUGg3eTSQS5g5F7oBNrmcnKXESLXzdMz+ZyQipxdoBrINjmHSO2WY/0oypPy57waXVnfcRS4LVpXPb1Sj5WAmDRXENZOukOLRoxMsUcQ+LypmIO3fOuAP8vHJ+X69Mjq25a9V0uWZednW/ALp5TSB+se3Nt+Itt1W7Zgnm2pGS03wo+cxsgQKxXx322Zz+rCG7q+q5dz/NmtFR+TCBdGVKK0BFu0pMUd/xL+OTJlsJ+jvqLrI+lIFpNKh5oO8AgkYZ1atVvl7E3xQ5Dnz0x8pCcMMd0NN2YJ4/gLipwYsFjnOH8OAgMLHaCJYDhS3gZ7NohpLTSBtWIcq9r54GGHLh6T7xVofQclve0W+ByF3wGqtttWW+2C6KBbkaZ+UWK3Z9C2ot00lHPTPr0YRs+GcapXwz7Znjft0qub5bR0Xfmqgbmbo14BKiIRkbuboxVvNoXtakJ/p4glwJaFVthM9gbcCHJDaHS6v6HodMC7WhLvZ4Pe4bvUg23/O5iic9FIOsJjfYYW8SMe0/kVdm+/AuIR4tl7P2ycxPIutbsrufxqsQVhXFBIBd+6oCXEIgS8WRByJsvjOJ8FGsVjyYligI9DuvmxVn1d6EYIWbzyoIgNTBaiWUT6VdnktHFY1c49XZ+mKG6o/aLrxFhPZQDDOQNb1QtFw5vpxEXUG2sKQB1YiGNtULnCWuLJ9sM9MFG7/U3qK6uCeT+mt1c5g8rCf4Ob4XF/ia92ECY9xN1FMejnMBsk2iNFzzLDlwwLnRRYnWZQSUVVKV5smypy8Po1KItY4sqEZglMECGcgsKZxMKfSzJKuO0tbVy3Z/jV55uALudGI42wrOm4EMSUSqolQpc/2zChYIP7Pb+EnNWiMkMtK9R8JotFfxaNF0YrDf4+jPKpI1XUeRPpxtr35jkuEcLqTa8Eby/65C7iY95rNhjnRTYAorKSSKDCOh7Rf0rMVcoQoShuELI5PPgjW7TK2MxFvg6P7B3pskBrKJcyTeGyJAOztYPcS4PP69bix2n9egx79GfOyF27etzEwcTIDxeAH5V3i4K29zmzArmNQvyPCvLhj9sGW3RRDtYiI0B+qB7MmT05iEkyC9OCuYSldg1HdPQi6Y8Hu/iAbIo050hiTTZEVByPAYgrblS0MuQysDAy6YUEvYTxZR+o2XOHSB8IIAX7CkujsMrhdr0nrWtEk6hmEFe0NCGQU1K2E5wJyVDsnSVA9DfvUTqqeLC4T6pcNdWuKLeP5GeteafpkdKPRhzMsq8sGp3KtFbpnXioERrRde8XjOCCPLoWOjASQVaWUDJT6TwCaUYlM9DHPBs1fPzQF+zlOgTd1qoNN35B0CXGzhnIMRdgpIhwj4IHyHyYkKxkTCo0e7yo0OjJhsxA9yHKj05ZHYyGdeQKMKTwfxJTzDuUYLVgBYwRUyw9ARu/Z5yMoNVhnSqndljOS7T7K9XPdhW7AkgQsqOKtxVjDVvUN6Kxya/XGRcH2OG+HaMwa7QqkPgWPXIhPVxYrPs8PzNJeWtPC93jFF0mB5Git9+iOGbZib26PD9CgavOkH+aZfxIAQdNTSqNjOUrH8zUig+xENb6l3AIuY1sySiWG6Un+afRND7FucdA96+YxwBZjgVSjormA2pmZ0GsoFvagikFsKwNiI9z1WFkacZGmFIl8bdVANa2jpj6Lz7Q8FE56u1GJYYFEhJANvHXI9b0sV5RATdoMFyWTY3nwKpbKq5IWS3gt9XB7OD7njqnMaTARsJPxLdhWQl4TQHItkFtc/6zvEAxddWyq4zA/Z5FaECurPlXHvacdu2aEz4rGAtwJDQcuk5Wt0UgU5ivZL9gx9VimweIUB5eQXBelxdQeMHVgmQwHnpHHPL0a1YQcc1D9bdgJGdiOF6jbTWCADDlo+pjSiw9Fdm8Rm0Z3J+eNxw+491GKgcwlNyPe90mJmIe2Y6oZVNywxR9IfQZNg0iAkdb1HWWPhVEMtJRBBnqXCJgizYcScrpgtxAhHMjB0P+4NhQerLk8QTuQsxTWI6TFNuj2SANQq3wMGRLyAmIH5BrOBsc0s23DxgiemwqJ4g+n3JWgVmDcqIuZCNgXM9EQ23x06aBIYmWtlUqmXFsWmcDfxk0ku+ekCeIb79oWc7on4rBzid6zsAXJoSskM7ef4oyS6Sc60+87qiKNAEZPoQkK0qRol9Yk0dC1PuIXIvDvVEEC6+9L6M87yRpt+zbJ9cM146t0x1g4XCvPNARtWI6O/GMe07osrsiX2bANHXZhTWEGCo7Sa7RxGDQxAzoRggXJuFZIwrTGKTECmiq/PUUIn8JM0vQ4y/gHvRzYOzcXiiJ3fD271381vfGwJSYdQBgBHSoF6xQglFEAnRARM5vJYzWOix5/nkHtc0f+5ylfhZYKMY5XaZwkujEphs+6Xk6xvlQBziiOqWepMI64qbhQBFLIUxH/D1N/V99B8c7vZBDuzGuEzvWF+O4k24sndnv+AzvD0BrsDd+5lVXJ3optGCT7S0BcckTmGivVxHIVUnBxtkUrbmtSnmiaEDXVNfHAiDibmq01xt4jj74X/Bf/J7o+YEDpoRJesg7mFKcg5dcFhTrSzy0V1dRTpdqh312qIhy6vQ1uJmVvC/IywjYq97QKLsO4nOB5z5HRzsb1UNQ/4foA9C0TNrVfpyPPDFFhkMGRap/IZ0XLzgAPqR3SVJDHEPgt1LYF5dKobe1vV4qlJ1TAnHYjRXUPgEXVA00p+y+mxE2DZv4uBYACjlQxBgnPcwYZFbAU1xjyfjMO8OoiZButM+QHmo+6YrzeGu7L3u5GUr7D2tXu6MxRyG1v0MpI59YLVxUbDEn68ul00u1L/Odbgu85gr0/RR++Fgu1Cvmxk3Jb/gv+EvF0Bz3pnqjCt/kkVwHR8CcJ02MmBjrrHManTPodc207/wkJexTGJOOgvJnqutK2FC3XyJELSiEoRK8JXv3bBeOqYPgBcPgavnQJFFJMYDV81gf+BIJhkaGKsXFipp1rxBR4xmKoSTYGQBv7BKpDK2QTd0LhVZmLxS4QTizzDZqyb1pxLZPY6F0lfvNIZENbvr2LgF65weZNCZZH9WkJSE82JIpPHQFE0JfjlFFzqrk3U5VShg9Q4fA6in+3xzes7pkD9mtEHsg17yZPZX1BusBIRaL+TwRofHRBLcyQKbejW2PngWnWMl0pnlVEP23QY2p2FcKzBAEIRua/Pkol9BnAXDTqgIn1e2YSB19hTYC4wP+PVx52RlpFYeKWKiuZSK3bY+yRRJiGauXW9YNpdhWPQ4tYtgITkME+x9Z3GgzUikeRnPRJmS5QFko3C8TBFtN9BqcaH+D0nkYA/zvnbUMp1htndHNguJWlOW84uckHeJFSlYBsBQRUdTYo9RhWtKcVoMGhJ0deaM/rebwe3dVBMwNWogg6swm2QHmGDnV+1U6agjMIVkh3Q1oMuRwCjVCuCxBULvGdF10E7e5IMr3YTg1AybTy9C8emEWzcwguKdIkawZwx6CSeToVQExzyoiA9h9QF1COpotrQpwQGw0JduZdksCjmVBSSYzBztSb9QO/LwUylFX1cbMLAMOIvCysuGMCsmpfgFDW0TSH4GpgP2HyuLhv2/LGFEeGPQQn4gRTtpVa36FwiKLqyr9Rle40C9ER0GiX3E1WQYiShFy2QxZw5AoTH+I8CfZ85TEYZjTQj+fpidCwpw60Pb90DNm+3HRBDueOeVO9DXUKbNWAga7hCZEkMMJrsCF3oMyU7waKIjgpdsC3AnJmbK/VsAs+t/aETPiInzbCGBEKAEdDy9kiRsdfSr1ycTq21oBqXk6I11E0weNigXpNGj+J0qlPOIJWbaUWF3vRT5TTgI3dBSMLQqfUSUiC0cRWDHR9SJpyOnARq4quYcg+jytshBEcr1Eisyzqs5/okiiYyeu9kqCbZsPUF1+Z1Qf4anpr8taZhgpd7t5IyXe39nLaBbOUSHay8yEiceGVcXRVL/bUg7ceObn7nduWXTYV+wHYjZAofxiowDd+bSsFGk22ZXX55QOdhk6tHsw+F8k3dRBEclzaJVHbuREYTW1a6kfzySj34FivLa02wOARXNFedKAWIcD3iJlGTzKfGnpbZq5EGH7J41oXIpA25p6y2cqkJ7XkIt1rjeGgjrbk8yh2wJ6U9jqacf1bA/WBeI3wAsaSbXd3hFr6Ox3T10xjV2+OAovRu3VfvQJTpM21BtjuXaAeVpv+z0O5DK24CTfUrtzYwNtUdSOPvnUebNXv4wtxMRNW5YdqExFnbw+d2sPGK7ttou6l99mh7IhZIrSjifmRLRDI18tD580aWRnoUehT70R8CDt1N0eY6fOCSkCUDjUC9EwWxSB+jDygBc2J8O4jiK32F6n1uPpRYbhQ0f5y1H0FhOMARfAf7vNxffRpuO7xt+RHxcRGNP1Tna8VkqHRqKNtiyL/TbOybur6ZXlI0/cMLIRAUn4t6EGKiLe3nhtDHFMr6Bss30zXXr7bc5MB80Ej65TRB7DIv5aKNnWnO2Q0tX3tkp188e3O26tnbqumvNqVPvCeXZ7eFQruaerxWa2bGFl0d2tbghCILCL9rbf+Yf5flcaz1faaz+OPEE/wjLJvlhUgonUHcOg1etL1E/nzIZvBTEpkKd+7N85wWTdjjtAIoK9vgxcj/Z6zAwCAHFz0EVKGQi2mKhNH0raRZPh8UJtPow8KWQEMA/EpkK5JjK4pmmnYgmq7x/I5CvqxiXFPKMyoM2Y6aAp/brKY7WFanb9YDCH8/4aUKI6rmDaECy3PL6aEpatNpLKl6lFTIEQEIdg9o+to41ZmOFUvwgX10dQae42kWBsV4qYz+nimwJY6XXyFTae6ZlGgrhO0yzK151eHPwQRUzmQlP+JWk0xasNJ7qrQYqOB7qtRX0iV+flKIT1SrDE+vG7tuLtSvR+fjatwPAoXhedpLZ/Pu/1d5cCBFNPuxIJpSlq5NHDgaT2lNbnIrcTR6/pFSa4ZEZspog4leGtGwSSUnXfOhtBfoZ+JvOTCATBoSU30A9fORBUvrC3UQnMVQ9WFllaQwoeUACtaztDOTLjUfGngrZOhGVd7CXm8Ev+leHwYCSgyst+orgaBCnWCqiSTjGMKmVmifUJOFx0OhdStYfuCvylVQbdaxtEfmr5LhXkmUojNRiUvzZyFpYQqgpGzZBWLKcFj4z4xxZaRXEPHT1RN8bpCYD5aHz3s+JhNqz185XGtNXK/CkWHc/vvri2dXzOvH/dERftfhXcauzmzC37h3x7i1st/OfpnX32b24UiifmTVxAvZzvvo5tzISBA/KDXfA2lq1Xn/3fyNAHAPQnf9YdfzYzMG0A4NrYhel+zeZsG0qXCMsmNA6N5vTrgIhJJJ6/t4zXYe0C9kZwcTFpbx+rAhi0mfQboVVxEUXGqUin0gMSOjNBLYvo0ilLeDclTzH4PPF4ugSKVeGdAyJZ2L9HZ/CQGrlJV/B3YckVWaMYfzy/W95Dbe++hiKFd3TYZQdVr2KjGle8nxEqkcEvCbazty/6nE1d5MXGRsfhUxuDObfGZ1ABZcRjnaec70GnaIwiI6ejNyrqiXYk4QA6byrvJ0f1Vsun8HJpVxpwM3mVqrUcDjU8uPlvfbkxrXKSitLxp+NbxDXDmTUDr2670mjrkOvbkZn3CYBoy8MxhnEvCN3KV72CeJPuUBtELkcPgAwT8YI+931upP948vQjkT9aZTxhjqiu7M5802JsRycKKd0l3IbWyuW6J+QqaIvcD7XQh2+bCNfpbcY9FtTiFkRfW47bMTUOBfxEYBT3lld6BqZJgeJP0miedmjPKyFdi8AEHACiB72SkxoXwsFWBQLpk1dpuiSdjQGAb0V/bgsMDz94cCvaAcJbNMoG7R72BPbsqmHxamdiRUcCEh+nadIBG32sy90tfZU53lo9JLVS47LRxC6mOZa5jiTEs6CaPQtDaZV1YbprSqybsu0QTcGoG3TESrcnGM+FBBWkxt+P1zhVT738wV/uH5zoyfvlModZfc/zz2ve6BJgjV+uRHDW66YYDHLoYUT6ODDtW+LnLmPEzzy926favom4gKsyxOUNnwXDhPWN0hfvEXfGew2tNqo/pnWMvWFIlDS+76Ir739Jrh/9Vtkt2vxWz+c7xUtDPaM/bppHFwmO5LsDsnggcH+LlRtV0yT88SnSlaB2zBpwJZzME7kVuVEbF0qUjpipXWkYwu1LxcU9sa3UFtKNWX6TlaI5HcM74FGgRfCW9JkX3Uj47p8ujmpNbROOj14uQgPgPDfoqlUUw4xbCZ3LOVmpzo/odZEgZsUtQzmQS9WvJNbaW37eaFVbckygCs/Y6RCyPOCNwXuGc2whq/H3AbRN/3XzeZ04gLqQWxKZps8rDzXN7r65zT0I/O7UfYTM56GexpMD+reucJIybhGiKB0qdtS0JYsd6uvB5r8Dpwd0fsOlfESXcCzYcrVlyOzZvmv4fvfhf9KWsGQp01Vm6BbzkU0qKY+84Y1iwGetbXgO0cQ+CxiZ5KvcnW1fit4C5wsbk2QhELEnCrzcrnlM4iRWkt7Ai65AnmewiHEwPqrgJUuwbUaKecN+rkyNAmNO3rJI20BswDC7XY3/vQzSHnX2J11pWfMk2S1Dv27H5YAXOXI5YrQNatK3DCNoKjWyQXbJOFA4jmmbTmw3I3yRMB/zS3b/47xSYlxto5/QVSzuiRMYqFHYcMvFuYgYJam8dAV69YO8/S1ayiJVubeNkFiFOINB/kucnpAjVNvECJyMpdc3fhGN3s6QhCrmZtgdrZ/Pz7ZnV23c5OdzrDYf1qAQMP26kB7kjJmh5Of8JdRyGGOe6AU4+NKzv+FuWyt5VKXZjwnRwIK8rF0YxzM0H9pamvqq1dvX3HGnXTjReu//SGC5rkMnCEj+5+aeobrj9/4+c3XQSHajvXrdmxfU1DIkBR2it5CcH1/xrniLp/ctRiL5LgxiPQVhojctfnsAT5+0w+mA5zHyQ82wjlO/N5wDe5dnjheyuI3ZrhhtPDW2bkR9zn1yHrieJEoORsASpsJwA03dxpg7ugu9PKtqx9AB2DA73nGhbytlc8PYtQlQhVdLvVeM8Mp03SYF38GgPfL2uBySg1IRCc87RHL/28ZsBN7yd9oJIaxe5ydJk76SM3fBtaAVc8YWdywE+7+irj95sJRYP1eSZ4248s5/Zz5aG0ckb1VpGOyHl1e4xqyNOnkGCheqwlsfCY1cIZbeM7V5bY5zXG8rcrxAbTa/vdzc90wHgZe7TQMdvWNVxvQJgU9pOMO2ox838HMY6WhT4X7BNXKLsKaaEbT4Dndthf2Hr3nbXblnPL3FyYHMSijgYlTwoSeQiCKTbOik9lO3Nqk+mut7Cm8dqDCi8kqZCYr2GYHsMUYtZJ0IUP3x4yv8BxpAh40zMHFocfU8S+saGwc+eNKVe5/EyY1p7oRC8hvpx6Pgc30yWgZGY+VuYPWZObBoeQkUjpGoGKmikKlkyTyWi1PeeDqCy61jEm58E/xIth+kWCGLA/lNXAqwRamlWFxtaCtO5zvvmjfJBI2V+q1rEfmNlLAMnibWsTkotusEVXSMZQvyXnSJ8EfiHjtfx+uaMer6EZJ7fGdm9RjNrpya4yMay/ia9lUOkEsd5UpblIdyFfQOvdZMtsWUqOMiM0tjOuyYDoxdM9BKJgrwef+g3immsrviSV7aen4X0NS91MG2RRdW9I8J9XV7vOPiYeabNPambN9j995pVSFnfzfONDZg+4JeAZkId6lCDgf2R9keJyKBTjMysLRdl3m1jTmUjlCWvhODJbdq02WHnkoEHFZo2oMpl5flgsUrcZGGsuz6Dshc7Qn1Xbt1C8H4yOJu+ziWE22n+6gzRH7GumTKh6CEtCThAZkyW0dggstfz4CIq9uBV6qgYJiimyP2tdsDHlIjyo0Xmi30lr7FXCrW71kOphhhLLJ9x+CX4xZQxMyfiaIyQNjv6KXLJltV1QGpfYp//510yR0CdN5bmC6ZLdJTLDLb3OtAjuNfQugJh8DshidR8hXOzM1g3ZipXcb0HaxMWtuzOA/ruQPPM+6aPse5DLunMulFCnm/01NaYkBqF77+prpZ8TQjDuDUnjh1G/S07Aie0XZMyH/c2nQ0hJ3MQL72jGQHejjYlAZXowU61LfXlF5TSVNEd15r1f+OQTJ8IZ0X8W4/nKha3nB3G5IHLvZ//bIdSw7vPUwzztmWt2dAzBoJGDTlQ5Bd/gaKgTImbQGBWi0zQJju1WCvO0y9NJsPF0AyTU/NW1XYVb9iMGmyIUjvIrKE+bavxljtNCBrnHHdomL+4HHziOz74TvT2M3tT8as4lFXZxbeF7VflkYM4HdJ4prNFgXjHo7dZJE8dh+H9MOeTJLWwuP3D6N5UF1INY+CnXMp94rGwUuGSyc74vnNI4KdMI1LGomzXuoKhg68qQv4kM9ZUZ1vUrFnfaZckzrcyn5szSGJksYRdREEsVXItN9SH8x5iakxR8obanHADGPOwtvHQAUoRhATrd/nNjjLDhu1NVAHVcbcENajseIXdxmK4qh+SW/EEcdkyQM5jZjSiWCjUrXbtlFHZ5k5lbEawCRvBQnwoTtilo2S9QgzlqJTqHXi2AlESJUBCk4mOz1a9zobS8bZ1pzO6BcVV0natVsrxYHj9tMd5Btt1B+G8zJOXL0GqUWZoTcRgNXmqWbPpNx77fBA49dEsg9HZ2G2HwBW6R28CavO5pcBSKEIFng2P9XtWhqHvy5JMaBr4fmA0bCv4fkL2N9j4PeXHOqRNGFjpeHSTFW8NdyPwtLJ/7Qgg/0KXTass7HkaoC7sAblcIgrcC9jahFmlIUhZDAn2FKMRD1a/qzzFrfT7ZW7e1FOdtpPU1C9vOW3M16nxxZYJWqZjJeR+EmFxsyn+aJSf1M3EZngq+SZBxOU4FTr/qHeM8JtjKmvcKQC/hj1nmm7L90LTUZceZfSIgMvImC9ACSg21VTAUPILcztY4eI5hs3gYQC+3PbmEKLLLyG/nfG+8/0lXiYHuY4AEebj7w5tXnz/2zmfPqV+2foZAGH7W5fr0S+zLjARZlyRndIMqg+ch3ts++GO6/bAru2YcYFxdjkuPaAKPE31MTo5iTfSHe5PzcNvRDGnwdgrPtHN829ixUIanzqvGbzxss55+i7y3httvGPHdhtN39fiUF7im/RlJg/PAsn3Piy3DshxW6Dh90GA1jtmpqOA3EGwf+B5VCyLBFWWkCbNsaTbRzHhd3wu7ebKH6WVvkgOSQMeRwAS/WQT+pfbmFtWqk+lC3abXYa5UigHTDJjQKcUF+Dx+z733L/n551fJ2HxjquAunv5tcSn5MubnXwxWnSHUsNo4SJAkmSpQ3vmARGd367RNRh/JRPTcl5NWaJwFKWhvwlzMFUEEhdEZxdSEikuyDhc/yqyJY+0eGZTzZh42RrlgjbhspraDKpNLGc4k1H4WFqAzLmWM5q6HSLXL3KWIL6VG5ppgu0TEohRijRXTBqtSf7VcXo4femmlleHbYq5k7WnoXWzaxznVBx3wTsDiScjJot3IrZx344N4VxYn4rcE8D0REYT/oL1wfuhiJPYEpJwhVXmd0z3jCrye5LtYF3MVGfLJ4KyyuoWl8yOmtKNXNnXFftbYp/eTyFlyGTdJlCyzrUW8SP4Pjoy+uo7Q2+JhGH4FpLO2nKoPS6J8E+dtdyihEIu5mvP0Z/Fw9C15rcfM3GJ6ghNtTJ/phN1Ntl1TcANgZ1Hv8/aq9I0hfGds+VUIW9mZe1/+zjnYvK+WARdviy+iY2t1i+8b1klo0ub94aVMrhIp+cX92UMI2Mhia5FdFHxlh9G0xkPMzMyS9IA4sFuby2b7WuI6U/Lhg6yZbORyQV4WjsuawccZQ8+Fr2jZql9NFKNhKd4UTRtOHWaz8aUe5kC4/ryZOXLqw3hCCLUzef93Ae+RJuG16gAQpgrb0uk2xd2zVj0ivBoIF+4syCnXBct1Xczqxbl1YlarRmXVVA+JBQ2E7pUjnWvCq7ArUCKK4jlZVCNJYTupv97wfvYW2K18HoK3bWCbQR55ySdNGqQTdDAzXbjvSaczH9oJ2DiosswwP1F/Y7m2MYtVTK2pbUEReEkeUaPszjDWSyT43JfqZoxexa3SQaoJXll7FhmK9R0gE6Lyn51itrMP2s0eVXH7/8eKUqkowq3dAP/KmxLeacwcOYn7ql5TuYNEsKXGPsvnlqxL+J5UuqpUm6wwNpKiYTh2YDpfnJxsor3CM+Q4pW3t3rpWW0KinRhk3hiyKsmhW4QcpKso0qm0PSdT4CGDAfxx8wF7KzRLifNtPsxjd1HCR/ZCTBe//E/25km+/EbID4/FYZJMrSXps9eP5N0EwlArIN1UR625xu/EO7vsJR8hYNlDss4e5YawxBYm1CBdmyNU+UpNcMmNxV5xf8gp7PMxbJsLeVI3TCDrKSut0YJI4Y/138cxl32QT6sgHfgiDT/DEGQ49ZAYFMqTAilYAZEMvYaqCxUek/4giJSkPWR7HBSx/HQzMaG7VYrwEHLVzu5Phg+DgWEJSAZcCr1jbCaNg8grdKA7JlVMbkqKd98EZn13r6axid8EGoE7W0TDLe/7Ut0sYuRxb62xYP+zJWk5qTZc024n2YmfqL5q4lNRsRVN8I69GBaa4aCwl4ea5+stGdNYgaPUD0xlbhkjr5aTStIqCLMdHEypaaTSuJeeTC1c7A6rJrqZhAn0RBJSPUCoRBl5BntvnEZhle1yG87rpFbRcgHtmn8xb2GW7OlMYVE4BkXpwqzbcS4hgWm31Leedgi5XYAEFyltyXEFnbRrDq8oKEUKxHKQ197SSPjM0xvnzCRs2ztsFapuj0H/bYqiYELkN3vlywRDvOYfdjLYYeHV/gO/Zt9VbybYmbexOuBzu13nKSb/1i8GnS8zUe5FawSIB9Cb8Ra3B5HB8U6UYDWRHZRp/I7PYa3bOrfuJ/HNCDlnOyLre7cITL99QNw5ZXpe8HbHqTNyoKgJbg1gGYwzty6ul4dVQN2mKRKGjlan8nvBnVk1bE1f68AomMa0DEHmDW2lpN5CzHQVl/qiKdn0iwUSbRwy2YvcVCXk6MBwAtdVE+Buqr9Lqneqs4IS6odwlXiRFOEV0mqEaKQuRv0WzXMsTU4qPo+81fBaaQ/BAa86bk1hdn8+66bYack+nMHn7PGPuy6T8OgIu92+c+LyJDx+6pFh5DPuwN43Eg8N8jv4E6cfHirTFzGo915G8AgKl83KYArXZCbpAcXUHy7Wi2Mpsvu8QFfh21U8vaYXG9Inn06Am1+kAV9pa8sqiJyAger1ZYmBp4KK57dEzV3bWzjl9BmcWHHANUmDXOBUoJaRrvs7ofDP5tTGXKWLxExIhavEtFBI1FGBSM+4DybtMMc5YoEq+GFWguU78rVv3wr3HfOmGHgN+oQGq2Us1cPyoiIT9BiRWsuyykquzbf98uAZqCWa/WCFkVRXyvSFU3qIbaHtng23JXuWRauawclmr3cn9KbzdkdQnV7uETEUkfxet8Wzxd/3r8qzucD/y35IRy4v6UxktQqWBRQthhSNP2ekPuLiBobVNjGr0/aZwku/MOV3wFkhTADAXNu62cH+rPurBi6yE44h1sg8PUn3CVm/lXngfnYjMu3EOuS71nocF6lxasY6eL12jf3bmTPlj8VjulqTf9CV6ua0T2d9c9i/tEsHPToPP8akZxQ8aeQ9Y6pmLdSMoRrsWiN1aw4e1EzdLBYefrSPqj9jnS/OnGzXIHZeqTYJ0a4YBwmmiQaugnP9zzLMC52LWQ6zmUZZDhZXTsUpQgJSIXgOE70c3Q0g56B1VUKIb/ORZQCULjqtH6dN3xeglq7xDweHxaBBP7zVEjFhXPj+f7AFKJmJB9kRFt9aFss2/TWMfhYel4kE5WtQcDHKDbz+1g4fNbg13HKzHSF9DLPhUadIWyE52UZXTnqOzyr2gPUXGki2vaF6wsjQZOX6FBMDZqGtobPAOM9PmCAw/wC24Qo7MkM6m0x17M70pIbnIHFDN2fGpylMGmcEwPIaOdGRgUfpJEhp2B3genVUbRl4hLRLOVxFqZsjzEZBJqPMZYBK9M8JdSEZVQJKW60JNT/JmtVoE0mMthObW5MiR/A4C2asYO9bM+TwErtKhFij32b7qDc5aWoddw26aYkiFbOdrxRFMzuAGNdrS5nRME+Q3bsxCYhGZ0md4WFTdydmY+AO0PJq9Rr55VPWrSa+NQ+Pw9PjlOddhTWXJHSY8KwWrDFO/mz5sCc8JZPoh5/DeetAnhxsdABbcYtFa6EAnY4X0FvB06nLge2iDqdylwOilOu/Ms0fLpybkbpM7FycCTrGpPW1g5+2VTO0hf6hrLJg2xNCOWmqucCm7TTlFsyiJGGHfSsH5azmZZ83hWQd8ANRgEzUV6YbjcINAeqLVE8Z9rGOvG5TXX40YfqqPNAWRlfqcY0cN9lta8/R0uvkyZ7pn+/17CcvjHt8kJanyBfpY2epyk8y3VAgPBk7Dia2swXpEfVIdf/WlJ6Oy/7DllCgILj0Qpw6gXRDEBQnmpr8DPcKwO0PdsNn1++AFA/9Wd/xqfJRLywKmS7/JZ/uimC5HcoGLvRykyVwhu1j5DW83CTBtHK/TIISk9tCSEEqLPmthV37Uv33FwBeojq6SaOnzR9TSL6/2UtzJhcn9h93kF0GvhbinIun7HLNcIIdqgn21GdyhZtjRbfGrsqcJAUGGlRuymVIpNjbih/SiqErmLTM8/4YwQDoWx1qSJh5gzgKlEuZWxGJRoqecOiZ9cVGkocIxrGC0Ru1duJpc9gdkKhx2ggO+Ghea8/FNLJvd1LXQvZ4hFW8iesywAZmJ9VdZrcKPfnH+grHtTYHvnVo5Zr+7P2xao3mweVfosU3RyNnYF7F2lj1XesaOTCOvIq2zCUunZOtFTGE3Quu6y0QpPtsejk+Qfe15APSpFQQbP8iciCs+OYLvr75oq/5opa98mGUTbWHmhnLJiCrT9c+EwuzO2qkFyt1G/gCo+txMUX69nzuS7/4kQXYeFYDc7p37OadDIeRYS5o97lds0prm0YDOfRIAEjagRiLWRGmQTg8G4+oeWW/o01Dws0hipwAdW9EhO2B+fKZ7P3LbDwrn8tonN0SxfZKMnfg9nGB/Mdbawj2ASsFY8+Nk7zCCWsDdTp18EkplOcjPW3WUV4Sn9dN0SseRn/W7t2kg7NRhH0QmK8P97/QLqV9K8ulhNrC2DdViLuxTjpP0BpgJ9+y2dV1WXL26kTWy3OutA/IvBxwU7mejzeu7A6B0P8cXAINzafqxK7xYKvwPhYBY264rWLb/KI0kVaGQt8M3JcG/oqGS7q6SJI/BvMralQ/91r+6hRr+u+h8dMuqbfW51i39Sh1XolWOzLU7hJC/+Jnyvfsci2vEwpEAipLjACYWhEfTCP7TVg4yHaGh5zbWNG07JqVWqtPxsQUA3K1gQCtSiOMfDh04sbHrgSB+a5VyFAPd+kXv8A8NKKIi3iKAa+XGFzTI1sdhES7B0D3hUIM1wXMhFcY1asyLp8SW5m/jmkWRTD6V7aizYaRWJNC4/JRotM8Cjv9lWzHVgxQ2qRXyCUBplxiQ4OrfbfEpcfSOytY5m3TdSzpClsqyTZvqBLlPz/PtGQn3T35y0KXjmJAX9u3Mw8Y19dX9YS5+qElY32awoA1fLarvri2DyUHGwCf8t+uoJibnx8g+tmlryguo88llFhMOZOgx4UyuZ2tKlToc/y9mNyNh0mJok354bKDdCHJfsKH8UQLQB0e2c2K/mEgcXd37gepDQ4Dtw3AlKuLfknrC8qlBJfDFWDeJsjAUvCp/CXQITpAHqiwAgpc9KtUvg4vF1RDLjnlqmOHIKupg8YaKvgljkF7rkQNLVzeUdso+TWQ9FbO5xf+EYyTyeA5zf2rbkjpgh0OvtSAmxXqQIkpJ8gI1IJT2LQzfLsJ+N5rmaRijt0uQsKGgzZR6fEQfA27LRF5lbBLJXIqxk5nCJNqkuXhoohVi735QFCR5K2UAFrkHdUMFIRtFzFwA1ehYV+NbWAIkCmZAJ6TX0pIsBMhWwGMOyGDzyrgm9VsZC02cccQvqDrh/h/0yaksMx2hZ7I5/mLL92wCcfcLjqZsmqpKl2pv4g2ng0vSWwbeTGj9YXbaMgLXxxRQEYwsoXKnq4LL/A8CCMbzTsX8sdXIgrsYflxmzy8bhLQN6JrxMbiNB6+jlQ+qHyMali1Tq6c9WfT+wNVjj+zU4lrDfRzh0qmWm+bse1uMpa/OwnYYY/kfih36O8IW39TEVcat/DBtG9LdtLCrG0awhayLZnklnCtpmuGlfpsKTB17YI2UAs8/VmTt7cMHP9/03TG5wefZPvOFhdHnuEz6wV4eRI//VBql2N7CZdEgJGgK67nsLDV5QWReVWH+D8OYj6VhlPewTb8rMC7kE2eVuloa5B1NC+JA9mGyE0VY9IrlWIVjJxzf1B9O+TJNC43eYiRcd1tNs8TnkEDCSPcBehJy5vvvWt72GjUGGOgjjhXWh/q4jrWJF85dxVYIljPqBXh6tR9bvTgciUm/x+GR960rDMzQafvZ6MITW7xvIfNhKfMVJaBJPDI82zgQ4ItNtWutlNr6IDEb33/eu3QLatp1OrmrXll+pZLtrvJFoH/l0GloY1SZIyMSPsL+nNga+RsMghI0BKMcLnxpX37xq8AH5h7e3vLmpQvDW4ZEhAm+qvtPIc4LRv0GJccoAdzDTMMYnb6g+rOhvk4IW5+X4GxITwmuiCpIDom3NhQcH6BpcY148BKNkZx1GTQAkFEyyKEnCLN0aItP7/mQkyULEkWFXMhvyYffpay2d6nyjY3jJaH/l9ECX7eFi4q5X/Jp+QxkW4YHDyxuUcNXbWrAo4e9e7cEaY3cNw+jjOsqmlu0aKrsvNqhVkZgFRIZiWM5KKEQ4HJIxXqCMzgiGHFPeZotneGD53UFAXiR7LxdK8XyMBo7joHxYUuxHEcaI2FRQETTBDBMzzT6F4IJJyxnXMAfijhAX12Ww166GFh2N/Z6fcnopKPLpWrjFDSWHdb56P0O86Pnhj1mkxv81/8b49S4xROo9Lk3x1U9L13X+FmZOTIfkKMOPtSuzdbHf1Z8Z0n37PvhLw0g5nfOOX6pWq1Wlr/UjoiBLUe69WCGmP84ZI2v0kMDMuyhDH39przn/MtpeotlkK0EPUfq8IImV5kaagyI3NV1BWlrygvXcdDOGkhUQpKMi3i8y/uyEsHw30R4TciYFb2bfntgvnE77qz6+0VW1vXB49Xz0nYo7kjREmUUp73P8TvD2ZckeWXq6fvigMggqlxihMKggotYUwHQoSx4FdmACUmJGJzU2MsIqicsYQiLMYIb/wOigEt8iBexAJeYLEHL7F5DVyyWTkiw5/JFH43nUgxYhtIMTq4qvltxSFra6WZFdUpFMwsr6Wq3cUlIXVP1opaaRzmLiotNXSw9J3NeSLfvNkvp3jAr6iQIOJCBIEmEYtIlcdpaUi+mcXdJHglx/MHISC8RlvBr+Y756obCnrfzNm5LhUU9ZK1BBEOc3sTy2KIeDBORjZYsGFm7h8QxtcO+xtajlyI5YtYnJhwBKIIB4uFZF09JiBq699OmX+T7ZJBeXRwqRoFNUTCIVWUJZRykkK6472M+T6qh7oI200X/UYtcvW0GGGwyCEBYDuPZRYvGwGkUxO14imaiLQqjFU9Peaq3p57+WWqsN5isfn1nM2mQ6t/lJfPjozMBknx3bBoRIQ3ImJ/uXfbNi/oYzwOSYAUP9fMjCESTmIho7atDguZta0W9z6uxbZw25j+ODG4/RhMqzmsJzY2nbqg2th4CpoAABBCkMeL2MNiDqNREIziF+GOuW4CMkoztXY8WSx2P+UjhUWmO5eZqS4yzwXvVsW0tDSEUxCYrVjjruSaLLvEslaL9sxKFq178GN+926xoqI55E2GdMph+sbnO3iQZgWric3GcV2i2jPS/jyg5gZsm2aAqX1+tKy3V5ytHdcd2tjefrShU+hbrJ99qqC47oaOiWrebMpt/bdYKwkqWFED6sOhY0wHmSjdjUOh/55a2LSr5vklOve6QDDHzclt5DpZ2lUiSD+uKVQtncIYtjN4HgEpfyui0JMEz20+oHkt8c7X7tS8nNjzp2bttqi0zv9lFmwtyHxd00Pl2/socM5GMURgughMFmDtNzp493BB5Y9Cw5dRhbGBODb4YGCQpiAtEKftiIpd1xcc+KdASZ60WXowIaa+Ygs5l568EjqitVBurozpCHpYae7pqYJXP1e4Sq2jbGzZ7NFjHzxeGPYpld63SoWz6+Ru9ur3Q4mWeTwsplu33yzDbx2GIxY4ljx+cJLt5q15vwx1vYy9hIXDoYrvZSvrMRC60vkFjesawsY+yGTMXPdfzjh44K9/7qyJA+3zMUwna6AQZOBwdHqTLa51hO6f7bQfYWEfJPu7OHDEDT8Qh/Bmx8DafRULm+8rdXKr+cyZD7UWZpC7s7CX6P7nNuHFDg5hoIHtstF/7k2dWfN/Fwn9M+BXZL3V76Cq9B5Puye/8mHjv9JlP1CudjLbrKHOBNiXqtxeESt2GOMAP4AH8ngipsZrNZYK27S8uevyHUiPCKoxfcdAFUNMBxqvrWI6/R2MwQxBwkxh8sOmuqDCVOT9K2Gl6tZnr9IVWbU16tL2ws/OdOf9W91JdpJOfVNXyYy6LtmptHa1KAx3s5D2WULmVI7N7wflB4x0Nzy8C7k8EAklIiHSzl9/qv40L1BTFLaObz+FZrGIF9/FDC8iEcwHa5Ye7IY7qzpGeJs7detyytj568ibMedJGwuJMvRvB+2YmVCyhT45EhDPzn4s+LXBEG+6xz/tosYoTpwuPPKQ2HcQKMVzmINUwh85uzr9jBHRSERkgXgRBkqOxnlHLAzUL0xkqUmZiEUB8hWGuGRUNV35gDyX/gx7ENlCveZ/fFpa1/+q9f7/uq1plWH49Zfj+fwbNmO+bbXvlqj7O7bPx+QCggd5tBRdDmWXQU5ItBZaEsNBesshQS0gS3+fDEfLlp7vDaI60qOn7KwwJ7g7h9569YzA8BedLZpDboLnMC9GnyI755y824vropHhnzrZSwBV7xMqIAZ2s+ALSc+pOloSlnh5WeuY4U6dWn6cUQtq5ninSk0z6j+OLqbtruevysaxPJfwV453Nht06lxWXhS3YUNc0Q+R1eBLlIh/8B7irrFYx8bJCayW8bFzM4DDGCM+PkRmPK4Z4W0HQn7EUoGyln0nCAWZTZGk5TM0K/o9WBQ88ErlFevWrfBNnS7JksxKrBKdWFiYODaR9WrpGLAuvFIec/r2YSIjJvBt7tEY22nZw7dPR5erwKHHg+67dcsLsftgtem01a1jPO/duWOUD62u8kIzsNZ63W6Hoxu7XLh7ZATolT4nyrIG8AQjRpxGT/T2wvQTggDnNQEY4UsRj13YjiFSDoYhjFlWOPrQYm1lRWz1E8Ql9bLxHZn/IwPC/cstqjSwqI6vTjZxUrx6/2dZsw+V9nCkO+7CHIbdLCgJibX5cjrW5/rG3inJvKpQKCwMgzHtDxaFBdNqpIIgu8IOmcAaKQl9+4pTCYHNfVfMvuMq8b7OhCnXVA4dkMGijU6KxQHRzXbsbFlyUeJhCRboWWKNNsSw7HU7CNNzYJDOjEwgh8N7tiYY4LdivGvX7tpFKNuG6am/berrexAXWq3/Um4Sp74traKuhBz4kygiBPn1CpLSZGZZGqKASJ+fPpIagTRH4ltXRniGpSYpTE1RxO8nsvH5nozJ4LfEGntFhVhlvrVmeporKjBlMKpGVYR+fZ9efjm0P+4/poo3GAPHGXLTTLV10fEKH1xL6Hx/SJjIQ19LlVKPK5//8t8ZSxoGuJLyT4iK5L+cGkFhJCJtWOYz24Z2zu46E7Z4S785ujHw1//8h5rIY10IP2AeS1X29orHTwTkUlNUEPUned6kaQ6lZRiuRBXlZK/tN0Ws6i62vH5+IRhX+FLWtO7b17rmy9tmrbm3N/czTZAkjUqT5GpaldztA1bCFD+kG0r7dfqlr1kd+/VL078OsXRyS3pDS3oyPeVHA8q1PmyDRf/tC56ni4KQ6m44bL/+qvjtN5h/b02N9IrVuvWwDdk+bbdavFlh/z+D2/98qeKVzTO8JmjjElz7FsK94R+LuMdf15VwjXvOZPKOHhv1Pja7f/aGr93Hz9ZcRPs91BglUJPUoqIEAjbsMs9+apwjqOOZsi4QSxhnGmWm0pyTzkM5R7DoHIn8126wEvWx/yrR7r6uPdgZXAbRcM5wDRtmIz335zzcXVHBQVOeIg9hs6ipIg+f6jqF82CWn2dnHNc8UeLlMCFk/XtlOUgviDmQCgCGFYDyZDIYezgPxkwm7JSyQjBJO2tqZ01NspCS6sgVyhWR6o5wP7eGx0QMh/87bZDb4aiozzEqXjxTUj8owy0W2NkJfGesC80WFuZXxseVlQ3bh8hH9RcBrnWfPfdn0x7koUPLY9S99CSx6tFlGwtkbGzZzNBTJcuW6UKWlTw1NFMWa4JboFdWSPCywI2aoEudIfieas37+7m8WNaLh4BnBfE6iHBLjE7Q8YQuYwQL/j8b4Mb8LGldZvzJWJaZoao9vjK4PzhIeveaMuMpS9HPARgQ3Be8+pTVcuoUsBRtHPF7xAFxwCM6NS1TpJ7U52yOVmydIc7dBEMUy3bJPIo+t47JPA0A3QcR1O2tXz/1lDh1V8zjQy3G/hM+zk3oGB5WkbXZ0lDp4DaKOiyL8e/EFOinvSdPjowQnSfG4QDTqHXv3tY1htZWw5nxt98eL73j2LE7vowVs6ayxFi5CJfcTGoU53tp375WldqlyuT9rb4/B+tUUWnKtCiVmcaLm+3I3irN+OUud6kiJ7atMTy9wlhhaCPjeK8DzDB/54IurC77QVPj7e/3KrlPMh61eU4n6EAaLGJ2xh/aL7+o55oOC3LUUASd8bw2PriYladeVOp8usCQhwMURBFBDC5192cNUFQwun10dr7hvAgPiPmLnN5XvOc0D2r6ignLQj3YAM/NpY13j6fNPb1BdROZKFdqNsoB2Z4AsihtAhaEZCW8cI0gIEFo/BYfei6sPXQ2tD3MFdoeG1v2SwMMcdzfVwIbEMdV5BdE59xLc91yTblUdk2W+Pw4GIIZephec2jIgjlsQQ88GhNefDA85tF3KgeEfsA91lpyeNlRi5tqmVJZj9L0M/K/7nieEn+VAxtpWlLpzZvvbBM/4NfXbLqf4LjfJbzv+wNqvISvrZ+AWASc0cy0lxXGlis7hnY4RZVFoVDcfUYzmT4pSsJ3+1q7pCGhNONwUNvk/0bC8z75dxT13aclAQ2HmEUGcY/zKm4DH0FNUpxg5K+1rfsWutUNHwzqr6/vJzJCERl/9fp1Tau0BuBwauupfhs4GOSZp/2ehJK57fAIlAAEBEo7BCw4FjCH4UHY5ZnYvcuJ7HPAhhPND1HOJULD0dGn9Z/+FJWbdP9S8eioqIrNVqWcfe3JhqowyZfkyd9Xo0Open3hMpM3NWkkMbWkaiB0WW3fQnhScXXwRzufQKr0mCep376F7Ce7AZ0Hezi1bNxPTcpQV4Vku2RIlgVrdVdar+g4LZfYX9SfmJIHeCSigBUnNxddNA1VvHdv5le31s7N1dXeMqxqZYJUdMUQqSGAASE0Da/3IpJNv2YGyhfRIni9KXq7QLXXbjnW4nCVQH6ReeMqB0dOtWuQdCigQllS7CrDA/wdAVoTD9mzgLLeTMxhWVgePqcFZxXFRS/y0/9Eyx4oEYIrUFNSEWG0IGKEWX5oYxHBBKpEy/6TeLTbIrZr/YhPSdCM1w87FxoRxZ1uN+hp0MKqBwu8aZVMW8O65QZd75KawzrDh20QejwSbM1OoqhQBbUyqwy36mrn5qy138FLY7K30Flb6Gx+1zYVtW7fBff/iIftVjCKJW8BMRwzYOv9rz1FcbO5deynMpcflbbJxj9B+ujbJIwhzGbW7w9HHGJTERpafL0udH2oEXpsCEhNUjkZPK2Du3P5jJyzgQHNFGWnV0Q75bE8gxgKFCJQ+ZWEiHKP4+QGxH8Uz91LJ3IKBBNQR3Y0NKy2ImvWaMNoVgTy+3HE6hcV6uKJ3ROIRAAv2C12QWh3CZ6JGrsT2UVQG8TeXpGwy5f/uxjFzB6QJySO41q6VP0/v69DwVMVpEgqe9xnejUuOgAlr40R08+DYm2d5qGOpq5WPDcob2zsP6vR//BDRpD/HfHa3AjvyEeId2NnJ6Y5sRMBegbaTHarnGdQ5R4ZL4zebXe0047tthqgeHhoqJ7nPQCQy4e4Hq3AdSmzzKwxp6ZtOF1T453dstUrL/PP4YyhnKKo7VD2IyLlBgY4SeGQbx/Y3PCraKt184DFsj/Aj7LDMtwva/fLpnE7smin4ZkXi6V7Y1Gy9DFK9pi0OLbJqFgyit0r3evI2nvnhlLaC7KWOgnpYfar38h5y2m1RXmXtuQV5W0YuODvude7ddt5r+60eDKLz42ifbELyu1s3q+9JUJ59yupalS8501qn9XVLyTcweZLetYIZRu7G6Czocr/SuhudkPCtr1z1W+DFUIujVhuAlIz0qA5Zy3J/f+S6dfF+npxz+76U2qLvEauPj48U4j219uUog1VyJ95Zm2URqmJglP6O4dYOJxAm7ENRw8dFm0gvR3ZFQ41ulEklKqKjIl8TISqXCsNcQiCYY/jEThk99VLh+kZiojc/x8fvfiRWof7y6kcKyiI00ip6C5tlnajNnFm6/W7GsMad63pcIN276Kf2LiR+NJpAz5BAypRnM7uiLXaFqaXBjl5dNdJ78qVXujS+Snt3nvdYZXTdrp5EMN4ZZBTw5dbutaLPV/uCRqraa0hBJZUSpiE+0lrciPO0l4zjd1Raa5kHJhIm9Gn4Duvx9dRAM4ZwwpRPWEQ4v7OBu3NMB9SkGIyFWs/BYCBn5mV+P7GbKvPbjdyW8TX5Zq37WoIZVpqmlcZOK5ps6ZrU3OuYvujSjM3iG0KInSukSBkbPBudGFvecVr7zQypYd2XA57oPz8xybA4wSZsLklsxKP5LxEkMynOhclNLq+yGAGI5G9AgZk9ZWsZSmkPWgJyd0SzK8xRdn0ISp8bkc597dWc5MO6ULKOzvLQ8a28hC6yBtQPguE6vjmMkPnBZcv/5AvvVDz/7MaQR8x+25fyhBX29Rj4+b/+8WUFN/vKaL/pinjOIOposL607sJkVCGwxw/IyKRZyESwitxZgb2VoBkmvQgHnlpF3ubOT1gMI6Q+IwwuR0Ja5w5oSOXGqec1geVCL8+G8GEiQk0MQUmeOeDhpz8E7PpJfsEgoN549rnjCwolSAIvc/uctbR9a7Q2tHRtdG/XtSYM8AlpShUhPsUPum4ZNZigm6Oph+WKc4WHqAX0SLrVx5MWFQglOLF5Tk0uAtaEvqlImoiYkwprHRKa0ciFEZ2HHF298N/nG1ouNz70OHQbnW7qWvwnsnEqcOHxpVTfv+kcurQ4fHhzgq8F3eN/uc/o7t8Xljd5GLS9I6Kzsuyw4f9fgk9fgwEWA7T3n6Y+YAyHQHoH0zvFJGnzhF4STyNBzeI+87L6a1briTKhKA7gi05SY7iAIVP51MAbZ0R3yMCQXjxHJ8LuZRe99d7UeTL4+MToN/qbYPi9N7z5w8dHuobfO014Ca3CqfEY1CQWmVZ/7Oebf7L+ntuFw+8m/PuQPHte9b/pZk92yjNnh+vVROCGmou7FIYCZsPs4tA8iOsjvPm+BTw2MVZZUJVjWg2N/XfKgx/xzXfvvPo5//8UMeDkQgj1siJHOu0bcdFr9b91QTaEo6WMtRmyh5PinVluWKTHi9j3g9C93ii/FzGOXnSvTpGxEZiJFhkEA2eGkEk5w1DksQuAsnPg1rh091W6Ad0Xt0aS7efHWTVg+wqawNsdi/t29tWvKo7gu3PWZtj7um5v6fHvCK7Tpk3tI1tTUNzpsk8JRSn7uNwZ9/RcM2kWlbnXd3IqJffJrXI6eS16hg9BBQQpp+wW1VyXnaefeXFlbobrTd0K18UydnGgoUX77xTnJpsaBD1f1MLbW/x3alHUxYbJkx7+i9//FHb0akp0aQalgbXvdxigaCZ6wzPMwLjJwzHQA9Q/6TmWsRkygtP05hlaV/AIe2i+qLkomxWUvXd1PkVkQ87/FGBXPwxRqgO0TlMTsiMdEVpieqZmHR/j6IsefLnHGZFKI5ckVSo/FaWDCgFZ+VnBK925tCOWBms0M/YBLuAMBInRCQ+UFrCej4jEkotMGjjKRA5COzCsWAtyCpi7PHjzC9BoDGKZhCORGxKCikzrHyB43C4YqAEipQtzJg9cvUgokBauNr4HNTM6SAWsfhg61R9/ZQgrDOZPJ6GBtEAdRaxWK0VWzRkZ5AgPIliOqZQqgAKUkAyHmCLDB8BREDOiLzLhf4atpMYb0ke8hTCO9Eu7pkwDROmla1gCwR1Sa7trF/AgvYKCbUY8ILSFln/YRWcNKiNemb15T2qUT9arF86CkHn+ewZhEp0Wn7Imaj5ROsLoqipSZCJ0JapZlhBIBWdm/O8YN1TY4cQhzbxXK8NbTULU8P6c0/wSMACOz3EFBKVY89fLhq+yUwkIUoWyFBBRGa8FTdDj4CEzrwMiWTY3VOjEqN8/lXQDpRh2kW8yLJIsPuSEF9ykQIBkX/jDowavWkRWYslSuQ85twJyS3+Vli0ZjJappRFW5k5hkF7P4BXti8Uaj7SPIIPpQdUAyBm9qXWX/y6YPZhtqBQ3LVLXccU7Hn4YYhFLDDxYhI1pRmnIisfVeou9ffdUz+lnBwamoqKnBoemlRObd2quQHDX1+5Ujxcv0Jv8RhqzpjN6FiM7rWzqy1Xnzbvgf3cP/9QNRpCuYOH+NwhI8RChIA8yMHNy/OtMbhZViT0Mm9MRPRjz6PKsvbtcE8uprRKXMF8yOBlC4j/XlULSsQn9DU1lhq9ooF2sIBkhPtQ4LUyWkhtGGQyZWpSqiiyrfsAYEjBuWoZB4iCkdsz/b3piGFoBeK0bgXDMQoUTivocABiXK457Rkj6nUPwdcpErhzXkKMtiZQqCUM5tPIdbSPIwKa+8DhpLpGkWZskC8GC+1ng86DGBvDiTTgx63ggGUTSuQTISlBF8LXyYG0CoRh+2KWsNpweKIBmJswRh+yTLvDRQbVOcM5lWuCRvqcAza1jZOBqIhnndAcGLYuokU8Ucovuk9NmdFGa0xvF6QeGR5yqFw8D9SHI97jFMAn/Gzu8S4l72xe+is3epHQLqGlazzGtOwW0UvKR7vtbnykdvpkuqYTdfK+0kLhtRRjcq7gSQtcjHozaL3DST8DiSAIrAdhBKCxwAmYgPj2SpEhL116KTSgLC/wEhZwc0A69MxZUy6rTJB+VWTYkv/CaHZB+tPLw2J++3WhOyA/YF/c8l/j8vSfXdeCsRzm/CJLWMJ4kAeM5BDnn2FZlmU4xA1oD34wrusqwstWDnkSxn4/zqW+kxIR4RGHqbJh5JaileJNdQhppv68fOnyv1lqmuJLqqtfVcd6fIvyTbLi1vqcAOMwZ8P3kcC/bqxKbEzfYr2WVu1OqXJrOq/htV3TCC3+nTBN2k6wiAXh/T7BoNHz3kul2d75Kzt4xCCb2w6D2SbYYHUeuxlL/9jwcbVMTj9LBhMW8aJgyyLqJZHMMB6bgrE//+WpPrU8smhNm+LOxJgn47PjUPyLaDV6rzxxVSt9b2pUb5J+Jcoqj0arhx1Td7SEmGHIF2NXsHP26ww1ZeujxinGOQUpP399A8TM8DX7kl0v6ObsSCu5nWPBpyRyl3MIsYjgyo6MT8Ac2orDFQqFUnuYelV5LGl/xd6DRsCg53lWt+vZIfyvDZy6SFr0z1gvqJlT6af46MwQmrDYHTDzZDZyOkYXjm9QAh3S/WI9eAJDp1AilIxqS1HpyGXmEwZ0QALi1awWIOpLPebavkiTmam0M4rbOr/iBH5CQkvOUpNmfdQXqlnDOdVFfDEPVjQ+8BjS+XQ0/l4lr6z6R7N1RXZxSzX0oMEaEpEmS0t5166mQicF2vpuFI/33uvdtnXWS9Vk3yg2MIQjjM322EystkEtB0+9HBMj7pKZ37aGwqqa1FTUvZ6VH/sCMpREqY7Iq6jIU225vXnFq4wACBcRybr6VEz2aSWV368CYxug28Rw3B0OIBFQDdKSw7URgTvvY4lAnuPgSXRNnFyNwCmBh/MQf1gTggiIithnCp+JVfSJminNJB3K2JZioneLU4hozORdn5jDP0ipNo6Pb8QN2wfrsaGFM2CdT4eVRMmIvFTWIzCM/yGcC+lCjtwXytsWdxk2dH6dRpzlEDBXIIJGdXTzwEt1flFY5P0qlFTncVqkjzutTreAIy80vkAwYhfd+EcaSyIQ3mN3Z+ZthCG80c7Z/VqEEb9AD8Eza9BiUT5r4MpGCIzziJ6ZEgUslAih4GZX5H0K5p3hxOD2+omWBFwE32oRwsTFrJSJ+kvU4q0K2EmTyxIq13Yc4U4/VUuwiGnnWalfYwxOIzVGLQrmthqs7KjWYt1u5Se3bBzeeh68uy7sypXvAvvcnWOt/UwnCwC1hucT1fYCS5aIxmsY4eOCO7dEy4KDHWelfothVO6wsW5QAcFUWwOd1AQgGsm798svp7QCrYARfH+EZc3kNbdQFDsxJHK7SR4jzdHATwwwIvxszYipzuQlbokmFieQq3WJWmo3KNLllaRBJhbNUU7eYoO5wccYT0gUQ1rY00O4OjNRxnVyasIRfbzPve37OrtsAoYD/gJPA2vgRSVRcsL74CofncNNLMNiGH5ecVNh09i1HQeppBJMXFawf+0EGRTbXmunf/uttKqhAWFKpPa01Yl5tP/9sgTRBHqF9asxkgjGclsX0YCRv34PwST3bni0ttoE5xtpI+/Ky70L9rcxzDO0oqflCxYfeuK7qOH0y0XiLd8DBzcR2rY+1BhLdFi+TXA73E80bg4td553lO0BeyBjwtkZeIIIYquIh0WY09klN0JM0fkBXFiM7Y3rkl1RJPZgq++P2aaQjWvGZfSIt007K2z+hwmAxIM9snGKHD+j8+tu6ny6j826nyb7b2gm0w/LqMPpORXSfmmBtE/6qpTASE4KCKCEkeeK48oOCsywzJIi8l4ftosLlOCCLUI8ozxENoYznyp8ignBeFsPmHNNpq5KU+51/2ubKiHqOMGhFLkM8uTnaVezn2IK5LtFtjJ5z7GHdLBE7PYyto0cZc9BhLCmDN4YEab5DBPDpdkx7Jq3eIB3Yic4cBHXwELY52GeMG+YEHZJR+fDRj4E/vxqNmY0JyY1Z5CM8uSk8gyehzgiXZAsYHiTk6g/SlkjFzPxF6tVRe6Ye1jwg3A9meF+u0Z+yYiqhDvkGXTkuqDIGJJCYjJUZz5Tjp4R7jsjiqL3gIQh77wbnYFw5e+ZnCvPm81Lcl3VjSBjw+D2+oc3bzYgA9dyA46iK0+d2XQuCQbBhtdbMolhZ4tf7jBaEtrcIPK4FAx1ToZcDyhoWK5HTVDfQu1wk53homx9eEQ4H0dEn6Ui2ai5xDRgNlWkkI+IOI5cIZuVnZfNy34P3WxRaozfI3pHRPhGYmp6hIu9UsTGKMx/E4DqWLsUWa3sz1DYSCMXoYgIV0hIztTCIQEL6McCZVd4Jhq969YIqbz9TLIlFAv4Z38RNJKIriTwjO1xKuSlCw2Elxkj5YE1tVid1xQ00DdbqXJNQBLLD+LFBtc9EiK2t5+rbwgIlsx+XUESLJ1VqiKjNFGR/zk5e2dvWYxLGp76X3ghZLPqhbtSfH5va47y2rGWyle54uWfxlOLVhCSo2eO+iXLopoZiArrrDgA1QtAt1+jYqiN9oa+hY/Ff5WhBNQUfclx7xp3I3B15VREnmYpTyi2StaYJ64vxxM+0C1OB5Di1TMvPAUPrvArmgc8+mb4TU9exxGgNlPGsm876NuKf4/o0T3ESRG/g/OtwbRWzd/LYpu23w90nPB3g9v/gJWu6Ptr7492vfu+AW9czYZRyPa31phh9/pZQojD60dZYmQi0+GDFURG3nxTZEY9oqnfFBJlGpVWGB7zTKwSjtxXVHe4vO7QqVr6NcfHaw9dLjerbtvPnciPb3460w/a13eqfVoeqv1vLZUoehCOIWk5GYLpg0w2NwmT5v1Vo3+igP4LG27XF7TkyAm/H9uQDTPnob2iZlz7pzTKnSAwUNk3ppl8zmYfn5g4xUSE9CrrdL9vQVhr/2zCmMhFhj6FWwcgD1KogCgymKapKUCLqCMEs+zHPkLwAgoqC+SoPOYYhgBkvDO3Etr39TBcO5s/CgoQar0Qt2hkIR5kWPum8j5QZjcAAxiVbNYpnGyv6DaFfziOF+q391TpbuiWR8uiIv4XSajoO5p18LZ1ucb4I1/7P5+vvHzM633zjb6+N970esfKy4mMAPIeVWxzAzxtw8QoJHnAKJHGtvDxsL7DWWbMvI4P1di01uzqjTk7q3r2cGJnzsbfVWSO80YAkohE7cIPjHyOhtjU2Ba2CZxYEzAo4uJR9KjXmVJwHexaRItaE+JmRNDdS8uTU4x8DdBKyvNy8BRyg3Uly165wLo8F4qq6KPc+DdL79Jq60NPl5fM0WWYnah40ec0tCLH5uxeRhWJWGT0SIR5MLpgb8tKJLiJ0uuikeEIoY1IQG6jThctzQd4asOoHiCgr39K70kLMd409RiCkiISC2Y4a3Rxtz68v7SMT39d3dpFvWeXRsmnknLyctJHx4AAZzgi1KPt8zKy8pgezvN+thr7YqQvPianvWI87uD9hlbI5Cv7n5v4X181XR0D1TDrhN7Zo+hx6k9krV51f08EfeLlrNV3hQy1lkUNJOkCSvZfXfgp66eFq3uM4IwhPPXAUiKs7lpwbZR55AvJYAMWiOwEbqQHNyNB1nlMJJKc5SzJwvR0EEwQ/yukjtJEsReNJzik6C/A3qiiyn2fGLZbe64XWx5M1CYiSUD3W8AetNAUAxEExOHm6yNDPBCylPoRRLlw9xymuCwO2fFceNT2F5N0iBUJEhDrSeWW2jaHeMJDqF8tO0xhsX8ec32iRs4Ce8EldHuQGpNhi6lrKy4b2D9ymj4FoalcSkxYnYg0TRtZ2STFYGYKUZMyGuG7d8lYBCz8V+cUHOIIh+iYccIlTeUejoUXcXiuVMtYbDhSaNLhe/HPVcDAcUFRV43FqRsxEbSh8Zi7Aolj9YsPFLj9i7zYyceXNEw0DSZ0vsPvrJvTvy25kfXtHbYz6/D6A70nrmTG2+yNf7G6Ozac9lb4geTsbYABOEfk627sbs7QmazxnyhTf/zxrpHkkDQ0N4fSQpJH7qo/mqnKT6Q9TWp1U480Lh2CFJDwmOB10tPZ3nvXB7asQvBee9J+ie2e2jOOPsswSgkI+nfNj6+rMbm1S6YlrcmNPaybOPxzDFgVdvp0ziKZ+cixtl5saa09MMfUD9gA/SKZ4ZyXu1A7vHr5GcNoYoFfRIt3Etp6CpM+oy1v5COAIPITCN4pp+10NOw3jgusNRqqGLPpeUWYyF9DKAHMFIAvyc0kvK1EM0awwIgTIfIUzBRHXcNoTU3a49Ff1QVjVL5jllkLp+WHPsJzzqI6564ulervMR9+KIoWaoyyiGwKx3FQc+uUNK0ayzjuXgMywB7+dXZa/2RhANALy0tt7Nbnj5w8WV3jH3B4bzpsaOhnR5jfiNJEaf2dYTSmUWfYyIC1XomOy9CpUTzINIMYbScKjOyzCL9htc28ZJR0q1a5NhKzBato0MknjJ1yukmqWb2OsO2BJyjkSzyhPKG690PvZ9xAbW1d8m7S31XNS2DfJ2KoXRaoO6cJW623gGWJjHSsI5Jw0sxOWNZJMmJ9zSR22NTR3sxaOmhftI7q5ARQKJxeFJG/hboWiGb9jiza1XZtDdJqJT+qMf5X8cfOzeUWdqK0sZgLCXyd10XCewcHGxA/1y3MImHxuuGJO/5kxCucZWWUmIIix+TGeF/bCrdSQP8Xch5pUP4PN54yYW5lmalsJYcrLb7785HmiZaWFJFCkbDZc0GqrqlG3JExdyJMgureF01Fs5e8IPrlj1hdBW8fglhvjJpVjze+ULinpeXYHK1oRgbQuIhrpBMLhONVJoB/c6lACDVZ/d+aDOEZPgIsgrpimigKa1jy3oDCRQ5jl2MvHonrGgmjt4cTRl72/M/iaF2xlbgs3fp7dbJQXCH783ZvdkbSaPFI0vhQzJjx0qKTIub0U69fZbvQjjxjZSeoi2mpYrasNLoD5OZmQUnYJNtqblppaGnZx7UYVlubYahMkillIrXGliNGmhlEbDQHgLspRzOuyPPgyV7SbMXDPY3XJVuhJEtyBeW3S/mmLXAL1eE7iowujo4MzOvUvM8z8wKnar1WF7e+tSnuh8a4tqiHl80PcU0vKfruaKwDwbbYiMFYTef7OmeqGuyh6XUxmiaq7BB0NmnmnH7aTeW9JOqHHT947qXoonynYOGFIcbGReMNV32ny6E11uP648PWjp2nS1UJhmaWhiL9FYIdFgWtuEqrGUGN1Gq1op6JkkXrBX20zFakiNJE6QU1oqM0Z56XzhXFxER/VErnPN0YrMas8xnnhaNqcsW/+sSLx/iWxCpS+JbRGmHFyNHjo5sa8569/XyqYVbc55o1VLa5l2mvbFS8UddeOp5+ZBzklu+5zgO4zff401Lzhqfj0+auDV1dd97h61rAP626r/aW9/R6ZkNCMV73Hgx4J6QOrz99B73Q5Sv56eE3cF3IjdOcuRk3r4fxdqZTfjLBAZuNpT5wJNbko4dHFfkFgaluSufDNS+rJiX1NwnPI1H+9ODlnx9jdkiSZgb8WWGJ048zB8ISZ/R1P18dLNg3Bzppcd1FQtFbRZv7yu4dEAZARri6xlITrGGJgrHVnARDMN4mFbqv9a+/rjnv2BMF20zGM1l6cs3W+6zz3CFuw/r+/hz130NYptW6ucZqI21tAuRcKko/ui0ufMfWQn18fLB/Nd+Rt8e8tVmb2bFau62peVtiYUpcULBMliftDrjr6J+W7/j7kKUmYvmbr8pWh1jDtSkZqXEhrU2erMYdZ3VxGY+/SqU+nozo2FdeW92bHgLRgZ9gbC1VXFBQoEaaH9gUcJdwkt7x99721dtjV0WyYjZQD6/cXfa/M6WJ8X+J5emvnEg+jpbf0WP5VoPlz35IoaYcZWqC+pA8IiND+fByCcr+bzDLeLjaiiKCTjvKmxRwdchqKLNd+f/lv7ioNpG2S1qHySy8eDFPa+Ba/kT27BGJapVku0axX3yvNQXVoCsNOo/Ve8VRvkS+n48vZ8iKve0vrqiBDZ5WORSDxpfSeYXhf1cNcwqHin7AqODTXxpcIzdcralruh1nBA3LBonBNxiYbZEFAucgCN9s3SLBU8mghNYCzpJBlvUg8iA8SfgFXU3MhVwL2q3wooAE/YqfEI9smSPcJmJcGuAI53YPgq0aIrdxHDfHkT5iZ0yg0Sk4mRRp4cIxC85SVoUbV1gepIU6M7F7uepPVCUj3tJYkFfV03sv71jVtEKacEh1SPM21EbF18XVmQ2cbfiUz4lX/iGDGdtdc9o0YWSzadq5TcKSGzPYc9uIjH9p4rwctB8dFhYKjchYM/BLUF3TF49+TrzJFhHJMsn5t0u/Qvfs8hIvELvsrnr9aZ9RIlbLxs7wC1JRigRSGoL6oK2nor3QtLWzD3tW8hIWhtrGox6pWKwNk4nW+JLplzF6ZzzxaCexSNmDEyuFeNc3JK7r7gVNcmaGLBdKoQhZFBa2RM1cyrMtrBuZJOrhfbi/x2JjeKlo+9GzSJOD4ivEW5HmJd6yEC/n3bUbGZGwoZQOtk+Ev3YbaERwWAlRNk6JfTLjcaoFgqdrPzInH1J9saEhaPuGD9/cQfNWAwOyMVlS8lRykiBvvVGu93gmbFZwFARNNoE5V+n+pOu9XJJWfAtajl81WjyyCg6/N9HfWUbpSvz2e/+VVvQnxvU4baZrA6ItACbw/4wwUOzdW1Iiab0JM6I4Lc5ACUTUpB1njqNTzCmstocqVaanZ2a6bdqSVebb0RzpqM7hOfDpSPRUtOkr1p+e9cKGoTqFukAkPNbf+Kv2X92Tay3B4U2flmxZnxxacOVwpa0vOWzFRlfpZl1TGI45PLMTWc1bxpHFHFtsq0DIzoHS4wVbC/EgI3t8hmXEzHgTkWF+klCuF0Ge1vl0N3V+3aGksjJvedn9yqxNDfoqVWn5TLqz4GqLPUS0s+R3ccSxzI4xKGuaGRRIOtvbK+7evZym04W43eDJm70nT1qtXq1MsV9OZz+/k7RsWs4DdKZqnGrR2+XSesRwT0Zf9XbOIzLy+ljD2ALDOcOswWVIGm/3tn/ePt9uWv/FQWQzlZxVyGZn9ypir4/5ddg4DwduN4gO4Y7kLuGSpV+Rjr9oJjnVEQDSDoOP8JSk8oJspHvCU9CS+gwPFHiSmjM8kPgVoiII9PN2MprBSqTqXPpc4aksykaxrLcw7zpGioECFd6ruzDPJiwlAADhtc9sguWZ9/WYn+sxlHoJIzBMsOc5c89Gf0BeTU0XkzzCWmdkH2Qxiw9mD6acvbZ1tr1HSjtXaU9it1SbKaLT/cy8qDqn8kdAtj8tcbEAQNnADnPy2jp+2RcFLZqWb6Ep+GKcN/igD7cr0WVniOcEfOLCxwtVyPBO4zd00MmgbTm9uHpDZ7UNwWwduddloU3TpM1hpkjth+dcEyU8+Kwx06Gj29e5HW7HugcGjz22B33UQvBYuP8Bsb5hoBHpjbCl2PtWlF/xJn1bm+OBp1549tmrz8h9B27skOdW83lsOshJKzAiCsaZppICTVeD9ksVXOXqtmB1M52lPdi8WsFZc8VKzThFijvgOkykJhejYJV9uy26SnTbVOcr2kQ3FmBnJGCawQyyta7OyEZlmEmTpQlpmjQP2HAz4Qs8h7JIjTqz3lZbRMl5WgI05L7rRMz3xS8970ir1ERJ/r979490VKssSTYua5GF6cCwncaKKBjBTYxhFIgOTP3YLxgZhchxnKhgGARzTRhRh5Et1wqJMvbX//7XWIWVfIWADqqGpIvSIRXkFhlA0Fj9jcpUny9V4VfEXAtWLGM3FcHXYir2Z+K2gvpLMPjOF/wXSpGxr0kRGFjqqYYAjFPKx0VsETbBtrzYF3cx6oBdfWKRNBiSkx6kLknHmSTTd0UqfIr05Pk+6AQa3VeTaJt5dankvGRZunX8TMJxTeCyZbcwmIPCa96tPYm3ITnSXvAcIf8qDSxR08VmvrKUqc+V5HBlONYFxFHEOTOCob9URcnorrEqygyVzcrpxu31lu1Lgw1WWmRwaTscC603dFg+GsG6gxPmSQqbUM5iBNLgJAVHAmi3jpkz4qTTX2cjHGJ/D8AAW/IYdw7Nps86nT7ids/KXNLislmoLBGEB6hKzihSM2+BEYgAxoiPiG4jcrBzgLe3L4pJIbK4cgQhb8aZCQonR3iKqb6rZd003sWleLSCVHAE4my3iYKETvSQa9fgMwLZE2MQja71nb6HHvIyg7/X+fjjszFjPmuYN6zWN+Z/VtnWNmYeczrYV2XkmNIv1fi8Xt/ZcmRqj2XeyNqvolO4lsL192HHXF1wfnosYH0CbJ/4VHZFRMvytS3pkVP/unnIA/VCJH15Q99lEIfDGsrrQds/eN0fP2ZGRJSH3TGalb/lHVh9XbmK6tkfv9t31EiqD6wxmnmgWDNJycaEtUsgbBz68ccrT5r3YriOGdWqusfDYpf+oYdGR8hIf6yALnwf8xXyWKCAf2lrVAauxYB1V3T2MiWnvKbNv38UGIhAjCwtYIEIiwKN5TZObpOLmMNiRPOPOn2ckh2GbHXGH5yDmilK5vvi70ofe1/J80xK6dl4JqXkbILkokSUjISzJSlM/NlSBX2smIcUy5+SeDja25G0Z7M89fltNah3W07QySD6m7K3jbhq4eMPT2Dhw+oLsuwJioQ6HqZpJsGWadOdJQWk0uerrzebfXw8qoCFWOt07gRPr3zwwZU0fOe3eWOfK3wutu/ZM3jbTWomZdTminUyBAHOZS59tDad5EDm87UfTa8fDKQwRUjUi0UDNidyai5Tc/o56rIGlMvIkkDAOrCdPY4vWirv19KL1XZyCaweu3x5/oJFp/9Q1eVAc5W5iEld4ld5uIZjALY9nFGWYCgxJWQ8HAcVx4el+0v96rDROLg5+1R2RXa8GJ8dFzt14olzDo/d85BsthqQxiIBBNsBeAELqB4dsBO7lpUAoZyfe3ldMw2zB083TufSMUsmvlpfCdbbF+3rOmP9cDgdnfSeMtDP8FTjVG441fu/uNPaipSTMf3qRbXZ/yWTjGBSu2Jddrr4mYBPzn78fhVKjvw+78kESfdgdi+q6uyqpiuriNXLTZUZw+rCNhGGZxWcdt2soe6irWor3aW2f5KWjGqkrp/HjOznoF1Q5x7ounJBp11OWchGcV+sdmbIvQQ51+V3xNvJiBkGcBslMmhdBL1uecZylH7Rl+hBHe/8WpttV7gZGyXjjbMc4d7ywgWjQF2bbCDfYmhpMayqaWopT2zOoDQAECKKQ6b6QZLRnOgpaNE0B0uDdQxsti/tM+hSzYX36AZ8UZH7GhXdjYp9kTGvfF/MsiypLAtvKkrXwdJ9bW1eq2WTL3ZzxrbWbRn/7oFp7to9TJ/jAfFBxybIRQYxRrYsr6xsfcyGGAgz79FltDbz/E20R7iMeb6XGm0tqMWetiEpNQpIVM5qxBKrt220f3ZgoLV13962lgGb+4hZ+9ikGQxwULhM5EQjzyk4xEtmJYLGTDA1G3IAQSICo0Ha5KFIC+9a/IlQOOXPBJIoeGTUKzqHN/0iANWizQbsWSIGzjgPOfwWPGGKhILXCIDdg8WU81r+lHGdDeQ2ffml188jI15JdjF4TAqbZbu90OtJIHcthTYbYhijh0Gj7HZOXcoxGhgz5zKtVp651rtURAS0axuyOWucqg0LGDLKI6Tr29FRIUN+H68sqXhXEyZQExMmEyn0Q5fynu7TjqoSS+VIFfR65XiFCtf19MoPH/Bk7/ROut55l8GkpP/GyIjZZnQEgvYm3l3EcANErgG6l9hNiE68u5oJFJUDsXfdkZwsyExfdf5LouxVJB6H5Ndtf9rJX6+BKZs/X0j5/LlnoanWrCk7I0brfp6btyqQwjo/LwV+1A/tyukEEQOnihhHvxquL/33KdpZURaXPvFEI7Ij5ZrNU1fy6nqf78c7xLdSq3tj9Y9/uK3iPDhXuENq2WdGXiQprv37Kyr65zdtihR7HfUXFHAL9z4G5dEE8g9EXk7uwIsYpqHUPFi1LKmc6OAYzMf4xvaeq4rHejKi0k/HSRBlXvr0XNx5drdSSX+Vwkv79BoUeGiyI98sgSg1cZYUbAJjUd34/Wos7MwazQopT2YUTudbgV0eV3WBL2UVxA7qX61tu3wulw9eSMx7vfPhjSvhTrckI2hWEiVGhES6rP5zLnLLmhcLllJ4DEmpjAlvxxIQwx3mXyNYdw6/LcfZDC47YlWrXz1qa2cnz5scTkCHnZge3iSJC6cuxuIrIiGDDdlUyZUcxvCxIGYmpCKIrFXB7Z8/Ti13LEOk0VTmTt2+kVxIfEI4rbi2XqTuHNbtOOhyzYrCwuy+lEbnzftZCBhnKaJbRplLfGqbkd50W2Bp++3JtlkiyDBHWFfJW7chG+FtFyR7bSXYpUY2kpTRi8KRwMe3FhtY2jg21o3qt2+v1327Jmjl6yI3I1PJG06z0VQ0I3guMP2IFvGi3NG73YEkGzJpAN7FVphc7miV/LkE9ft8FFdW9PcZFWWk64/XcEh02759rdLe1qqqJEUMkwlJzkswckipy9Cqx940Ree8HB5TmS1LtRUv6FluGqgcySVB0vT+QREJWMTCzACihbk0Gey9/yd1Z6B8mE/1f+948NOuVI3YtSLo+9ANul1nyhKvsvlvJiwu4gkW/z5cft0+dWZtWrXDqSRKlyBYE5+tcuw5ffieXperswq6K7o5BEmISk1KjepyxkB2wztFy/+y+FQMNh9qBJOpF2Boy8mI6WLkrBD3P2itIyUyBzq5PZ3+BuNDcTpz0p1pg2kBTdfRj6tzbn1Cc90snsh6hdNeRtoPiwzxBtmrTSUZ//isuwToJZ/FskVJlHtj52MDYv2XAw8rVxj211velO8ef1PDqiALNIeuztdbunacGme322Vj4On0QOUgDtaPkNRt3mfaICf2RGWlj3UOX3qfgpEO1uX3eMGfJoZXi610WjpssTA2xgvDGQWYSQYJgpHoH0s/TMrf40dVT29lBEZ/8oWUwJQXbAoTzp9QDzuT3r1h9Qmw4fNT89Oz+2fFqdop/9LSxq7Yri6xfu0XPB8MMVlxbgEfxK7X3rcqYam2QKaxjOVZxWCDv0vg+WWmRfHaG/7Rmf4glylesyhO56yNGvtgJGtexkeEF8gCsnfGyMZkETXbbmXCJ6Dsr3paa4oyhKYmqVc+/+fQDpIC7FOjd4Q8V0uwn5sC6/2MXZQq9zCEqeZlRns8+QiJAgOmK8ZMMBy6idelUHWDZUbVe+748XMuUoFQdVAFOUeOWaampo7V3aPyyJjkHQeFAxLttGPpsLTfv26kihs2zKTx4ssCzVVihem76ekLF/RpjYgKiTiUWtUpvUfz008z5ZVmX5nj8KUGXq3K71ehatex4+K05Xj8ZTP+2ghpHFwYEAf4b1sTE2tmpwJG198O2ib2/5z1UKHVcv/e7OlmsjukskF6LBu27zp0d5tCEOiO8bupp4VGVXKvuUOsdrs1RAQ60nO6G70pNoRu2/2MWhvIwommpgGHmxwgnbeavt8c6nAMLMqfyT/tWucrcS5uljvHhQ4Owi56ThY6Vo0mJ40UjyQlgx/MVFtCqnDTfaSLJTzvP36cJaWVxSZS86S3ytjeb15bWgEFY8PWPDHjPX2RJQBaSZSp1Jhm1uudTZu95EOaMSp1vZQdI1zrICmK0m4Epf+z6NbFpZD+fpPB1G95g5qiImwGgy2CGsexX86EpLKYnXF6Qa97vOvPq7KlJwnr43aOri61dlUWHlxefZ3f9dDQoknGEFWPSqncH4cZrDlatSDr6fADyIQOhN9w5T4ar7cH0B3CVOSwZpKZyfDCjOBx8jncfr9aXz7jY3/TpG4+NFC3Zh7+WvdnH3UwKGgX1y5qhQX6Qd12TUMZvHCAb978i9ohDWgKaAxcpG69li6y/eN41+pdFz5uFcXltGjXxpxzQXmVPkYRGfnEtsXlJ4JJZb63yRjcnz9mzgvm8EgX2ZB3b4Yto6S4ejj7u4sPmTOqX1yw04TQdoJoYhemyYDxifuFxB59QNH1gFHn04UmZ68JrVeODC/wTB5qxGiaMW63jDJijIJGjujwIU5jxV+rZ+pfPaEMNyemKzuej1KqPxzVXDVciTpxZ4aqeLFYFRvjFcuWwfd+y1BOBuZwxqU21R5DXXDnbLn8oM7U+5Vt4QrpwFipa0qGY5TXqj9RAkUrCmdaiToyLjguctsXGVMZk7QU5E3tVNDoq/bOAIA9DMeEBpI99ZWPK/TF5L8S2XoSllyUIMzYh+mUw83yw1Oi+/oqZGWwhnR2S7wLO9ybY5C0OhrJyjkaVgfYoixMUJryTcrwoIkWdULlnZKgdnIJyzrjeqDxec6WhPCER1pU8JvFItb9+YeKqPP6pJHyQ/+zOFh+9k+aLabGsNQ3UtX3auQ7DcCrFcUuEMv2VL8iTQ9A6yy+dUuuyDN2CMwYo/3e5M5OgRaASVG8XHNyefpJ9xjKIStCruX9Yx+eBG6NDxz0i+8dqz4W1xb7cbwnZ9WBd+NfoOfpZ2XzY4fHZ7dmhMR2j1DjVFz4zLHrSHJRMieZl8CR63G+7kvybyGZOb7Ho9t9RaWM3SwjRoHd1sc+YFs6Ky45i5urPCcTXlYHfv2ueo1zZ+9kZMm9RAd6oqtGwO/Wr5C3m9esD00jC+Wf6Yacp9yFNNKKnm5R3p7+6s+h3PvQodButcUEe/gnZ9tvq1fI98amP6igclr1OVZFWIaJpOWJuU3nksJrOiquJ8R/GpcYcSMyqUglVUiT85UJcUmU7/+KtM9WRsZV/d03X7bTAo0FJGDRuXJ5IO83BSXhgg07sZZlJhjtAONklvyTxDu9F55gmBcuNIse0ULz5ZCUEj1XUOIAANLQoYPi3vmo/MMRBaNV9oMd/Z7IMek9Wq+VP9KX+hWWfKXYa4TMq4ur02odE5bDW02NDtWf4q7SCSqzCQL3cv4fPmPH04PtuCPO1qMPUm7kfNL5yScJet6rbuFPu63W+DiT6NtWpfbMNn8Hoy/smH85O755R0virpiHUVi/LjPmcNL7VwAHF7/fPNDP8xUVJPrkvmZsuvPwDBoVtIKTv4hHSivL4OG82dE/+v2Pq1Ie9494NzGTSk2UMzpVmRrtjOJkE3H2LQ8c1z6J1k+KFQUOxccDkhg4kYAEN+dcjI/GTJZnkN2G3UY/J4YpjWWru+GLoUXkJKfKTiQjq8BHxOKx2wNgU9oD+biUuRTtWUH5GYGORDtv78ZivU3DGC1sHCGeVV4fGxPm36LE0AHilrnsXIj1IvIoit577+n3jv0Xfr3zc/nyBcRgdyPmezjlxvaKYH7qkm/+mP2/zAIIqMvCN33EYSSRyA7eLdCLtC3HJg3RFOOvl3mfOOSZQdnJYTTGmA5NzsalkU+Yn4gsxdnJoT8sYc8XKv1hu8Z746uUr254Ndt/gH/ZnsARyGTeesvQIPX6y7bo13f4OzoaW6L8f0kbvgZghmUJK1a5+ojvxXK56hf3ux+YFgjfNPjwP6TV9ozSBcF33NJztPsyUjQWAsPC1Qn1xBGh6OKSYE/Tld0buyXl+B4Br6WbkDnnEy8InAAEqQrSuQQXHC/2CMLYLooE0GhuuIW1sReMIATAlvMoRoxXO1MTWF+BZ7HFohTM0lWRbOzTKPjPSzgRhKzksOohxdg/g7mlCXAbv/xKyN9/Ce740huX9bYl3/Dz6MiN1tZD7xw67OWxeyArRxcOEGEBoUDOk+2Rmz5CH21CS9fDvYcbXnyxQcoy2ZSOXGDk8z+yISkVt3W3FWr43PBGdbw0Vxqvbhx/QkBuAOHUchluuZNrKn8xZsVAevI2Y5u6fq1mWaS5yTRImhS3FX5SBqNHawFufr3+j+IKLjmvvCK/eN264nzTfF5mQfMl0xrI2vnbPzvqFOoZdYJrOGvYlYBZirqOf/5GddZF6Uzmvgr+UX99qc1xqRlnrly0pE9xh6sR07u1jY2JKqRSaAdl38vrNzwbfc0AI+7+9/64f5NvU/++XMPsrCAQX3bmA0O44P4nM48P4eHmmlVr5vWARuxEk18LIhI1msccd8biGTquFSnEumWwdwq/4N8R3GR4/q8HUPsN7eQ9Tlnw46TKHpk02yHb4XeCYEuuGd+T+fGfChMjkbZFutvtIsvsnOLecXPc5KfX5fkol0XyyxYkIbXltItlSRWO/sy1fIAoKo8I7ORlWWCjbrfofm0vWr1wbPvgCd752OiV2TWGFm7fWjjOwBAia2piGsAbm4tZcJvlGJdN4IATLGsVrTPuCE/hBR6mPziF/lEA/LTWzmCcvQDOdSuXZiU+LfERJcbnzUUBCV13ozBvOu2oHpL77da6EIhZRIsMy/Ju5xubkGwwhzlBJ3DoJqtwN31bG9EXWq3P/0LdR/Jn3Eft2gXjZ66jwFuKpSPRLynAoNUGJ15ajLwxf/muvrojpaM6XZd15J1bxkfiGycpvVeq5O1//WLTxVWeRwq2dhJvvVPwSL22mmkk4uu/ySieM/n5To/TnNOJay9f9rKvdkA7T3SWFMzHibqdc7uQTCezfk3HL1FPDcwinGBe5Hx7Zac2gqttE1zM2bdBArrc377hH/iXWYo4n/+GL04xet3b25+PMHjyEvjF40sAn+AirCCh1J4oERVWpLW/67BiCSMggblW+JxgQen3IA/y7UKOLWHDyjFMGUuHdtoIutWA28jNeln5guHQb7LX+4MyaxRMe7T7D/ybr4+M23S38YeKr7M0FQiyIju0i+OTJ7I/WGNegdsX68Qr5sAH2RNJgkxIh4cAaHeNYgtr3Lwwz9vJPd8W0KWJNaXnTWu+Kw0OQSHBpTud02VyU6ymKyA0OCRg48nLxJZNn20qsZbk/Z2K9W0MDKVfIWtnytevLw9LviWK8PMRrCYv7+kAfJzEBDp02NJZz8pVW8nJ5UjYKpoBzSGUWzcIBnZzTsEv6vVRILSEngrBVKrCwjcbSS4fG233r/YXD7dRwhmsIAqA1EkOwm+6svvZKDIeBJPfrFjd6jLW2dA6B7xbqrDc3r5V9upaD/IYto2xq4yxtZk4/3fy/8mZkFU/tsTqQYDC+5EK8sLWi1lGbs8eI5d1catABhCHdvrgUXZGjgwkWbZLtiSYC8QVsilDasmLL5ak6sqha/7PA+NTI4wRZjbW1FDWecOZ/qsrBwb8fI4UaSgsbqgfamgYqm8oLlxG4GLSMHv/J/41ydu91aim6IBp7bej8WFcWPxoZqTpQBGqqe59OyQpZMmftDD8J3nwrQr939Ib1354mqOXlYYsa/n50Noy/V/1FbeCHyst/0hA4b3LUd0pO93/ySBRnunds+JmsaWOj2VZ410yRDpD64OjDaENo2s62js6du8GE7SOdhn9+NwWlGoISGw1xQKLQbnD36qZBqxhjQtuc+j9fv3gkFeZTB+CSUU7n9bwdYPytoN2CiDEhleScHAOCl+kwargHGu7/WlI9z9orq72+tkbFPP//auSHa+fmd1hllhycGrEZ7Tj9mOEI1gQBEzwnIi4fmxBlnm/RNR2SNnHTDSDF+WxBVTsYg0Eff9PNL+hZCIGIQUapDOnaMHIMyIzBASawX4MQBsnI3GVthZR9tSneDADG4rfHh//pzx0ItYQ8W9KWTQTLRu6DqxSTFVzxiX500+zPGcpRBYLf+ZpjnScC91ZnXnjjtwEQn4ckJyoKWiVTDpa54D3vWoozrWqF3RNHuTxZIY93FNu8n6dhqXChNl9s15fu6/4hNEvsnE2FFACBYMAVZGlEZ1xc2NgRS66wcqDl3AaiSjd+FkcHLcdZ+U2zOFpga5KjLSAZaMyTtYB7IbYIaMdEyzal2RjMlzWSDY8CUSFjPx10gEW0T3XIZN3mpYfFYzrt63vl1yUPJJ5tPx+tUJ9v/69gOD6Hbx/3T2t8a1gcoPBLiwavcXmtCPa41OD/J23rnn/Hd4LF+xbvHVrJ15vxcPs1Qd28dlb5Fn8GwWdIK6/3rQ5LKszq2tzaL0prr9N35JSZRVv0ooMAhB2+UF+oB4RLSJwQfEezsl16uN6ymImaEu9Spm7lKuUdtbn8nAxwU9jAJzuKlf28G+dLLtsdd5rng51l4QxTk8w0Vssxy+MZuhqmHGc9GqHhWeQIDLmlw8Z5SzLzKE5Bpz1uIini/CKVrudfcepqT4m5fSYMqc37mB5hEpTp+Gv7vr8Pff2j0WFyjcepiapgABtWCbjnEqGoMal5+I8EZ7foVCItIqWRd0TPTawGfonsp8MGZTMShKD4nK33yWvZ0eljy7mMdttRDcWKG3bmfhQ2d2s/SzwSQXduH12t6699rJHrxtDlq2+2gjuB4sWedtaX3pb6Ze6volkny1J4fF6U494AXh4hQOyswx9lFbLUfAiVmrWtXb6Md/H4/gc1dojyspsA94ttr1DuOrNv264iScQQhPYmFBvAWEABgxg2ccf9/I8y959N0wXng1LXzMHPkGANWKhiPRpJ8t2jYN0yi5Qq8D78UEDQE5egu3yE8W2MML2uVWBgJ6j5XKGZjBvTwMAuU6qX69hFhkwaKftkIsCbYCSjzJOHkE/sT1grtFbXGGjOB+ZQVM7YdcJDiEWx2OIeYCDQmsjHCELr3RJOG67DoEYluQOxNfvkW3CBx4Nuc7fI/uOmcRFpZwBkOj418rgxT5mwlqvtzLjYNG++p86SEmUwcfyz8bpfLq4vfDVQBqExE1MiLt3i6YK78n8+mi177PPuj4pkmd6t+XU76/790i8O+TdHyu0ICHFuUAlbyJy2ajs+ovPxmoJ2eIL15ewI8y4sTqZX6dmM2IB29CGEVPZC4KAmT9InvMtc3FNx3lgsH5g4KbNJiUNhRmBtzPljNZ6LS1sI6tf3di4urihobhAQYDxvoUkZ0tmqitOT4ni1LS5vtXXKiU6GYLp1oRo8TuPCc6BmUpL/CUOxeXu10dTk5pJCqVF/yJGQJ/WvHGNAhKqbsLPwGhb2L2sMKb/zWmdjWR9e6G20/YoEsWUStCYfso3DSOZGKuFIZW6S22UromgnA33TrMLbFj0IeAzDjDOOmBkTEZR4AQmvzybal+jYq8qYdv3eQOJLx0pdm9Pfud9XWnH25vKJ/AEHGvb9t47e9WN9PbkBHtu8/fHBxJbJo88NHZH8juHv1yogccVDv//AYn8iEatnRwkAGsyNB4MEbq0E6kRFgap1fgWp7i+YbWgNn6p6F9QLPxCz/r77/du3z7m9TyKF7FMjrkf5M2rqNj4b+etkpaWfS1kH7lJi91IHouTZf1Y/0SZVRxSnBWTG5WR0FSWknUchWiL9mSkakxJGaHLa6gpaKOC/gnn2ynZol4ldTjjEaq0nTA51pyM19OyFrT6rP+vvVHL6Qtr+rsrlT1FzUpqMmOMWjU6Oy0kxpU+urxPG/iJ5ECw8uTL0VkPaYojIsJXPRGsEf/YVLjCXNGrnvsV4YrwzImmiczc1PefHxnVjAeEtun/uJWwKyH0X20HndXPvL9oh5PfnE3Dg8GwvXXZ+qZDERXHq8r8PUZ4ocnortlOvOBt1ba22ezs2bEEiIRoffXqShI7a+XVpDwub/MvRHdg7e95Fd7wvN/XGtg1tEAnPEd/zhChqWeEEIHfPce/dVnlmiLzmsqyejdLHZbZkV2AXAoz7kIYOyUljpytPjc/YcehxnNlKwTnDm9uy5IHx2yPSIl8MGpsYAD6JwLUAdXR3yqlhghU0B3b81yFyLiafrqhC7NHCcqDbuh4ps6ry/y1SpexnVYSJR2qvxz/6LqAgG7yZlE+WhVfg2p50DCy2akp6h+mUR4d2lofQE6eMB+pgOY6uq5FFPt4Csm6ZTRqAadX7kQ4V08QAjn45+qqQSa0ftPm+hD+2mB11c9l9aGbNoXWX9sfV0e21JG4MvgSHZcH+cWzH0+G1m62rw3JvOY+OxnpmS7fxbXMkAezHgyZjMMWLLRAVAqCYUkXt8CKceO0awTZ0U/IJkziIrNfIyLuVAgKvlwMwCSsAYa8EFyKS7tD5KT1uchDbz94YC/O/rx9PlveKKYNPZDpl+fcbom1aAOAh2Zx2/q2deSXKspcxQOQKrOs8rEf+QU1X3Ap/Y1lD2QwaTObupokScFJTZKuTTNpqwPIdOg0vTwvqCEikgnKW04fiQtsoCujPt3+Icmyckw1Uvbr5+vABI6xkYwmjurBHnXsTz+cPpq+Kx2K/RrG5U195S53+n9b/QV/zf7r2RngiJfcY6GW4YwN25REGXbrfDxj5pvTIVUeyaWopQRZzuIBa79fPTHRFZVzdJfssv+ugNiL8r3KAqs1L3f+7rvVDTZuoVrnMoItNX7w+2l0Z5j6TKaXleUZy+j+xvDGrq4SokA4XXQEhlHjtAoGErW0TbTc/eWDBNteo7vWXmRb0D3omt0DHxbvIi37ZsU1uH5k9MToyOODg8dGH4VOGyM6Vw+qhXIgnz4UFaWlpj16W+xZcSagLzy0qaPgtsvyYhP0xWgqiYq+SL82rb6mGAl+2oEeU7CRNFgM3VUrrbgsJCmkDFtXdlcZLA1kY0FmWRa1F48nRyeP470UkwWpAiSZl7yV2KBKTEzcmKT9cmVlZX5ZGV3mPCKZf/mfAXFffvDXHTnjOQHpvcuNMn9y0qak5E1JifDhD1rdlVYv54dgBubqXe8Dzk6YBVzR3i8Out0q7in2Ptoi5t/j1qfE+bdAkn2KpM+Pc1J/5HK6168XgUHna72hK/63ixBqZY7qnGFWldm5/Hy5VX9m/woMK04AxAHsMM1gl/bOO7PcCFLrM/Yu+/Ofxd2751jWJkIBWTR0QeG8d54YXuCS99KlpjPaOqUcsKsp4wlicl0I8IEeb1uyWCf/qPp/AUXLvKI4YPNarZtfaJz3iJ6Fhc0GNx5uazv0v/pqmzvdf8785z9trZ+PjsbEtHFlBbAXJkSJ2fRx9aGBjy21v/JRuIi7Ui4cH82o0cnzxHQ5dn52e9ykI4Nbcfkez0zyYPwjjrS6OIvuCmMTJMV4CwZJgFDmvYS3rLUFMQVGeFE4Bx4NCfZhPxTYfgd1Lyne0kJ0g/KtU+8inLh0bgFKbtR+PnbARs+Vrvi0MJmJl7c0ZLakDR+MSayQfeF5pEMuQ170OZpHG4I0o3+V4WO40WLb2xoBNvhxOArHtscabJnHl3p1X9u+1kV675LO1Vt6GzJtv/Ze0xlsBh3cS7hPt3vPn78xe96rOTeas+nBDf/y5VisX9/813p4t/lvyqv7c9rophXxyxE3v7Za1/jX39hSgT1cnoTLHrNdshRdgrXkXVt5PMKusbnknZ3vdZqTW4ZDxkOiQvaEKF3KkCPTkrtDYEyNljrplHSNzbveyvyXSqJUYDzntNtPPKpQsKXgkm6IZQNjCXggEehadH7t51koVDYq5aSjMh0n3SVfKc6upVPfZtFTIhAQrxvSj5a4JR5hDsO9LlXe2ZL5rX1XED6H3gQVYX8RnrHYaIczNTabA3oghmuvgUT/PIxHnKCjcwZN7SJbqJRe7DvS2yv65NplmOv+urmIJ779YPaZjo7a+DQqLf7d0YXNra3B83LgJWozma5092Dc031Do7ZJ642e7i3dPVeKXzIStLQTQmdeFYelGkc4wtWNOywS1QisOaHleVtRoyIODwmeM3DWdR3VVV6xgTO6qGd/P0hKp8wBJvOa1NMw72tFDD26ox+hDqgWftqRCxMnwv2jOutUB6h536u+gIDKyo2hDctGJ8/6xsZvgLKIQ1oKigEJDBI4EShgt4NEIiLezdHOLxUxmDjhBZ1E/cWfjL5WXV3u/Mry7C6VVvNz5/OZfHVt/9qSjwJyA/h3Jjk+KvO+3DebZeWP/Rs2GHasN2zoD14ZFxm3Mrh/2QedNcXr1nTeG4qVCr/iJkntMXdW+650M4mqPC8b3Tup6VCqSlQlOYqziw8mqc6pdH269SuwpXjlavGXL81TzQXvfnFl/or3xvwN6bBaX3uNLvJ+4toL6yJyXxdfm9pVbQZf9tYnZ6WUJd7GI6iE35djwX0gBdYMzWfGbAjTYouJWh+mTbKkcVCuW3xW4ihJKWNJUsJy5E38j94D4vf/75yVGKn8YqzcP1c41JO+K32MVCCmm8IqHy2gvZh56S34nAG9gQeKMNkLinj5q/EoG/lB/mmTqdKv12vzR8cON6s/iIz4YF3+ug+knXFbn4mOemZrfFAKz7H3St3Tc+SazqjoeKg43BPiUzo06PQv0hXECExr7V+rQymQZzDUf1NEIthin1HfnjxdPJWsplgpNSBNTXktSaNOlB+iShq9Nek6tS49MF0t7afUKRlvqRl1vTQ1vjBts4kOp4dxQlxf9XRymjqpeVLqNjrXFV58mbRcdW56AM0+qTr5oCcl4931gQ+sAU89OPGf/0yEbih3+vh+02BZYKBUMbEb7rYqlx0sr0J6+v8swN9t4GZ4vXzgV32xklhvb86g9HBwsDxQFttwNH5jUDAdHKw4dFhTFlohD5EHBST2KTrkIYrgwA/kjUc307J/fznsfXWo54jinjUB0lfkQcHvHOzKT9u0NnQZBXfL7c6C+1q/EhoMPz74csiyz+f2oEB6q+XmlmX0gS8k4P9ZDAh7IFkgRFZw/F+uBf/SGVP6U1ghkMcQAHj2LCo4Qyzw/xNZIAizSAkwsg8rBPgzEFSIalD7Y6ZkYhiNQdJbaWHyW+tvZ3Z2jDFow4TSrjoY08CNEHqz0N7snFvenmrQyFE0WRC+C5/WEZpumCEH3RkAMVp2FB9FTtshtrNXwYbX+w70nul2w8hGDEcAYEJQdC/YZOGjgRZPCHi25gZL7RR0uQm8GzCrZ/QglscLp+2GOKZsNxDZKufIJczMcFcBPnIsBVuYrrv1A8BHJxO1KT4sMOAXjnKqYtLdBGpnmKhc9iuEwMaj9KgqzdhcLXLCCm9Rz+xbf2uw6RAAsMoRhr0FvT4KXM4yWwC8tnvJuXjLySlAzjK5oBgW26mtF7gKqsvesJOdpeCcac3kTekS5PHn0EcwDc53njw7JWfTKX404pRzxh2lBHGpi5mRZhIPwEtmRl5zfFCPANpiOcdaQXPJrNr1NhAA5EJMcsB4BD0FgwG54HYfE8R3cTSyuEvvKAbChlSyHQt9GTEaaeEsLCWcR06kanRJWy1QfE94oGOUO4T/b9ScggZ35t+o8QyqG1wOHq+JO+18gqjRPpCOJWgQxExYbzxqcQaI6dpQg0O+BV53GawjmL0lAn6QQ05r/sC5wTTExdGwLDMO9r0aEmqJg/fHmZGDCi/HaBRswVBwAX3BdUOLeCqu529ng9LmGwodZKhQ7QDOkC4MwMy0ivxoYF7oxnNvJd+0AqVh6TmhP+tlEpDRboOcK4A+wYQeAZDVZb7sM523tosImIUQX1jXgT4zVqoZ5IZAecEhjgCMSgA+eeCzo/ZdwUdeEv8FisLvY+RcLdTXguAlIOgC71uxVdethPDjrdQHR9LQv5UJrvy2cNf9QsGg7XbbYcAmmw1Ry5crz0pqVQYN2mSLPjpqNbbpkUOtzBZbqDVheOet3JfO9dlhxJZ7u+p1Nhqq/AEbwS+s0WPQNgvryibDO+WNms2Fh87yjhf3iSjnYFGtuGUS7L4wX55sq0SLZw7q7zQAKavXnNPsWETUuHbKluQGeT2VP0E+) format('woff2'),url(https://cdnjs.cat.net/ajax/libs/material-design-icons/3.0.1/iconfont/MaterialIcons-Regular.woff) format('woff')} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/material.css b/libs/hexo-theme-material/1.5.2/source/css/material.css new file mode 100644 index 000000000..c0d9ba07c --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/material.css @@ -0,0 +1,4188 @@ +@charset "UTF-8"; +html { + color: rgba(0, 0, 0, .87) +} + +::-moz-selection { + background: #b3d4fc; + text-shadow: none +} + +::selection { + background: #b3d4fc; + text-shadow: none +} + +hr { + display: block; + height: 1px; + border: 0; + border-top: 1px solid #ccc; + margin: 1em 0; + padding: 0 +} + +audio, canvas, img, svg, video { + vertical-align: middle +} + +fieldset { + border: 0; + margin: 0; + padding: 0 +} + +textarea { + resize: vertical +} + +.hidden { + display: none !important; + visibility: hidden +} + +.visuallyhidden { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px +} + +.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto +} + +.invisible { + visibility: hidden +} + +.clearfix:before, .clearfix:after { + content: " "; + display: table +} + +.clearfix:after { + clear: both +} + +@media print { + *, *:before, *:after { + background: transparent !important; + color: #000 !important; + box-shadow: none !important; + text-shadow: none !important + } + a, a:visited { + text-decoration: underline + } + a[href]:after { + content: " (" attr(href)")" + } + abbr[title]:after { + content: " (" attr(title)")" + } + a[href^="#"]:after, a[href^="javascript:"]:after { + content: "" + } + pre, blockquote { + border: 1px solid #999; + page-break-inside: avoid + } + thead { + display: table-header-group + } + tr, img { + page-break-inside: avoid + } + img { + max-width: 100% !important + } + p, h2, h3 { + orphans: 3; + widows: 3 + } + h2, h3 { + page-break-after: avoid + } +} + +a, .mdl-accordion, .mdl-button, .mdl-card, .mdl-checkbox, .mdl-dropdown-menu, .mdl-icon-toggle, .mdl-item, .mdl-radio, .mdl-slider, .mdl-switch, .mdl-tabs__tab { + -webkit-tap-highlight-color: transparent; + -webkit-tap-highlight-color: rgba(255, 255, 255, 0) +} + +html { + width: 100%; + height: 100%; + -ms-touch-action: manipulation; + touch-action: manipulation +} + +body { + width: 100%; + min-height: 100% +} + +main { + display: block +} + +*[hidden] { + display: none !important +} + +html, body { + font-family: "Helvetica", "Arial", sans-serif; + font-size: 14px; + font-weight: 400; + line-height: 20px +} + +h1, h2, h3, h4, h5, h6, p { + padding: 0 +} + +h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 400; + line-height: 1.35; + letter-spacing: -.02em; + opacity: .54; + font-size: .6em +} + +h1 { + font-size: 56px; + line-height: 1.35; + letter-spacing: -.02em; + margin: 24px 0 +} + +h1, h2 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 400 +} + +h2 { + font-size: 45px; + line-height: 48px +} + +h2, h3 { + margin: 24px 0 +} + +h3 { + font-size: 34px; + line-height: 40px +} + +h3, h4 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 400 +} + +h4 { + font-size: 24px; + line-height: 32px; + -moz-osx-font-smoothing: grayscale; + margin: 24px 0 16px +} + +h5 { + font-size: 20px; + font-weight: 500; + line-height: 1; + letter-spacing: .02em +} + +h5, h6 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + margin: 24px 0 16px +} + +h6 { + font-size: 16px; + letter-spacing: .04em +} + +h6, p { + font-weight: 400; + line-height: 24px +} + +p { + font-size: 14px; + letter-spacing: 0; + margin: 0 0 16px +} + +a { + color: #ff4081; + font-weight: 500 +} + +blockquote { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + position: relative; + font-size: 24px; + font-weight: 300; + font-style: italic; + line-height: 1.35; + letter-spacing: .08em +} + +mark { + background-color: #f4ff81 +} + +dt { + font-weight: 700 +} + +ul, ol { + font-weight: 400; + letter-spacing: 0; + font-size: 14px; + line-height: 24px +} + +.mdl-color-text--grey { + color: #9e9e9e !important +} + +.mdl-color-text--grey-50 { + color: #fafafa !important +} + +.mdl-color-text--grey-100 { + color: #f5f5f5 !important +} + +.mdl-color-text--grey-200 { + color: #eee !important +} + +.mdl-color-text--grey-300 { + color: #e0e0e0 !important +} + +.mdl-color-text--grey-400 { + color: #bdbdbd !important +} + +.mdl-color-text--grey-500 { + color: #9e9e9e !important +} + +.mdl-color-text--grey-600 { + color: #757575 !important +} + +.mdl-color-text--grey-700 { + color: #616161 !important +} + +.mdl-color-text--grey-800 { + color: #424242 !important +} + +.mdl-color-text--grey-900 { + color: #212121 !important +} + +.mdl-color--black { + background-color: #000 !important +} + +.mdl-color-text--black { + color: #000 !important +} + +.mdl-color--white { + background-color: #fff !important +} + +.mdl-color-text--white { + color: #fff !important +} + +.mdl-color-text--accent { + color: #ff4081 !important +} + +.mdl-color-text--accent-contrast { + color: #fff !important +} + +.mdl-ripple { + background: #000; + border-radius: 50%; + height: 50px; + left: 0; + opacity: 0; + pointer-events: none; + position: absolute; + top: 0; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + width: 50px; + overflow: hidden +} + +.mdl-ripple.is-animating { + -webkit-transition: -webkit-transform .3s cubic-bezier(0, 0, .2, 1), width .3s cubic-bezier(0, 0, .2, 1), height .3s cubic-bezier(0, 0, .2, 1), opacity .6s cubic-bezier(0, 0, .2, 1); + transition: transform .3s cubic-bezier(0, 0, .2, 1), width .3s cubic-bezier(0, 0, .2, 1), height .3s cubic-bezier(0, 0, .2, 1), opacity .6s cubic-bezier(0, 0, .2, 1) +} + +.mdl-ripple.is-visible { + opacity: .3 +} + +.mdl-animation--default, .mdl-animation--fast-out-slow-in { + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1) +} + +.mdl-animation--linear-out-slow-in { + -webkit-transition-timing-function: cubic-bezier(0, 0, .2, 1); + transition-timing-function: cubic-bezier(0, 0, .2, 1) +} + +.mdl-animation--fast-out-linear-in { + -webkit-transition-timing-function: cubic-bezier(.4, 0, 1, 1); + transition-timing-function: cubic-bezier(.4, 0, 1, 1) +} + +.mdl-badge { + position: relative; + white-space: nowrap; + margin-right: 24px +} + +.mdl-badge:not([data-badge]) { + margin-right: auto +} + +.mdl-badge[data-badge]:after { + content: attr(data-badge); + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-align-content: center; + -ms-flex-line-pack: center; + align-content: center; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + position: absolute; + top: -11px; + right: -24px; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 600; + font-size: 12px; + width: 22px; + height: 22px; + border-radius: 50%; + background: #ff4081; + color: #fff +} + +.mdl-button .mdl-badge[data-badge]:after { + top: -10px; + right: -5px +} + +.mdl-badge.mdl-badge--no-background[data-badge]:after { + color: #ff4081; + background: rgba(255, 255, 255, .2); + box-shadow: 0 0 1px gray +} + +.mdl-button { + background: 0; + border: 0; + border-radius: 2px; + color: #000; + display: block; + position: relative; + height: 36px; + min-width: 64px; + padding: 0 8px; + display: inline-block; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 14px; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0; + overflow: hidden; + will-change: box-shadow, transform; + -webkit-transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1); + transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1); + outline: 0; + cursor: pointer; + text-decoration: none; + text-align: center; + line-height: 36px; + vertical-align: middle +} + +.mdl-button::-moz-focus-inner { + border: 0 +} + +.mdl-button:hover { + background-color: rgba(158, 158, 158, .2) +} + +.mdl-button:focus:not(:active) { + background-color: rgba(0, 0, 0, .12) +} + +.mdl-button:active { + background-color: rgba(158, 158, 158, .4) +} + +.mdl-button.mdl-button--colored { + color: #3f51b5 +} + +.mdl-button.mdl-button--colored:focus:not(:active) { + background-color: rgba(0, 0, 0, .12) +} + +input.mdl-button[type="submit"] { + -webkit-appearance: none +} + +.mdl-button--raised { + background: rgba(158, 158, 158, .2); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12) +} + +.mdl-button--raised:active { + box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2); + background-color: rgba(158, 158, 158, .4) +} + +.mdl-button--raised:focus:not(:active) { + box-shadow: 0 0 8px rgba(0, 0, 0, .18), 0 8px 16px rgba(0, 0, 0, .36); + background-color: rgba(158, 158, 158, .4) +} + +.mdl-button--raised.mdl-button--colored { + background: #3f51b5; + color: #fff +} + +.mdl-button--raised.mdl-button--colored:hover { + background-color: #3f51b5 +} + +.mdl-button--raised.mdl-button--colored:active { + background-color: #3f51b5 +} + +.mdl-button--raised.mdl-button--colored:focus:not(:active) { + background-color: #3f51b5 +} + +.mdl-button--raised.mdl-button--colored .mdl-ripple { + background: #fff +} + +.mdl-button--fab { + border-radius: 50%; + font-size: 24px; + height: 56px; + margin: auto; + min-width: 56px; + width: 56px; + padding: 0; + overflow: hidden; + background: rgba(158, 158, 158, .2); + box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24); + position: relative; + line-height: normal +} + +.mdl-button--fab .material-icons { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-12px, -12px); + -ms-transform: translate(-12px, -12px); + transform: translate(-12px, -12px); + line-height: 24px; + width: 24px +} + +.mdl-button--fab.mdl-button--mini-fab { + height: 40px; + min-width: 40px; + width: 40px +} + +.mdl-button--fab .mdl-button__ripple-container { + border-radius: 50%; + -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000) +} + +.mdl-button--fab:active { + box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2); + background-color: rgba(158, 158, 158, .4) +} + +.mdl-button--fab:focus:not(:active) { + box-shadow: 0 0 8px rgba(0, 0, 0, .18), 0 8px 16px rgba(0, 0, 0, .36); + background-color: rgba(158, 158, 158, .4) +} + +.mdl-button--fab.mdl-button--colored { + background: #ff4081; + color: #fff +} + +.mdl-button--fab.mdl-button--colored:hover { + background-color: #ff4081 +} + +.mdl-button--fab.mdl-button--colored:focus:not(:active) { + background-color: #ff4081 +} + +.mdl-button--fab.mdl-button--colored:active { + background-color: #ff4081 +} + +.mdl-button--fab.mdl-button--colored .mdl-ripple { + background: #fff +} + +.mdl-button--icon { + border-radius: 50%; + font-size: 24px; + height: 32px; + margin-left: 0; + margin-right: 0; + min-width: 32px; + width: 32px; + padding: 0; + overflow: hidden; + color: inherit; + line-height: normal +} + +.mdl-button--icon .material-icons { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-12px, -12px); + -ms-transform: translate(-12px, -12px); + transform: translate(-12px, -12px); + line-height: 24px; + width: 24px +} + +.mdl-button--icon.mdl-button--mini-icon { + height: 24px; + min-width: 24px; + width: 24px +} + +.mdl-button--icon.mdl-button--mini-icon .material-icons { + top: 0; + left: 0 +} + +.mdl-button--icon .mdl-button__ripple-container { + border-radius: 50%; + -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000) +} + +.mdl-button__ripple-container { + display: block; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: 0; + overflow: hidden +} + +.mdl-button[disabled] .mdl-button__ripple-container .mdl-ripple { + background-color: transparent +} + +.mdl-button--primary.mdl-button--primary { + color: #3f51b5 +} + +.mdl-button--primary.mdl-button--primary .mdl-ripple { + background: #fff +} + +.mdl-button--primary.mdl-button--primary.mdl-button--raised, .mdl-button--primary.mdl-button--primary.mdl-button--fab { + color: #fff; + background-color: #3f51b5 +} + +.mdl-button--accent.mdl-button--accent { + color: #ff4081 +} + +.mdl-button--accent.mdl-button--accent .mdl-ripple { + background: #fff +} + +.mdl-button--accent.mdl-button--accent.mdl-button--raised, .mdl-button--accent.mdl-button--accent.mdl-button--fab { + color: #fff; + background-color: #ff4081 +} + +.mdl-button[disabled][disabled] { + color: rgba(0, 0, 0, .26); + cursor: auto; + background-color: transparent +} + +.mdl-button--fab[disabled][disabled], .mdl-button--raised[disabled][disabled], .mdl-button--colored[disabled][disabled] { + background-color: rgba(0, 0, 0, .12); + color: rgba(0, 0, 0, .26); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12) +} + +.mdl-card { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + font-size: 16px; + font-weight: 400; + min-height: 200px; + overflow: hidden; + width: 330px; + z-index: 1; + position: relative; + background: #fff; + border-radius: 2px; + box-sizing: border-box +} + +.mdl-card__media { + background-color: #ff4081; + background-repeat: repeat; + background-position: 50% 50%; + background-size: cover; + background-origin: padding-box; + background-attachment: scroll; + box-sizing: border-box +} + +.mdl-card__title { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + color: #000; + display: block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: stretch; + -webkit-justify-content: stretch; + -ms-flex-pack: stretch; + justify-content: stretch; + line-height: normal; + padding: 16px; + -webkit-perspective-origin: 165px 56px; + perspective-origin: 165px 56px; + -webkit-transform-origin: 165px 56px; + -ms-transform-origin: 165px 56px; + transform-origin: 165px 56px; + box-sizing: border-box +} + +.mdl-card__title.mdl-card--border { + border-bottom: 1px solid rgba(0, 0, 0, .1) +} + +.mdl-card__title-text { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; + color: inherit; + display: block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + font-size: 24px; + font-weight: 300; + line-height: normal; + overflow: hidden; + -webkit-transform-origin: 149px 48px; + -ms-transform-origin: 149px 48px; + transform-origin: 149px 48px; + margin: 0 +} + +.mdl-card__subtitle-text { + font-size: 14px; + color: grey; + margin: 0 +} + +.mdl-card__supporting-text { + color: rgba(0, 0, 0, .54); + font-size: 13px; + line-height: 18px; + overflow: hidden; + padding: 16px; + width: 90% +} + +.mdl-card__actions { + font-size: 16px; + line-height: normal; + width: 100%; + background-color: transparent; + padding: 8px; + box-sizing: border-box +} + +.mdl-card__actions.mdl-card--border { + border-top: 1px solid rgba(0, 0, 0, .1) +} + +.mdl-card--expand { + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1 +} + +.mdl-card__menu { + position: absolute; + right: 16px; + top: 16px +} + +.mdl-checkbox { + position: relative; + z-index: 1; + vertical-align: middle; + display: inline-block; + box-sizing: border-box; + width: 100%; + height: 24px; + margin: 0; + padding: 0 +} + +.mdl-checkbox.is-upgraded { + padding-left: 24px +} + +.mdl-checkbox__input { + line-height: 24px +} + +.mdl-checkbox.is-upgraded .mdl-checkbox__input { + position: absolute; + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + -ms-appearance: none; + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + border: 0 +} + +.mdl-checkbox__box-outline { + position: absolute; + top: 3px; + left: 0; + display: inline-block; + box-sizing: border-box; + width: 16px; + height: 16px; + margin: 0; + cursor: pointer; + overflow: hidden; + border: 2px solid rgba(0, 0, 0, .54); + border-radius: 2px; + z-index: 2 +} + +.mdl-checkbox.is-checked .mdl-checkbox__box-outline { + border: 2px solid #3f51b5 +} + +.mdl-checkbox.is-disabled .mdl-checkbox__box-outline { + border: 2px solid rgba(0, 0, 0, .26); + cursor: auto +} + +.mdl-checkbox__focus-helper { + position: absolute; + top: 3px; + left: 0; + display: inline-block; + box-sizing: border-box; + width: 16px; + height: 16px; + border-radius: 50%; + background-color: transparent +} + +.mdl-checkbox.is-focused .mdl-checkbox__focus-helper { + box-shadow: 0 0 0 8px rgba(0, 0, 0, .1); + background-color: rgba(0, 0, 0, .1) +} + +.mdl-checkbox.is-focused.is-checked .mdl-checkbox__focus-helper { + box-shadow: 0 0 0 8px rgba(63, 81, 181, .26); + background-color: rgba(63, 81, 181, .26) +} + +.mdl-checkbox__tick-outline { + position: absolute; + top: 0; + left: 0; + height: 100%; + width: 100%; + -webkit-mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcCI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gMCwwIDAsMSAxLDEgMSwwIDAsMCB6IE0gMC44NTM0Mzc1LDAuMTY3MTg3NSAwLjk1OTY4NzUsMC4yNzMxMjUgMC40MjkzNzUsMC44MDM0Mzc1IDAuMzIzMTI1LDAuOTA5Njg3NSAwLjIxNzE4NzUsMC44MDM0Mzc1IDAuMDQwMzEyNSwwLjYyNjg3NSAwLjE0NjU2MjUsMC41MjA2MjUgMC4zMjMxMjUsMC42OTc1IDAuODUzNDM3NSwwLjE2NzE4NzUgeiIKICAgICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8bWFzayBpZD0ibWFzayIgbWFza1VuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgbWFza0NvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMCAwLDEgMSwxIDEsMCAwLDAgeiBNIDAuODUzNDM3NSwwLjE2NzE4NzUgMC45NTk2ODc1LDAuMjczMTI1IDAuNDI5Mzc1LDAuODAzNDM3NSAwLjMyMzEyNSwwLjkwOTY4NzUgMC4yMTcxODc1LDAuODAzNDM3NSAwLjA0MDMxMjUsMC42MjY4NzUgMC4xNDY1NjI1LDAuNTIwNjI1IDAuMzIzMTI1LDAuNjk3NSAwLjg1MzQzNzUsMC4xNjcxODc1IHoiCiAgICAgICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+CiAgICA8L21hc2s+CiAgPC9kZWZzPgogIDxyZWN0CiAgICAgd2lkdGg9IjEiCiAgICAgaGVpZ2h0PSIxIgogICAgIHg9IjAiCiAgICAgeT0iMCIKICAgICBjbGlwLXBhdGg9InVybCgjY2xpcCkiCiAgICAgc3R5bGU9ImZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KPC9zdmc+Cg=="); + mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcCI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gMCwwIDAsMSAxLDEgMSwwIDAsMCB6IE0gMC44NTM0Mzc1LDAuMTY3MTg3NSAwLjk1OTY4NzUsMC4yNzMxMjUgMC40MjkzNzUsMC44MDM0Mzc1IDAuMzIzMTI1LDAuOTA5Njg3NSAwLjIxNzE4NzUsMC44MDM0Mzc1IDAuMDQwMzEyNSwwLjYyNjg3NSAwLjE0NjU2MjUsMC41MjA2MjUgMC4zMjMxMjUsMC42OTc1IDAuODUzNDM3NSwwLjE2NzE4NzUgeiIKICAgICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8bWFzayBpZD0ibWFzayIgbWFza1VuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgbWFza0NvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMCAwLDEgMSwxIDEsMCAwLDAgeiBNIDAuODUzNDM3NSwwLjE2NzE4NzUgMC45NTk2ODc1LDAuMjczMTI1IDAuNDI5Mzc1LDAuODAzNDM3NSAwLjMyMzEyNSwwLjkwOTY4NzUgMC4yMTcxODc1LDAuODAzNDM3NSAwLjA0MDMxMjUsMC42MjY4NzUgMC4xNDY1NjI1LDAuNTIwNjI1IDAuMzIzMTI1LDAuNjk3NSAwLjg1MzQzNzUsMC4xNjcxODc1IHoiCiAgICAgICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+CiAgICA8L21hc2s+CiAgPC9kZWZzPgogIDxyZWN0CiAgICAgd2lkdGg9IjEiCiAgICAgaGVpZ2h0PSIxIgogICAgIHg9IjAiCiAgICAgeT0iMCIKICAgICBjbGlwLXBhdGg9InVybCgjY2xpcCkiCiAgICAgc3R5bGU9ImZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KPC9zdmc+Cg=="); + background: 0; + -webkit-transition-duration: .28s; + transition-duration: .28s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + -webkit-transition-property: background; + transition-property: background +} + +.mdl-checkbox.is-checked .mdl-checkbox__tick-outline { + background: #3f51b5 url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K") +} + +.mdl-checkbox.is-checked.is-disabled .mdl-checkbox__tick-outline { + background: rgba(0, 0, 0, .26)url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K") +} + +.mdl-checkbox__label { + position: relative; + cursor: pointer; + font-size: 16px; + line-height: 24px; + margin: 0 +} + +.mdl-checkbox.is-disabled .mdl-checkbox__label { + color: rgba(0, 0, 0, .26); + cursor: auto +} + +.mdl-checkbox__ripple-container { + position: absolute; + z-index: 2; + top: -6px; + left: -10px; + box-sizing: border-box; + width: 36px; + height: 36px; + border-radius: 50%; + cursor: pointer; + overflow: hidden; + -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000) +} + +.mdl-checkbox__ripple-container .mdl-ripple { + background: #3f51b5 +} + +.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container { + cursor: auto +} + +.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container .mdl-ripple { + background: 0 +} + +.mdl-data-table { + position: relative; + border: 1px solid rgba(0, 0, 0, .12); + border-collapse: collapse; + white-space: nowrap; + font-size: 13px; + background-color: #fff +} + +.mdl-data-table thead { + padding-bottom: 3px +} + +.mdl-data-table thead .mdl-data-table__select { + margin-top: 0 +} + +.mdl-data-table tbody tr { + position: relative; + height: 48px; + -webkit-transition-duration: .28s; + transition-duration: .28s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + -webkit-transition-property: background-color; + transition-property: background-color +} + +.mdl-data-table tbody tr.is-selected { + background-color: #e0e0e0 +} + +.mdl-data-table tbody tr:hover { + background-color: #eee +} + +.mdl-data-table td { + text-align: right +} + +.mdl-data-table th { + padding: 0 18px 0 18px; + text-align: right +} + +.mdl-data-table td:first-of-type, .mdl-data-table th:first-of-type { + padding-left: 24px +} + +.mdl-data-table td:last-of-type, .mdl-data-table th:last-of-type { + padding-right: 24px +} + +.mdl-data-table td { + position: relative; + vertical-align: top; + height: 48px; + border-top: 1px solid rgba(0, 0, 0, .12); + border-bottom: 1px solid rgba(0, 0, 0, .12); + padding: 12px 18px 0; + box-sizing: border-box +} + +.mdl-data-table td .mdl-data-table__select { + vertical-align: top; + position: absolute; + left: 24px +} + +.mdl-data-table th { + position: relative; + vertical-align: bottom; + text-overflow: ellipsis; + font-weight: 700; + line-height: 24px; + letter-spacing: 0; + height: 48px; + font-size: 12px; + color: rgba(0, 0, 0, .54); + padding-bottom: 8px; + box-sizing: border-box +} + +.mdl-data-table th .mdl-data-table__select { + position: relative +} + +.mdl-data-table__select { + width: 16px +} + +.mdl-data-table__cell--non-numeric.mdl-data-table__cell--non-numeric { + text-align: left +} +.mdl-logo { + margin-bottom: 16px; + color: #fff +} + +@media screen and (min-width:760px) { + .mdl-logo { + float: left; + margin-bottom: 0; + margin-right: 16px + } +} + +.mdl-mini-footer { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 32px 16px; + color: #9e9e9e; + background-color: #424242 +} + +.mdl-mini-footer:after { + content: ''; + display: block +} + +.mdl-mini-footer .mdl-logo { + line-height: 36px +} + +.mdl-mini-footer--link-list, .mdl-mini-footer__link-list { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + list-style: none; + margin: 0; + padding: 0 +} + +.mdl-mini-footer--link-list li, .mdl-mini-footer__link-list li { + margin-bottom: 0; + margin-right: 16px +} + +@media screen and (min-width:760px) { + .mdl-mini-footer--link-list li, .mdl-mini-footer__link-list li { + line-height: 36px + } +} + +.mdl-mini-footer--link-list a, .mdl-mini-footer__link-list a { + color: inherit; + text-decoration: none; + white-space: nowrap +} + +.mdl-mini-footer--left-section, .mdl-mini-footer__left-section { + display: inline-block; + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0 +} + +.mdl-mini-footer--right-section, .mdl-mini-footer__right-section { + display: inline-block; + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1 +} + +.mdl-mini-footer--social-btn, .mdl-mini-footer__social-btn { + width: 36px; + height: 36px; + padding: 0; + margin: 0; + background-color: #9e9e9e; + border: 0 +} + +.mdl-icon-toggle { + position: relative; + z-index: 1; + vertical-align: middle; + display: inline-block; + height: 32px; + margin: 0; + padding: 0 +} + +.mdl-icon-toggle__input { + line-height: 32px +} + +.mdl-icon-toggle.is-upgraded .mdl-icon-toggle__input { + position: absolute; + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + -ms-appearance: none; + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + border: 0 +} + +.mdl-icon-toggle__label { + display: inline-block; + position: relative; + cursor: pointer; + height: 32px; + width: 32px; + min-width: 32px; + color: #616161; + border-radius: 50%; + padding: 0; + margin-left: 0; + margin-right: 0; + text-align: center; + background-color: transparent; + will-change: background-color; + -webkit-transition: background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1); + transition: background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1) +} + +.mdl-icon-toggle__label.material-icons { + line-height: 32px; + font-size: 24px +} + +.mdl-icon-toggle.is-checked .mdl-icon-toggle__label { + color: #3f51b5 +} + +.mdl-icon-toggle.is-disabled .mdl-icon-toggle__label { + color: rgba(0, 0, 0, .26); + cursor: auto; + -webkit-transition: none; + transition: none +} + +.mdl-icon-toggle.is-focused .mdl-icon-toggle__label { + background-color: rgba(0, 0, 0, .12) +} + +.mdl-icon-toggle.is-focused.is-checked .mdl-icon-toggle__label { + background-color: rgba(63, 81, 181, .26) +} + +.mdl-icon-toggle__ripple-container { + position: absolute; + z-index: 2; + top: -2px; + left: -2px; + box-sizing: border-box; + width: 36px; + height: 36px; + border-radius: 50%; + cursor: pointer; + overflow: hidden; + -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000) +} + +.mdl-icon-toggle__ripple-container .mdl-ripple { + background: #616161 +} + +.mdl-icon-toggle.is-disabled .mdl-icon-toggle__ripple-container { + cursor: auto +} + +.mdl-icon-toggle.is-disabled .mdl-icon-toggle__ripple-container .mdl-ripple { + background: 0 +} + +.mdl-menu__container { + display: block; + margin: 0; + padding: 0; + border: 0; + position: absolute; + overflow: visible; + height: 0; + width: 0; + z-index: -1 +} + +.mdl-menu__container.is-visible { + z-index: 999 +} + +.mdl-menu__outline { + display: block; + background: #fff; + margin: 0; + padding: 0; + border: 0; + border-radius: 2px; + position: absolute; + top: 0; + left: 0; + overflow: hidden; + opacity: 0; + -webkit-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + -webkit-transform-origin: 0 0; + -ms-transform-origin: 0 0; + transform-origin: 0 0; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + will-change: transform; + -webkit-transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1); + transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1); + z-index: -1 +} + +.mdl-menu__container.is-visible .mdl-menu__outline { + opacity: 1; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + z-index: 999 +} + +.mdl-menu__outline.mdl-menu--bottom-right { + -webkit-transform-origin: 100% 0; + -ms-transform-origin: 100% 0; + transform-origin: 100% 0 +} + +.mdl-menu__outline.mdl-menu--top-left { + -webkit-transform-origin: 0 100%; + -ms-transform-origin: 0 100%; + transform-origin: 0 100% +} + +.mdl-menu__outline.mdl-menu--top-right { + -webkit-transform-origin: 100% 100%; + -ms-transform-origin: 100% 100%; + transform-origin: 100% 100% +} + +.mdl-menu { + position: absolute; + list-style: none; + top: 0; + left: 0; + height: auto; + width: auto; + min-width: 124px; + padding: 8px 0; + margin: 0; + opacity: 0; + clip: rect(0 0 0 0); + z-index: -1 +} + +.mdl-menu__container.is-visible .mdl-menu { + opacity: 1; + z-index: 999 +} + +.mdl-menu.is-animating { + -webkit-transition: opacity .2s cubic-bezier(.4, 0, .2, 1), clip .3s cubic-bezier(.4, 0, .2, 1); + transition: opacity .2s cubic-bezier(.4, 0, .2, 1), clip .3s cubic-bezier(.4, 0, .2, 1) +} + +.mdl-menu.mdl-menu--bottom-right { + left: auto; + right: 0 +} + +.mdl-menu.mdl-menu--top-left { + top: auto; + bottom: 0 +} + +.mdl-menu.mdl-menu--top-right { + top: auto; + left: auto; + bottom: 0; + right: 0 +} + +.mdl-menu.mdl-menu--unaligned { + top: auto; + left: auto +} + +.mdl-menu__item { + display: block; + border: 0; + color: rgba(0, 0, 0, .87); + background-color: transparent; + text-align: left; + margin: 0; + padding: 0 16px; + outline-color: #bdbdbd; + position: relative; + overflow: hidden; + font-size: 14px; + font-weight: 400; + letter-spacing: 0; + text-decoration: none; + cursor: pointer; + height: 48px; + line-height: 48px; + white-space: nowrap; + opacity: 0; + -webkit-transition: opacity .2s cubic-bezier(.4, 0, .2, 1); + transition: opacity .2s cubic-bezier(.4, 0, .2, 1); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +.mdl-menu__container.is-visible .mdl-menu__item { + opacity: 1 +} + +.mdl-menu__item::-moz-focus-inner { + border: 0 +} + +.mdl-menu__item[disabled] { + color: #bdbdbd; + background-color: transparent; + cursor: auto +} + +.mdl-menu__item[disabled]:hover { + background-color: transparent +} + +.mdl-menu__item[disabled]:focus { + background-color: transparent +} + +.mdl-menu__item[disabled] .mdl-ripple { + background: 0 +} + +.mdl-menu__item:hover { + background-color: #eee +} + +.mdl-menu__item:focus { + outline: 0; + background-color: #eee +} + +.mdl-menu__item:active { + background-color: #e0e0e0 +} + +.mdl-menu__item--ripple-container { + display: block; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: 0; + overflow: hidden +} + +.mdl-progress { + display: block; + position: relative; + height: 4px; + width: 500px +} + +.mdl-progress>.bar { + display: block; + position: absolute; + top: 0; + bottom: 0; + width: 0; + -webkit-transition: width .2s cubic-bezier(.4, 0, .2, 1); + transition: width .2s cubic-bezier(.4, 0, .2, 1) +} + +.mdl-progress>.progressbar { + background-color: #3f51b5; + z-index: 1; + left: 0 +} + +.mdl-progress>.bufferbar { + background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), -webkit-linear-gradient(left, #3f51b5, #3f51b5); + background-image: linear-gradient(to right, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), linear-gradient(to right, #3f51b5, #3f51b5); + z-index: 0; + left: 0 +} + +.mdl-progress>.auxbar { + right: 0 +} + +@supports(-webkit-appearance:none) { + .mdl-progress:not(.mdl-progress__indeterminate):not(.mdl-progress__indeterminate)>.auxbar { + background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), -webkit-linear-gradient(left, #3f51b5, #3f51b5); + background-image: linear-gradient(to right, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), linear-gradient(to right, #3f51b5, #3f51b5); + -webkit-mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZXdQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMTQiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo="); + mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZXdQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMTQiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo=") + } +} + +.mdl-progress:not(.mdl-progress__indeterminate)>.auxbar { + background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), -webkit-linear-gradient(left, #3f51b5, #3f51b5); + background-image: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), linear-gradient(to right, #3f51b5, #3f51b5) +} + +.mdl-progress.mdl-progress__indeterminate>.bar1 { + -webkit-animation-name: indeterminate1; + animation-name: indeterminate1 +} + +.mdl-progress.mdl-progress__indeterminate>.bar1, .mdl-progress.mdl-progress__indeterminate>.bar3 { + background-color: #3f51b5; + -webkit-animation-duration: 2s; + animation-duration: 2s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; + animation-timing-function: linear +} + +.mdl-progress.mdl-progress__indeterminate>.bar3 { + background-image: none; + -webkit-animation-name: indeterminate2; + animation-name: indeterminate2 +} + +@-webkit-keyframes indeterminate1 { + 0% { + left: 0; + width: 0 + } + 50% { + left: 25%; + width: 75% + } + 75% { + left: 100%; + width: 0 + } +} + +@keyframes indeterminate1 { + 0% { + left: 0; + width: 0 + } + 50% { + left: 25%; + width: 75% + } + 75% { + left: 100%; + width: 0 + } +} + +@-webkit-keyframes indeterminate2 { + 0%, 50% { + left: 0; + width: 0 + } + 75% { + left: 0; + width: 25% + } + 100% { + left: 100%; + width: 0 + } +} + +@keyframes indeterminate2 { + 0%, 50% { + left: 0; + width: 0 + } + 75% { + left: 0; + width: 25% + } + 100% { + left: 100%; + width: 0 + } +} + +.mdl-navigation { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + box-sizing: border-box +} + +.mdl-navigation__link { + color: #424242; + text-decoration: none; + font-weight: 500; + font-size: 13px; + margin: 0 +} + +.material-layout { + width: 100%; + height: 100%; +} + +.material-layout.is-small-screen .mdl-layout--large-screen-only { + display: none +} + +.material-layout:not(.is-small-screen) .mdl-layout--small-screen-only { + display: none +} + +.mdl-layout__container { + position: absolute; + width: 100%; + height: 100% +} + +.mdl-layout-title { + display: block; + position: relative; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 20px; + line-height: 1; + letter-spacing: .02em; + font-weight: 400; + box-sizing: border-box +} + +.mdl-layout-spacer { + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1 +} + +.mdl-layout__drawer { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + width: 240px; + height: 100%; + max-height: 100%; + position: absolute; + top: 0; + left: 0; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + box-sizing: border-box; + border-right: 1px solid #e0e0e0; + background: #fafafa; + -webkit-transform: translateX(-250px); + -ms-transform: translateX(-250px); + transform: translateX(-250px); + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + will-change: transform; + -webkit-transition-duration: .2s; + transition-duration: .2s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + -webkit-transition-property: -webkit-transform; + transition-property: transform; + color: #424242; + overflow: visible; + overflow-y: auto; + z-index: 5 +} + +.mdl-layout__drawer.is-visible { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0) +} + +.mdl-layout__drawer>* { + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0 +} + +.mdl-layout__drawer>.mdl-layout-title { + line-height: 64px; + padding-left: 40px +} + +@media screen and (max-width:1024px) { + .mdl-layout__drawer>.mdl-layout-title { + line-height: 56px; + padding-left: 16px + } +} + +.mdl-layout__drawer .mdl-navigation { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: stretch; + -webkit-align-items: stretch; + -ms-flex-align: stretch; + align-items: stretch; + padding-top: 16px +} + +.mdl-layout__drawer .mdl-navigation .mdl-navigation__link { + display: block; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + padding: 16px 40px; + margin: 0; + color: #757575 +} + +@media screen and (max-width:1024px) { + .mdl-layout__drawer .mdl-navigation .mdl-navigation__link { + padding: 16px + } +} + +.mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover { + background-color: #e0e0e0 +} + +.mdl-layout__drawer .mdl-navigation .mdl-navigation__link--current { + background-color: #000; + color: #3f51b5 +} + +@media screen and (min-width:1025px) { + .mdl-layout--fixed-drawer>.mdl-layout__drawer { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0) + } +} + +.mdl-layout__drawer-button { + display: block; + position: absolute; + height: 48px; + width: 48px; + border: 0; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + overflow: hidden; + text-align: center; + cursor: pointer; + font-size: 26px; + line-height: 50px; + font-family: Helvetica, Arial, sans-serif; + margin: 10px 12px; + top: 0; + left: 0; + color: #fff; + z-index: 4 +} + +.mdl-layout__header .mdl-layout__drawer-button { + position: absolute; + color: #fff; + background-color: inherit +} + +@media screen and (max-width:1024px) { + .mdl-layout__header .mdl-layout__drawer-button { + margin: 4px + } +} + +@media screen and (max-width:1024px) { + .mdl-layout__drawer-button { + margin: 4px; + color: rgba(0, 0, 0, .5) + } +} + +@media screen and (min-width:1025px) { + .mdl-layout--fixed-drawer>.mdl-layout__drawer-button { + display: none + } +} + +.mdl-layout__header { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; + box-sizing: border-box; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + width: 100%; + margin: 0; + padding: 0; + border: 0; + min-height: 64px; + max-height: 1000px; + z-index: 3; + background-color: #3f51b5; + color: #fff; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + -webkit-transition-duration: .2s; + transition-duration: .2s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + -webkit-transition-property: max-height, box-shadow; + transition-property: max-height, box-shadow +} + +@media screen and (max-width:1024px) { + .mdl-layout__header { + min-height: 56px + } +} + +.mdl-layout--fixed-drawer:not(.is-small-screen)>.mdl-layout__header { + margin-left: 240px; + width: calc(100% - 240px) +} + +.mdl-layout--fixed-drawer>.mdl-layout__header .mdl-layout__header-row { + padding-left: 40px +} + +.mdl-layout__header>.mdl-layout-icon { + position: absolute; + left: 40px; + top: 16px; + height: 32px; + width: 32px; + overflow: hidden; + z-index: 3; + display: block +} + +@media screen and (max-width:1024px) { + .mdl-layout__header>.mdl-layout-icon { + left: 16px; + top: 12px + } +} + +.mdl-layout.has-drawer .mdl-layout__header>.mdl-layout-icon { + display: none +} + +.mdl-layout__header.is-compact { + max-height: 64px +} + +@media screen and (max-width:1024px) { + .mdl-layout__header.is-compact { + max-height: 56px + } +} + +.mdl-layout__header.is-compact.has-tabs { + height: 112px +} + +@media screen and (max-width:1024px) { + .mdl-layout__header.is-compact.has-tabs { + min-height: 104px + } +} + +@media screen and (max-width:1024px) { + .mdl-layout__header { + display: none + } + .mdl-layout--fixed-header>.mdl-layout__header { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex + } +} + +.mdl-layout__header--transparent.mdl-layout__header--transparent { + background-color: transparent; + box-shadow: none +} + +.mdl-layout__header--seamed, .mdl-layout__header--scroll { + box-shadow: none +} + +.mdl-layout__header--waterfall { + box-shadow: none; + overflow: hidden +} + +.mdl-layout__header--waterfall.is-casting-shadow { + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12) +} + +.mdl-layout__header-row { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + box-sizing: border-box; + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + align-self: stretch; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + height: 64px; + margin: 0; + padding: 0 40px 0 80px +} + +@media screen and (max-width:1024px) { + .mdl-layout__header-row { + height: 56px; + padding: 0 16px 0 72px + } +} + +.mdl-layout__header-row>* { + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0 +} + +.mdl-layout__header--scroll .mdl-layout__header-row { + width: 100% +} + +.mdl-layout__header-row .mdl-navigation { + margin: 0; + padding: 0; + height: 64px; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center +} + +@media screen and (max-width:1024px) { + .mdl-layout__header-row .mdl-navigation { + height: 56px + } +} + +.mdl-layout__header-row .mdl-navigation__link { + display: block; + color: #fff; + line-height: 64px; + padding: 0 24px +} + +@media screen and (max-width:1024px) { + .mdl-layout__header-row .mdl-navigation__link { + line-height: 56px; + padding: 0 16px + } +} + +.mdl-layout__obfuscator { + background-color: transparent; + position: absolute; + top: 0; + left: 0; + height: 100%; + width: 100%; + z-index: 4; + visibility: hidden; + -webkit-transition-property: background-color; + transition-property: background-color; + -webkit-transition-duration: .2s; + transition-duration: .2s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1) +} + +.mdl-layout__drawer.is-visible~.mdl-layout__obfuscator { + background-color: rgba(0, 0, 0, .5); + visibility: visible +} + +.material-layout_content { + -ms-flex: 0 1 auto; + display: inline-block; + overflow-y: auto; + overflow-x: hidden; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + z-index: 1; + -webkit-overflow-scrolling: touch +} + +.mdl-layout--fixed-drawer>.material-layout_content { + margin-left: 240px +} + +.mdl-layout__container.has-scrolling-header .material-layout_content { + overflow: visible +} + +@media screen and (max-width:1024px) { + .mdl-layout--fixed-drawer>.material-layout_content { + margin-left: 0 + } + .mdl-layout__container.has-scrolling-header .material-layout_content { + overflow-y: auto; + overflow-x: hidden + } +} + +.mdl-layout__tab-bar { + height: 96px; + margin: 0; + width: calc(100% - 112px); + padding: 0 0 0 56px; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + background-color: #3f51b5; + overflow-y: hidden; + overflow-x: scroll +} + +.mdl-layout__tab-bar::-webkit-scrollbar { + display: none +} + +@media screen and (max-width:1024px) { + .mdl-layout__tab-bar { + width: calc(100% - 60px); + padding: 0 0 0 60px + } +} + +.mdl-layout--fixed-tabs .mdl-layout__tab-bar { + padding: 0; + overflow: hidden; + width: 100% +} + +.mdl-layout__tab-bar-container { + position: relative; + height: 48px; + width: 100%; + border: 0; + margin: 0; + z-index: 2; + -webkit-box-flex: 0; + -webkit-flex-grow: 0; + -ms-flex-positive: 0; + flex-grow: 0; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + overflow: hidden +} + +.mdl-layout__container>.mdl-layout__tab-bar-container { + position: absolute; + top: 0; + left: 0 +} + +.mdl-layout__tab-bar-button { + display: inline-block; + position: absolute; + top: 0; + height: 48px; + width: 56px; + z-index: 4; + text-align: center; + background-color: #3f51b5; + color: transparent; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +@media screen and (max-width:1024px) { + .mdl-layout__tab-bar-button { + display: none; + width: 60px + } +} + +.mdl-layout--fixed-tabs .mdl-layout__tab-bar-button { + display: none +} + +.mdl-layout__tab-bar-button .material-icons { + line-height: 48px +} + +.mdl-layout__tab-bar-button.is-active { + color: #fff +} + +.mdl-layout__tab-bar-left-button { + left: 0 +} + +.mdl-layout__tab-bar-right-button { + right: 0 +} + +.mdl-layout__tab { + margin: 0; + border: 0; + padding: 0 24px; + float: left; + position: relative; + display: block; + -webkit-box-flex: 0; + -webkit-flex-grow: 0; + -ms-flex-positive: 0; + flex-grow: 0; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + text-decoration: none; + height: 48px; + line-height: 48px; + text-align: center; + font-weight: 500; + font-size: 14px; + text-transform: uppercase; + color: rgba(255, 255, 255, .6); + overflow: hidden +} + +@media screen and (max-width:1024px) { + .mdl-layout__tab { + padding: 0 12px + } +} + +.mdl-layout--fixed-tabs .mdl-layout__tab { + float: none; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + padding: 0 +} + +.mdl-layout.is-upgraded .mdl-layout__tab.is-active { + color: #fff +} + +.mdl-layout.is-upgraded .mdl-layout__tab.is-active::after { + height: 2px; + width: 100%; + display: block; + content: " "; + bottom: 0; + left: 0; + position: absolute; + background: #ff4081; + -webkit-animation: border-expand .2s cubic-bezier(.4, 0, .4, 1).01s alternate forwards; + animation: border-expand .2s cubic-bezier(.4, 0, .4, 1).01s alternate forwards; + -webkit-transition: all 1s cubic-bezier(.4, 0, 1, 1); + transition: all 1s cubic-bezier(.4, 0, 1, 1) +} + +.mdl-layout__tab .mdl-layout__tab-ripple-container { + display: block; + position: absolute; + height: 100%; + width: 100%; + left: 0; + top: 0; + z-index: 1; + overflow: hidden +} + +.mdl-layout__tab .mdl-layout__tab-ripple-container .mdl-ripple { + background-color: #fff +} + +.mdl-layout__tab-panel { + display: block +} + +.mdl-layout.is-upgraded .mdl-layout__tab-panel { + display: none +} + +.mdl-layout.is-upgraded .mdl-layout__tab-panel.is-active { + display: block +} + +.mdl-radio { + position: relative; + font-size: 16px; + line-height: 24px; + display: inline-block; + box-sizing: border-box; + margin: 0; + padding-left: 0 +} + +.mdl-radio.is-upgraded { + padding-left: 24px +} + +.mdl-radio__button { + line-height: 24px +} + +.mdl-radio.is-upgraded .mdl-radio__button { + position: absolute; + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + -ms-appearance: none; + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + border: 0 +} + +.mdl-radio__outer-circle { + position: absolute; + top: 2px; + left: 0; + display: inline-block; + box-sizing: border-box; + width: 16px; + height: 16px; + margin: 0; + cursor: pointer; + border: 2px solid rgba(0, 0, 0, .54); + border-radius: 50%; + z-index: 2 +} + +.mdl-radio.is-checked .mdl-radio__outer-circle { + border: 2px solid #3f51b5 +} + +.mdl-radio.is-disabled .mdl-radio__outer-circle { + border: 2px solid rgba(0, 0, 0, .26); + cursor: auto +} + +.mdl-radio__inner-circle { + position: absolute; + z-index: 1; + margin: 0; + top: 6px; + left: 4px; + box-sizing: border-box; + width: 8px; + height: 8px; + cursor: pointer; + -webkit-transition-duration: .28s; + transition-duration: .28s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + -webkit-transition-property: -webkit-transform; + transition-property: transform; + -webkit-transform: scale3d(0, 0, 0); + transform: scale3d(0, 0, 0); + border-radius: 50%; + background: #3f51b5 +} + +.mdl-radio.is-checked .mdl-radio__inner-circle { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1) +} + +.mdl-radio.is-disabled .mdl-radio__inner-circle { + background: rgba(0, 0, 0, .26); + cursor: auto +} + +.mdl-radio.is-focused .mdl-radio__inner-circle { + box-shadow: 0 0 0 10px rgba(0, 0, 0, .1) +} + +.mdl-radio__label { + cursor: pointer +} + +.mdl-radio.is-disabled .mdl-radio__label { + color: rgba(0, 0, 0, .26); + cursor: auto +} + +.mdl-radio__ripple-container { + position: absolute; + z-index: 2; + top: -9px; + left: -13px; + box-sizing: border-box; + width: 42px; + height: 42px; + border-radius: 50%; + cursor: pointer; + overflow: hidden; + -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000) +} + +.mdl-radio__ripple-container .mdl-ripple { + background: #3f51b5 +} + +.mdl-radio.is-disabled .mdl-radio__ripple-container { + cursor: auto +} + +.mdl-radio.is-disabled .mdl-radio__ripple-container .mdl-ripple { + background: 0 +} + +_:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded { + -ms-appearance: none; + height: 32px; + margin: 0 +} + +.mdl-slider { + width: calc(100% - 40px); + margin: 0 20px +} + +.mdl-slider.is-upgraded { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + height: 2px; + background: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + outline: 0; + padding: 0; + color: #3f51b5; + -webkit-align-self: center; + -ms-flex-item-align: center; + align-self: center; + z-index: 1 +} + +.mdl-slider.is-upgraded::-moz-focus-outer { + border: 0 +} + +.mdl-slider.is-upgraded::-ms-tooltip { + display: none +} + +.mdl-slider.is-upgraded::-webkit-slider-runnable-track { + background: 0 +} + +.mdl-slider.is-upgraded::-moz-range-track { + background: 0; + border: 0 +} + +.mdl-slider.is-upgraded::-ms-track { + background: 0; + color: transparent; + height: 2px; + width: 100%; + border: 0 +} + +.mdl-slider.is-upgraded::-ms-fill-lower { + padding: 0; + background: linear-gradient(to right, transparent, transparent 16px, #3f51b5 16px, #3f51b5 0) +} + +.mdl-slider.is-upgraded::-ms-fill-upper { + padding: 0; + background: linear-gradient(to left, transparent, transparent 16px, rgba(0, 0, 0, .26)16px, rgba(0, 0, 0, .26)0) +} + +.mdl-slider.is-upgraded::-webkit-slider-thumb { + -webkit-appearance: none; + width: 12px; + height: 12px; + box-sizing: border-box; + border-radius: 50%; + background: #3f51b5; + border: 0; + -webkit-transition: -webkit-transform .18s cubic-bezier(.4, 0, .2, 1), border .18s cubic-bezier(.4, 0, .2, 1), box-shadow .18s cubic-bezier(.4, 0, .2, 1), background .28s cubic-bezier(.4, 0, .2, 1); + transition: transform .18s cubic-bezier(.4, 0, .2, 1), border .18s cubic-bezier(.4, 0, .2, 1), box-shadow .18s cubic-bezier(.4, 0, .2, 1), background .28s cubic-bezier(.4, 0, .2, 1) +} + +.mdl-slider.is-upgraded::-moz-range-thumb { + -moz-appearance: none; + width: 12px; + height: 12px; + box-sizing: border-box; + border-radius: 50%; + background-image: none; + background: #3f51b5; + border: 0 +} + +.mdl-slider.is-upgraded:focus:not(:active)::-webkit-slider-thumb { + box-shadow: 0 0 0 10px rgba(63, 81, 181, .26) +} + +.mdl-slider.is-upgraded:focus:not(:active)::-moz-range-thumb { + box-shadow: 0 0 0 10px rgba(63, 81, 181, .26) +} + +.mdl-slider.is-upgraded:active::-webkit-slider-thumb { + background-image: none; + background: #3f51b5; + -webkit-transform: scale(1.5); + transform: scale(1.5) +} + +.mdl-slider.is-upgraded:active::-moz-range-thumb { + background-image: none; + background: #3f51b5; + transform: scale(1.5) +} + +.mdl-slider.is-upgraded::-ms-thumb { + width: 32px; + height: 32px; + border: 0; + border-radius: 50%; + background: #3f51b5; + -ms-transform: scale(.375); + transform: scale(.375); + transition: transform .18s cubic-bezier(.4, 0, .2, 1), background .28s cubic-bezier(.4, 0, .2, 1) +} + +.mdl-slider.is-upgraded:focus:not(:active)::-ms-thumb { + background: radial-gradient(circle closest-side, #3f51b5 0, #3f51b5 37.5%, rgba(63, 81, 181, .26)37.5%, rgba(63, 81, 181, .26)100%); + -ms-transform: scale(1); + transform: scale(1) +} + +.mdl-slider.is-upgraded:active::-ms-thumb { + background: #3f51b5; + -ms-transform: scale(.5625); + transform: scale(.5625) +} + +.mdl-slider.is-upgraded.is-lowest-value::-webkit-slider-thumb { + border: 2px solid rgba(0, 0, 0, .26); + background: 0 +} + +.mdl-slider.is-upgraded.is-lowest-value::-moz-range-thumb { + border: 2px solid rgba(0, 0, 0, .26); + background: 0 +} + +.mdl-slider.is-upgraded.is-lowest-value~.mdl-slider__background-flex>.mdl-slider__background-upper { + left: 6px +} + +.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-webkit-slider-thumb { + box-shadow: 0 0 0 10px rgba(0, 0, 0, .12); + background: rgba(0, 0, 0, .12) +} + +.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-moz-range-thumb { + box-shadow: 0 0 0 10px rgba(0, 0, 0, .12); + background: rgba(0, 0, 0, .12) +} + +.mdl-slider.is-upgraded.is-lowest-value:active::-webkit-slider-thumb { + border: 1.6px solid rgba(0, 0, 0, .26); + -webkit-transform: scale(1.5); + transform: scale(1.5) +} + +.mdl-slider.is-upgraded.is-lowest-value:active~.mdl-slider__background-flex>.mdl-slider__background-upper { + left: 9px +} + +.mdl-slider.is-upgraded.is-lowest-value:active::-moz-range-thumb { + border: 1.5px solid rgba(0, 0, 0, .26); + transform: scale(1.5) +} + +.mdl-slider.is-upgraded.is-lowest-value::-ms-thumb { + background: radial-gradient(circle closest-side, transparent 0, transparent 66.67%, rgba(0, 0, 0, .26)66.67%, rgba(0, 0, 0, .26)100%) +} + +.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-ms-thumb { + background: radial-gradient(circle closest-side, rgba(0, 0, 0, .12)0, rgba(0, 0, 0, .12)25%, rgba(0, 0, 0, .26)25%, rgba(0, 0, 0, .26)37.5%, rgba(0, 0, 0, .12)37.5%, rgba(0, 0, 0, .12)100%); + -ms-transform: scale(1); + transform: scale(1) +} + +.mdl-slider.is-upgraded.is-lowest-value:active::-ms-thumb { + -ms-transform: scale(.5625); + transform: scale(.5625); + background: radial-gradient(circle closest-side, transparent 0, transparent 77.78%, rgba(0, 0, 0, .26)77.78%, rgba(0, 0, 0, .26)100%) +} + +.mdl-slider.is-upgraded.is-lowest-value::-ms-fill-lower { + background: 0 +} + +.mdl-slider.is-upgraded.is-lowest-value::-ms-fill-upper { + margin-left: 6px +} + +.mdl-slider.is-upgraded.is-lowest-value:active::-ms-fill-upper { + margin-left: 9px +} + +.mdl-slider.is-upgraded:disabled:focus::-webkit-slider-thumb, .mdl-slider.is-upgraded:disabled:active::-webkit-slider-thumb, .mdl-slider.is-upgraded:disabled::-webkit-slider-thumb { + -webkit-transform: scale(.667); + transform: scale(.667); + background: rgba(0, 0, 0, .26) +} + +.mdl-slider.is-upgraded:disabled:focus::-moz-range-thumb, .mdl-slider.is-upgraded:disabled:active::-moz-range-thumb, .mdl-slider.is-upgraded:disabled::-moz-range-thumb { + transform: scale(.667); + background: rgba(0, 0, 0, .26) +} + +.mdl-slider.is-upgraded:disabled~.mdl-slider__background-flex>.mdl-slider__background-lower { + background-color: rgba(0, 0, 0, .26); + left: -6px +} + +.mdl-slider.is-upgraded:disabled~.mdl-slider__background-flex>.mdl-slider__background-upper { + left: 6px +} + +.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-webkit-slider-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled:active::-webkit-slider-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled::-webkit-slider-thumb { + border: 3px solid rgba(0, 0, 0, .26); + background: 0; + -webkit-transform: scale(.667); + transform: scale(.667) +} + +.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-moz-range-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled:active::-moz-range-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled::-moz-range-thumb { + border: 3px solid rgba(0, 0, 0, .26); + background: 0; + transform: scale(.667) +} + +.mdl-slider.is-upgraded.is-lowest-value:disabled:active~.mdl-slider__background-flex>.mdl-slider__background-upper { + left: 6px +} + +.mdl-slider.is-upgraded:disabled:focus::-ms-thumb, .mdl-slider.is-upgraded:disabled:active::-ms-thumb, .mdl-slider.is-upgraded:disabled::-ms-thumb { + -ms-transform: scale(.25); + transform: scale(.25); + background: rgba(0, 0, 0, .26) +} + +.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-ms-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled:active::-ms-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled::-ms-thumb { + -ms-transform: scale(.25); + transform: scale(.25); + background: radial-gradient(circle closest-side, transparent 0, transparent 50%, rgba(0, 0, 0, .26)50%, rgba(0, 0, 0, .26)100%) +} + +.mdl-slider.is-upgraded:disabled::-ms-fill-lower { + margin-right: 6px; + background: linear-gradient(to right, transparent, transparent 25px, rgba(0, 0, 0, .26)25px, rgba(0, 0, 0, .26)0) +} + +.mdl-slider.is-upgraded:disabled::-ms-fill-upper { + margin-left: 6px +} + +.mdl-slider.is-upgraded.is-lowest-value:disabled:active::-ms-fill-upper { + margin-left: 6px +} + +.mdl-slider__ie-container { + height: 18px; + overflow: visible; + border: 0; + margin: none; + padding: none +} + +.mdl-slider__container { + height: 18px; + position: relative; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row +} + +.mdl-slider__container, .mdl-slider__background-flex { + background: 0; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex +} + +.mdl-slider__background-flex { + position: absolute; + height: 2px; + width: calc(100% - 52px); + top: 50%; + left: 0; + margin: 0 26px; + overflow: hidden; + border: 0; + padding: 0; + -webkit-transform: translate(0, -1px); + -ms-transform: translate(0, -1px); + transform: translate(0, -1px) +} + +.mdl-slider__background-lower { + background: #3f51b5 +} + +.mdl-slider__background-lower, .mdl-slider__background-upper { + -webkit-box-flex: 0; + -webkit-flex: 0; + -ms-flex: 0; + flex: 0; + position: relative; + border: 0; + padding: 0 +} + +.mdl-slider__background-upper { + background: rgba(0, 0, 0, .26); + -webkit-transition: left .18s cubic-bezier(.4, 0, .2, 1); + transition: left .18s cubic-bezier(.4, 0, .2, 1) +} + +.mdl-spinner { + display: inline-block; + position: relative; + width: 28px; + height: 28px +} + +.mdl-spinner:not(.is-upgraded).is-active:after { + content: "Loading..." +} + +.mdl-spinner.is-upgraded.is-active { + -webkit-animation: mdl-spinner__container-rotate 1568.23529412ms linear infinite; + animation: mdl-spinner__container-rotate 1568.23529412ms linear infinite +} + +@-webkit-keyframes mdl-spinner__container-rotate { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg) + } +} + +@keyframes mdl-spinner__container-rotate { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg) + } +} + +.mdl-spinner__layer { + position: absolute; + width: 100%; + height: 100%; + opacity: 0 +} + +.mdl-spinner__layer-1 { + border-color: #42a5f5 +} + +.mdl-spinner--single-color .mdl-spinner__layer-1 { + border-color: #3f51b5 +} + +.mdl-spinner.is-active .mdl-spinner__layer-1 { + -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both; + animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both +} + +.mdl-spinner__layer-2 { + border-color: #f44336 +} + +.mdl-spinner--single-color .mdl-spinner__layer-2 { + border-color: #3f51b5 +} + +.mdl-spinner.is-active .mdl-spinner__layer-2 { + -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both; + animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both +} + +.mdl-spinner__layer-3 { + border-color: #fdd835 +} + +.mdl-spinner--single-color .mdl-spinner__layer-3 { + border-color: #3f51b5 +} + +.mdl-spinner.is-active .mdl-spinner__layer-3 { + -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both; + animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both +} + +.mdl-spinner__layer-4 { + border-color: #4caf50 +} + +.mdl-spinner--single-color .mdl-spinner__layer-4 { + border-color: #3f51b5 +} + +.mdl-spinner.is-active .mdl-spinner__layer-4 { + -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both; + animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1)infinite both, mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1)infinite both +} + +@-webkit-keyframes mdl-spinner__fill-unfill-rotate { + 12.5% { + -webkit-transform: rotate(135deg); + transform: rotate(135deg) + } + 25% { + -webkit-transform: rotate(270deg); + transform: rotate(270deg) + } + 37.5% { + -webkit-transform: rotate(405deg); + transform: rotate(405deg) + } + 50% { + -webkit-transform: rotate(540deg); + transform: rotate(540deg) + } + 62.5% { + -webkit-transform: rotate(675deg); + transform: rotate(675deg) + } + 75% { + -webkit-transform: rotate(810deg); + transform: rotate(810deg) + } + 87.5% { + -webkit-transform: rotate(945deg); + transform: rotate(945deg) + } + to { + -webkit-transform: rotate(1080deg); + transform: rotate(1080deg) + } +} + +@keyframes mdl-spinner__fill-unfill-rotate { + 12.5% { + -webkit-transform: rotate(135deg); + transform: rotate(135deg) + } + 25% { + -webkit-transform: rotate(270deg); + transform: rotate(270deg) + } + 37.5% { + -webkit-transform: rotate(405deg); + transform: rotate(405deg) + } + 50% { + -webkit-transform: rotate(540deg); + transform: rotate(540deg) + } + 62.5% { + -webkit-transform: rotate(675deg); + transform: rotate(675deg) + } + 75% { + -webkit-transform: rotate(810deg); + transform: rotate(810deg) + } + 87.5% { + -webkit-transform: rotate(945deg); + transform: rotate(945deg) + } + to { + -webkit-transform: rotate(1080deg); + transform: rotate(1080deg) + } +} + +@-webkit-keyframes mdl-spinner__layer-1-fade-in-out { + from, 25% { + opacity: .99 + } + 26%, 89% { + opacity: 0 + } + 90%, 100% { + opacity: .99 + } +} + +@keyframes mdl-spinner__layer-1-fade-in-out { + from, 25% { + opacity: .99 + } + 26%, 89% { + opacity: 0 + } + 90%, 100% { + opacity: .99 + } +} + +@-webkit-keyframes mdl-spinner__layer-2-fade-in-out { + from, 15% { + opacity: 0 + } + 25%, 50% { + opacity: .99 + } + 51% { + opacity: 0 + } +} + +@keyframes mdl-spinner__layer-2-fade-in-out { + from, 15% { + opacity: 0 + } + 25%, 50% { + opacity: .99 + } + 51% { + opacity: 0 + } +} + +@-webkit-keyframes mdl-spinner__layer-3-fade-in-out { + from, 40% { + opacity: 0 + } + 50%, 75% { + opacity: .99 + } + 76% { + opacity: 0 + } +} + +@keyframes mdl-spinner__layer-3-fade-in-out { + from, 40% { + opacity: 0 + } + 50%, 75% { + opacity: .99 + } + 76% { + opacity: 0 + } +} + +@-webkit-keyframes mdl-spinner__layer-4-fade-in-out { + from, 65% { + opacity: 0 + } + 75%, 90% { + opacity: .99 + } + 100% { + opacity: 0 + } +} + +@keyframes mdl-spinner__layer-4-fade-in-out { + from, 65% { + opacity: 0 + } + 75%, 90% { + opacity: .99 + } + 100% { + opacity: 0 + } +} + +.mdl-spinner__gap-patch { + position: absolute; + box-sizing: border-box; + top: 0; + left: 45%; + width: 10%; + height: 100%; + overflow: hidden; + border-color: inherit +} + +.mdl-spinner__gap-patch .mdl-spinner__circle { + width: 1000%; + left: -450% +} + +.mdl-spinner__circle-clipper { + display: inline-block; + position: relative; + width: 50%; + height: 100%; + overflow: hidden; + border-color: inherit +} + +.mdl-spinner__circle-clipper .mdl-spinner__circle { + width: 200% +} + +.mdl-spinner__circle { + box-sizing: border-box; + height: 100%; + border-width: 3px; + border-style: solid; + border-color: inherit; + border-bottom-color: transparent !important; + border-radius: 50%; + -webkit-animation: none; + animation: none; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0 +} + +.mdl-spinner__left .mdl-spinner__circle { + border-right-color: transparent !important; + -webkit-transform: rotate(129deg); + -ms-transform: rotate(129deg); + transform: rotate(129deg) +} + +.mdl-spinner.is-active .mdl-spinner__left .mdl-spinner__circle { + -webkit-animation: mdl-spinner__left-spin 1333ms cubic-bezier(.4, 0, .2, 1)infinite both; + animation: mdl-spinner__left-spin 1333ms cubic-bezier(.4, 0, .2, 1)infinite both +} + +.mdl-spinner__right .mdl-spinner__circle { + left: -100%; + border-left-color: transparent !important; + -webkit-transform: rotate(-129deg); + -ms-transform: rotate(-129deg); + transform: rotate(-129deg) +} + +.mdl-spinner.is-active .mdl-spinner__right .mdl-spinner__circle { + -webkit-animation: mdl-spinner__right-spin 1333ms cubic-bezier(.4, 0, .2, 1)infinite both; + animation: mdl-spinner__right-spin 1333ms cubic-bezier(.4, 0, .2, 1)infinite both +} + +@-webkit-keyframes mdl-spinner__left-spin { + from { + -webkit-transform: rotate(130deg); + transform: rotate(130deg) + } + 50% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg) + } + to { + -webkit-transform: rotate(130deg); + transform: rotate(130deg) + } +} + +@keyframes mdl-spinner__left-spin { + from { + -webkit-transform: rotate(130deg); + transform: rotate(130deg) + } + 50% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg) + } + to { + -webkit-transform: rotate(130deg); + transform: rotate(130deg) + } +} + +@-webkit-keyframes mdl-spinner__right-spin { + from { + -webkit-transform: rotate(-130deg); + transform: rotate(-130deg) + } + 50% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg) + } + to { + -webkit-transform: rotate(-130deg); + transform: rotate(-130deg) + } +} + +@keyframes mdl-spinner__right-spin { + from { + -webkit-transform: rotate(-130deg); + transform: rotate(-130deg) + } + 50% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg) + } + to { + -webkit-transform: rotate(-130deg); + transform: rotate(-130deg) + } +} + +.mdl-switch { + position: relative; + z-index: 1; + vertical-align: middle; + display: inline-block; + box-sizing: border-box; + width: 100%; + height: 24px; + margin: 0; + padding: 0; + overflow: visible; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +.mdl-switch.is-upgraded { + padding-left: 28px +} + +.mdl-switch__input { + line-height: 24px +} + +.mdl-switch.is-upgraded .mdl-switch__input { + position: absolute; + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + -ms-appearance: none; + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + border: 0 +} + +.mdl-switch__track { + background: rgba(0, 0, 0, .26); + position: absolute; + left: 0; + top: 5px; + height: 14px; + width: 36px; + border-radius: 14px; + cursor: pointer +} + +.mdl-switch.is-checked .mdl-switch__track { + background: rgba(63, 81, 181, .5) +} + +.mdl-switch.is-disabled .mdl-switch__track { + background: rgba(0, 0, 0, .12); + cursor: auto +} + +.mdl-switch__thumb { + background: #fafafa; + position: absolute; + left: 0; + top: 2px; + height: 20px; + width: 20px; + border-radius: 50%; + cursor: pointer; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12); + -webkit-transition-duration: .28s; + transition-duration: .28s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + -webkit-transition-property: left; + transition-property: left +} + +.mdl-switch.is-checked .mdl-switch__thumb { + background: #3f51b5; + left: 16px; + box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .14), 0 3px 3px -2px rgba(0, 0, 0, .2), 0 1px 8px 0 rgba(0, 0, 0, .12) +} + +.mdl-switch.is-disabled .mdl-switch__thumb { + background: #bdbdbd; + cursor: auto +} + +.mdl-switch__focus-helper { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-4px, -4px); + -ms-transform: translate(-4px, -4px); + transform: translate(-4px, -4px); + display: inline-block; + box-sizing: border-box; + width: 8px; + height: 8px; + border-radius: 50%; + background-color: transparent +} + +.mdl-switch.is-focused .mdl-switch__focus-helper { + box-shadow: 0 0 0 20px rgba(0, 0, 0, .1); + background-color: rgba(0, 0, 0, .1) +} + +.mdl-switch.is-focused.is-checked .mdl-switch__focus-helper { + box-shadow: 0 0 0 20px rgba(63, 81, 181, .26); + background-color: rgba(63, 81, 181, .26) +} + +.mdl-switch__label { + position: relative; + cursor: pointer; + font-size: 16px; + line-height: 24px; + margin: 0; + left: 24px +} + +.mdl-switch.is-disabled .mdl-switch__label { + color: #bdbdbd; + cursor: auto +} + +.mdl-switch__ripple-container { + position: absolute; + z-index: 2; + top: -12px; + left: -14px; + box-sizing: border-box; + width: 48px; + height: 48px; + border-radius: 50%; + cursor: pointer; + overflow: hidden; + -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000); + -webkit-transition-duration: .4s; + transition-duration: .4s; + -webkit-transition-timing-function: step-end; + transition-timing-function: step-end; + -webkit-transition-property: left; + transition-property: left +} + +.mdl-switch__ripple-container .mdl-ripple { + background: #3f51b5 +} + +.mdl-switch.is-disabled .mdl-switch__ripple-container { + cursor: auto +} + +.mdl-switch.is-disabled .mdl-switch__ripple-container .mdl-ripple { + background: 0 +} + +.mdl-switch.is-checked .mdl-switch__ripple-container { + cursor: auto; + left: 2px +} + +.mdl-tabs { + display: block; + width: 100% +} + +.mdl-tabs__tab-bar { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-align-content: space-between; + -ms-flex-line-pack: justify; + align-content: space-between; + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + height: 48px; + padding: 0; + margin: 0; + border-bottom: 1px solid #e0e0e0 +} + +.mdl-tabs__tab { + margin: 0; + border: 0; + padding: 0 24px; + float: left; + position: relative; + display: block; + color: red; + text-decoration: none; + height: 48px; + line-height: 48px; + text-align: center; + font-weight: 500; + font-size: 14px; + text-transform: uppercase; + color: rgba(0, 0, 0, .54); + overflow: hidden +} + +.mdl-tabs.is-upgraded .mdl-tabs__tab.is-active { + color: rgba(0, 0, 0, .87) +} + +.mdl-tabs.is-upgraded .mdl-tabs__tab.is-active:after { + height: 2px; + width: 100%; + display: block; + content: " "; + bottom: 0; + left: 0; + position: absolute; + background: #3f51b5; + -webkit-animation: border-expand .2s cubic-bezier(.4, 0, .4, 1).01s alternate forwards; + animation: border-expand .2s cubic-bezier(.4, 0, .4, 1).01s alternate forwards; + -webkit-transition: all 1s cubic-bezier(.4, 0, 1, 1); + transition: all 1s cubic-bezier(.4, 0, 1, 1) +} + +.mdl-tabs__tab .mdl-tabs__ripple-container { + display: block; + position: absolute; + height: 100%; + width: 100%; + left: 0; + top: 0; + z-index: 1; + overflow: hidden +} + +.mdl-tabs__tab .mdl-tabs__ripple-container .mdl-ripple { + background: #3f51b5 +} + +.mdl-tabs__panel { + display: block +} + +.mdl-tabs.is-upgraded .mdl-tabs__panel { + display: none +} + +.mdl-tabs.is-upgraded .mdl-tabs__panel.is-active { + display: block +} + +@-webkit-keyframes border-expand { + 0% { + opacity: 0; + width: 0 + } + 100% { + opacity: 1; + width: 100% + } +} + +@keyframes border-expand { + 0% { + opacity: 0; + width: 0 + } + 100% { + opacity: 1; + width: 100% + } +} + +.mdl-textfield { + position: relative; + font-size: 16px; + display: inline-block; + box-sizing: border-box; + width: 300px; + max-width: 100%; + margin: 0; + padding: 20px 0 +} + +.mdl-textfield .mdl-button { + position: absolute; + bottom: 20px +} + +.mdl-textfield--align-right { + text-align: right +} + +.mdl-textfield--full-width { + width: 100% +} + +.mdl-textfield--expandable { + min-width: 32px; + width: auto; + min-height: 32px +} + +.mdl-textfield__input { + border: 0; + border-bottom: 1px solid rgba(0, 0, 0, .12); + display: inline-block; + font-size: 16px; + margin: 0; + padding: 4px 0; + width: 100%; + background: 16px; + text-align: left; + color: inherit +} + +.mdl-textfield.is-focused .mdl-textfield__input { + outline: 0 +} + +.mdl-textfield.is-invalid .mdl-textfield__input { + border-color: #de3226; + box-shadow: none +} + +.mdl-textfield.is-disabled .mdl-textfield__input { + background-color: transparent; + border-bottom: 1px dotted rgba(0, 0, 0, .12) +} + +.mdl-textfield__label { + bottom: 0; + color: rgba(0, 0, 0, .26); + font-size: 16px; + left: 0; + right: 0; + pointer-events: none; + position: absolute; + top: 24px; + width: 100%; + overflow: hidden; + white-space: nowrap; + text-align: left +} + +.mdl-textfield.is-dirty .mdl-textfield__label { + visibility: hidden +} + +.mdl-textfield--floating-label .mdl-textfield__label { + -webkit-transition-duration: .2s; + transition-duration: .2s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1) +} + +.mdl-textfield--floating-label.is-focused .mdl-textfield__label, .mdl-textfield--floating-label.is-dirty .mdl-textfield__label { + color: #3f51b5; + font-size: 12px; + top: 4px; + visibility: visible +} + +.mdl-textfield--floating-label.is-focused .mdl-textfield__expandable-holder .mdl-textfield__label, .mdl-textfield--floating-label.is-dirty .mdl-textfield__expandable-holder .mdl-textfield__label { + top: -16px +} + +.mdl-textfield--floating-label.is-invalid .mdl-textfield__label { + color: #de3226; + font-size: 12px +} + +.mdl-textfield__label:after { + background-color: #3f51b5; + bottom: 20px; + content: ''; + height: 2px; + left: 45%; + position: absolute; + -webkit-transition-duration: .2s; + transition-duration: .2s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + visibility: hidden; + width: 10px +} + +.mdl-textfield.is-focused .mdl-textfield__label:after { + left: 0; + visibility: visible; + width: 100% +} + +.mdl-textfield.is-invalid .mdl-textfield__label:after { + background-color: #de3226 +} + +.mdl-textfield__error { + color: #de3226; + position: absolute; + font-size: 12px; + margin-top: 3px; + visibility: hidden +} + +.mdl-textfield.is-invalid .mdl-textfield__error { + visibility: visible +} + +.mdl-textfield__expandable-holder { + display: inline-block; + position: relative; + margin-left: 32px; + -webkit-transition-duration: .2s; + transition-duration: .2s; + -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1); + transition-timing-function: cubic-bezier(.4, 0, .2, 1); + display: inline-block; + max-width: .1px +} + +.mdl-textfield.is-focused .mdl-textfield__expandable-holder, .mdl-textfield.is-dirty .mdl-textfield__expandable-holder { + max-width: 600px +} + +.mdl-textfield__expandable-holder .mdl-textfield__label:after { + bottom: 0 +} + +.mdl-tooltip { + -webkit-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + -webkit-transform-origin: top center; + -ms-transform-origin: top center; + transform-origin: top center; + will-change: transform; + z-index: 999; + background: rgba(97, 97, 97, .9); + border-radius: 2px; + color: #fff; + display: inline-block; + font-size: 10px; + font-weight: 500; + line-height: 14px; + max-width: 170px; + position: fixed; + top: -500px; + left: -500px; + padding: 8px; + text-align: center +} + +.mdl-tooltip.is-active { + -webkit-animation: pulse 200ms cubic-bezier(0, 0, .2, 1)forwards; + animation: pulse 200ms cubic-bezier(0, 0, .2, 1)forwards +} + +.mdl-tooltip--large { + line-height: 14px; + font-size: 14px; + padding: 16px +} + +@-webkit-keyframes pulse { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + opacity: 0 + } + 50% { + -webkit-transform: scale(.99); + transform: scale(.99) + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + visibility: visible + } +} + +@keyframes pulse { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + opacity: 0 + } + 50% { + -webkit-transform: scale(.99); + transform: scale(.99) + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + visibility: visible + } +} + +.mdl-shadow--2dp { + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12) +} + +.mdl-shadow--3dp { + box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .14), 0 3px 3px -2px rgba(0, 0, 0, .2), 0 1px 8px 0 rgba(0, 0, 0, .12) +} + +.mdl-shadow--4dp { + box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2) +} + +.mdl-shadow--6dp { + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12), 0 3px 5px -1px rgba(0, 0, 0, .2) +} + +.mdl-shadow--8dp { + box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2) +} + +.mdl-shadow--16dp { + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .2) +} + +.mdl-grid { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin: 0 auto; + -webkit-box-align: stretch; + -webkit-align-items: stretch; + -ms-flex-align: stretch; + align-items: stretch +} + +.mdl-grid.mdl-grid--no-spacing { + padding: 0 +} + +.mdl-cell { + box-sizing: border-box +} + +.mdl-cell--top { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start +} + +.mdl-cell--middle { + -webkit-align-self: center; + -ms-flex-item-align: center; + align-self: center +} + +.mdl-cell--bottom { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end +} + +.mdl-cell--stretch { + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + align-self: stretch +} + +.mdl-grid.mdl-grid--no-spacing>.mdl-cell { + margin: 0 +} + +@media(max-width:479px) { + .mdl-grid { + padding: 8px + } + .mdl-cell { + margin: 8px; + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell { + width: 100% + } + .mdl-cell--hide-phone { + display: none !important + } + .mdl-cell--1-col { + width: calc(25% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--1-col { + width: 25% + } + .mdl-cell--1-col-phone.mdl-cell--1-col-phone { + width: calc(25% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--1-col-phone.mdl-cell--1-col-phone { + width: 25% + } + .mdl-cell--2-col { + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--2-col { + width: 50% + } + .mdl-cell--2-col-phone.mdl-cell--2-col-phone { + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--2-col-phone.mdl-cell--2-col-phone { + width: 50% + } + .mdl-cell--3-col { + width: calc(75% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--3-col { + width: 75% + } + .mdl-cell--3-col-phone.mdl-cell--3-col-phone { + width: calc(75% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--3-col-phone.mdl-cell--3-col-phone { + width: 75% + } + .mdl-cell--4-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--4-col { + width: 100% + } + .mdl-cell--4-col-phone.mdl-cell--4-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--4-col-phone.mdl-cell--4-col-phone { + width: 100% + } + .mdl-cell--5-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--5-col { + width: 100% + } + .mdl-cell--5-col-phone.mdl-cell--5-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--5-col-phone.mdl-cell--5-col-phone { + width: 100% + } + .mdl-cell--6-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--6-col { + width: 100% + } + .mdl-cell--6-col-phone.mdl-cell--6-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--6-col-phone.mdl-cell--6-col-phone { + width: 100% + } + .mdl-cell--7-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--7-col { + width: 100% + } + .mdl-cell--7-col-phone.mdl-cell--7-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--7-col-phone.mdl-cell--7-col-phone { + width: 100% + } + .mdl-cell--8-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--8-col { + width: 100% + } + .mdl-cell--8-col-phone.mdl-cell--8-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--8-col-phone.mdl-cell--8-col-phone { + width: 100% + } + .mdl-cell--9-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--9-col { + width: 100% + } + .mdl-cell--9-col-phone.mdl-cell--9-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--9-col-phone.mdl-cell--9-col-phone { + width: 100% + } + .mdl-cell--10-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--10-col { + width: 100% + } + .mdl-cell--10-col-phone.mdl-cell--10-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--10-col-phone.mdl-cell--10-col-phone { + width: 100% + } + .mdl-cell--11-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--11-col { + width: 100% + } + .mdl-cell--11-col-phone.mdl-cell--11-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--11-col-phone.mdl-cell--11-col-phone { + width: 100% + } + .mdl-cell--12-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--12-col { + width: 100% + } + .mdl-cell--12-col-phone.mdl-cell--12-col-phone { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--12-col-phone.mdl-cell--12-col-phone { + width: 100% + } +} + +@media(min-width:480px) and (max-width:839px) { + .mdl-grid { + padding: 8px + } + .mdl-cell { + margin: 8px; + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell { + width: 50% + } + .mdl-cell--hide-tablet { + display: none !important + } + .mdl-cell--1-col { + width: calc(12.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--1-col { + width: 12.5% + } + .mdl-cell--1-col-tablet.mdl-cell--1-col-tablet { + width: calc(12.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--1-col-tablet.mdl-cell--1-col-tablet { + width: 12.5% + } + .mdl-cell--2-col { + width: calc(25% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--2-col { + width: 25% + } + .mdl-cell--2-col-tablet.mdl-cell--2-col-tablet { + width: calc(25% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--2-col-tablet.mdl-cell--2-col-tablet { + width: 25% + } + .mdl-cell--3-col { + width: calc(37.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--3-col { + width: 37.5% + } + .mdl-cell--3-col-tablet.mdl-cell--3-col-tablet { + width: calc(37.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--3-col-tablet.mdl-cell--3-col-tablet { + width: 37.5% + } + .mdl-cell--4-col { + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--4-col { + width: 50% + } + .mdl-cell--4-col-tablet.mdl-cell--4-col-tablet { + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--4-col-tablet.mdl-cell--4-col-tablet { + width: 50% + } + .mdl-cell--5-col { + width: calc(62.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--5-col { + width: 62.5% + } + .mdl-cell--5-col-tablet.mdl-cell--5-col-tablet { + width: calc(62.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--5-col-tablet.mdl-cell--5-col-tablet { + width: 62.5% + } + .mdl-cell--6-col { + width: calc(75% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--6-col { + width: 75% + } + .mdl-cell--6-col-tablet.mdl-cell--6-col-tablet { + width: calc(75% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--6-col-tablet.mdl-cell--6-col-tablet { + width: 75% + } + .mdl-cell--7-col { + width: calc(87.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--7-col { + width: 87.5% + } + .mdl-cell--7-col-tablet.mdl-cell--7-col-tablet { + width: calc(87.5% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--7-col-tablet.mdl-cell--7-col-tablet { + width: 87.5% + } + .mdl-cell--8-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--8-col { + width: 100% + } + .mdl-cell--8-col-tablet.mdl-cell--8-col-tablet { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--8-col-tablet.mdl-cell--8-col-tablet { + width: 100% + } + .mdl-cell--9-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--9-col { + width: 100% + } + .mdl-cell--9-col-tablet.mdl-cell--9-col-tablet { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--9-col-tablet.mdl-cell--9-col-tablet { + width: 100% + } + .mdl-cell--10-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--10-col { + width: 100% + } + .mdl-cell--10-col-tablet.mdl-cell--10-col-tablet { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--10-col-tablet.mdl-cell--10-col-tablet { + width: 100% + } + .mdl-cell--11-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--11-col { + width: 100% + } + .mdl-cell--11-col-tablet.mdl-cell--11-col-tablet { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--11-col-tablet.mdl-cell--11-col-tablet { + width: 100% + } + .mdl-cell--12-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--12-col { + width: 100% + } + .mdl-cell--12-col-tablet.mdl-cell--12-col-tablet { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--12-col-tablet.mdl-cell--12-col-tablet { + width: 100% + } +} + +@media(min-width:840px) { + .mdl-grid { + padding: 8px + } + .mdl-cell { + margin: 8px; + width: calc(33.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell { + width: 33.3333333333% + } + .mdl-cell--hide-desktop { + display: none !important + } + .mdl-cell--1-col { + width: calc(8.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--1-col { + width: 8.3333333333% + } + .mdl-cell--1-col-desktop.mdl-cell--1-col-desktop { + width: calc(8.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--1-col-desktop.mdl-cell--1-col-desktop { + width: 8.3333333333% + } + .mdl-cell--2-col { + width: calc(16.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--2-col { + width: 16.6666666667% + } + .mdl-cell--2-col-desktop.mdl-cell--2-col-desktop { + width: calc(16.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--2-col-desktop.mdl-cell--2-col-desktop { + width: 16.6666666667% + } + .mdl-cell--3-col { + width: calc(25% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--3-col { + width: 25% + } + .mdl-cell--3-col-desktop.mdl-cell--3-col-desktop { + width: calc(25% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--3-col-desktop.mdl-cell--3-col-desktop { + width: 25% + } + .mdl-cell--4-col { + width: calc(33.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--4-col { + width: 33.3333333333% + } + .mdl-cell--4-col-desktop.mdl-cell--4-col-desktop { + width: calc(33.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--4-col-desktop.mdl-cell--4-col-desktop { + width: 33.3333333333% + } + .mdl-cell--5-col { + width: calc(41.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--5-col { + width: 41.6666666667% + } + .mdl-cell--5-col-desktop.mdl-cell--5-col-desktop { + width: calc(41.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--5-col-desktop.mdl-cell--5-col-desktop { + width: 41.6666666667% + } + .mdl-cell--6-col { + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--6-col { + width: 50% + } + .mdl-cell--6-col-desktop.mdl-cell--6-col-desktop { + width: calc(50% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--6-col-desktop.mdl-cell--6-col-desktop { + width: 50% + } + .mdl-cell--7-col { + width: calc(58.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--7-col { + width: 58.3333333333% + } + .mdl-cell--7-col-desktop.mdl-cell--7-col-desktop { + width: calc(58.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--7-col-desktop.mdl-cell--7-col-desktop { + width: 58.3333333333% + } + .mdl-cell--8-col { + width: calc(66.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--8-col { + width: 66.6666666667% + } + .mdl-cell--8-col-desktop.mdl-cell--8-col-desktop { + width: calc(66.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--8-col-desktop.mdl-cell--8-col-desktop { + width: 66.6666666667% + } + .mdl-cell--9-col { + width: calc(75% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--9-col { + width: 75% + } + .mdl-cell--9-col-desktop.mdl-cell--9-col-desktop { + width: calc(75% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--9-col-desktop.mdl-cell--9-col-desktop { + width: 75% + } + .mdl-cell--10-col { + width: calc(83.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--10-col { + width: 83.3333333333% + } + .mdl-cell--10-col-desktop.mdl-cell--10-col-desktop { + width: calc(83.3333333333% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--10-col-desktop.mdl-cell--10-col-desktop { + width: 83.3333333333% + } + .mdl-cell--11-col { + width: calc(91.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--11-col { + width: 91.6666666667% + } + .mdl-cell--11-col-desktop.mdl-cell--11-col-desktop { + width: calc(91.6666666667% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--11-col-desktop.mdl-cell--11-col-desktop { + width: 91.6666666667% + } + .mdl-cell--12-col { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--12-col { + width: 100% + } + .mdl-cell--12-col-desktop.mdl-cell--12-col-desktop { + width: calc(100% - 16px) + } + .mdl-grid--no-spacing>.mdl-cell--12-col-desktop.mdl-cell--12-col-desktop { + width: 100% + } +} + +body { + margin: 0 +} + +.styleguide-demo h1 { + margin: 48px 24px 0 +} + +.styleguide-demo h1:after { + content: ''; + display: block; + width: 100%; + border-bottom: 1px solid rgba(0, 0, 0, .5); + margin-top: 24px +} + +.styleguide-demo { + opacity: 0; + -webkit-transition: opacity .6s ease; + transition: opacity .6s ease +} + +.styleguide-masthead { + height: 256px; + background: #212121; + padding: 115px 16px 0 +} + +.styleguide-container { + position: relative; + max-width: 960px; + width: 100% +} + +.styleguide-title { + color: #fff; + bottom: auto; + position: relative; + font-size: 56px; + font-weight: 300; + line-height: 1; + letter-spacing: -.02em +} + +.styleguide-title:after { + border-bottom: 0 +} + +.styleguide-title span { + font-weight: 300 +} + +.mdl-styleguide .mdl-layout__drawer .mdl-navigation__link { + padding: 10px 24px +} + +.demosLoaded .styleguide-demo { + opacity: 1 +} + +iframe { + display: block; + width: 100%; + border: 0 +} + +iframe.heightSet { + overflow: hidden +} + +.demo-wrapper { + margin: 24px +} + +.demo-wrapper iframe { + border: 1px solid rgba(0, 0, 0, .5) +} diff --git a/libs/hexo-theme-material/1.5.2/source/css/material.min.css b/libs/hexo-theme-material/1.5.2/source/css/material.min.css new file mode 100644 index 000000000..0aa0744ab --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/material.min.css @@ -0,0 +1 @@ +@charset "UTF-8";html{color:rgba(0,0,0,.87)}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}audio,canvas,img,svg,video{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}@media print{*,:after,:before{background:transparent!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href)")"}abbr[title]:after{content:" (" attr(title)")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}.mdl-accordion,.mdl-button,.mdl-card,.mdl-checkbox,.mdl-dropdown-menu,.mdl-icon-toggle,.mdl-item,.mdl-radio,.mdl-slider,.mdl-switch,.mdl-tabs__tab,a{-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:rgba(255,255,255,0)}html{height:100%;-ms-touch-action:manipulation;touch-action:manipulation}body,html{width:100%}body{min-height:100%}main{display:block}[hidden]{display:none!important}body,html{font-family:Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px}h1,h2,h3,h4,h5,h6,p{padding:0}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.35;letter-spacing:-.02em;opacity:.54;font-size:.6em}h1{font-size:56px;line-height:1.35;letter-spacing:-.02em;margin:24px 0}h1,h2{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h2{font-size:45px;line-height:3pc}h2,h3{margin:24px 0}h3{font-size:34px;line-height:40px}h3,h4{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h4{font-size:24px;line-height:2pc;-moz-osx-font-smoothing:grayscale;margin:24px 0 1pc}h5{font-size:20px;font-weight:500;line-height:1;letter-spacing:.02em}h5,h6{font-family:Roboto,Helvetica,Arial,sans-serif;margin:24px 0 1pc}h6{font-size:1pc;letter-spacing:.04em}h6,p{font-weight:400;line-height:24px}p{font-size:14px;letter-spacing:0;margin:0 0 1pc}a{color:#ff4081;font-weight:500}blockquote{font-family:Roboto,Helvetica,Arial,sans-serif;position:relative;font-size:24px;font-weight:300;font-style:italic;line-height:1.35;letter-spacing:.08em}mark{background-color:#f4ff81}dt{font-weight:700}ol,ul{font-weight:400;letter-spacing:0;font-size:14px;line-height:24px}.mdl-color-text--grey{color:#9e9e9e!important}.mdl-color-text--grey-50{color:#fafafa!important}.mdl-color-text--grey-100{color:#f5f5f5!important}.mdl-color-text--grey-200{color:#eee!important}.mdl-color-text--grey-300{color:#e0e0e0!important}.mdl-color-text--grey-400{color:#bdbdbd!important}.mdl-color-text--grey-500{color:#9e9e9e!important}.mdl-color-text--grey-600{color:#757575!important}.mdl-color-text--grey-700{color:#616161!important}.mdl-color-text--grey-800{color:#424242!important}.mdl-color-text--grey-900{color:#212121!important}.mdl-color--black{background-color:#000!important}.mdl-color-text--black{color:#000!important}.mdl-color--white{background-color:#fff!important}.mdl-color-text--white{color:#fff!important}.mdl-color-text--accent{color:#ff4081!important}.mdl-color-text--accent-contrast{color:#fff!important}.mdl-ripple{background:#000;border-radius:50%;height:50px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:50px;overflow:hidden}.mdl-ripple.is-animating{-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.2,1),width .3s cubic-bezier(0,0,.2,1),height .3s cubic-bezier(0,0,.2,1),opacity .6s cubic-bezier(0,0,.2,1);transition:transform .3s cubic-bezier(0,0,.2,1),width .3s cubic-bezier(0,0,.2,1),height .3s cubic-bezier(0,0,.2,1),opacity .6s cubic-bezier(0,0,.2,1)}.mdl-ripple.is-visible{opacity:.3}.mdl-animation--default,.mdl-animation--fast-out-slow-in{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdl-animation--linear-out-slow-in{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.mdl-animation--fast-out-linear-in{-webkit-transition-timing-function:cubic-bezier(.4,0,1,1);transition-timing-function:cubic-bezier(.4,0,1,1)}.mdl-badge{position:relative;white-space:nowrap;margin-right:24px}.mdl-badge:not([data-badge]){margin-right:auto}.mdl-badge[data-badge]:after{content:attr(data-badge);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:-11px;right:-24px;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:600;font-size:9pt;width:22px;height:22px;border-radius:50%;background:#ff4081;color:#fff}.mdl-button .mdl-badge[data-badge]:after{top:-10px;right:-5px}.mdl-badge.mdl-badge--no-background[data-badge]:after{color:#ff4081;background:hsla(0,0%,100%,.2);box-shadow:0 0 1px gray}.mdl-button{background:0;border:0;border-radius:2px;color:#000;display:block;position:relative;height:36px;min-width:4pc;padding:0 8px;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;text-transform:uppercase;letter-spacing:0;overflow:hidden;will-change:box-shadow,transform;-webkit-transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);outline:0;cursor:pointer;text-decoration:none;text-align:center;line-height:36px;vertical-align:middle}.mdl-button::-moz-focus-inner{border:0}.mdl-button:hover{background-color:hsla(0,0%,62%,.2)}.mdl-button:focus:not(:active){background-color:rgba(0,0,0,.12)}.mdl-button:active{background-color:hsla(0,0%,62%,.4)}.mdl-button.mdl-button--colored{color:#3f51b5}.mdl-button.mdl-button--colored:focus:not(:active){background-color:rgba(0,0,0,.12)}input.mdl-button[type=submit]{-webkit-appearance:none}.mdl-button--raised{background:hsla(0,0%,62%,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.mdl-button--raised:active{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);background-color:hsla(0,0%,62%,.4)}.mdl-button--raised:focus:not(:active){box-shadow:0 0 8px rgba(0,0,0,.18),0 8px 1pc rgba(0,0,0,.36);background-color:hsla(0,0%,62%,.4)}.mdl-button--raised.mdl-button--colored{background:#3f51b5;color:#fff}.mdl-button--raised.mdl-button--colored:active,.mdl-button--raised.mdl-button--colored:focus:not(:active),.mdl-button--raised.mdl-button--colored:hover{background-color:#3f51b5}.mdl-button--raised.mdl-button--colored .mdl-ripple{background:#fff}.mdl-button--fab{border-radius:50%;font-size:24px;height:56px;margin:auto;min-width:56px;width:56px;padding:0;overflow:hidden;background:hsla(0,0%,62%,.2);box-shadow:0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24);position:relative;line-height:normal}.mdl-button--fab .material-icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-12px, -12px);transform:translate(-12px, -12px);line-height:24px;width:24px}.mdl-button--fab.mdl-button--mini-fab{height:40px;min-width:40px;width:40px}.mdl-button--fab .mdl-button__ripple-container{border-radius:50%;-webkit-mask-image:-webkit-radial-gradient(circle,#fff,#000)}.mdl-button--fab:active{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);background-color:hsla(0,0%,62%,.4)}.mdl-button--fab:focus:not(:active){box-shadow:0 0 8px rgba(0,0,0,.18),0 8px 1pc rgba(0,0,0,.36);background-color:hsla(0,0%,62%,.4)}.mdl-button--fab.mdl-button--colored{background:#ff4081;color:#fff}.mdl-button--fab.mdl-button--colored:active,.mdl-button--fab.mdl-button--colored:focus:not(:active),.mdl-button--fab.mdl-button--colored:hover{background-color:#ff4081}.mdl-button--fab.mdl-button--colored .mdl-ripple{background:#fff}.mdl-button--icon{border-radius:50%;font-size:24px;height:2pc;margin-left:0;margin-right:0;min-width:2pc;width:2pc;padding:0;overflow:hidden;color:inherit;line-height:normal}.mdl-button--icon .material-icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-12px, -12px);transform:translate(-12px, -12px);line-height:24px;width:24px}.mdl-button--icon.mdl-button--mini-icon{height:24px;min-width:24px;width:24px}.mdl-button--icon.mdl-button--mini-icon .material-icons{top:0;left:0}.mdl-button--icon .mdl-button__ripple-container{border-radius:50%;-webkit-mask-image:-webkit-radial-gradient(circle,#fff,#000)}.mdl-button__ripple-container{display:block;height:100%;left:0;position:absolute;top:0;width:100%;z-index:0;overflow:hidden}.mdl-button[disabled] .mdl-button__ripple-container .mdl-ripple{background-color:transparent}.mdl-button--primary.mdl-button--primary{color:#3f51b5}.mdl-button--primary.mdl-button--primary .mdl-ripple{background:#fff}.mdl-button--primary.mdl-button--primary.mdl-button--fab,.mdl-button--primary.mdl-button--primary.mdl-button--raised{color:#fff;background-color:#3f51b5}.mdl-button--accent.mdl-button--accent{color:#ff4081}.mdl-button--accent.mdl-button--accent .mdl-ripple{background:#fff}.mdl-button--accent.mdl-button--accent.mdl-button--fab,.mdl-button--accent.mdl-button--accent.mdl-button--raised{color:#fff;background-color:#ff4081}.mdl-button[disabled][disabled]{color:rgba(0,0,0,.26);cursor:auto;background-color:transparent}.mdl-button--colored[disabled][disabled],.mdl-button--fab[disabled][disabled],.mdl-button--raised[disabled][disabled]{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.mdl-card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:1pc;font-weight:400;min-height:200px;overflow:hidden;width:330px;z-index:1;position:relative;background:#fff;border-radius:2px;box-sizing:border-box}.mdl-card__media{background-color:#ff4081;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-origin:padding-box;background-attachment:scroll;box-sizing:border-box}.mdl-card__title{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#000;display:block;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;line-height:normal;padding:1pc;-webkit-perspective-origin:165px 56px;perspective-origin:165px 56px;-webkit-transform-origin:165px 56px;transform-origin:165px 56px;box-sizing:border-box}.mdl-card__title.mdl-card--border{border-bottom:1px solid rgba(0,0,0,.1)}.mdl-card__title-text{-ms-flex-item-align:end;align-self:flex-end;color:inherit;display:block;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:24px;font-weight:300;line-height:normal;overflow:hidden;-webkit-transform-origin:149px 3pc;transform-origin:149px 3pc;margin:0}.mdl-card__subtitle-text{font-size:14px;color:grey;margin:0}.mdl-card__supporting-text{color:rgba(0,0,0,.54);font-size:13px;line-height:18px;overflow:hidden;padding:1pc;width:90%}.mdl-card__actions{font-size:1pc;line-height:normal;width:100%;background-color:transparent;padding:8px;box-sizing:border-box}.mdl-card__actions.mdl-card--border{border-top:1px solid rgba(0,0,0,.1)}.mdl-card--expand{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdl-card__menu{position:absolute;right:1pc;top:1pc}.mdl-checkbox{position:relative;z-index:1;vertical-align:middle;display:inline-block;box-sizing:border-box;width:100%;height:24px;margin:0;padding:0}.mdl-checkbox.is-upgraded{padding-left:24px}.mdl-checkbox__input{line-height:24px}.mdl-checkbox.is-upgraded .mdl-checkbox__input{position:absolute;width:0;height:0;margin:0;padding:0;opacity:0;-ms-appearance:none;-moz-appearance:none;-webkit-appearance:none;appearance:none;border:0}.mdl-checkbox__box-outline{position:absolute;top:3px;left:0;display:inline-block;box-sizing:border-box;width:1pc;height:1pc;margin:0;cursor:pointer;overflow:hidden;border:2px solid rgba(0,0,0,.54);border-radius:2px;z-index:2}.mdl-checkbox.is-checked .mdl-checkbox__box-outline{border:2px solid #3f51b5}.mdl-checkbox.is-disabled .mdl-checkbox__box-outline{border:2px solid rgba(0,0,0,.26);cursor:auto}.mdl-checkbox__focus-helper{position:absolute;top:3px;left:0;display:inline-block;box-sizing:border-box;width:1pc;height:1pc;border-radius:50%;background-color:transparent}.mdl-checkbox.is-focused .mdl-checkbox__focus-helper{box-shadow:0 0 0 8px rgba(0,0,0,.1);background-color:rgba(0,0,0,.1)}.mdl-checkbox.is-focused.is-checked .mdl-checkbox__focus-helper{box-shadow:0 0 0 8px rgba(63,81,181,.26);background-color:rgba(63,81,181,.26)}.mdl-checkbox__tick-outline{position:absolute;top:0;left:0;height:100%;width:100%;-webkit-mask:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcCI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gMCwwIDAsMSAxLDEgMSwwIDAsMCB6IE0gMC44NTM0Mzc1LDAuMTY3MTg3NSAwLjk1OTY4NzUsMC4yNzMxMjUgMC40MjkzNzUsMC44MDM0Mzc1IDAuMzIzMTI1LDAuOTA5Njg3NSAwLjIxNzE4NzUsMC44MDM0Mzc1IDAuMDQwMzEyNSwwLjYyNjg3NSAwLjE0NjU2MjUsMC41MjA2MjUgMC4zMjMxMjUsMC42OTc1IDAuODUzNDM3NSwwLjE2NzE4NzUgeiIKICAgICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8bWFzayBpZD0ibWFzayIgbWFza1VuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgbWFza0NvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMCAwLDEgMSwxIDEsMCAwLDAgeiBNIDAuODUzNDM3NSwwLjE2NzE4NzUgMC45NTk2ODc1LDAuMjczMTI1IDAuNDI5Mzc1LDAuODAzNDM3NSAwLjMyMzEyNSwwLjkwOTY4NzUgMC4yMTcxODc1LDAuODAzNDM3NSAwLjA0MDMxMjUsMC42MjY4NzUgMC4xNDY1NjI1LDAuNTIwNjI1IDAuMzIzMTI1LDAuNjk3NSAwLjg1MzQzNzUsMC4xNjcxODc1IHoiCiAgICAgICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+CiAgICA8L21hc2s+CiAgPC9kZWZzPgogIDxyZWN0CiAgICAgd2lkdGg9IjEiCiAgICAgaGVpZ2h0PSIxIgogICAgIHg9IjAiCiAgICAgeT0iMCIKICAgICBjbGlwLXBhdGg9InVybCgjY2xpcCkiCiAgICAgc3R5bGU9ImZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KPC9zdmc+Cg==");mask:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcCI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gMCwwIDAsMSAxLDEgMSwwIDAsMCB6IE0gMC44NTM0Mzc1LDAuMTY3MTg3NSAwLjk1OTY4NzUsMC4yNzMxMjUgMC40MjkzNzUsMC44MDM0Mzc1IDAuMzIzMTI1LDAuOTA5Njg3NSAwLjIxNzE4NzUsMC44MDM0Mzc1IDAuMDQwMzEyNSwwLjYyNjg3NSAwLjE0NjU2MjUsMC41MjA2MjUgMC4zMjMxMjUsMC42OTc1IDAuODUzNDM3NSwwLjE2NzE4NzUgeiIKICAgICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8bWFzayBpZD0ibWFzayIgbWFza1VuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgbWFza0NvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMCAwLDEgMSwxIDEsMCAwLDAgeiBNIDAuODUzNDM3NSwwLjE2NzE4NzUgMC45NTk2ODc1LDAuMjczMTI1IDAuNDI5Mzc1LDAuODAzNDM3NSAwLjMyMzEyNSwwLjkwOTY4NzUgMC4yMTcxODc1LDAuODAzNDM3NSAwLjA0MDMxMjUsMC42MjY4NzUgMC4xNDY1NjI1LDAuNTIwNjI1IDAuMzIzMTI1LDAuNjk3NSAwLjg1MzQzNzUsMC4xNjcxODc1IHoiCiAgICAgICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+CiAgICA8L21hc2s+CiAgPC9kZWZzPgogIDxyZWN0CiAgICAgd2lkdGg9IjEiCiAgICAgaGVpZ2h0PSIxIgogICAgIHg9IjAiCiAgICAgeT0iMCIKICAgICBjbGlwLXBhdGg9InVybCgjY2xpcCkiCiAgICAgc3R5bGU9ImZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KPC9zdmc+Cg==");background:0;-webkit-transition-duration:.28s;transition-duration:.28s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-property:background;transition-property:background}.mdl-checkbox.is-checked .mdl-checkbox__tick-outline{background:#3f51b5 url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K")}.mdl-checkbox.is-checked.is-disabled .mdl-checkbox__tick-outline{background:rgba(0, 0, 0, .26)url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K")}.mdl-checkbox__label{position:relative;cursor:pointer;font-size:1pc;line-height:24px;margin:0}.mdl-checkbox.is-disabled .mdl-checkbox__label{color:rgba(0,0,0,.26);cursor:auto}.mdl-checkbox__ripple-container{position:absolute;z-index:2;top:-6px;left:-10px;box-sizing:border-box;width:36px;height:36px;border-radius:50%;cursor:pointer;overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(circle,#fff,#000)}.mdl-checkbox__ripple-container .mdl-ripple{background:#3f51b5}.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container{cursor:auto}.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container .mdl-ripple{background:0}.mdl-data-table{position:relative;border:1px solid rgba(0,0,0,.12);border-collapse:collapse;white-space:nowrap;font-size:13px;background-color:#fff}.mdl-data-table thead{padding-bottom:3px}.mdl-data-table thead .mdl-data-table__select{margin-top:0}.mdl-data-table tbody tr{position:relative;height:3pc;-webkit-transition-duration:.28s;transition-duration:.28s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-property:background-color;transition-property:background-color}.mdl-data-table tbody tr.is-selected{background-color:#e0e0e0}.mdl-data-table tbody tr:hover{background-color:#eee}.mdl-data-table td{text-align:right}.mdl-data-table th{padding:0 18px;text-align:right}.mdl-data-table td:first-of-type,.mdl-data-table th:first-of-type{padding-left:24px}.mdl-data-table td:last-of-type,.mdl-data-table th:last-of-type{padding-right:24px}.mdl-data-table td{position:relative;vertical-align:top;height:3pc;border-top:1px solid rgba(0,0,0,.12);border-bottom:1px solid rgba(0,0,0,.12);padding:9pt 18px 0;box-sizing:border-box}.mdl-data-table td .mdl-data-table__select{vertical-align:top;position:absolute;left:24px}.mdl-data-table th{position:relative;vertical-align:bottom;text-overflow:ellipsis;font-weight:700;line-height:24px;letter-spacing:0;height:3pc;font-size:9pt;color:rgba(0,0,0,.54);padding-bottom:8px;box-sizing:border-box}.mdl-data-table th .mdl-data-table__select{position:relative}.mdl-data-table__select{width:1pc}.mdl-data-table__cell--non-numeric.mdl-data-table__cell--non-numeric{text-align:left}.mdl-logo{margin-bottom:1pc;color:#fff}@media screen and (min-width:760px){.mdl-logo{float:left;margin-bottom:0;margin-right:1pc}}.mdl-mini-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:2pc 1pc;color:#9e9e9e;background-color:#424242}.mdl-mini-footer:after{content:'';display:block}.mdl-mini-footer .mdl-logo{line-height:36px}.mdl-mini-footer--link-list,.mdl-mini-footer__link-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row;list-style:none;margin:0;padding:0}.mdl-mini-footer--link-list li,.mdl-mini-footer__link-list li{margin-bottom:0;margin-right:1pc}@media screen and (min-width:760px){.mdl-mini-footer--link-list li,.mdl-mini-footer__link-list li{line-height:36px}}.mdl-mini-footer--link-list a,.mdl-mini-footer__link-list a{color:inherit;text-decoration:none;white-space:nowrap}.mdl-mini-footer--left-section,.mdl-mini-footer__left-section{display:inline-block;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.mdl-mini-footer--right-section,.mdl-mini-footer__right-section{display:inline-block;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.mdl-mini-footer--social-btn,.mdl-mini-footer__social-btn{width:36px;height:36px;padding:0;margin:0;background-color:#9e9e9e;border:0}.mdl-icon-toggle{position:relative;z-index:1;vertical-align:middle;display:inline-block;height:2pc;margin:0;padding:0}.mdl-icon-toggle__input{line-height:2pc}.mdl-icon-toggle.is-upgraded .mdl-icon-toggle__input{position:absolute;width:0;height:0;margin:0;padding:0;opacity:0;-ms-appearance:none;-moz-appearance:none;-webkit-appearance:none;appearance:none;border:0}.mdl-icon-toggle__label{display:inline-block;position:relative;cursor:pointer;height:2pc;width:2pc;min-width:2pc;color:#616161;border-radius:50%;padding:0;margin-left:0;margin-right:0;text-align:center;background-color:transparent;will-change:background-color;-webkit-transition:background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);transition:background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}.mdl-icon-toggle__label.material-icons{line-height:2pc;font-size:24px}.mdl-icon-toggle.is-checked .mdl-icon-toggle__label{color:#3f51b5}.mdl-icon-toggle.is-disabled .mdl-icon-toggle__label{color:rgba(0,0,0,.26);cursor:auto;-webkit-transition:none;transition:none}.mdl-icon-toggle.is-focused .mdl-icon-toggle__label{background-color:rgba(0,0,0,.12)}.mdl-icon-toggle.is-focused.is-checked .mdl-icon-toggle__label{background-color:rgba(63,81,181,.26)}.mdl-icon-toggle__ripple-container{position:absolute;z-index:2;top:-2px;left:-2px;box-sizing:border-box;width:36px;height:36px;border-radius:50%;cursor:pointer;overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(circle,#fff,#000)}.mdl-icon-toggle__ripple-container .mdl-ripple{background:#616161}.mdl-icon-toggle.is-disabled .mdl-icon-toggle__ripple-container{cursor:auto}.mdl-icon-toggle.is-disabled .mdl-icon-toggle__ripple-container .mdl-ripple{background:0}.mdl-menu__container{display:block;margin:0;padding:0;border:0;position:absolute;overflow:visible;height:0;width:0;z-index:-1}.mdl-menu__container.is-visible{z-index:999}.mdl-menu__outline{display:block;background:#fff;margin:0;padding:0;border:0;border-radius:2px;position:absolute;top:0;left:0;overflow:hidden;opacity:0;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:0 0;transform-origin:0 0;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);will-change:transform;-webkit-transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);transition:transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);z-index:-1}.mdl-menu__container.is-visible .mdl-menu__outline{opacity:1;-webkit-transform:scale(1);transform:scale(1);z-index:999}.mdl-menu__outline.mdl-menu--bottom-right{-webkit-transform-origin:100% 0;transform-origin:100% 0}.mdl-menu__outline.mdl-menu--top-left{-webkit-transform-origin:0 100%;transform-origin:0 100%}.mdl-menu__outline.mdl-menu--top-right{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.mdl-menu{position:absolute;list-style:none;top:0;left:0;height:auto;width:auto;min-width:93pt;padding:8px 0;margin:0;opacity:0;clip:rect(0 0 0 0);z-index:-1}.mdl-menu__container.is-visible .mdl-menu{opacity:1;z-index:999}.mdl-menu.is-animating{-webkit-transition:opacity .2s cubic-bezier(.4,0,.2,1),clip .3s cubic-bezier(.4,0,.2,1);transition:opacity .2s cubic-bezier(.4,0,.2,1),clip .3s cubic-bezier(.4,0,.2,1)}.mdl-menu.mdl-menu--bottom-right{left:auto;right:0}.mdl-menu.mdl-menu--top-left{top:auto;bottom:0}.mdl-menu.mdl-menu--top-right{top:auto;left:auto;bottom:0;right:0}.mdl-menu.mdl-menu--unaligned{top:auto;left:auto}.mdl-menu__item{display:block;border:0;color:rgba(0,0,0,.87);background-color:transparent;text-align:left;margin:0;padding:0 1pc;outline-color:#bdbdbd;position:relative;overflow:hidden;font-size:14px;font-weight:400;letter-spacing:0;text-decoration:none;cursor:pointer;height:3pc;line-height:3pc;white-space:nowrap;opacity:0;-webkit-transition:opacity .2s cubic-bezier(.4,0,.2,1);transition:opacity .2s cubic-bezier(.4,0,.2,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdl-menu__container.is-visible .mdl-menu__item{opacity:1}.mdl-menu__item::-moz-focus-inner{border:0}.mdl-menu__item[disabled]{color:#bdbdbd;cursor:auto}.mdl-menu__item[disabled],.mdl-menu__item[disabled]:focus,.mdl-menu__item[disabled]:hover{background-color:transparent}.mdl-menu__item[disabled] .mdl-ripple{background:0}.mdl-menu__item:hover{background-color:#eee}.mdl-menu__item:focus{outline:0;background-color:#eee}.mdl-menu__item:active{background-color:#e0e0e0}.mdl-menu__item--ripple-container{display:block;height:100%;left:0;position:absolute;top:0;width:100%;z-index:0;overflow:hidden}.mdl-progress{display:block;position:relative;height:4px;width:500px}.mdl-progress>.bar{display:block;position:absolute;top:0;bottom:0;width:0;-webkit-transition:width .2s cubic-bezier(.4,0,.2,1);transition:width .2s cubic-bezier(.4,0,.2,1)}.mdl-progress>.progressbar{background-color:#3f51b5;z-index:1;left:0}.mdl-progress>.bufferbar{background-image:-webkit-linear-gradient(left,hsla(0,0%,100%,.7),hsla(0,0%,100%,.7)),-webkit-linear-gradient(left,#3f51b5,#3f51b5);background-image:linear-gradient(to right,hsla(0,0%,100%,.7),hsla(0,0%,100%,.7)),linear-gradient(to right,#3f51b5,#3f51b5);z-index:0;left:0}.mdl-progress>.auxbar{right:0}@supports(-webkit-appearance:none){.mdl-progress:not(.mdl-progress__indeterminate):not(.mdl-progress__indeterminate)>.auxbar{background-image:-webkit-linear-gradient(left,hsla(0,0%,100%,.7),hsla(0,0%,100%,.7)),-webkit-linear-gradient(left,#3f51b5,#3f51b5);background-image:linear-gradient(to right,hsla(0,0%,100%,.7),hsla(0,0%,100%,.7)),linear-gradient(to right,#3f51b5,#3f51b5);-webkit-mask:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZXdQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMTQiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo=");mask:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZXdQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMTQiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo=")}}.mdl-progress:not(.mdl-progress__indeterminate)>.auxbar{background-image:-webkit-linear-gradient(left,hsla(0,0%,100%,.9),hsla(0,0%,100%,.9)),-webkit-linear-gradient(left,#3f51b5,#3f51b5);background-image:linear-gradient(to right,hsla(0,0%,100%,.9),hsla(0,0%,100%,.9)),linear-gradient(to right,#3f51b5,#3f51b5)}.mdl-progress.mdl-progress__indeterminate>.bar1{-webkit-animation-name:indeterminate1;animation-name:indeterminate1}.mdl-progress.mdl-progress__indeterminate>.bar1,.mdl-progress.mdl-progress__indeterminate>.bar3{background-color:#3f51b5;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.mdl-progress.mdl-progress__indeterminate>.bar3{background-image:none;-webkit-animation-name:indeterminate2;animation-name:indeterminate2}@-webkit-keyframes indeterminate1{0%{left:0;width:0}50%{left:25%;width:75%}75%{left:100%}}@keyframes indeterminate1{0%,75%{width:0}0%{left:0}50%{left:25%;width:75%}75%{left:100%;width:0}}@-webkit-keyframes indeterminate2{0%,50%{left:0;width:0}75%{left:0;width:25%}to{left:100%;width:0}}@keyframes indeterminate2{0%,50%{left:0;width:0}75%{left:0;width:25%}to{left:100%;width:0}}.mdl-navigation{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;box-sizing:border-box}.mdl-navigation__link{color:#424242;text-decoration:none;font-weight:500;font-size:13px;margin:0}.material-layout{width:100%;height:100%}.material-layout.is-small-screen .mdl-layout--large-screen-only,.material-layout:not(.is-small-screen) .mdl-layout--small-screen-only{display:none}.mdl-layout__container{position:absolute;width:100%;height:100%}.mdl-layout-title{display:block;position:relative;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:20px;line-height:1;letter-spacing:.02em;font-weight:400;box-sizing:border-box}.mdl-layout-spacer{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdl-layout__drawer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:15pc;height:100%;max-height:100%;position:absolute;top:0;left:0;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-sizing:border-box;border-right:1px solid #e0e0e0;background:#fafafa;-webkit-transform:translateX(-250px);transform:translateX(-250px);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;will-change:transform;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-property:-webkit-transform;transition-property:transform;color:#424242;overflow:visible;overflow-y:auto;z-index:5}.mdl-layout__drawer.is-visible{-webkit-transform:translateX(0);transform:translateX(0)}.mdl-layout__drawer>*{-ms-flex-negative:0;flex-shrink:0}.mdl-layout__drawer>.mdl-layout-title{line-height:4pc;padding-left:40px}@media screen and (max-width:1024px){.mdl-layout__drawer>.mdl-layout-title{line-height:56px;padding-left:1pc}}.mdl-layout__drawer .mdl-navigation{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding-top:1pc}.mdl-layout__drawer .mdl-navigation .mdl-navigation__link{display:block;-ms-flex-negative:0;flex-shrink:0;padding:1pc 40px;margin:0;color:#757575}@media screen and (max-width:1024px){.mdl-layout__drawer .mdl-navigation .mdl-navigation__link{padding:1pc}}.mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover{background-color:#e0e0e0}.mdl-layout__drawer .mdl-navigation .mdl-navigation__link--current{background-color:#000;color:#3f51b5}@media screen and (min-width:1025px){.mdl-layout--fixed-drawer>.mdl-layout__drawer{-webkit-transform:translateX(0);transform:translateX(0)}}.mdl-layout__drawer-button{display:block;position:absolute;height:3pc;width:3pc;border:0;-ms-flex-negative:0;flex-shrink:0;overflow:hidden;text-align:center;cursor:pointer;font-size:26px;line-height:50px;font-family:Helvetica,Arial,sans-serif;margin:10px 9pt;top:0;left:0;color:#fff;z-index:4}.mdl-layout__header .mdl-layout__drawer-button{position:absolute;color:#fff;background-color:inherit}@media screen and (max-width:1024px){.mdl-layout__header .mdl-layout__drawer-button{margin:4px}}@media screen and (max-width:1024px){.mdl-layout__drawer-button{margin:4px;color:rgba(0,0,0,.5)}}@media screen and (min-width:1025px){.mdl-layout--fixed-drawer>.mdl-layout__drawer-button{display:none}}.mdl-layout__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;width:100%;margin:0;padding:0;border:0;min-height:4pc;max-height:750pt;z-index:3;background-color:#3f51b5;color:#fff;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-property:max-height,box-shadow;transition-property:max-height,box-shadow}@media screen and (max-width:1024px){.mdl-layout__header{min-height:56px}}.mdl-layout--fixed-drawer:not(.is-small-screen)>.mdl-layout__header{margin-left:15pc;width:calc(100% - 15pc)}.mdl-layout--fixed-drawer>.mdl-layout__header .mdl-layout__header-row{padding-left:40px}.mdl-layout__header>.mdl-layout-icon{position:absolute;left:40px;top:1pc;height:2pc;width:2pc;overflow:hidden;z-index:3;display:block}@media screen and (max-width:1024px){.mdl-layout__header>.mdl-layout-icon{left:1pc;top:9pt}}.mdl-layout.has-drawer .mdl-layout__header>.mdl-layout-icon{display:none}.mdl-layout__header.is-compact{max-height:4pc}@media screen and (max-width:1024px){.mdl-layout__header.is-compact{max-height:56px}}.mdl-layout__header.is-compact.has-tabs{height:7pc}@media screen and (max-width:1024px){.mdl-layout__header.is-compact.has-tabs{min-height:78pt}}@media screen and (max-width:1024px){.mdl-layout__header{display:none}.mdl-layout--fixed-header>.mdl-layout__header{display:-webkit-box;display:-ms-flexbox;display:flex}}.mdl-layout__header--transparent.mdl-layout__header--transparent{background-color:transparent;box-shadow:none}.mdl-layout__header--scroll,.mdl-layout__header--seamed{box-shadow:none}.mdl-layout__header--waterfall{box-shadow:none;overflow:hidden}.mdl-layout__header--waterfall.is-casting-shadow{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.mdl-layout__header-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-negative:0;flex-shrink:0;box-sizing:border-box;-ms-flex-item-align:stretch;align-self:stretch;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:4pc;margin:0;padding:0 40px 0 5pc}@media screen and (max-width:1024px){.mdl-layout__header-row{height:56px;padding:0 1pc 0 72px}}.mdl-layout__header-row>*{-ms-flex-negative:0;flex-shrink:0}.mdl-layout__header--scroll .mdl-layout__header-row{width:100%}.mdl-layout__header-row .mdl-navigation{margin:0;padding:0;height:4pc;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:1024px){.mdl-layout__header-row .mdl-navigation{height:56px}}.mdl-layout__header-row .mdl-navigation__link{display:block;color:#fff;line-height:4pc;padding:0 24px}@media screen and (max-width:1024px){.mdl-layout__header-row .mdl-navigation__link{line-height:56px;padding:0 1pc}}.mdl-layout__obfuscator{background-color:transparent;position:absolute;top:0;left:0;height:100%;width:100%;z-index:4;visibility:hidden;-webkit-transition-property:background-color;transition-property:background-color;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdl-layout__drawer.is-visible~.mdl-layout__obfuscator{background-color:rgba(0,0,0,.5);visibility:visible}.material-layout_content{-ms-flex:0 1 auto;display:inline-block;overflow-y:auto;overflow-x:hidden;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;z-index:1;-webkit-overflow-scrolling:touch}.mdl-layout--fixed-drawer>.material-layout_content{margin-left:15pc}.mdl-layout__container.has-scrolling-header .material-layout_content{overflow:visible}@media screen and (max-width:1024px){.mdl-layout--fixed-drawer>.material-layout_content{margin-left:0}.mdl-layout__container.has-scrolling-header .material-layout_content{overflow-y:auto;overflow-x:hidden}}.mdl-layout__tab-bar{height:6pc;margin:0;width:calc(100% - 7pc);padding:0 0 0 56px;display:-webkit-box;display:-ms-flexbox;display:flex;background-color:#3f51b5;overflow-y:hidden;overflow-x:scroll}.mdl-layout__tab-bar::-webkit-scrollbar{display:none}@media screen and (max-width:1024px){.mdl-layout__tab-bar{width:calc(100% - 60px);padding:0 0 0 60px}}.mdl-layout--fixed-tabs .mdl-layout__tab-bar{padding:0;overflow:hidden;width:100%}.mdl-layout__tab-bar-container{position:relative;height:3pc;width:100%;border:0;margin:0;z-index:2;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;overflow:hidden}.mdl-layout__container>.mdl-layout__tab-bar-container{position:absolute;top:0;left:0}.mdl-layout__tab-bar-button{display:inline-block;position:absolute;top:0;height:3pc;width:56px;z-index:4;text-align:center;background-color:#3f51b5;color:transparent;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (max-width:1024px){.mdl-layout__tab-bar-button{display:none;width:60px}}.mdl-layout--fixed-tabs .mdl-layout__tab-bar-button{display:none}.mdl-layout__tab-bar-button .material-icons{line-height:3pc}.mdl-layout__tab-bar-button.is-active{color:#fff}.mdl-layout__tab-bar-left-button{left:0}.mdl-layout__tab-bar-right-button{right:0}.mdl-layout__tab{margin:0;border:0;padding:0 24px;float:left;position:relative;display:block;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;text-decoration:none;height:3pc;line-height:3pc;text-align:center;font-weight:500;font-size:14px;text-transform:uppercase;color:hsla(0,0%,100%,.6);overflow:hidden}@media screen and (max-width:1024px){.mdl-layout__tab{padding:0 9pt}}.mdl-layout--fixed-tabs .mdl-layout__tab{float:none;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:0}.mdl-layout.is-upgraded .mdl-layout__tab.is-active{color:#fff}.mdl-layout.is-upgraded .mdl-layout__tab.is-active:after{height:2px;width:100%;display:block;content:" ";bottom:0;left:0;position:absolute;background:#ff4081;-webkit-animation:border-expand .2s cubic-bezier(.4,0,.4,1).01s alternate forwards;animation:border-expand .2s cubic-bezier(.4,0,.4,1).01s alternate forwards;-webkit-transition:all 1s cubic-bezier(.4,0,1,1);transition:all 1s cubic-bezier(.4,0,1,1)}.mdl-layout__tab .mdl-layout__tab-ripple-container{display:block;position:absolute;height:100%;width:100%;left:0;top:0;z-index:1;overflow:hidden}.mdl-layout__tab .mdl-layout__tab-ripple-container .mdl-ripple{background-color:#fff}.mdl-layout__tab-panel{display:block}.mdl-layout.is-upgraded .mdl-layout__tab-panel{display:none}.mdl-layout.is-upgraded .mdl-layout__tab-panel.is-active{display:block}.mdl-radio{position:relative;font-size:1pc;line-height:24px;display:inline-block;box-sizing:border-box;margin:0;padding-left:0}.mdl-radio.is-upgraded{padding-left:24px}.mdl-radio__button{line-height:24px}.mdl-radio.is-upgraded .mdl-radio__button{position:absolute;width:0;height:0;margin:0;padding:0;opacity:0;-ms-appearance:none;-moz-appearance:none;-webkit-appearance:none;appearance:none;border:0}.mdl-radio__outer-circle{position:absolute;top:2px;left:0;display:inline-block;box-sizing:border-box;width:1pc;height:1pc;margin:0;cursor:pointer;border:2px solid rgba(0,0,0,.54);border-radius:50%;z-index:2}.mdl-radio.is-checked .mdl-radio__outer-circle{border:2px solid #3f51b5}.mdl-radio.is-disabled .mdl-radio__outer-circle{border:2px solid rgba(0,0,0,.26);cursor:auto}.mdl-radio__inner-circle{position:absolute;z-index:1;margin:0;top:6px;left:4px;box-sizing:border-box;width:8px;height:8px;cursor:pointer;-webkit-transition-duration:.28s;transition-duration:.28s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-property:-webkit-transform;transition-property:transform;-webkit-transform:scale3d(0,0,0);transform:scale3d(0,0,0);border-radius:50%;background:#3f51b5}.mdl-radio.is-checked .mdl-radio__inner-circle{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.mdl-radio.is-disabled .mdl-radio__inner-circle{background:rgba(0,0,0,.26);cursor:auto}.mdl-radio.is-focused .mdl-radio__inner-circle{box-shadow:0 0 0 10px rgba(0,0,0,.1)}.mdl-radio__label{cursor:pointer}.mdl-radio.is-disabled .mdl-radio__label{color:rgba(0,0,0,.26);cursor:auto}.mdl-radio__ripple-container{position:absolute;z-index:2;top:-9px;left:-13px;box-sizing:border-box;width:42px;height:42px;border-radius:50%;cursor:pointer;overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(circle,#fff,#000)}.mdl-radio__ripple-container .mdl-ripple{background:#3f51b5}.mdl-radio.is-disabled .mdl-radio__ripple-container{cursor:auto}.mdl-radio.is-disabled .mdl-radio__ripple-container .mdl-ripple{background:0}:root .mdl-slider.mdl-slider.is-upgraded,_:-ms-input-placeholder{-ms-appearance:none;height:2pc;margin:0}.mdl-slider{width:calc(100% - 40px);margin:0 20px}.mdl-slider.is-upgraded{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:2px;background:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;padding:0;color:#3f51b5;-ms-flex-item-align:center;align-self:center;z-index:1}.mdl-slider.is-upgraded::-moz-focus-outer{border:0}.mdl-slider.is-upgraded::-ms-tooltip{display:none}.mdl-slider.is-upgraded::-webkit-slider-runnable-track{background:0}.mdl-slider.is-upgraded::-moz-range-track{background:0;border:0}.mdl-slider.is-upgraded::-ms-track{background:0;color:transparent;height:2px;width:100%;border:0}.mdl-slider.is-upgraded::-ms-fill-lower{padding:0;background:linear-gradient(to right,transparent,transparent 16px,#3f51b5 16px,#3f51b5 0)}.mdl-slider.is-upgraded::-ms-fill-upper{padding:0;background:linear-gradient(to left,transparent,transparent 16px,rgba(0, 0, 0, .26)16px,rgba(0, 0, 0, .26)0)}.mdl-slider.is-upgraded::-webkit-slider-thumb{-webkit-appearance:none;width:9pt;height:9pt;box-sizing:border-box;border-radius:50%;background:#3f51b5;border:0;-webkit-transition:-webkit-transform .18s cubic-bezier(.4,0,.2,1),border .18s cubic-bezier(.4,0,.2,1),box-shadow .18s cubic-bezier(.4,0,.2,1),background .28s cubic-bezier(.4,0,.2,1);transition:transform .18s cubic-bezier(.4,0,.2,1),border .18s cubic-bezier(.4,0,.2,1),box-shadow .18s cubic-bezier(.4,0,.2,1),background .28s cubic-bezier(.4,0,.2,1)}.mdl-slider.is-upgraded::-moz-range-thumb{-moz-appearance:none;width:9pt;height:9pt;box-sizing:border-box;border-radius:50%;background-image:none;background:#3f51b5;border:0}.mdl-slider.is-upgraded:focus:not(:active)::-webkit-slider-thumb{box-shadow:0 0 0 10px rgba(63,81,181,.26)}.mdl-slider.is-upgraded:focus:not(:active)::-moz-range-thumb{box-shadow:0 0 0 10px rgba(63,81,181,.26)}.mdl-slider.is-upgraded:active::-webkit-slider-thumb{background-image:none;background:#3f51b5;-webkit-transform:scale(1.5);transform:scale(1.5)}.mdl-slider.is-upgraded:active::-moz-range-thumb{background-image:none;background:#3f51b5;transform:scale(1.5)}.mdl-slider.is-upgraded::-ms-thumb{width:2pc;height:2pc;border:0;border-radius:50%;background:#3f51b5;transform:scale(.375);transition:transform .18s cubic-bezier(.4,0,.2,1),background .28s cubic-bezier(.4,0,.2,1)}.mdl-slider.is-upgraded:focus:not(:active)::-ms-thumb{background:radial-gradient(circle closest-side,#3f51b5 0,#3f51b5 37.5%,rgba(63, 81, 181, .26)37.5%,rgba(63, 81, 181, .26)100%);transform:scale(1)}.mdl-slider.is-upgraded:active::-ms-thumb{background:#3f51b5;transform:scale(.5625)}.mdl-slider.is-upgraded.is-lowest-value::-webkit-slider-thumb{border:2px solid rgba(0,0,0,.26);background:0}.mdl-slider.is-upgraded.is-lowest-value::-moz-range-thumb{border:2px solid rgba(0,0,0,.26);background:0}.mdl-slider.is-upgraded.is-lowest-value~.mdl-slider__background-flex>.mdl-slider__background-upper{left:6px}.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-webkit-slider-thumb{box-shadow:0 0 0 10px rgba(0,0,0,.12);background:rgba(0,0,0,.12)}.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-moz-range-thumb{box-shadow:0 0 0 10px rgba(0,0,0,.12);background:rgba(0,0,0,.12)}.mdl-slider.is-upgraded.is-lowest-value:active::-webkit-slider-thumb{border:.1pc solid rgba(0,0,0,.26);-webkit-transform:scale(1.5);transform:scale(1.5)}.mdl-slider.is-upgraded.is-lowest-value:active~.mdl-slider__background-flex>.mdl-slider__background-upper{left:9px}.mdl-slider.is-upgraded.is-lowest-value:active::-moz-range-thumb{border:1.5px solid rgba(0,0,0,.26);transform:scale(1.5)}.mdl-slider.is-upgraded.is-lowest-value::-ms-thumb{background:radial-gradient(circle closest-side,transparent 0,transparent 66.67%,rgba(0, 0, 0, .26)66.67%,rgba(0, 0, 0, .26)100%)}.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-ms-thumb{background:radial-gradient(circle closest-side,rgba(0, 0, 0, .12)0,rgba(0, 0, 0, .12)25%,rgba(0, 0, 0, .26)25%,rgba(0, 0, 0, .26)37.5%,rgba(0, 0, 0, .12)37.5%,rgba(0, 0, 0, .12)100%);transform:scale(1)}.mdl-slider.is-upgraded.is-lowest-value:active::-ms-thumb{transform:scale(.5625);background:radial-gradient(circle closest-side,transparent 0,transparent 77.78%,rgba(0, 0, 0, .26)77.78%,rgba(0, 0, 0, .26)100%)}.mdl-slider.is-upgraded.is-lowest-value::-ms-fill-lower{background:0}.mdl-slider.is-upgraded.is-lowest-value::-ms-fill-upper{margin-left:6px}.mdl-slider.is-upgraded.is-lowest-value:active::-ms-fill-upper{margin-left:9px}.mdl-slider.is-upgraded:disabled::-webkit-slider-thumb,.mdl-slider.is-upgraded:disabled:active::-webkit-slider-thumb,.mdl-slider.is-upgraded:disabled:focus::-webkit-slider-thumb{-webkit-transform:scale(.667);transform:scale(.667);background:rgba(0,0,0,.26)}.mdl-slider.is-upgraded:disabled::-moz-range-thumb,.mdl-slider.is-upgraded:disabled:active::-moz-range-thumb,.mdl-slider.is-upgraded:disabled:focus::-moz-range-thumb{transform:scale(.667);background:rgba(0,0,0,.26)}.mdl-slider.is-upgraded:disabled~.mdl-slider__background-flex>.mdl-slider__background-lower{background-color:rgba(0,0,0,.26);left:-6px}.mdl-slider.is-upgraded:disabled~.mdl-slider__background-flex>.mdl-slider__background-upper{left:6px}.mdl-slider.is-upgraded.is-lowest-value:disabled::-webkit-slider-thumb,.mdl-slider.is-upgraded.is-lowest-value:disabled:active::-webkit-slider-thumb,.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-webkit-slider-thumb{border:3px solid rgba(0,0,0,.26);background:0;-webkit-transform:scale(.667);transform:scale(.667)}.mdl-slider.is-upgraded.is-lowest-value:disabled::-moz-range-thumb,.mdl-slider.is-upgraded.is-lowest-value:disabled:active::-moz-range-thumb,.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-moz-range-thumb{border:3px solid rgba(0,0,0,.26);background:0;transform:scale(.667)}.mdl-slider.is-upgraded.is-lowest-value:disabled:active~.mdl-slider__background-flex>.mdl-slider__background-upper{left:6px}.mdl-slider.is-upgraded:disabled::-ms-thumb,.mdl-slider.is-upgraded:disabled:active::-ms-thumb,.mdl-slider.is-upgraded:disabled:focus::-ms-thumb{transform:scale(.25);background:rgba(0,0,0,.26)}.mdl-slider.is-upgraded.is-lowest-value:disabled::-ms-thumb,.mdl-slider.is-upgraded.is-lowest-value:disabled:active::-ms-thumb,.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-ms-thumb{transform:scale(.25);background:radial-gradient(circle closest-side,transparent 0,transparent 50%,rgba(0, 0, 0, .26)50%,rgba(0, 0, 0, .26)100%)}.mdl-slider.is-upgraded:disabled::-ms-fill-lower{margin-right:6px;background:linear-gradient(to right,transparent,transparent 25px,rgba(0, 0, 0, .26)25px,rgba(0, 0, 0, .26)0)}.mdl-slider.is-upgraded.is-lowest-value:disabled:active::-ms-fill-upper,.mdl-slider.is-upgraded:disabled::-ms-fill-upper{margin-left:6px}.mdl-slider__ie-container{height:18px;overflow:visible;border:0;margin:none;padding:none}.mdl-slider__container{height:18px;position:relative;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.mdl-slider__background-flex,.mdl-slider__container{background:0;display:-webkit-box;display:-ms-flexbox;display:flex}.mdl-slider__background-flex{position:absolute;height:2px;width:calc(100% - 52px);top:50%;left:0;margin:0 26px;overflow:hidden;border:0;padding:0;-webkit-transform:translate(0, -1px);transform:translate(0, -1px)}.mdl-slider__background-lower{background:#3f51b5}.mdl-slider__background-lower,.mdl-slider__background-upper{-webkit-box-flex:0;-ms-flex:0;flex:0;position:relative;border:0;padding:0}.mdl-slider__background-upper{background:rgba(0,0,0,.26);-webkit-transition:left .18s cubic-bezier(.4,0,.2,1);transition:left .18s cubic-bezier(.4,0,.2,1)}.mdl-spinner{display:inline-block;position:relative;width:28px;height:28px}.mdl-spinner:not(.is-upgraded).is-active:after{content:"Loading..."}.mdl-spinner.is-upgraded.is-active{-webkit-animation:mdl-spinner__container-rotate 1.56823529412s linear infinite;animation:mdl-spinner__container-rotate 1.56823529412s linear infinite}@keyframes mdl-spinner__container-rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mdl-spinner__layer{position:absolute;width:100%;height:100%;opacity:0}.mdl-spinner__layer-1{border-color:#42a5f5}.mdl-spinner--single-color .mdl-spinner__layer-1{border-color:#3f51b5}.mdl-spinner.is-active .mdl-spinner__layer-1{-webkit-animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both;animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both}.mdl-spinner__layer-2{border-color:#f44336}.mdl-spinner--single-color .mdl-spinner__layer-2{border-color:#3f51b5}.mdl-spinner.is-active .mdl-spinner__layer-2{-webkit-animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both;animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both}.mdl-spinner__layer-3{border-color:#fdd835}.mdl-spinner--single-color .mdl-spinner__layer-3{border-color:#3f51b5}.mdl-spinner.is-active .mdl-spinner__layer-3{-webkit-animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both;animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both}.mdl-spinner__layer-4{border-color:#4caf50}.mdl-spinner--single-color .mdl-spinner__layer-4{border-color:#3f51b5}.mdl-spinner.is-active .mdl-spinner__layer-4{-webkit-animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both;animation:mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1)infinite both,mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(.4,0,.2,1)infinite both}@-webkit-keyframes mdl-spinner__fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes mdl-spinner__fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes mdl-spinner__layer-1-fade-in-out{0%,25%{opacity:.99}26%,89%{opacity:0}}@keyframes mdl-spinner__layer-1-fade-in-out{0%,25%,90%,to{opacity:.99}26%,89%{opacity:0}90%,to{opacity:.99}}@-webkit-keyframes mdl-spinner__layer-2-fade-in-out{0%,15%{opacity:0}25%,50%{opacity:.99}}@keyframes mdl-spinner__layer-2-fade-in-out{0%,15%,51%{opacity:0}25%,50%{opacity:.99}51%{opacity:0}}@-webkit-keyframes mdl-spinner__layer-3-fade-in-out{0%,40%{opacity:0}50%,75%{opacity:.99}}@keyframes mdl-spinner__layer-3-fade-in-out{0%,40%,76%{opacity:0}50%,75%{opacity:.99}76%{opacity:0}}@-webkit-keyframes mdl-spinner__layer-4-fade-in-out{0%,65%{opacity:0}75%,90%{opacity:.99}}@keyframes mdl-spinner__layer-4-fade-in-out{0%,65%,to{opacity:0}75%,90%{opacity:.99}to{opacity:0}}.mdl-spinner__gap-patch{position:absolute;box-sizing:border-box;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.mdl-spinner__gap-patch .mdl-spinner__circle{width:1000%;left:-450%}.mdl-spinner__circle-clipper{display:inline-block;position:relative;width:50%;height:100%;overflow:hidden;border-color:inherit}.mdl-spinner__circle-clipper .mdl-spinner__circle{width:200%}.mdl-spinner__circle{box-sizing:border-box;height:100%;border-width:3px;border-style:solid;border-color:inherit;border-bottom-color:transparent!important;border-radius:50%;-webkit-animation:none;animation:none;position:absolute;top:0;right:0;bottom:0;left:0}.mdl-spinner__left .mdl-spinner__circle{border-right-color:transparent!important;-webkit-transform:rotate(129deg);transform:rotate(129deg)}.mdl-spinner.is-active .mdl-spinner__left .mdl-spinner__circle{-webkit-animation:mdl-spinner__left-spin 1333ms cubic-bezier(.4,0,.2,1)infinite both;animation:mdl-spinner__left-spin 1333ms cubic-bezier(.4,0,.2,1)infinite both}.mdl-spinner__right .mdl-spinner__circle{left:-100%;border-left-color:transparent!important;-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.mdl-spinner.is-active .mdl-spinner__right .mdl-spinner__circle{-webkit-animation:mdl-spinner__right-spin 1333ms cubic-bezier(.4,0,.2,1)infinite both;animation:mdl-spinner__right-spin 1333ms cubic-bezier(.4,0,.2,1)infinite both}@-webkit-keyframes mdl-spinner__left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@keyframes mdl-spinner__left-spin{0%,to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes mdl-spinner__right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}}@keyframes mdl-spinner__right-spin{0%,to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}.mdl-switch{position:relative;z-index:1;vertical-align:middle;display:inline-block;box-sizing:border-box;width:100%;height:24px;margin:0;padding:0;overflow:visible;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdl-switch.is-upgraded{padding-left:28px}.mdl-switch__input{line-height:24px}.mdl-switch.is-upgraded .mdl-switch__input{position:absolute;width:0;height:0;margin:0;padding:0;opacity:0;-ms-appearance:none;-moz-appearance:none;-webkit-appearance:none;appearance:none;border:0}.mdl-switch__track{background:rgba(0,0,0,.26);position:absolute;left:0;top:5px;height:14px;width:36px;border-radius:14px;cursor:pointer}.mdl-switch.is-checked .mdl-switch__track{background:rgba(63,81,181,.5)}.mdl-switch.is-disabled .mdl-switch__track{background:rgba(0,0,0,.12);cursor:auto}.mdl-switch__thumb{background:#fafafa;position:absolute;left:0;top:2px;height:20px;width:20px;border-radius:50%;cursor:pointer;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-webkit-transition-duration:.28s;transition-duration:.28s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-property:left;transition-property:left}.mdl-switch.is-checked .mdl-switch__thumb{background:#3f51b5;left:1pc;box-shadow:0 3px 4px 0 rgba(0,0,0,.14),0 3px 3px -2px rgba(0,0,0,.2),0 1px 8px 0 rgba(0,0,0,.12)}.mdl-switch.is-disabled .mdl-switch__thumb{background:#bdbdbd;cursor:auto}.mdl-switch__focus-helper{position:absolute;top:50%;left:50%;-webkit-transform:translate(-4px, -4px);transform:translate(-4px, -4px);display:inline-block;box-sizing:border-box;width:8px;height:8px;border-radius:50%;background-color:transparent}.mdl-switch.is-focused .mdl-switch__focus-helper{box-shadow:0 0 0 20px rgba(0,0,0,.1);background-color:rgba(0,0,0,.1)}.mdl-switch.is-focused.is-checked .mdl-switch__focus-helper{box-shadow:0 0 0 20px rgba(63,81,181,.26);background-color:rgba(63,81,181,.26)}.mdl-switch__label{position:relative;cursor:pointer;font-size:1pc;line-height:24px;margin:0;left:24px}.mdl-switch.is-disabled .mdl-switch__label{color:#bdbdbd;cursor:auto}.mdl-switch__ripple-container{position:absolute;z-index:2;top:-9pt;left:-14px;box-sizing:border-box;width:3pc;height:3pc;border-radius:50%;cursor:pointer;overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(circle,#fff,#000);-webkit-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:step-end;transition-timing-function:step-end;-webkit-transition-property:left;transition-property:left}.mdl-switch__ripple-container .mdl-ripple{background:#3f51b5}.mdl-switch.is-disabled .mdl-switch__ripple-container{cursor:auto}.mdl-switch.is-disabled .mdl-switch__ripple-container .mdl-ripple{background:0}.mdl-switch.is-checked .mdl-switch__ripple-container{cursor:auto;left:2px}.mdl-tabs{display:block;width:100%}.mdl-tabs__tab-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:justify;align-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;height:3pc;padding:0;margin:0;border-bottom:1px solid #e0e0e0}.mdl-tabs__tab{margin:0;border:0;padding:0 24px;float:left;position:relative;display:block;color:red;text-decoration:none;height:3pc;line-height:3pc;text-align:center;font-weight:500;font-size:14px;text-transform:uppercase;color:rgba(0,0,0,.54);overflow:hidden}.mdl-tabs.is-upgraded .mdl-tabs__tab.is-active{color:rgba(0,0,0,.87)}.mdl-tabs.is-upgraded .mdl-tabs__tab.is-active:after{height:2px;width:100%;display:block;content:" ";bottom:0;left:0;position:absolute;background:#3f51b5;-webkit-animation:border-expand .2s cubic-bezier(.4,0,.4,1).01s alternate forwards;animation:border-expand .2s cubic-bezier(.4,0,.4,1).01s alternate forwards;-webkit-transition:all 1s cubic-bezier(.4,0,1,1);transition:all 1s cubic-bezier(.4,0,1,1)}.mdl-tabs__tab .mdl-tabs__ripple-container{display:block;position:absolute;height:100%;width:100%;left:0;top:0;z-index:1;overflow:hidden}.mdl-tabs__tab .mdl-tabs__ripple-container .mdl-ripple{background:#3f51b5}.mdl-tabs__panel{display:block}.mdl-tabs.is-upgraded .mdl-tabs__panel{display:none}.mdl-tabs.is-upgraded .mdl-tabs__panel.is-active{display:block}@-webkit-keyframes border-expand{0%{opacity:0;width:0}to{opacity:1;width:100%}}@keyframes border-expand{0%{opacity:0;width:0}to{opacity:1;width:100%}}.mdl-textfield{position:relative;font-size:1pc;display:inline-block;box-sizing:border-box;width:300px;max-width:100%;margin:0;padding:20px 0}.mdl-textfield .mdl-button{position:absolute;bottom:20px}.mdl-textfield--align-right{text-align:right}.mdl-textfield--full-width{width:100%}.mdl-textfield--expandable{min-width:2pc;width:auto;min-height:2pc}.mdl-textfield__input{border:0;border-bottom:1px solid rgba(0,0,0,.12);display:inline-block;font-size:1pc;margin:0;padding:4px 0;width:100%;background:1pc;text-align:left;color:inherit}.mdl-textfield.is-focused .mdl-textfield__input{outline:0}.mdl-textfield.is-invalid .mdl-textfield__input{border-color:#de3226;box-shadow:none}.mdl-textfield.is-disabled .mdl-textfield__input{background-color:transparent;border-bottom:1px dotted rgba(0,0,0,.12)}.mdl-textfield__label{bottom:0;color:rgba(0,0,0,.26);font-size:1pc;left:0;right:0;pointer-events:none;position:absolute;top:24px;width:100%;overflow:hidden;white-space:nowrap;text-align:left}.mdl-textfield.is-dirty .mdl-textfield__label{visibility:hidden}.mdl-textfield--floating-label .mdl-textfield__label{-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdl-textfield--floating-label.is-dirty .mdl-textfield__label,.mdl-textfield--floating-label.is-focused .mdl-textfield__label{color:#3f51b5;font-size:9pt;top:4px;visibility:visible}.mdl-textfield--floating-label.is-dirty .mdl-textfield__expandable-holder .mdl-textfield__label,.mdl-textfield--floating-label.is-focused .mdl-textfield__expandable-holder .mdl-textfield__label{top:-1pc}.mdl-textfield--floating-label.is-invalid .mdl-textfield__label{color:#de3226;font-size:9pt}.mdl-textfield__label:after{background-color:#3f51b5;bottom:20px;content:'';height:2px;left:45%;position:absolute;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);visibility:hidden;width:10px}.mdl-textfield.is-focused .mdl-textfield__label:after{left:0;visibility:visible;width:100%}.mdl-textfield.is-invalid .mdl-textfield__label:after{background-color:#de3226}.mdl-textfield__error{color:#de3226;position:absolute;font-size:9pt;margin-top:3px;visibility:hidden}.mdl-textfield.is-invalid .mdl-textfield__error{visibility:visible}.mdl-textfield__expandable-holder{position:relative;margin-left:2pc;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);display:inline-block;max-width:.1px}.mdl-textfield.is-dirty .mdl-textfield__expandable-holder,.mdl-textfield.is-focused .mdl-textfield__expandable-holder{max-width:600px}.mdl-textfield__expandable-holder .mdl-textfield__label:after{bottom:0}.mdl-tooltip{-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:top center;transform-origin:top center;will-change:transform;z-index:999;background:rgba(97,97,97,.9);border-radius:2px;color:#fff;display:inline-block;font-size:10px;font-weight:500;line-height:14px;max-width:170px;position:fixed;top:-500px;left:-500px;padding:8px;text-align:center}.mdl-tooltip.is-active{-webkit-animation:pulse .2s cubic-bezier(0,0,.2,1)forwards;animation:pulse .2s cubic-bezier(0,0,.2,1)forwards}.mdl-tooltip--large{line-height:14px;font-size:14px;padding:1pc}@-webkit-keyframes pulse{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}50%{-webkit-transform:scale(.99);transform:scale(.99)}to{-webkit-transform:scale(1);transform:scale(1);opacity:1;visibility:visible}}@keyframes pulse{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}50%{-webkit-transform:scale(.99);transform:scale(.99)}to{-webkit-transform:scale(1);transform:scale(1);opacity:1;visibility:visible}}.mdl-shadow--2dp{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.mdl-shadow--3dp{box-shadow:0 3px 4px 0 rgba(0,0,0,.14),0 3px 3px -2px rgba(0,0,0,.2),0 1px 8px 0 rgba(0,0,0,.12)}.mdl-shadow--4dp{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.mdl-shadow--6dp{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2)}.mdl-shadow--8dp{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2)}.mdl-shadow--16dp{box-shadow:0 1pc 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.mdl-grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin:0 auto;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.mdl-grid.mdl-grid--no-spacing{padding:0}.mdl-cell{box-sizing:border-box}.mdl-cell--top{-ms-flex-item-align:start;align-self:flex-start}.mdl-cell--middle{-ms-flex-item-align:center;align-self:center}.mdl-cell--bottom{-ms-flex-item-align:end;align-self:flex-end}.mdl-cell--stretch{-ms-flex-item-align:stretch;align-self:stretch}.mdl-grid.mdl-grid--no-spacing>.mdl-cell{margin:0}@media(max-width:479px){.mdl-grid{padding:8px}.mdl-cell{margin:8px;width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell{width:100%}.mdl-cell--hide-phone{display:none!important}.mdl-cell--1-col{width:calc(25% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--1-col{width:25%}.mdl-cell--1-col-phone.mdl-cell--1-col-phone{width:calc(25% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--1-col-phone.mdl-cell--1-col-phone{width:25%}.mdl-cell--2-col{width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--2-col{width:50%}.mdl-cell--2-col-phone.mdl-cell--2-col-phone{width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--2-col-phone.mdl-cell--2-col-phone{width:50%}.mdl-cell--3-col{width:calc(75% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--3-col{width:75%}.mdl-cell--3-col-phone.mdl-cell--3-col-phone{width:calc(75% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--3-col-phone.mdl-cell--3-col-phone{width:75%}.mdl-cell--4-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--4-col{width:100%}.mdl-cell--4-col-phone.mdl-cell--4-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--4-col-phone.mdl-cell--4-col-phone{width:100%}.mdl-cell--5-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--5-col{width:100%}.mdl-cell--5-col-phone.mdl-cell--5-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--5-col-phone.mdl-cell--5-col-phone{width:100%}.mdl-cell--6-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--6-col{width:100%}.mdl-cell--6-col-phone.mdl-cell--6-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--6-col-phone.mdl-cell--6-col-phone{width:100%}.mdl-cell--7-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--7-col{width:100%}.mdl-cell--7-col-phone.mdl-cell--7-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--7-col-phone.mdl-cell--7-col-phone{width:100%}.mdl-cell--8-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--8-col{width:100%}.mdl-cell--8-col-phone.mdl-cell--8-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--8-col-phone.mdl-cell--8-col-phone{width:100%}.mdl-cell--9-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--9-col{width:100%}.mdl-cell--9-col-phone.mdl-cell--9-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--9-col-phone.mdl-cell--9-col-phone{width:100%}.mdl-cell--10-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--10-col{width:100%}.mdl-cell--10-col-phone.mdl-cell--10-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--10-col-phone.mdl-cell--10-col-phone{width:100%}.mdl-cell--11-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--11-col{width:100%}.mdl-cell--11-col-phone.mdl-cell--11-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--11-col-phone.mdl-cell--11-col-phone{width:100%}.mdl-cell--12-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--12-col{width:100%}.mdl-cell--12-col-phone.mdl-cell--12-col-phone{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--12-col-phone.mdl-cell--12-col-phone{width:100%}}@media(min-width:480px) and (max-width:839px){.mdl-grid{padding:8px}.mdl-cell{margin:8px;width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell{width:50%}.mdl-cell--hide-tablet{display:none!important}.mdl-cell--1-col{width:calc(12.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--1-col{width:12.5%}.mdl-cell--1-col-tablet.mdl-cell--1-col-tablet{width:calc(12.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--1-col-tablet.mdl-cell--1-col-tablet{width:12.5%}.mdl-cell--2-col{width:calc(25% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--2-col{width:25%}.mdl-cell--2-col-tablet.mdl-cell--2-col-tablet{width:calc(25% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--2-col-tablet.mdl-cell--2-col-tablet{width:25%}.mdl-cell--3-col{width:calc(37.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--3-col{width:37.5%}.mdl-cell--3-col-tablet.mdl-cell--3-col-tablet{width:calc(37.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--3-col-tablet.mdl-cell--3-col-tablet{width:37.5%}.mdl-cell--4-col{width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--4-col{width:50%}.mdl-cell--4-col-tablet.mdl-cell--4-col-tablet{width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--4-col-tablet.mdl-cell--4-col-tablet{width:50%}.mdl-cell--5-col{width:calc(62.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--5-col{width:62.5%}.mdl-cell--5-col-tablet.mdl-cell--5-col-tablet{width:calc(62.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--5-col-tablet.mdl-cell--5-col-tablet{width:62.5%}.mdl-cell--6-col{width:calc(75% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--6-col{width:75%}.mdl-cell--6-col-tablet.mdl-cell--6-col-tablet{width:calc(75% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--6-col-tablet.mdl-cell--6-col-tablet{width:75%}.mdl-cell--7-col{width:calc(87.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--7-col{width:87.5%}.mdl-cell--7-col-tablet.mdl-cell--7-col-tablet{width:calc(87.5% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--7-col-tablet.mdl-cell--7-col-tablet{width:87.5%}.mdl-cell--8-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--8-col{width:100%}.mdl-cell--8-col-tablet.mdl-cell--8-col-tablet{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--8-col-tablet.mdl-cell--8-col-tablet{width:100%}.mdl-cell--9-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--9-col{width:100%}.mdl-cell--9-col-tablet.mdl-cell--9-col-tablet{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--9-col-tablet.mdl-cell--9-col-tablet{width:100%}.mdl-cell--10-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--10-col{width:100%}.mdl-cell--10-col-tablet.mdl-cell--10-col-tablet{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--10-col-tablet.mdl-cell--10-col-tablet{width:100%}.mdl-cell--11-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--11-col{width:100%}.mdl-cell--11-col-tablet.mdl-cell--11-col-tablet{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--11-col-tablet.mdl-cell--11-col-tablet{width:100%}.mdl-cell--12-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--12-col{width:100%}.mdl-cell--12-col-tablet.mdl-cell--12-col-tablet{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--12-col-tablet.mdl-cell--12-col-tablet{width:100%}}@media(min-width:840px){.mdl-grid{padding:8px}.mdl-cell{margin:8px;width:calc(33.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell{width:33.3333333333%}.mdl-cell--hide-desktop{display:none!important}.mdl-cell--1-col{width:calc(8.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--1-col{width:8.3333333333%}.mdl-cell--1-col-desktop.mdl-cell--1-col-desktop{width:calc(8.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--1-col-desktop.mdl-cell--1-col-desktop{width:8.3333333333%}.mdl-cell--2-col{width:calc(16.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--2-col{width:16.6666666667%}.mdl-cell--2-col-desktop.mdl-cell--2-col-desktop{width:calc(16.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--2-col-desktop.mdl-cell--2-col-desktop{width:16.6666666667%}.mdl-cell--3-col{width:calc(25% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--3-col{width:25%}.mdl-cell--3-col-desktop.mdl-cell--3-col-desktop{width:calc(25% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--3-col-desktop.mdl-cell--3-col-desktop{width:25%}.mdl-cell--4-col{width:calc(33.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--4-col{width:33.3333333333%}.mdl-cell--4-col-desktop.mdl-cell--4-col-desktop{width:calc(33.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--4-col-desktop.mdl-cell--4-col-desktop{width:33.3333333333%}.mdl-cell--5-col{width:calc(41.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--5-col{width:41.6666666667%}.mdl-cell--5-col-desktop.mdl-cell--5-col-desktop{width:calc(41.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--5-col-desktop.mdl-cell--5-col-desktop{width:41.6666666667%}.mdl-cell--6-col{width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--6-col{width:50%}.mdl-cell--6-col-desktop.mdl-cell--6-col-desktop{width:calc(50% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--6-col-desktop.mdl-cell--6-col-desktop{width:50%}.mdl-cell--7-col{width:calc(58.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--7-col{width:58.3333333333%}.mdl-cell--7-col-desktop.mdl-cell--7-col-desktop{width:calc(58.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--7-col-desktop.mdl-cell--7-col-desktop{width:58.3333333333%}.mdl-cell--8-col{width:calc(66.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--8-col{width:66.6666666667%}.mdl-cell--8-col-desktop.mdl-cell--8-col-desktop{width:calc(66.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--8-col-desktop.mdl-cell--8-col-desktop{width:66.6666666667%}.mdl-cell--9-col{width:calc(75% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--9-col{width:75%}.mdl-cell--9-col-desktop.mdl-cell--9-col-desktop{width:calc(75% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--9-col-desktop.mdl-cell--9-col-desktop{width:75%}.mdl-cell--10-col{width:calc(83.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--10-col{width:83.3333333333%}.mdl-cell--10-col-desktop.mdl-cell--10-col-desktop{width:calc(83.3333333333% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--10-col-desktop.mdl-cell--10-col-desktop{width:83.3333333333%}.mdl-cell--11-col{width:calc(91.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--11-col{width:91.6666666667%}.mdl-cell--11-col-desktop.mdl-cell--11-col-desktop{width:calc(91.6666666667% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--11-col-desktop.mdl-cell--11-col-desktop{width:91.6666666667%}.mdl-cell--12-col{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--12-col{width:100%}.mdl-cell--12-col-desktop.mdl-cell--12-col-desktop{width:calc(100% - 1pc)}.mdl-grid--no-spacing>.mdl-cell--12-col-desktop.mdl-cell--12-col-desktop{width:100%}}body{margin:0}.styleguide-demo h1{margin:3pc 24px 0}.styleguide-demo h1:after{content:'';display:block;width:100%;border-bottom:1px solid rgba(0,0,0,.5);margin-top:24px}.styleguide-demo{opacity:0;-webkit-transition:opacity .6s ease;transition:opacity .6s ease}.styleguide-masthead{height:16pc;background:#212121;padding:115px 1pc 0}.styleguide-container{position:relative;max-width:60pc;width:100%}.styleguide-title{color:#fff;bottom:auto;position:relative;font-size:56px;font-weight:300;line-height:1;letter-spacing:-.02em}.styleguide-title:after{border-bottom:0}.styleguide-title span{font-weight:300}.mdl-styleguide .mdl-layout__drawer .mdl-navigation__link{padding:10px 24px}.demosLoaded .styleguide-demo{opacity:1}iframe{display:block;width:100%;border:0}iframe.heightSet{overflow:hidden}.demo-wrapper{margin:24px}.demo-wrapper iframe{border:1px solid rgba(0,0,0,.5)} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify.css b/libs/hexo-theme-material/1.5.2/source/css/prettify.css new file mode 100644 index 000000000..99f87c9f6 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify.css @@ -0,0 +1,27 @@ +@charset "UTF-8"; + +/* for color-themes-for-google-code-prettify */ +pre{ + white-space: pre-wrap; + word-break: break-all; + word-wrap: break-word; +} + +#post-content .prettyprint{ + padding: 1.2em; + border-radius: 0; +} + +#post-content ol,#post-content ul{ + padding-left: 51px; + font-size: 1rem; + margin: 0; +} + +#post-content .prettyprint li.L0, #post-content .prettyprint li.L1, +#post-content .prettyprint li.L2, #post-content .prettyprint li.L3, +#post-content .prettyprint li.L4, #post-content .prettyprint li.L5, +#post-content .prettyprint li.L6, #post-content .prettyprint li.L7, +#post-content .prettyprint li.L8, #post-content .prettyprint li.L9 { + padding-left: 0.8em; +} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify.min.css new file mode 100644 index 000000000..52c03e797 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify.min.css @@ -0,0 +1 @@ +pre{white-space:pre-wrap;word-break:break-all;word-wrap:break-word}#post-content .prettyprint{padding:1.2em;border-radius:0}#post-content ol,#post-content ul{padding-left:51px;font-size:1rem;margin:0}#post-content .prettyprint li.L0,#post-content .prettyprint li.L1,#post-content .prettyprint li.L2,#post-content .prettyprint li.L3,#post-content .prettyprint li.L4,#post-content .prettyprint li.L5,#post-content .prettyprint li.L6,#post-content .prettyprint li.L7,#post-content .prettyprint li.L8,#post-content .prettyprint li.L9{padding-left:.8em} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-cave-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-cave-dark.min.css new file mode 100644 index 000000000..ddce5643e --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-cave-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#19171c!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#efecf4}ol.linenums{margin-top:0;margin-bottom:0;color:#655f6d}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#19171c;list-style-type:decimal}@media screen{.str{color:#2a9292}.kwd{color:#955ae7}.com{color:#655f6d}.typ{color:#576ddb}.lit{color:#aa573c}.pun{color:#efecf4}.opn{color:#efecf4}.clo{color:#efecf4}.tag{color:#be4678}.atn{color:#aa573c}.atv{color:#398bc6}.dec{color:#aa573c}.var{color:#be4678}.fun{color:#576ddb}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-cave-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-cave-light.min.css new file mode 100644 index 000000000..5053609d7 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-cave-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#efecf4!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#19171c}ol.linenums{margin-top:0;margin-bottom:0;color:#7e7887}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#efecf4;list-style-type:decimal}@media screen{.str{color:#2a9292}.kwd{color:#955ae7}.com{color:#7e7887}.typ{color:#576ddb}.lit{color:#aa573c}.pun{color:#19171c}.opn{color:#19171c}.clo{color:#19171c}.tag{color:#be4678}.atn{color:#aa573c}.atv{color:#398bc6}.dec{color:#aa573c}.var{color:#be4678}.fun{color:#576ddb}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-dune-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-dune-dark.min.css new file mode 100644 index 000000000..2471df9d6 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-dune-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#20201d!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#fefbec}ol.linenums{margin-top:0;margin-bottom:0;color:#7d7a68}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#20201d;list-style-type:decimal}@media screen{.str{color:#60ac39}.kwd{color:#b854d4}.com{color:#7d7a68}.typ{color:#6684e1}.lit{color:#b65611}.pun{color:#fefbec}.opn{color:#fefbec}.clo{color:#fefbec}.tag{color:#d73737}.atn{color:#b65611}.atv{color:#1fad83}.dec{color:#b65611}.var{color:#d73737}.fun{color:#6684e1}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-dune-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-dune-light.min.css new file mode 100644 index 000000000..664a6bfb3 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-dune-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#fefbec!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#20201d}ol.linenums{margin-top:0;margin-bottom:0;color:#999580}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#fefbec;list-style-type:decimal}@media screen{.str{color:#60ac39}.kwd{color:#b854d4}.com{color:#999580}.typ{color:#6684e1}.lit{color:#b65611}.pun{color:#20201d}.opn{color:#20201d}.clo{color:#20201d}.tag{color:#d73737}.atn{color:#b65611}.atv{color:#1fad83}.dec{color:#b65611}.var{color:#d73737}.fun{color:#6684e1}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-estuary-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-estuary-dark.min.css new file mode 100644 index 000000000..645d32871 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-estuary-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#22221b!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#f4f3ec}ol.linenums{margin-top:0;margin-bottom:0;color:#6c6b5a}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#22221b;list-style-type:decimal}@media screen{.str{color:#7d9726}.kwd{color:#5f9182}.com{color:#6c6b5a}.typ{color:#36a166}.lit{color:#ae7313}.pun{color:#f4f3ec}.opn{color:#f4f3ec}.clo{color:#f4f3ec}.tag{color:#ba6236}.atn{color:#ae7313}.atv{color:#5b9d48}.dec{color:#ae7313}.var{color:#ba6236}.fun{color:#36a166}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-estuary-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-estuary-light.min.css new file mode 100644 index 000000000..4e6ff9acc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-estuary-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#f4f3ec!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#22221b}ol.linenums{margin-top:0;margin-bottom:0;color:#878573}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#f4f3ec;list-style-type:decimal}@media screen{.str{color:#7d9726}.kwd{color:#5f9182}.com{color:#878573}.typ{color:#36a166}.lit{color:#ae7313}.pun{color:#22221b}.opn{color:#22221b}.clo{color:#22221b}.tag{color:#ba6236}.atn{color:#ae7313}.atv{color:#5b9d48}.dec{color:#ae7313}.var{color:#ba6236}.fun{color:#36a166}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-forest-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-forest-dark.min.css new file mode 100644 index 000000000..6582a448c --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-forest-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#1b1918!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#f1efee}ol.linenums{margin-top:0;margin-bottom:0;color:#766e6b}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#1b1918;list-style-type:decimal}@media screen{.str{color:#7b9726}.kwd{color:#6666ea}.com{color:#766e6b}.typ{color:#407ee7}.lit{color:#df5320}.pun{color:#f1efee}.opn{color:#f1efee}.clo{color:#f1efee}.tag{color:#f22c40}.atn{color:#df5320}.atv{color:#3d97b8}.dec{color:#df5320}.var{color:#f22c40}.fun{color:#407ee7}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-forest-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-forest-light.min.css new file mode 100644 index 000000000..70af3c773 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-forest-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#f1efee!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#1b1918}ol.linenums{margin-top:0;margin-bottom:0;color:#9c9491}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#f1efee;list-style-type:decimal}@media screen{.str{color:#7b9726}.kwd{color:#6666ea}.com{color:#9c9491}.typ{color:#407ee7}.lit{color:#df5320}.pun{color:#1b1918}.opn{color:#1b1918}.clo{color:#1b1918}.tag{color:#f22c40}.atn{color:#df5320}.atv{color:#3d97b8}.dec{color:#df5320}.var{color:#f22c40}.fun{color:#407ee7}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-heath-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-heath-dark.min.css new file mode 100644 index 000000000..76a2c4f8d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-heath-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#1b181b!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#f7f3f7}ol.linenums{margin-top:0;margin-bottom:0;color:#776977}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#1b181b;list-style-type:decimal}@media screen{.str{color:#918b3b}.kwd{color:#7b59c0}.com{color:#776977}.typ{color:#516aec}.lit{color:#a65926}.pun{color:#f7f3f7}.opn{color:#f7f3f7}.clo{color:#f7f3f7}.tag{color:#ca402b}.atn{color:#a65926}.atv{color:#159393}.dec{color:#a65926}.var{color:#ca402b}.fun{color:#516aec}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-heath-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-heath-light.min.css new file mode 100644 index 000000000..17d55a002 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-heath-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#f7f3f7!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#1b181b}ol.linenums{margin-top:0;margin-bottom:0;color:#5a7b8c}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#f7f3f7;list-style-type:decimal}@media screen{.str{color:#918b3b}.kwd{color:#7b59c0}.com{color:#5a7b8c}.typ{color:#516aec}.lit{color:#a65926}.pun{color:#1b181b}.opn{color:#1b181b}.clo{color:#1b181b}.tag{color:#ca402b}.atn{color:#a65926}.atv{color:#159393}.dec{color:#a65926}.var{color:#ca402b}.fun{color:#516aec}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-lakeside-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-lakeside-dark.min.css new file mode 100644 index 000000000..498ba8fe2 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-lakeside-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#161b1d!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#ebf8ff}ol.linenums{margin-top:0;margin-bottom:0;color:#5a7b8c}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#161b1d;list-style-type:decimal}@media screen{.str{color:#568c3b}.kwd{color:#6b6bb8}.com{color:#5a7b8c}.typ{color:#257fad}.lit{color:#935c25}.pun{color:#ebf8ff}.opn{color:#ebf8ff}.clo{color:#ebf8ff}.tag{color:#d22d72}.atn{color:#935c25}.atv{color:#2d8f6f}.dec{color:#935c25}.var{color:#d22d72}.fun{color:#257fad}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-lakeside-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-lakeside-light.min.css new file mode 100644 index 000000000..cfdaac884 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-lakeside-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#ebf8ff!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#161b1d}ol.linenums{margin-top:0;margin-bottom:0;color:#7195a8}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#ebf8ff;list-style-type:decimal}@media screen{.str{color:#568c3b}.kwd{color:#6b6bb8}.com{color:#7195a8}.typ{color:#257fad}.lit{color:#935c25}.pun{color:#161b1d}.opn{color:#161b1d}.clo{color:#161b1d}.tag{color:#d22d72}.atn{color:#935c25}.atv{color:#2d8f6f}.dec{color:#935c25}.var{color:#d22d72}.fun{color:#257fad}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-plateau-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-plateau-dark.min.css new file mode 100644 index 000000000..7cedf4379 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-plateau-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#1b1818!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#f4ecec}ol.linenums{margin-top:0;margin-bottom:0;color:#655d5d}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#1b1818;list-style-type:decimal}@media screen{.str{color:#4b8b8b}.kwd{color:#8464c4}.com{color:#655d5d}.typ{color:#7272ca}.lit{color:#b45a3c}.pun{color:#f4ecec}.opn{color:#f4ecec}.clo{color:#f4ecec}.tag{color:#ca4949}.atn{color:#b45a3c}.atv{color:#5485b6}.dec{color:#b45a3c}.var{color:#ca4949}.fun{color:#7272ca}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-plateau-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-plateau-light.min.css new file mode 100644 index 000000000..794160a92 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-plateau-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#f4ecec!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#1b1818}ol.linenums{margin-top:0;margin-bottom:0;color:#7e7777}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#f4ecec;list-style-type:decimal}@media screen{.str{color:#4b8b8b}.kwd{color:#8464c4}.com{color:#7e7777}.typ{color:#7272ca}.lit{color:#b45a3c}.pun{color:#1b1818}.opn{color:#1b1818}.clo{color:#1b1818}.tag{color:#ca4949}.atn{color:#b45a3c}.atv{color:#5485b6}.dec{color:#b45a3c}.var{color:#ca4949}.fun{color:#7272ca}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-savanna-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-savanna-dark.min.css new file mode 100644 index 000000000..26c5cfacc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-savanna-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#171c19!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#ecf4ee}ol.linenums{margin-top:0;margin-bottom:0;color:#5f6d64}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#171c19;list-style-type:decimal}@media screen{.str{color:#489963}.kwd{color:#55859b}.com{color:#5f6d64}.typ{color:#478c90}.lit{color:#9f713c}.pun{color:#ecf4ee}.opn{color:#ecf4ee}.clo{color:#ecf4ee}.tag{color:#b16139}.atn{color:#9f713c}.atv{color:#1c9aa0}.dec{color:#9f713c}.var{color:#b16139}.fun{color:#478c90}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-savanna-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-savanna-light.min.css new file mode 100644 index 000000000..dd48f1dbb --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-savanna-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#ecf4ee!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#171c19}ol.linenums{margin-top:0;margin-bottom:0;color:#78877d}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#ecf4ee;list-style-type:decimal}@media screen{.str{color:#489963}.kwd{color:#55859b}.com{color:#78877d}.typ{color:#478c90}.lit{color:#9f713c}.pun{color:#171c19}.opn{color:#171c19}.clo{color:#171c19}.tag{color:#b16139}.atn{color:#9f713c}.atv{color:#1c9aa0}.dec{color:#9f713c}.var{color:#b16139}.fun{color:#478c90}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-seaside-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-seaside-dark.min.css new file mode 100644 index 000000000..4bc899dbe --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-seaside-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#131513!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#f4fbf4}ol.linenums{margin-top:0;margin-bottom:0;color:#687d68}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#131513;list-style-type:decimal}@media screen{.str{color:#29a329}.kwd{color:#ad2bee}.com{color:#687d68}.typ{color:#3d62f5}.lit{color:#87711d}.pun{color:#f4fbf4}.opn{color:#f4fbf4}.clo{color:#f4fbf4}.tag{color:#e6193c}.atn{color:#87711d}.atv{color:#1999b3}.dec{color:#87711d}.var{color:#e6193c}.fun{color:#3d62f5}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-seaside-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-seaside-light.min.css new file mode 100644 index 000000000..727a2f2bd --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-seaside-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#f4fbf4!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#131513}ol.linenums{margin-top:0;margin-bottom:0;color:#809980}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#f4fbf4;list-style-type:decimal}@media screen{.str{color:#29a329}.kwd{color:#ad2bee}.com{color:#809980}.typ{color:#3d62f5}.lit{color:#87711d}.pun{color:#131513}.opn{color:#131513}.clo{color:#131513}.tag{color:#e6193c}.atn{color:#87711d}.atv{color:#1999b3}.dec{color:#87711d}.var{color:#e6193c}.fun{color:#3d62f5}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-sulphurpool-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-sulphurpool-dark.min.css new file mode 100644 index 000000000..f82bf19db --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-sulphurpool-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#202746!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#f5f7ff}ol.linenums{margin-top:0;margin-bottom:0;color:#6b7394}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#202746;list-style-type:decimal}@media screen{.str{color:#ac9739}.kwd{color:#6679cc}.com{color:#6b7394}.typ{color:#3d8fd1}.lit{color:#c76b29}.pun{color:#f5f7ff}.opn{color:#f5f7ff}.clo{color:#f5f7ff}.tag{color:#c94922}.atn{color:#c76b29}.atv{color:#22a2c9}.dec{color:#c76b29}.var{color:#c94922}.fun{color:#3d8fd1}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-sulphurpool-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-sulphurpool-light.min.css new file mode 100644 index 000000000..3042e6c37 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/atelier-sulphurpool-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#f5f7ff!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#202746}ol.linenums{margin-top:0;margin-bottom:0;color:#202746}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#f5f7ff;list-style-type:decimal}@media screen{.str{color:#ac9739}.kwd{color:#6679cc}.com{color:#202746}.typ{color:#3d8fd1}.lit{color:#c76b29}.pun{color:#202746}.opn{color:#202746}.clo{color:#202746}.tag{color:#c94922}.atn{color:#c76b29}.atv{color:#22a2c9}.dec{color:#c76b29}.var{color:#c94922}.fun{color:#3d8fd1}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/github-v2.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/github-v2.min.css new file mode 100644 index 000000000..53a3ba5ec --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/github-v2.min.css @@ -0,0 +1 @@ +.prettyprint{background:#fff!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#333}ol.linenums{margin-top:0;margin-bottom:0;color:#ccc}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#fff;list-style-type:decimal}@media screen{.str{color:#183691}.kwd{color:#a71d5d}.com{color:#969896}.typ{color:#0086b3}.lit{color:#0086b3}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:#795da3}.atv{color:#183691}.dec{color:#333}.var{color:teal}.fun{color:#900}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/github.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/github.min.css new file mode 100644 index 000000000..35905fe7d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/github.min.css @@ -0,0 +1 @@ +.prettyprint{background:#fff!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#333}ol.linenums{margin-top:0;margin-bottom:0;color:#ccc}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#fff;list-style-type:decimal}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/hemisu-dark.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/hemisu-dark.min.css new file mode 100644 index 000000000..bbbe5ecc4 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/hemisu-dark.min.css @@ -0,0 +1 @@ +.prettyprint{background:#000!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#eee}ol.linenums{margin-top:0;margin-bottom:0;color:#777}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#000;list-style-type:decimal}@media screen{.str{color:#b1d631}.kwd{color:#b1d631}.com{color:#777}.typ{color:#bfa}.lit{color:#9fd3e6}.pun{color:#eee}.opn{color:#eee}.clo{color:#eee}.tag{color:#eee}.atn{color:#b1d631}.atv{color:#bfa}.dec{color:#eee}.var{color:#eee}.fun{color:#9fd3e6}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/hemisu-light.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/hemisu-light.min.css new file mode 100644 index 000000000..7573d0659 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/hemisu-light.min.css @@ -0,0 +1 @@ +.prettyprint{background:#fff!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#111}ol.linenums{margin-top:0;margin-bottom:0;color:#999}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#fff;list-style-type:decimal}@media screen{.str{color:#739200}.kwd{color:#739200}.com{color:#999}.typ{color:#f05}.lit{color:#538192}.pun{color:#111}.opn{color:#111}.clo{color:#111}.tag{color:#111}.atn{color:#739200}.atv{color:#f05}.dec{color:#111}.var{color:#111}.fun{color:#538192}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-blue.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-blue.min.css new file mode 100644 index 000000000..c44652a64 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-blue.min.css @@ -0,0 +1 @@ +.prettyprint{background:#002451!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#fff}ol.linenums{margin-top:0;margin-bottom:0;color:#7285b7}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#002451;list-style-type:decimal}@media screen{.str{color:#d1f1a9}.kwd{color:#ebbbff}.com{color:#7285b7}.typ{color:#bbdaff}.lit{color:#ffc58f}.pun{color:#fff}.opn{color:#fff}.clo{color:#fff}.tag{color:#ff9da4}.atn{color:#ffc58f}.atv{color:#9ff}.dec{color:#ffc58f}.var{color:#ff9da4}.fun{color:#bbdaff}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-bright.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-bright.min.css new file mode 100644 index 000000000..2b3652743 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-bright.min.css @@ -0,0 +1 @@ +.prettyprint{background:#000!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#eaeaea}ol.linenums{margin-top:0;margin-bottom:0;color:#969896}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#000;list-style-type:decimal}@media screen{.str{color:#b9ca4a}.kwd{color:#c397d8}.com{color:#969896}.typ{color:#7aa6da}.lit{color:#e78c45}.pun{color:#eaeaea}.opn{color:#eaeaea}.clo{color:#eaeaea}.tag{color:#d54e53}.atn{color:#e78c45}.atv{color:#70c0b1}.dec{color:#e78c45}.var{color:#d54e53}.fun{color:#7aa6da}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-eighties.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-eighties.min.css new file mode 100644 index 000000000..e645b29c1 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night-eighties.min.css @@ -0,0 +1 @@ +.prettyprint{background:#2d2d2d!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#ccc}ol.linenums{margin-top:0;margin-bottom:0;color:#999}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#2d2d2d;list-style-type:decimal}@media screen{.str{color:#9c9}.kwd{color:#c9c}.com{color:#999}.typ{color:#69c}.lit{color:#f99157}.pun{color:#ccc}.opn{color:#ccc}.clo{color:#ccc}.tag{color:#f2777a}.atn{color:#f99157}.atv{color:#6cc}.dec{color:#f99157}.var{color:#f2777a}.fun{color:#69c}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night.min.css new file mode 100644 index 000000000..5fec46638 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow-night.min.css @@ -0,0 +1 @@ +.prettyprint{background:#1d1f21!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#c5c8c6}ol.linenums{margin-top:0;margin-bottom:0;color:#969896}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#1d1f21;list-style-type:decimal}@media screen{.str{color:#b5bd68}.kwd{color:#b294bb}.com{color:#969896}.typ{color:#81a2be}.lit{color:#de935f}.pun{color:#c5c8c6}.opn{color:#c5c8c6}.clo{color:#c5c8c6}.tag{color:#c66}.atn{color:#de935f}.atv{color:#8abeb7}.dec{color:#de935f}.var{color:#c66}.fun{color:#81a2be}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow.min.css new file mode 100644 index 000000000..2e7d27dbd --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/tomorrow.min.css @@ -0,0 +1 @@ +.prettyprint{background:#fff!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#4d4d4c}ol.linenums{margin-top:0;margin-bottom:0;color:#8e908c}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#fff;list-style-type:decimal}@media screen{.str{color:#718c00}.kwd{color:#8959a8}.com{color:#8e908c}.typ{color:#4271ae}.lit{color:#f5871f}.pun{color:#4d4d4c}.opn{color:#4d4d4c}.clo{color:#4d4d4c}.tag{color:#c82829}.atn{color:#f5871f}.atv{color:#3e999f}.dec{color:#f5871f}.var{color:#c82829}.fun{color:#4271ae}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/tranquil-heart.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/tranquil-heart.min.css new file mode 100644 index 000000000..c05d1e934 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/tranquil-heart.min.css @@ -0,0 +1 @@ +.prettyprint{background:#2f3640!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#e6e9ed}ol.linenums{margin-top:0;margin-bottom:0;color:#656d78}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#2f3640;list-style-type:decimal}@media screen{.str{color:#ffce54}.kwd{color:#4fc1e9}.com{color:#656d78}.typ{color:#4fc1e9}.lit{color:#ac92ec}.pun{color:#e6e9ed}.opn{color:#e6e9ed}.clo{color:#e6e9ed}.tag{color:#ed5565}.atn{color:#a0d468}.atv{color:#ffce54}.dec{color:#ac92ec}.var{color:#e6e9ed}.fun{color:#e6e9ed}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/prettify/vibrant-ink.min.css b/libs/hexo-theme-material/1.5.2/source/css/prettify/vibrant-ink.min.css new file mode 100644 index 000000000..6252af7a9 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/prettify/vibrant-ink.min.css @@ -0,0 +1 @@ +.prettyprint{background:#000!important;font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#fff}ol.linenums{margin-top:0;margin-bottom:0;color:#666}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{padding-left:1em;background-color:#000;list-style-type:decimal}@media screen{.str{color:#6f0}.kwd{color:#f60}.com{color:#93c}.typ{color:#458}.lit{color:#458}.pun{color:#fff}.opn{color:#fff}.clo{color:#fff}.tag{color:#fff}.atn{color:#9c9}.atv{color:#6f0}.dec{color:#fff}.var{color:#fff}.fun{color:#fc0}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/style.css b/libs/hexo-theme-material/1.5.2/source/css/style.css new file mode 100644 index 000000000..1e5aa1dbe --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/style.css @@ -0,0 +1,2716 @@ +/* Global_CSS */ +/* Local_Search */ +/* Markdown_CSS*/ +/* Scheme_Paradox */ +/* Scheme_Isolation */ +/* Swiftype_Input */ +/* Sidebar_CSS */ +/* Burger_CSS */ +/* Post_Toc */ +/* Material_icon */ +/* Footer_Top */ +/* Nprogress_CSS */ +/* Footer_SNS_Icon */ +/*************/ +/* Global_CSS */ +/*************/ + +html { + display: block; +} +body { + display: block; + margin: 0; + padding: 0; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; + background-attachment: fixed; + content: ''; +} +.fa, +.material-icons { + -moz-osx-font-smoothing: grayscale; +} +a { + font-weight: 300; +} +.mdl-button { + font-family: Roboto, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif; +} +.mdl-menu__item { + font-weight: 300; +} +/****************/ +/* Local_Search */ +/****************/ + +#local-search-result { + position: absolute; + background-color: #fff; + border-radius: 2px; + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); + z-index: 6; + max-width: 100%; +} +#local-search-result ul { + list-style: none; + padding: 0; +} +#local-search-result ul li { + padding: 10px 20px; + border-top: 1px solid #dadada; +} +#local-search-result ul li:first-child { + border-top: none; +} +#local-search-result ul li p { + margin: 0; + max-height: 50px; + overflow: hidden; +} +#local-search-result .search-keyword { + font-style: normal; + font-weight: bold; +} +#local-search-result ul li a { + text-decoration: none; +} +#local-search-result ul li .search-result { + color: #333; +} +/****************/ +/* Markdown_CSS */ +/****************/ + +.highlight tr { + display: flex; +} +#post-content .line { + height: 19px; +} +#post-content figure { + margin-right: 0; + margin-left: 0; +} +#post-content, +#post-content p { + font-size: 15px; + line-height: 1.7; + overflow: hidden; +} +#post-content>*:first-child { + margin-top: 0 !important; +} +#post-content>*:last-child { + margin-bottom: 0 !important; +} +#post-content a.absent { + color: #c00; +} +#post-content a.anchor { + display: block; + padding-left: 30px; + margin-left: -30px; + cursor: pointer; + position: absolute; + top: 0; + left: 0; + bottom: 0; +} +#post-content h1, +#post-content h2, +#post-content h3, +#post-content h4, +#post-content h5, +#post-content h6 { + margin: 1em 0 15px; + padding: 0; + font-weight: bold; + line-height: 1.7; + cursor: text; + position: relative; +} +#post-content h1 .octicon-link, +#post-content h2 .octicon-link, +#post-content h3 .octicon-link, +#post-content h4 .octicon-link, +#post-content h5 .octicon-link, +#post-content h6 .octicon-link { + display: none; + color: #000; +} +#post-content h1:hover a.anchor, +#post-content h2:hover a.anchor, +#post-content h3:hover a.anchor, +#post-content h4:hover a.anchor, +#post-content h5:hover a.anchor, +#post-content h6:hover a.anchor { + text-decoration: none; + line-height: 1; + padding-left: 0; + margin-left: -22px; + top: 15%; +} +#post-content h1:hover a.anchor .octicon-link, +#post-content h2:hover a.anchor .octicon-link, +#post-content h3:hover a.anchor .octicon-link, +#post-content h4:hover a.anchor .octicon-link, +#post-content h5:hover a.anchor .octicon-link, +#post-content h6:hover a.anchor .octicon-link { + display: inline-block; +} +#post-content h1 tt, +#post-content h1 code, +#post-content h2 tt, +#post-content h2 code, +#post-content h3 tt, +#post-content h3 code, +#post-content h4 tt, +#post-content h4 code, +#post-content h5 tt, +#post-content h5 code, +#post-content h6 tt, +#post-content h6 code { + font-size: inherit; +} +#post-content h1 { + font-size: 2.5em; + border-bottom: 1px solid #ddd; +} +#post-content h2 { + font-size: 2em; + border-bottom: 1px solid #eee; +} +#post-content h3 { + font-size: 1.5em; +} +#post-content h4 { + font-size: 1.2em; +} +#post-content h5 { + font-size: 1em; +} +#post-content h6 { + color: #777; + font-size: 1em; +} +#post-content p, +#post-content blockquote, +#post-content ul, +#post-content ol, +#post-content dl, +#post-content table { + margin: 15px 0; +} +#post-content hr { + height: 0.25em; + padding: 0; + margin: 24px 0; + background-color: #e7e7e7; + border: 0; +} +#post-content li p.first { + display: inline-block; +} +#post-content ul, +#post-content ol { + padding-left: 30px; + font-size: 15px; + line-height: 1.7; + overflow: hidden; +} +#post-content ul.no-list, +#post-content ol.no-list { + list-style-type: none; + padding: 0; +} +#post-content ul ul, +#post-content ul ol, +#post-content ol ol, +#post-content ol ul { + margin-top: 0; + margin-bottom: 0; +} +#post-content dl { + padding: 0; +} +#post-content dl dt { + font-size: 14px; + font-weight: bold; + font-style: italic; + padding: 0; + margin-top: 15px; +} +#post-content dl dd { + margin-bottom: 15px; + padding: 0 15px; +} +#post-content blockquote { + border-left: 4px solid #DDD; + padding: 0 15px; + color: #777; + font-style: normal; +} +#post-content blockquote>:first-child { + margin-top: 0px; +} +#post-content blockquote>:last-child { + margin-bottom: 0px; +} +#post-content table { + width: 100%; + overflow: auto; + display: block; + border-spacing: 0; + border-collapse: collapse; +} +#post-content table th { + font-weight: bold; +} +#post-content table th, +#post-content table td { + padding: 6px 13px; + border: 1px solid #ddd; +} +#post-content table tr { + /* display: table;*/ + + background-color: #fff; +} +#post-content table tr:nth-child(2n) { + background-color: #f8f8f8; +} +#post-content img { + max-width: 100%; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +#post-content span.frame { + display: block; + overflow: hidden; +} +#post-content span.frame>span { + border: 1px solid #ddd; + display: block; + float: left; + overflow: hidden; + margin: 13px 0 0; + padding: 7px; + width: auto; +} +#post-content span.frame span img { + display: block; + float: left; +} +#post-content span.frame span span { + clear: both; + color: #333; + display: block; + padding: 5px 0 0; +} +#post-content span.align-center { + display: block; + overflow: hidden; + clear: both; +} +#post-content span.align-center>span { + display: block; + overflow: hidden; + margin: 13px auto 0; + text-align: center; +} +#post-content span.align-center span img { + margin: 0 auto; + text-align: center; +} +#post-content span.align-right { + display: block; + overflow: hidden; + clear: both; +} +#post-content span.align-right>span { + display: block; + overflow: hidden; + margin: 13px 0 0; + text-align: right; +} +#post-content span.align-right span img { + margin: 0; + text-align: right; +} +#post-content span.float-left { + display: block; + margin-right: 13px; + overflow: hidden; + float: left; +} +#post-content span.float-left span { + margin: 13px 0 0; +} +#post-content span.float-right { + display: block; + margin-left: 13px; + overflow: hidden; + float: right; +} +#post-content span.float-right>span { + display: block; + overflow: hidden; + margin: 13px auto 0; + text-align: right; +} +#post-content code, +#post-content tt { + margin: 0 2px; + padding: 0px 5px; + background-color: rgba(0, 0, 0, 0.04); + border-radius: 3px; +} +#post-content pre>code { + margin: 0; + padding: 0; + white-space: pre; + border: none; + background: transparent; +} +#post-content pre { + background-color: #f7f7f7; + font-size: 13px; + line-height: 19px; + overflow: auto; + padding: 16px; + border-radius: 3px; +} +#post-content .gutter, +#post-content .code { + /* background: #f7f7f7;*/ + + font-size: 13px; + line-height: 19px; + overflow: auto; + padding: 0; + border: none; + display: block; + border-radius: 0; +} +#post-content .code { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +#post-content .gutter { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +#post-content .gutter pre, +#post-content .code pre { + margin: 0; + display: block; +} +#post-content pre code, +#post-content pre tt { + margin: 0; + padding: 0; + background-color: transparent; + border: none; +} + +.post-toc-wrap::-webkit-scrollbar{ + width: 7px; + height: 7px; + border-radius: 4px; + background-color: #F1F1F1; + opacity: 0.4; +} + +.post-toc-wrap::-webkit-scrollbar-thumb { + width: 7px; + height: 7px; + border-radius: 4px; + background-color: #DDDDDD; + opacity: 0.8; +} +.post-toc-wrap::-webkit-scrollbar-button { + display: none; +} + +/****************/ +/* Scheme_Paradox */ +/****************/ + +#scheme-Paradox .index-top-block { + margin-bottom: 47.59px +} +@media screen and (max-width: 480px) { + #scheme-Paradox .index-top-block { + transition: 1s; + width: 100%; + margin: 0; + border-radius: 0 !important; + } + #scheme-Paradox .material-layout .daily-pic { + height: 100% + } + #scheme-Paradox .material-layout .something-else { + margin-bottom: 30px; + } +} +@media screen and (min-width: 481px) and (max-width: 840px) { + #scheme-Paradox .index-top-block { + min-height: 200px!important; + transition: 1s; + margin-bottom: 47.59px + } + #scheme-Paradox .material-layout .daily-pic { + width: calc(66.6666666667% - 16px) + } + #scheme-Paradox .material-layout .something-else { + width: calc(33.3333333333% - 16px) + } +} +#scheme-Paradox .index-top-block-slogan { + font-size: 24px; + line-height: 26px; + font-weight: 400; + margin: 0; + text-shadow: 1px 1px 8px #444 +} +#scheme-Paradox .index-top-block-slogan a { + text-decoration: none +} +@media screen and (max-width: 480px) { + #scheme-Paradox .index-top-block-date { + display: none + } +} +#scheme-Paradox .material-layout .minilogo, +#scheme-Paradox .social-btn { + background-position: center; + background-repeat: no-repeat +} +#scheme-Paradox .post_entry-module { + margin-bottom: 47.59px; + margin-top: 0; +} +#scheme-Paradox .material-layout .material-post, +#scheme-Paradox .material-layout .material-index { + display: flex; + margin: 0 auto; + padding: 0; + width: 100%; + max-width: 900px; + flex-shrink: 0 +} +#scheme-Paradox .material-layout .material-layout__content { + position: relative; + padding-top: 165px; + margin: 0 auto; + width: 100%; +} +@media screen and (max-width: 480px) { + #scheme-Paradox .material-layout .material-layout__content { + padding-top: 0 + } +} +#scheme-Paradox .material-layout .mdl-card { + display: flex; + min-height: 400px; + flex-direction: column; + align-items: stretch; + border-radius: 2px; +} +@media screen and (max-width: 480px) { + #scheme-Paradox .material-post .mdl-card { + border-radius: 0; + } +} +#scheme-Paradox .material-layout .mdl-card__title { + padding: 1pc; + flex-grow: 1 +} +#scheme-Paradox .material-layout .mdl-card__media { + display: flex; + box-sizing: border-box; + padding: 24.72px; + background-size: cover; + cursor: pointer; + flex-grow: 1; + flex-direction: row; + align-items: flex-end +} +#scheme-Paradox .material-layout .mdl-card__media a, +#scheme-Paradox .material-layout .mdl-card__title a { + color: inherit +} +#scheme-Paradox .material-layout .mdl-card__supporting-text { + display: inline; + padding: 20px 0 1pc; + width: 100%; + min-height: 4pc; + align-items: center +} +#scheme-Paradox .material-layout .mdl-card__supporting-text strong { + font-weight: 700 +} +#scheme-Paradox .material-layout .mdl-card__media~.mdl-card__supporting-text { + min-height: 4pc +} +@media screen and (max-width: 480px) { + #scheme-Paradox .material-layout .mdl-card__supporting-text { + padding-top: 12px; + padding-bottom: 0 + } + #scheme-Paradox .daily-pic .mdl-card__media~.mdl-card__supporting-text { + display: none + } +} +#scheme-Paradox .material-layout .mdl-card__supporting-text:not(:last-child) { + box-sizing: border-box; + min-height: 76px +} +#scheme-Paradox .material-layout .post_entry-module .mdl-card__media~.mdl-card__supporting-text { + padding: 1pc; + padding-top: 29.03px; +} +@media screen and (max-width: 480px) { + #scheme-Paradox .material-layout .mdl-card__supporting-text:not(:last-child) { + min-height: 70px + } + #scheme-Paradox .material-layout .post_entry-module .mdl-card__media~.mdl-card__supporting-text { + padding: 2pc 1pc + } +} +#scheme-Paradox .material-layout .mdl-card__actions:first-child { + margin-left: 0 +} +#scheme-Paradox .material-layout .meta { + display: flex; + box-sizing: border-box; + padding: 1pc; + height: auto; + flex-direction: row; + align-items: center; + justify-content: flex-start +} +#scheme-Paradox .material-layout .meta>.meta__favorites { + margin: 0 8px; + font-weight: 500; + font-size: 13px; + flex-direction: row +} +#scheme-Paradox .material-layout .meta>.meta__favorites .material-icons { + margin-left: 9pt; + font-size: 2em; + cursor: pointer +} +#scheme-Paradox .material-layout .mdl-card .meta.meta--fill { + justify-content: space-between +} +#scheme-Paradox .material-layout .meta>:first-child { + margin-right: 1pc +} +#scheme-Paradox .material-layout .meta>* { + display: flex; + flex-direction: column +} +#scheme-Paradox .material-layout .something-else>button { + position: absolute; + top: 0; + right: 28px; + transform: translate(0, -28px) +} +#scheme-Paradox .material-layout .something-else .something-else-logo { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border-top-right-radius: 2px; + border-top-left-radius: 2px; + font-size: 13px; + flex-grow: 1; + box-sizing: border-box; + padding: 24px; + background-size: cover +} +@media screen and (max-width: 480px) { + #scheme-Paradox .material-layout .something-else .something-else-logo { + padding: 0 + } +} +#scheme-Paradox .material-layout .something-else .something-else-logo img { + margin-bottom: 10px; + width: 10pc; + height: 10pc +} +#scheme-Paradox .material-layout .something-else .mdl-card__supporting-text { + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; + background-color: #f5f5f5 +} +#scheme-Paradox .material-layout .material-post>.material-nav, +#scheme-Paradox .material-layout .material-index>.material-nav { + display: flex; + margin: 10px 15px; + color: #fff; + font-weight: 500; + flex-direction: row; + justify-content: space-between; + align-items: center +} +#scheme-Paradox .material-layout .material-post>.material-nav>.material-nav__button, +#scheme-Paradox .material-layout .material-index>.material-nav>.material-nav__button { + color: #fff; + text-decoration: none +} +#scheme-Paradox .material-layout .material-post>.material-nav .mdl-button, +#scheme-Paradox .material-layout .material-index>.material-nav .mdl-button { + background-color: #fff; + color: rgba(0, 0, 0, .54) +} +#scheme-Paradox .material-layout .material-post>.material-nav>.material-nav__button:first-child .mdl-button, +#scheme-Paradox .material-layout .material-index>.material-nav>.material-nav__button:first-child .mdl-butto { + margin-right: 1pc +} +#scheme-Paradox .material-layout .material-post>.material-nav>.material-nav__button:last-child .mdl-button, +#scheme-Paradox .material-layout .material-index>.material-nav>.material-nav__button:last-child .mdl-button { + margin-left: 1pc +} +#scheme-Paradox .page-number { + display: none +} +#scheme-Paradox .material-nav .page-number.current { + display: block; + color: #666; + text-align: center; + margin: 0 auto +} +#scheme-Paradox .material-layout .mdl-card>a { + color: inherit; + text-decoration: none; + font-weight: inherit +} +#scheme-Paradox .material-layout .mdl-card h3 { + margin: 0 +} +#scheme-Paradox .material-layout .mdl-card h1 a, +#scheme-Paradox .material-layout .mdl-card h2 a, +#scheme-Paradox .material-layout .mdl-card h3 a, +#scheme-Paradox .material-layout .mdl-card h4 a, +#scheme-Paradox .material-layout .mdl-card h5 a, +#scheme-Paradox .material-layout .mdl-card h6 a { + text-decoration: none +} +#scheme-Paradox .material-layout .mdl-card h3.quote:after, +#scheme-Paradox .material-layout .mdl-card h3.quote:before { + display: block; + margin-top: .5em; + font-size: 3em +} +#scheme-Paradox .material-layout .mdl-card h3.quote:before { + content: '“' +} +#scheme-Paradox .material-layout .mdl-card h3.quote:after { + content: '”' +} +#scheme-Paradox .material-post_container .custom-header { + background-color: transparent +} +#scheme-Paradox .material-post_container .material-post>.mdl-card .mdl-card__media, +#scheme-Paradox .material-post_container .material-index>.mdl-card .mdl-card__media { + height: 280px +} +#scheme-Paradox .material-post_container .meta+.mdl-card__supporting-text { + display: block; + border: 0; + flex-direction: column +} +#scheme-Paradox .material-post_container .meta+.mdl-card__supporting-text p {} #scheme-Paradox .material-post_container .comments { + background-color: #eee; + display: flex; + box-sizing: border-box; + padding: 2pc; + flex-direction: column; + justify-content: flex-start; + align-items: stretch; + position: relative +} +#scheme-Paradox .material-post_container .comments>form { + display: flex; + margin-bottom: 1pc; + flex-diretion: row +} +#scheme-Paradox .material-post_container .comments>form .mdl-textfield { + margin-right: 1pc; + color: #616161; + flex-grow: 1 +} +#scheme-Paradox .material-post_container .comments>form .mdl-textfield input, +#scheme-Paradox .material-post_container .comments>form .mdl-textfield textarea { + resize: none +} +#scheme-Paradox .material-post_container .comments>form button { + margin-top: 20px; + background-color: rgba(0, 0, 0, .24); + color: #fff +} +#scheme-Paradox .material-post_container .comments .comment { + flex-direction: column; + align-items: stretch +} +#scheme-Paradox .material-post_container .comments .comment>.comment__header { + display: flex; + margin-bottom: 1pc; + flex-direction: row; + align-items: center +} +#scheme-Paradox .material-post_container .comments .comment>.comment__header>.comment__author { + display: flex; + flex-grow: 1; + flex-direction: column +} +#scheme-Paradox .material-post_container .comments .comment>.comment__text { + line-height: 1.5em +} +#scheme-Paradox .material-post_container .comments .comment>.comment__actions { + display: flex; + font-size: .8em; + flex-direction: row; + justify-content: flex-start; + align-items: center; + padding-left: 64px +} +#scheme-Paradox .material-post_container .comments .comment>.comment__actions button { + margin-right: 1pc; + color: rgba(0, 0, 0, .24) +} +#scheme-Paradox .material-post_container .comments .comment>.comment__answers { + padding-top: 2pc; + padding-left: 3pc +} +#scheme-Paradox #post-toc-trigger-btn { + position: fixed; + top: 5pc; + left: 1pc; + z-index: 8; + color: #fff; + border-radius: 50% +} +@media screen and (max-width: 480px) { + #scheme-Paradox #post-toc-trigger-btn { + display: none + } +} +#scheme-Paradox .material-layout .section-spacer { + flex-grow: 1 +} +#scheme-Paradox .material-layout .something-else { + z-index: 7; + overflow: visible +} +#scheme-Paradox .material-layout .amazing .mdl-card__title { + background-color: #263238 +} +#scheme-Paradox .material-layout .minilogo { + width: 44px; + height: 44px; + border-radius: 22px; + background-color: #f5f5f5; + background-image: url(../img/avatar.png); + background-size: 50% +} +#scheme-Paradox .mdl-grid { + display: flex!important +} +#scheme-Paradox .social-btn { + margin: 0 1pc; + width: 24px; + height: 24px; + border-radius: 2px; + background-color: transparent; + background-size: contain; + opacity: .46; + cursor: pointer +} +#scheme-Paradox .social-btn__share { + background: 0 0; + color: rgba(0, 0, 0, .54) +} +#scheme-Paradox .mdl-mini-footer { + box-sizing: border-box; + margin-top: 5pc; + padding: 40px; + height: 120px; + background-color: #fff; + align-items: center +} +@media screen and (max-width: 840px) { + #scheme-Paradox .material-layout .mdl-mini-footer { + padding: 30px 0 20px; + height: 200px + } +} +#scheme-Paradox .post_entry-content img { + width: 98% +} +#scheme-Paradox #post-content { + max-width: 90%; + margin: 1pc auto; + padding-top: 0; +} +#scheme-Paradox #post-content img { + max-width: 100% +} +#scheme-Paradox .page-navigator { + display: inline-block; + margin: 20px 0; + padding-left: 0; + border-radius: 4px +} +#scheme-Paradox .page-navigator li.current { + background: #323c3f; + color: #fff +} +#scheme-Paradox .page-navigator>li { + display: inline +} +#scheme-Paradox .page-navigator>li:first-child>a, +#scheme-Paradox .page-navigator>li:first-child>span { + margin-left: 0 +} +#scheme-Paradox .page-navigator>.current>a, +#scheme-Paradox .page-navigator>.current>a:focus, +#scheme-Paradox .page-navigator>.current>a:hover, +#scheme-Paradox .page-navigator>.current>span, +#scheme-Paradox .page-navigator>.current>span:focus, +#scheme-Paradox .page-navigator>.current>span:hover { + z-index: 2; + color: #fff; + cursor: default +} +#scheme-Paradox .page-navigator>li>a, +#scheme-Paradox .page-navigator>li>span { + height: 32px; + width: 32px; + line-height: 32px; + color: #ff4081; + position: relative; + float: left; + margin-right: 5px; + margin-left: 5px; + text-decoration: none; + text-align: center +} +#scheme-Paradox .footer-develop-a { + color: #9e9e9e; + text-decoration: none; + font-weight: 400 +} +#scheme-Paradox .footer-develop-a:hover { + color: #0097a7; + text-decoration: underline!important +} +#scheme-Paradox #post_entry-info { + border-top: 1px solid rgba(0, 0, 0, .1) +} +#scheme-Paradox #post_entry-left-info { + float: left; + width: 50% +} +#scheme-Paradox #post_entry-right-info { + float: right; + font-size: 13px; + font-weight: 400; + padding: 1pc; + margin-top: 20px; + margin-right: 20px; + /* white-space: nowrap*/ +} +@media screen and (max-width: 480px) { + #scheme-Paradox #post_entry-left-info { + padding: 1pc 4% + } + #scheme-Paradox #post_entry-right-info { + margin-top: 0; + margin-right: 0; + width: 50%; + padding: 1pc 2%; + text-align: right; + top: 21px + } +} +#scheme-Paradox #post_entry-right-info a { + text-decoration: none; + font-weight: 400; +} +#scheme-Paradox #copyright { + margin-left: auto; + margin-right: auto; + text-align: center +} +@media screen and (min-width: 481px) and (max-width: 840px) { + #scheme-Paradox #copyright { + padding: 20px 0; + } +} +#scheme-Paradox .article-headline-p a { + font-weight: 400; +} +#scheme-Paradox .article-headline-p a, +#scheme-Paradox .article-headline-p-nopic a, +#scheme-Paradox .article-headline-p-top a, +#scheme-Paradox .material-nav a, +#scheme-Paradox .index_share-link, +#scheme-Paradox .post_share-link, +#scheme-Paradox .post_tag-link, +#scheme-Paradox .index_category-link, +#scheme-Paradox .sidebar .sidebar-brand, +#scheme-Paradox .sidebar-footer-text-a { + text-decoration: none +} +#scheme-Paradox .post_tag-link, +#scheme-Paradox .index_category-link { + padding: 15px; +} +#scheme-Paradox .mdl-mini-footer--right-section { + margin-right: 60px +} +@media screen and (max-width: 840px) { + #scheme-Paradox .mdl-mini-footer--right-section { + margin-right: 0 + } +} +#scheme-Paradox .mdl-mini-footer--right-section a { + color: #6b6b6b; +} +#scheme-Paradox #author-avatar, +#scheme-Paradox #comment__avatar { + margin-right: 1pc; + border-radius: 50%; + overflow: hidden +} +#scheme-Paradox .mdl-mini-footer--social-btn { + outline-style: none +} +#scheme-Paradox .material-nav { + font-weight: 300!important +} +#scheme-Paradox .material-nav a { + font-weight: 400 +} +#scheme-Paradox .login-form-group { + width: 33%; + float: left; + color: #8A8A8A +} +#scheme-Paradox .login-input-info { + font-size: 14px!important +} +#scheme-Paradox .comment__text { + font-weight: 400!important; + font-size: 13px!important; + padding-left: 64px +} +#scheme-Paradox .comment__text p { + margin-bottom: 6px +} +#scheme-Paradox .comments__closed { + color: #8A8A8A!important +} +#scheme-Paradox .comment-list { + padding-left: 0 +} +#scheme-Paradox .comment__author { + font-size: 13px; + font-weight: 400!important +} +#scheme-Paradox #comment__avatar { + float: left +} +#scheme-Paradox #comment-input-div { + width: 94%; + line-height: 15px +} +#scheme-Paradox #comment { + color: #616161; + font-size: 14px; + resize: inherit +} +#scheme-Paradox #comment-button { + margin-left: 10px; + margin-top: -20px; + background-color: rgba(0, 0, 0, .24); + color: #FFF +} +#scheme-Paradox #article-functions-like-button { + overflow: visible +} +#scheme-Paradox #article-functions-like-button:hover { + color: red +} +@media screen and (max-width: 480px) { + #scheme-Paradox .page-module .mdl-card, + #scheme-Paradox .material-post_container .mdl-card { + margin: 0; + width: 100% + } +} +#scheme-Paradox .post-likes-num { + font-size: 13px; + position: relative; + top: 8px; + left: -20px +} +@media screen and (max-width: 850px) { + #scheme-Paradox #comment-input-div { + width: 93% + } +} +@media screen and (max-width: 742px) { + #scheme-Paradox #comment-input-div { + width: 92% + } +} +@media screen and (max-width: 660px) { + #comment-input-div { + width: 90% + } +} +@media screen and (max-width: 550px) { + #scheme-Paradox #comment-input-div { + width: 80% + } +} +@media screen and (max-width: 480px) { + #scheme-Paradox .footer-develop-div { + float: left; + width: 100%; + margin-right: 10px + } +} +@media screen and (max-width: 840px) { + .mdl-mini-footer--right-section { + margin-left: auto; + margin-right: auto; + text-align: center; + width: 100%; + } +} +#scheme-Paradox .article-headline-p { + font-size: 34px; + line-height: 40px; + font-weight: 400; + margin: 0; + text-shadow: 1px 1px 8px #444 +} +@media screen and (max-width: 840px) { + #scheme-Paradox .article-headline-p { + font-size: 22px + } +} +#scheme-Paradox .article-headline-p-top { + padding: 10px 0; + font-size: 26px; + line-height: 26px; + font-weight: 400; + margin: 0 +} +#scheme-Paradox .article-headline-p-nopic { + font-size: 34px; + line-height: 40px; + font-weight: 400; + margin: 0 +} +#scheme-Paradox .more { + margin-left: 1pc +} +#scheme-Paradox #top { + width: 0; + height: 0; + position: absolute; + top: 0 +} +#scheme-Paradox #search-label { + right: 28px; + bottom: 39px; + z-index: 7; +} +#scheme-Paradox #search-form { + bottom: 46px +} +#scheme-Paradox #search-form-label { + left: 1px +} +#scheme-Paradox #search-form-label:after { + background-color: #ff4081; + width: 100% +} +#scheme-Paradox .mdl-badge[data-badge]:after { + width: 20px; + height: 20px; + font-weight: 400 +} +#scheme-Paradox .mdl-button .mdl-badge[data-badge]:after { + top: -12px; + right: -10px +} +@media screen and (max-width: 480px) { + #scheme-Paradox #search-form { + margin-left: 0 + } +} +@media screen and (max-width: 840px) { + #scheme-Paradox .mdl-mini-footer--left-section { + width: 100%; + text-align: center + } +} +/********************/ +/* Scheme_Isolation */ +/********************/ + +#scheme-Isolation .mdl-grid { + padding: 0; +} +#scheme-Isolation .mdl-cell { + margin: 0; +} +#scheme-Isolation .material-layout { + width: 100%; + margin-right: auto; + margin-left: auto; + max-width: 339px; + padding-right: 8px; + padding-left: 8px; +} +@media screen and (min-width: 386px) { + #scheme-Isolation .material-layout { + max-width: 548px; + padding-right: 24px; + padding-left: 24px; + } +} +@media screen and (min-width: 579px) { + #scheme-Isolation .material-layout { + max-width: 722px; + padding-right: 32px; + padding-left: 32px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .material-layout { + max-width: 894px; + padding-right: 48px; + padding-left: 48px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .material-layout { + max-width: 1328px; + padding-right: 80px; + padding-left: 80px; + } +} +#scheme-Isolation #main { + float: left; + width: 100%; + padding-top: 12px; + padding-bottom: 24px; +} +@media screen and (min-width: 579px) { + #scheme-Isolation #main { + padding-top: 16px; + padding-bottom: 32px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation #main { + padding-top: 24px; + padding-bottom: 48px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation #main { + padding-top: 80px; + padding-bottom: 80px; + padding-left: 368px; + } +} +#scheme-Isolation .post_entry-module { + margin-bottom: 24px; + width: 100%; + border-radius: 2px; + box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1); + -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1); +} +@media screen and (min-width: 386px) { + #scheme-Isolation .post_entry-module { + margin-bottom: 28px; + } +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post_entry-module { + margin-bottom: 36px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post_entry-module { + margin-bottom: 52px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post_entry-module { + margin-bottom: 82px; + } +} +#scheme-Isolation .post_thumbnail-custom img { + width: 100%; + vertical-align: middle; + height: auto +} +#scheme-Isolation .post_entry-header_info.with-thumbnail, +#scheme-Isolation .post-header_info.with-thumbnail { + position: absolute; + padding: 40px; + width: 100%; + cursor: default; + color: #ebebeb; +} +#scheme-Isolation .post_entry-header_info.without-thumbnail, +#scheme-Isolation .post-header_info.without-thumbnail { + padding: 40px; + padding-bottom: 0; + width: 100%; + cursor: default; +} +#scheme-Isolation .post_entry-header_info .avatar-img, +#scheme-Isolation .post-header_info .avatar-img { + width: 34px; + height: 34px; + margin-right: 8px; + border: 1px solid #d6d6d6; + border-radius: 50%; +} +#scheme-Isolation .post_entry-header_info .name-span, +#scheme-Isolation .post-header_info .name-span { + letter-spacing: 2px; + line-height: 16px; + font-size: 13px; + font-weight: 300; + text-transform: uppercase; +} +#scheme-Isolation .post_entry-content { + width: 100%; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post_entry-content { + padding: 32px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post_entry-content { + padding: 48px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post_entry-content { + padding: 40px; + } +} +#scheme-Isolation .post_entry-title, +#scheme-Isolation p.post-title { + font-size: 24px; + line-height: 40px; + margin-top: -7px; + margin-bottom: 9px; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post_entry-title, + #scheme-Isolation p.post-title { + font-size: 28px; + line-height: 48px; + margin-top: -8px; + margin-bottom: 24px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post_entry-title, + #scheme-Isolation p.post-title { + margin-bottom: 40px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post_entry-title, + #scheme-Isolation p.post-title { + font-size: 32px; + line-height: 56px; + margin-top: -10px; + margin-bottom: 30px; + } +} +#scheme-Isolation .post_entry-excerpt { + margin-top: 0; + margin-bottom: 16px; + font-size: 16px; + line-height: 24px; + font-weight: 300; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post_entry-excerpt { + margin-bottom: 24px; + } +} +#scheme-Isolation .post_entry-title a { + text-decoration: none; + color: #333; +} +#scheme-Isolation .post_entry-tags-list { + padding: 0; + margin: 0; +} +#scheme-Isolation .post_entry-tags-list-item { + list-style: none; + float: left; + font-size: 11px; + border: 1px solid #c2c2c2; + letter-spacing: 1px; + border-radius: 3px; + padding-right: 6px; + padding-left: 8px; + margin-top: 8px; + margin-right: 8px; + text-align: center; + -webkit-appearance: none; +} +#scheme-Isolation .post_entry-tags-list-item a { + text-decoration: none; + color: #adadad; +} +@media screen and (min-width: 386px) { + #scheme-Isolation .post_entry-tags-list { + margin-top: 0; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post_entry-tags-list { + margin-top: 16px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post_entry-tags-list { + margin-top: 8px; + } +} +#scheme-Isolation .post_entry-footer { + width: 100%; +} +#scheme-Isolation .post_entry-footer-info { + width: 100%; +} +@media screen and (min-width: 386px) { + #scheme-Isolation .post_entry-footer { + padding: 24px; + padding-top: 0; + } +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post_entry-footer { + padding: 32px; + padding-top: 0; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post_entry-footer { + padding: 48px; + padding-top: 0; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post_entry-footer { + padding: 40px; + padding-top: 0; + } +} +#scheme-Isolation .post_entry-footer-border { + width: 100%; + border-top: 1px solid #ebebeb; +} +@media screen and (min-width: 386px) { + #scheme-Isolation .post_entry-footer-border { + height: 24px; + } +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post_entry-footer-border { + height: 32px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post_entry-footer-border { + height: 48px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post_entry-footer-border { + height: 40px; + } +} +#scheme-Isolation .post_entry-footer-info { + color: #c2c2c2; + font-size: 14px; +} +#scheme-Isolation .post_entry-footer-date { + float: left; +} +#scheme-Isolation .post_entry-footer-comment { + float: right; +} +#scheme-Isolation .header { + position: fixed; + z-index: 1; + padding-top: 24px; + padding-bottom: 12px; + text-align: center; +} +@media screen and (max-width: 1183px) { + #scheme-Isolation .header { + position: relative; + } +} +#scheme-Isolation .header a { + text-decoration: none; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .header { + padding-top: 32px; + padding-bottom: 16px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .header { + padding: 48px 48px 24px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .header { + width: 328px; + margin-right: -328px; + text-align: left; + padding: 114px 40px 40px 0; + } +} +#scheme-Isolation .header-copyright { + color: #a5b1b6; + display: none; +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .header-copyright { + display: block; + position: absolute; + font-size: 12px; + letter-spacing: 1px; + line-height: 20px; + margin: 0; + bottom: -50px; + } +} +#scheme-Isolation .header-item { + float: left; + clear: both; + margin-right: auto; + margin-left: auto; + width: auto; +} +@media screen and (max-width: 1183px) { + #scheme-Isolation .header-item { + position: relative; + left: 50%; + transform: translateX(-50%); + } +} +#scheme-Isolation .header-title { + border-bottom: 1px solid #c7ced1; + font-size: 24px; + line-height: 36px; + padding-bottom: 16px; + margin-bottom: 16px; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .header-title { + font-size: 24px; + line-height: 40px; + padding-bottom: 24px; + margin-bottom: 24px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .header-title {} +} +#scheme-Isolation .header-title a { + color: #252b2d; +} +#scheme-Isolation .mdl-mini-footer { + padding: 0; +} +#scheme-Isolation .header-slogan { + color: #5c6a70; + margin-bottom: 16px; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .header-slogan { + margin-bottom: 24px; + } +} +#scheme-Isolation .header-nav { + margin-bottom: 16px; +} +@media screen and (min-width: 579px) { + #scheme-Isolation .header-nav { + margin-bottom: 24px; + } +} +@media screen and (max-width: 1183px) { + #scheme-Isolation .header-nav { + padding-top: 24px; + border-top: 1px solid #c7ced1; + } + #scheme-Isolation .header-nav span { + margin-right: 8px; + margin-left: 8px; + } + #scheme-Isolation .header-nav span:first-child { + margin-left: 0; + } + #scheme-Isolation .header-nav span:last-child { + margin-right: 0; + } +} +#scheme-Isolation .header-nav span { + float: left; + width: auto; + line-height: 24px; + text-transform: uppercase; + letter-spacing: 1px; +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .header-nav span { + clear: both; + } +} +#scheme-Isolation .header-nav-item {} @media screen and (min-width: 1183px) { + #scheme-Isolation .header-nav-item:first-child { + padding-top: 24px; + border-top: 1px solid #c7ced1; + } +} +#scheme-Isolation .header-sns_list { + margin-top: 24px; +} +@media screen and (max-width: 1183px) { + #scheme-Isolation .header-sns_list { + margin-top: 0; + padding-top: 24px; + border-top: 1px solid #c7ced1; + margin-bottom: 16px; + } +} +#scheme-Isolation .header-sns_list a { + padding: 0 8px; + margin: 0 8px; +} +#scheme-Isolation .header-sns_list a:first-child { + padding-left: 0; + margin-left: 0; +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .header-sns_list a:first-child { + padding-left: 0; + margin-left: 0; + padding-top: 24px; + border-top: 1px solid #c7ced1; + } +} +#scheme-Isolation .material-layout .material-index>.material-nav, +#scheme-Isolation .material-layout .material-post>.material-nav { + display: flex; + margin: 10px 15px; + color: #fff; + font-weight: 500; + flex-direction: row; + justify-content: space-between; + align-items: center; +} +#scheme-Isolation .page-number { + display: none +} +#scheme-Isolation .material-nav .page-number.current { + display: block; + color: #666; + text-align: center; + margin: 0 auto; +} +#scheme-Isolation .material-layout .material-index>.material-nav .mdl-button, +#scheme-Isolation .material-layout .material-post>.material-nav .mdl-button { + background-color: #fff; + color: rgba(0, 0, 0, .54); +} +#scheme-Isolation #post-content { + width: 100%; +} +@media screen and (min-width: 386px) { + #scheme-Isolation #post-content { + padding: 24px; + } +} +@media screen and (min-width: 579px) { + #scheme-Isolation #post-content { + padding: 32px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation #post-content { + padding: 48px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation #post-content { + padding: 40px; + } +} +#scheme-Isolation .material-post .mdl-card { + width: 100%; + border-radius: 2px; +} +#scheme-Isolation .material-nav a { + text-decoration: none; +} +#scheme-Isolation .post-content_wrapper { + width: 100%; + margin: 0 auto; + max-width: 275px; +} +@media screen and (min-width: 386px) { + #scheme-Isolation .post-content_wrapper { + max-width: 436px; + } +} +@media screen and (min-width: 579px) { + #scheme-Isolation .post-content_wrapper { + max-width: 530px; + } +} +@media screen and (min-width: 769px) { + #scheme-Isolation .post-content_wrapper { + max-width: 606px; + } +} +@media screen and (min-width: 1183px) { + #scheme-Isolation .post-content_wrapper { + max-width: 640px; + } +} +/******************/ +/* Swiftype_Input */ +/******************/ + +.st-ui-search-input, +.st-default-search-input { + border: 0 !important; + padding-top: 0 !important; + background: none !important; +} +/***************/ +/* Sidebar_CSS */ +/***************/ + +.md { + line-height: inherit; + vertical-align: bottom +} +.headline, +.subhead { + font-weight: 300; + line-height: 1.1; + color: #212121; + text-transform: inherit; + letter-spacing: inherit +} +.sidebar .sidebar-toggle:after, +.sidebar:after { + clear: both +} +*, +:after, +:before { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} +.sidebar-material-icons { + margin-right: 2pc; + width: 24px; + height: 24px; + top: 15%; + position: relative +} +.sidebar-indent-left1pc-element { + margin-left: 1pc +} +.sidebar-overlay { + visibility: hidden; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + opacity: 0; + background: #000; + z-index: 9; + -webkit-transition: visibility 0 linear .4s, opacity .4s cubic-bezier(.4, 0, .2, 1); + -moz-transition: visibility 0 linear .4s, opacity .4s cubic-bezier(.4, 0, .2, 1); + transition: visibility 0 linear .4s, opacity .4s cubic-bezier(.4, 0, .2, 1); + -webkit-transform: translateZ(0); + -moz-transform: translateZ(0); + -ms-transform: translateZ(0); + -o-transform: translateZ(0); + transform: translateZ(0) +} +.sidebar-overlay.active { + opacity: .5; + visibility: visible; + -webkit-transition-delay: 0; + -moz-transition-delay: 0; + transition-delay: 0 +} +.top-bar { + height: 25px +} +.headline { + font-size: 24px +} +.subhead { + font-size: 16px +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid; + border-right: 4px solid transparent; + border-left: 4px solid transparent +} +.dropdown-menu { + display: none +} +.sidebar { + vertical-align: top; + position: relative; + display: block; + min-height: 100%; + overflow-y: auto; + overflow-x: hidden; + border: none; + -webkit-transition: all .5s cubic-bezier(.55, 0, .1, 1); + -o-transition: all .5s cubic-bezier(.55, 0, .1, 1); + transition: all .5s cubic-bezier(.55, 0, .1, 1) +} +.sidebar .sidebar-toggle:after, +.sidebar .sidebar-toggle:before, +.sidebar:after, +.sidebar:before { + content: ' '; + display: table +} +#sidebar { + z-index: 10 +} +#sidebar-first-li a { + margin-top: 8px +} +.sidebar-footer-text-div { + text-align: left; + text-transform: none +} +.sidebar::-webkit-scrollbar-track { + border-radius: 2px +} +.sidebar::-webkit-scrollbar { + width: 5px; + background-color: #F7F7F7; +} +.sidebar::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); + background-color: #BFBFBF; +} +.sidebar .sidebar-header { + height: 158.13px; + -webkit-transition: all .2s ease-in-out; + transition: all .2s ease-in-out +} +.sidebar .sidebar-header, +.sidebar .sidebar-toggle { + position: relative; + -o-transition: all .2s ease-in-out +} +.sidebar .sidebar-header.header-cover { + background-repeat: no-repeat; + background-position: center center; + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: 100% +} +.sidebar .sidebar-header:hover .sidebar-toggle { + opacity: 1 +} +.sidebar .sidebar-toggle { + float: right; + margin: 16px; + padding: 0; + background-image: none; + border: none; + height: 40px; + width: 40px; + font-size: 20px; + opacity: .7; + -webkit-transition: all .2s ease-in-out; + transition: all .2s ease-in-out +} +.sidebar .icon-material-sidebar-arrow:before { + content: '\e610' +} +.sidebar .sidebar-image img { + width: 54px; + height: 54px; + margin: 16px; + border-radius: 50%; + background-color: rgba(255, 255, 255, .2); + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out +} +.sidebar .sidebar-brand { + position: absolute; + bottom: 0; + left: 0; + right: 0; + display: block; + height: 48px; + line-height: 48px; + padding: 0 56px 0 16px; + clear: both; + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + white-space: nowrap; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out +} +.sidebar .sidebar-brand:focus, +.sidebar .sidebar-brand:hover { + -webkit-box-shadow: none; + box-shadow: none; + outline: 0; + text-decoration: none +} +.sidebar .sidebar-brand .caret { + position: absolute; + right: 24px; + top: 24px +} +.sidebar .sidebar-brand .sidebar-badge, +.sidebar .hot_tags-count .sidebar .sidebar_archives-count { + position: absolute; + right: 16px; + top: 12px +} +.sidebar .sidebar-badge, +.sidebar .hot_tags-count, +.sidebar .sidebar_archives-count { + display: inline-block; + min-width: 24px; + height: 24px; + line-height: 24px; + padding: 0 3px; + font-size: 10px; + text-align: center; + white-space: nowrap; + vertical-align: baseline +} +.sidebar .sidebar-badge.badge-circle { + border-radius: 50% +} +.sidebar .sidebar-divider, +.sidebar .sidebar-nav .divider { + position: relative; + display: block; + height: 1px; + margin: 8px 0; + padding: 0; + overflow: hidden +} +.sidebar .sidebar-text { + display: block; + padding: 0 56px 0 16px; + transition: all .2s ease-in-out +} +.sidebar .sidebar-nav li a, +.sidebar .sidebar-text { + overflow: hidden; + font-weight: 400; + white-space: nowrap; + height: 48px; + line-height: 48px; + text-decoration: none; + clear: both; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out +} +.sidebar .sidebar-text:focus, +.sidebar .sidebar-text:hover { + -webkit-box-shadow: none; + box-shadow: none; + outline: 0 +} +.sidebar .sidebar-text .caret { + position: absolute; + right: 24px; + top: 24px +} +.sidebar .sidebar-text .sidebar-badge, +.sidebar .hot_tags-count, +.sidebar .sidebar_archives-count { + position: absolute; + right: 16px; + top: 12px +} +.sidebar .sidebar-icon { + display: inline-block; + margin-right: 16px; + min-width: 40px; + width: 40px; + text-align: left; + font-size: 20px +} +.sidebar .sidebar-icon:after, +.sidebar .sidebar-icon:before { + vertical-align: middle +} +.sidebar .sidebar-nav { + margin: 0; + padding: 0 +} +.sidebar .sidebar-nav li { + position: relative; + list-style-type: none +} +.sidebar .sidebar-nav li a { + position: relative; + cursor: pointer; + user-select: none; + display: block; + padding: 0 56px 0 16px; + transition: all .2s ease-in-out +} +.sidebar .sidebar-nav li a:focus, +.sidebar .sidebar-nav li a:hover { + -webkit-box-shadow: none; + box-shadow: none; + outline: 0 +} +.sidebar .sidebar-nav li a .caret { + position: absolute; + right: 24px; + top: 24px; + transition: .3s; +} +.sidebar .sidebar-nav li.open a .caret { + transform:rotate(-180deg); +} +.sidebar .sidebar-nav li a .sidebar-badge, +.hot_tags-count, +.sidebar_archives-count { + position: absolute; + right: 16px; + top: 12px +} +.sidebar .sidebar-nav li a:hover { + background: 0 0 +} +.sidebar .sidebar-nav .dropdown-menu { + position: relative; + width: 100%; + margin: 0; + padding: 0; + border: none; + border-radius: 0; + -webkit-box-shadow: none; + box-shadow: none +} +.sidebar-colored { + background-color: #fff +} +.sidebar-colored .sidebar-header { + background-color: #e91e63 +} +.sidebar-colored .sidebar-toggle { + color: #f5f5f5; + background-color: transparent +} +.sidebar-colored .sidebar-brand { + color: #e0e0e0; + background-color: transparent +} +.sidebar-colored .sidebar-brand:focus, +.sidebar-colored .sidebar-brand:hover { + color: #f5f5f5; + background-color: rgba(0, 0, 0, .1) +} +.sidebar-colored .sidebar-badge, +.hot_tags-count, +.sidebar_archives-count { + color: #fff; + background-color: #ec407a; + text-shadow: 1px 1px 3px #444 +} +.sidebar-colored .sidebar-divider, +.sidebar-colored .sidebar-nav .divider { + background-color: #bdbdbd +} +.sidebar-colored .sidebar-text { + color: #212121 +} +.sidebar-colored .sidebar-nav li>a { + color: #212121; + background-color: transparent +} +.sidebar-colored .sidebar-nav li>a i { + color: #757575 +} +.sidebar-colored .sidebar-nav li:hover>a, +.sidebar-colored .sidebar-nav li>a:hover { + color: #e91e63; + background-color: #e0e0e0 +} +.sidebar-colored .sidebar-nav li:hover>a i, +.sidebar-colored .sidebar-nav li>a:hover i { + color: #f06292 +} +.sidebar-colored .sidebar-nav li:focus>a, +.sidebar-colored .sidebar-nav li>a:focus { + color: #212121; + background-color: transparent +} +.sidebar-colored .sidebar-nav li:focus>a i, +.sidebar-colored .sidebar-nav li>a:focus i { + color: #f06292 +} +.sidebar-colored .sidebar-nav>.open>a, +.sidebar-colored .sidebar-nav>.open>a:focus, +.sidebar-colored .sidebar-nav>.open>a:hover { + color: #e91e63; + background-color: #e0e0e0 +} +.sidebar-colored .sidebar-nav>.active>a, +.sidebar-colored .sidebar-nav>.active>a:focus, +.sidebar-colored .sidebar-nav>.active>a:hover { + color: #212121; + background-color: #f5f5f5 +} +.sidebar-colored .sidebar-nav>.disabled>a, +.sidebar-colored .sidebar-nav>.disabled>a:focus, +.sidebar-colored .sidebar-nav>.disabled>a:hover { + color: #e0e0e0; + background-color: transparent +} +.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu { + background-color: #e0e0e0 +} +.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>li>a:focus { + background-color: #e0e0e0; + color: #e91e63 +} +.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>li>a:hover { + background-color: #cecece; + color: #e91e63 +} +.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>.active>a, +.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>.active>a:focus, +.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>.active>a:hover { + color: #212121; + background-color: #f5f5f5 +} +.sidebar { + width: 0; + -webkit-transform: translate3d(-280px, 0, 0); + transform: translate3d(-280px, 0, 0) +} +.sidebar.open { + min-width: 280px; + width: 280px; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0) +} +.sidebar-fixed-left { + position: fixed; + top: 0; + bottom: 0; + z-index: 10; + left: 0; + box-shadow: 2px 0 15px rgba(0, 0, 0, .35); + -webkit-box-shadow: 2px 0 15px rgba(0, 0, 0, .35) +} +@media (max-width: 840px) { + .sidebar.open { + min-width: 240px; + width: 240px + } + .sidebar .sidebar-header { + height: 149.34px + } + .sidebar .sidebar-image img { + width: 44px; + height: 44px + } +} +#scheme-Paradox #sidebar-main { + min-height: calc(100% - 100px); + margin-bottom: 55px; +} +#scheme-Paradox #footer-image { + padding-left: 8px; + position: relative; +} +/************/ +/* Burger_CSS */ +/************/ + +.MD-burger-icon { + margin: 0 0 0 1pc; + cursor: pointer; + border: none; + background: 0 0; + outline: 0; + position: fixed; + top: 2pc; + z-index: 8; + height: 32px; + width: 32px +} +.MD-burger-layer { + width: 20px; + background: #eee; + position: relative; + -webkit-animation-duration: 300ms; + animation-duration: 300ms; + animation-timing-function: ease-in-out +} +.MD-burger-layer, +.MD-burger-layer:after, +.MD-burger-layer:before { + display: block; + height: 2px; + -webkit-animation-timing-function: ease-in-out +} +.MD-burger-layer:after, +.MD-burger-layer:before { + width: inherit; + position: absolute; + background: inherit; + left: 0; + content: ''; + -webkit-animation-duration: 300ms; + animation-duration: 300ms; + animation-timing-function: ease-in-out +} +.MD-burger-layer:before { + bottom: 5px +} +.MD-burger-layer:after { + top: 5px +} +.MD-burger-arrow { + -webkit-animation-name: MD-burger-icon-arrow; + animation-name: MD-burger-icon-arrow; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards +} +.MD-burger-arrow:before { + -webkit-animation-name: MD-burger-icon-before-arrow; + animation-name: MD-burger-icon-before-arrow; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards +} +.MD-burger-arrow:after { + -webkit-animation-name: MD-burger-icon-after-arrow; + animation-name: MD-burger-icon-after-arrow; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards +} +.MD-burger-line { + -webkit-animation-name: MD-burger-icon-line; + animation-name: MD-burger-icon-line +} +.MD-burger-line:before { + -webkit-animation-name: MD-burger-icon-before-line; + animation-name: MD-burger-icon-before-line +} +.MD-burger-line:after { + -webkit-animation-name: MD-burger-icon-after-line; + animation-name: MD-burger-icon-after-line +} +@-webkit-keyframes MD-burger-icon-arrow { + 100% { + -webkit-transform: rotate(180deg); + transform: rotate(180deg) + } +} +@keyframes MD-burger-icon-arrow { + 100% { + -webkit-transform: rotate(180deg); + transform: rotate(180deg) + } +} +@-webkit-keyframes MD-burger-icon-before-arrow { + 100% { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + margin: 3% 37%; + width: 75% + } +} +@keyframes MD-burger-icon-before-arrow { + 100% { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + margin: 3% 37%; + width: 75% + } +} +@-webkit-keyframes MD-burger-icon-after-arrow { + 100% { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin: 3% 37%; + width: 75% + } +} +@keyframes MD-burger-icon-after-arrow { + 100% { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin: 3% 37%; + width: 75% + } +} +@-webkit-keyframes MD-burger-icon-line { + 0% { + -webkit-transform: rotate(-180deg); + transform: rotate(-180deg) + } +} +@keyframes MD-burger-icon-line { + 0% { + -webkit-transform: rotate(-180deg); + transform: rotate(-180deg) + } +} +@-webkit-keyframes MD-burger-icon-before-line { + 0% { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + margin: 3% 37%; + width: 75% + } +} +@keyframes MD-burger-icon-before-line { + 0% { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + margin: 3% 37%; + width: 75% + } +} +@-webkit-keyframes MD-burger-icon-after-line { + 0% { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin: 3% 37%; + width: 75% + } +} +@keyframes MD-burger-icon-after-line { + 0% { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin: 3% 37%; + width: 75% + } +} +/***************/ +/* Post_Toc */ +/***************/ + +.post-toc { + width: auto; + word-wrap: normal; + white-space: nowrap; + padding: 0; + list-style: none; + padding: 0 16px; +} +.post-toc-child { + list-style: none; +} +.post-toc a { + color: #727272; + text-decoration: none; +} +.post-toc .post-toc-item { + /* + display: block; + border: 0; + color: rgba(0,0,0,.87); + margin: 0; + padding: 0 16px; + outline-color: #bdbdbd; + position: relative; + overflow: hidden; + font-size: 14px; + font-weight: 400; + letter-spacing: 0; + text-decoration: none; + cursor: pointer; + height: 48px; + line-height: 48px; + white-space: nowrap; + -webkit-transition: opacity .2s cubic-bezier(.4,0,.2,1); + transition: opacity .2s cubic-bezier(.4,0,.2,1); + user-select: none; +*/ +} +/*****************/ +/* Material_icon */ +/*****************/ + +.material-icons { + font-family: 'Material Icons'; + font-weight: 400; + font-style: normal; + font-size: 24px; + display: inline-block; + line-height: 1; + text-transform: none; + letter-spacing: normal; + word-wrap: normal; + white-space: nowrap; + direction: ltr; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + font-feature-settings: 'liga' +} +/**************/ +/* Footer_Top */ +/**************/ + +#back-to-top{ + display: block; + position: fixed; + bottom: 24px; + right: -41px; + transition: background-color .18s cubic-bezier(.6,0,.1,1),box-shadow .18s cubic-bezier(.6,0,.1,1),transform .18s cubic-bezier(.6,0,.1,1); + z-index: 8; +} +#back-to-top.btt-visible{ + transform: translate(-64px, 0); +} +#back-to-top.btt-docked{ + position: absolute; + bottom: 100px; +} +@media screen and (max-width: 840px) { + #back-to-top{ + bottom: 24px; + } + #back-to-top.btt-visible{ + transform: translate(-60px, 0); + } + #back-to-top.btt-docked{ + position: absolute; + bottom: 180px; + } +} +.toTop { + display: block; + width: 40px; + height: 40px; + border-radius: 50%; + text-align: center; + color: #FFF; + background: #00BCD4; + box-shadow: 0 0 3px 0 rgba(0, 0, 0, .12), 0 3px 3px 0 rgba(0, 0, 0, .24); + cursor: pointer; + -webkit-transition: all .1s ease-out; + -moz-transition: all .1s ease-out; + -o-transition: all .1s ease-out; + transition: all .1s ease-out; + position: relative; + overflow: hidden +} +.toTop:hover { + box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28); +} +.toTop i { + font-size: 24px; + margin: 8px; +} +.footer_top-i { + width: 24px; + height: 24px; +} +/*Animation*/ + +@keyframes status-active { + from { + transform: rotate(0) + } + to { + transform: rotate(135deg) + } +} +@keyframes status-inactive { + from { + transform: rotate(135deg) + } + to { + transform: rotate(0) + } +} +@keyframes zoomIn { + 0% { + -moz-transform: scale(0); + -ms-transform: scale(0); + -webkit-transform: scale(0); + transform: scale(0); + opacity: 0 + } + 100% { + -moz-transform: scale(1); + -ms-transform: scale(1); + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1 + } +} +@keyframes load { + 0% { + -moz-transform: scale(0); + -ms-transform: scale(0); + -webkit-transform: scale(0); + transform: scale(0); + opacity: 0 + } + 50% { + -moz-transform: scale(1.5); + -ms-transform: scale(1.5); + -webkit-transform: scale(1.5); + transform: scale(1.5); + opacity: 1 + } + 100% { + -moz-transform: scale(1); + -ms-transform: scale(1); + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0 + } +} +@media only screen and (min-width: 300px) { + .chat { + width: 200px + } +} +@media only screen and (min-width: 480px) { + .chat { + width: 300px + } + .chat_field { + width: 65% + } +} +@media only screen and (min-width: 840px) { + .chat { + width: 300px + } + .chat_field { + width: 65% + } +} +@media only screen and (min-width: 1024px) { + .chat { + width: 400px + } + .chat_field { + width: 65% + } +} +.ink { + display: block; + position: absolute; + background: rgba(38, 50, 56, .4); + border-radius: 100%; + -moz-transform: scale(0); + -ms-transform: scale(0); + webkit-transform: scale(0); + transform: scale(0) +} +.ink.animate { + animation: ripple .5s ease-in-out +} +@keyframes ripple { + 100% { + opacity: 0; + -moz-transform: scale(5); + -ms-transform: scale(5); + webkit-transform: scale(5); + transform: scale(5) + } +} + + +/*****************/ +/* Nprogress_CSS */ +/*****************/ + -#nprogress { + pointer-events: none +} +#nprogress .bar { + background: #29d; + position: fixed; + z-index: 10; + top: 0; + left: 0; + width: 100%; + height: 2px +} +#nprogress .peg { + display: block; + position: absolute; + right: 0; + width: 100px; + height: 100%; + box-shadow: 0 0 10px #29d, 0 0 5px #29d; + opacity: 1; + -webkit-transform: rotate(3deg) translate(0, -4px); + -ms-transform: rotate(3deg) translate(0, -4px); + transform: rotate(3deg) translate(0, -4px) +} +#nprogress .spinner { + display: block; + position: fixed; + z-index: 10; + top: 15px; + right: 15px +} +.fa, +.fa-stack { + display: inline-block +} +#nprogress .spinner-icon { + width: 18px; + height: 18px; + box-sizing: border-box; + border: 2px solid transparent; + border-top-color: #29d; + border-left-color: #29d; + border-radius: 50%; + -webkit-animation: nprogress-spinner 400ms linear infinite; + animation: nprogress-spinner 400ms linear infinite +} +.nprogress-custom-parent { + overflow: hidden; + position: relative +} +.nprogress-custom-parent #nprogress .bar, +.nprogress-custom-parent #nprogress .spinner { + position: absolute +} +@-webkit-keyframes nprogress-spinner { + 0% { + -webkit-transform: rotate(0) + } + 100% { + -webkit-transform: rotate(360deg) + } +} +@keyframes nprogress-spinner { + 0% { + transform: rotate(0) + } + 100% { + transform: rotate(360deg) + } +} + +/*******************/ +/* Footer_SNS_Icon */ +/*******************/ + +.footer-sns-facebook { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-gplus { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-twitter { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-weibo { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-instagram { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-tumblr { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-github { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-linkedin { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-zhihu { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-bilibili { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-telegram { + background: url('data:image/svg+xml;utf8,'); +} + +.footer-sns-v2ex { + background: url('data:image/svg+xml;utf8,'); +} diff --git a/libs/hexo-theme-material/1.5.2/source/css/style.min.css b/libs/hexo-theme-material/1.5.2/source/css/style.min.css new file mode 100644 index 000000000..a5cc25e4d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/style.min.css @@ -0,0 +1 @@ +body,html{display:block}body{margin:0;padding:0;top:0;right:0;bottom:0;left:0;z-index:-1;background-size:cover;background-attachment:fixed;content:''}.fa,.material-icons{-moz-osx-font-smoothing:grayscale}a{font-weight:300}.mdl-button{font-family:Roboto,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,'微软雅黑',Arial,sans-serif}.mdl-menu__item{font-weight:300}#local-search-result{position:absolute;background-color:#fff;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);z-index:6;max-width:100%}#local-search-result ul{list-style:none;padding:0}#local-search-result ul li{padding:10px 20px;border-top:1px solid #dadada}#local-search-result ul li:first-child{border-top:none}#local-search-result ul li p{margin:0;max-height:50px;overflow:hidden}#local-search-result .search-keyword{font-style:normal;font-weight:700}#local-search-result ul li a{text-decoration:none}#local-search-result ul li .search-result{color:#333}.highlight tr{display:flex}#post-content .line{height:19px}#post-content figure{margin-right:0;margin-left:0}#post-content,#post-content p{font-size:15px;line-height:1.7;overflow:hidden}#post-content>:first-child{margin-top:0!important}#post-content>:last-child{margin-bottom:0!important}#post-content a.absent{color:#c00}#post-content a.anchor{display:block;padding-left:30px;margin-left:-30px;cursor:pointer;position:absolute;top:0;left:0;bottom:0}#post-content h1,#post-content h2,#post-content h3,#post-content h4,#post-content h5,#post-content h6{margin:1em 0 15px;padding:0;font-weight:700;line-height:1.7;cursor:text;position:relative}#post-content h1 .octicon-link,#post-content h2 .octicon-link,#post-content h3 .octicon-link,#post-content h4 .octicon-link,#post-content h5 .octicon-link,#post-content h6 .octicon-link{display:none;color:#000}#post-content h1:hover a.anchor,#post-content h2:hover a.anchor,#post-content h3:hover a.anchor,#post-content h4:hover a.anchor,#post-content h5:hover a.anchor,#post-content h6:hover a.anchor{text-decoration:none;line-height:1;padding-left:0;margin-left:-22px;top:15%}#post-content h1:hover a.anchor .octicon-link,#post-content h2:hover a.anchor .octicon-link,#post-content h3:hover a.anchor .octicon-link,#post-content h4:hover a.anchor .octicon-link,#post-content h5:hover a.anchor .octicon-link,#post-content h6:hover a.anchor .octicon-link{display:inline-block}#post-content h1 code,#post-content h1 tt,#post-content h2 code,#post-content h2 tt,#post-content h3 code,#post-content h3 tt,#post-content h4 code,#post-content h4 tt,#post-content h5 code,#post-content h5 tt,#post-content h6 code,#post-content h6 tt{font-size:inherit}#post-content h1{font-size:2.5em;border-bottom:1px solid #ddd}#post-content h2{font-size:2em;border-bottom:1px solid #eee}#post-content h3{font-size:1.5em}#post-content h4{font-size:1.2em}#post-content h5{font-size:1em}#post-content h6{color:#777;font-size:1em}#post-content blockquote,#post-content dl,#post-content ol,#post-content p,#post-content table,#post-content ul{margin:15px 0}#post-content hr{height:.25em;padding:0;margin:24px 0;background-color:#e7e7e7;border:0}#post-content li p.first{display:inline-block}#post-content ol,#post-content ul{padding-left:30px;font-size:15px;line-height:1.7;overflow:hidden}#post-content ol.no-list,#post-content ul.no-list{list-style-type:none;padding:0}#post-content ol ol,#post-content ol ul,#post-content ul ol,#post-content ul ul{margin-top:0;margin-bottom:0}#post-content dl{padding:0}#post-content dl dt{font-size:14px;font-weight:700;font-style:italic;padding:0;margin-top:15px}#post-content dl dd{margin-bottom:15px;padding:0 15px}#post-content blockquote{border-left:4px solid #ddd;padding:0 15px;color:#777;font-style:normal}#post-content blockquote>:first-child{margin-top:0}#post-content blockquote>:last-child{margin-bottom:0}#post-content table{width:100%;overflow:auto;display:block;border-spacing:0;border-collapse:collapse}#post-content table th{font-weight:700}#post-content table td,#post-content table th{padding:6px 13px;border:1px solid #ddd}#post-content table tr{background-color:#fff}#post-content table tr:nth-child(2n){background-color:#f8f8f8}#post-content img{max-width:100%;box-sizing:border-box}#post-content span.frame{display:block;overflow:hidden}#post-content span.frame>span{border:1px solid #ddd;display:block;float:left;overflow:hidden;margin:13px 0 0;padding:7px;width:auto}#post-content span.frame span img{display:block;float:left}#post-content span.frame span span{clear:both;color:#333;display:block;padding:5px 0 0}#post-content span.align-center{display:block;overflow:hidden;clear:both}#post-content span.align-center>span{display:block;overflow:hidden;margin:13px auto 0;text-align:center}#post-content span.align-center span img{margin:0 auto;text-align:center}#post-content span.align-right{display:block;overflow:hidden;clear:both}#post-content span.align-right>span{display:block;overflow:hidden;margin:13px 0 0;text-align:right}#post-content span.align-right span img{margin:0;text-align:right}#post-content span.float-left{display:block;margin-right:13px;overflow:hidden;float:left}#post-content span.float-left span{margin:13px 0 0}#post-content span.float-right{display:block;margin-left:13px;overflow:hidden;float:right}#post-content span.float-right>span{display:block;overflow:hidden;margin:13px auto 0;text-align:right}#post-content code,#post-content tt{margin:0 2px;padding:0 5px;background-color:rgba(0,0,0,.04);border-radius:3px}#post-content pre>code{margin:0;padding:0;white-space:pre;border:none;background:transparent}#post-content pre{background-color:#f7f7f7;font-size:13px;line-height:19px;overflow:auto;padding:1pc;border-radius:3px}#post-content .code,#post-content .gutter{font-size:13px;line-height:19px;overflow:auto;padding:0;border:none;display:block;border-radius:0}#post-content .code{border-top-right-radius:3px;border-bottom-right-radius:3px}#post-content .gutter{border-top-left-radius:3px;border-bottom-left-radius:3px}#post-content .code pre,#post-content .gutter pre{margin:0;display:block}#post-content pre code,#post-content pre tt{margin:0;padding:0;background-color:transparent;border:none}.post-toc-wrap::-webkit-scrollbar{width:7px;height:7px;border-radius:4px;background-color:#f1f1f1;opacity:.4}.post-toc-wrap::-webkit-scrollbar-thumb{width:7px;height:7px;border-radius:4px;background-color:#ddd;opacity:.8}.post-toc-wrap::-webkit-scrollbar-button{display:none}#scheme-Paradox .index-top-block{margin-bottom:47.59px}@media screen and (max-width:480px){#scheme-Paradox .index-top-block{transition:1s;width:100%;margin:0;border-radius:0!important}#scheme-Paradox .material-layout .daily-pic{height:100%}#scheme-Paradox .material-layout .something-else{margin-bottom:30px}}@media screen and (min-width:481px) and (max-width:840px){#scheme-Paradox .index-top-block{min-height:200px!important;transition:1s;margin-bottom:47.59px}#scheme-Paradox .material-layout .daily-pic{width:calc(66.6666666667% - 1pc)}#scheme-Paradox .material-layout .something-else{width:calc(33.3333333333% - 1pc)}}#scheme-Paradox .index-top-block-slogan{font-size:24px;line-height:26px;font-weight:400;margin:0;text-shadow:1px 1px 8px #444}#scheme-Paradox .index-top-block-slogan a{text-decoration:none}@media screen and (max-width:480px){#scheme-Paradox .index-top-block-date{display:none}}#scheme-Paradox .material-layout .minilogo,#scheme-Paradox .social-btn{background-position:center;background-repeat:no-repeat}#scheme-Paradox .post_entry-module{margin-bottom:47.59px;margin-top:0}#scheme-Paradox .material-layout .material-index,#scheme-Paradox .material-layout .material-post{display:flex;margin:0 auto;padding:0;width:100%;max-width:900px;flex-shrink:0}#scheme-Paradox .material-layout .material-layout__content{position:relative;padding-top:165px;margin:0 auto;width:100%}@media screen and (max-width:480px){#scheme-Paradox .material-layout .material-layout__content{padding-top:0}}#scheme-Paradox .material-layout .mdl-card{display:flex;min-height:25pc;flex-direction:column;align-items:stretch;border-radius:2px}@media screen and (max-width:480px){#scheme-Paradox .material-post .mdl-card{border-radius:0}}#scheme-Paradox .material-layout .mdl-card__title{padding:1pc;flex-grow:1}#scheme-Paradox .material-layout .mdl-card__media{display:flex;box-sizing:border-box;padding:24.72px;background-size:cover;cursor:pointer;flex-grow:1;flex-direction:row;align-items:flex-end}#scheme-Paradox .material-layout .mdl-card__media a,#scheme-Paradox .material-layout .mdl-card__title a{color:inherit}#scheme-Paradox .material-layout .mdl-card__supporting-text{display:inline;padding:20px 0 1pc;width:100%;min-height:4pc;align-items:center}#scheme-Paradox .material-layout .mdl-card__supporting-text strong{font-weight:700}#scheme-Paradox .material-layout .mdl-card__media~.mdl-card__supporting-text{min-height:4pc}@media screen and (max-width:480px){#scheme-Paradox .material-layout .mdl-card__supporting-text{padding-top:9pt;padding-bottom:0}#scheme-Paradox .daily-pic .mdl-card__media~.mdl-card__supporting-text{display:none}}#scheme-Paradox .material-layout .mdl-card__supporting-text:not(:last-child){box-sizing:border-box;min-height:76px}#scheme-Paradox .material-layout .post_entry-module .mdl-card__media~.mdl-card__supporting-text{padding:1pc;padding-top:29.03px}@media screen and (max-width:480px){#scheme-Paradox .material-layout .mdl-card__supporting-text:not(:last-child){min-height:70px}#scheme-Paradox .material-layout .post_entry-module .mdl-card__media~.mdl-card__supporting-text{padding:2pc 1pc}}#scheme-Paradox .material-layout .mdl-card__actions:first-child{margin-left:0}#scheme-Paradox .material-layout .meta{display:flex;box-sizing:border-box;padding:1pc;height:auto;flex-direction:row;align-items:center;justify-content:flex-start}#scheme-Paradox .material-layout .meta>.meta__favorites{margin:0 8px;font-weight:500;font-size:13px;flex-direction:row}#scheme-Paradox .material-layout .meta>.meta__favorites .material-icons{margin-left:9pt;font-size:2em;cursor:pointer}#scheme-Paradox .material-layout .mdl-card .meta.meta--fill{justify-content:space-between}#scheme-Paradox .material-layout .meta>:first-child{margin-right:1pc}#scheme-Paradox .material-layout .meta>*{display:flex;flex-direction:column}#scheme-Paradox .material-layout .something-else>button{position:absolute;top:0;right:28px;transform:translate(0, -28px)}#scheme-Paradox .material-layout .something-else .something-else-logo{display:flex;flex-direction:column;justify-content:center;align-items:center;border-top-right-radius:2px;border-top-left-radius:2px;font-size:13px;flex-grow:1;box-sizing:border-box;padding:24px;background-size:cover}@media screen and (max-width:480px){#scheme-Paradox .material-layout .something-else .something-else-logo{padding:0}}#scheme-Paradox .material-layout .something-else .something-else-logo img{margin-bottom:10px;width:10pc;height:10pc}#scheme-Paradox .material-layout .something-else .mdl-card__supporting-text{border-bottom-right-radius:2px;border-bottom-left-radius:2px;background-color:#f5f5f5}#scheme-Paradox .material-layout .material-index>.material-nav,#scheme-Paradox .material-layout .material-post>.material-nav{display:flex;margin:10px 15px;color:#fff;font-weight:500;flex-direction:row;justify-content:space-between;align-items:center}#scheme-Paradox .material-layout .material-index>.material-nav>.material-nav__button,#scheme-Paradox .material-layout .material-post>.material-nav>.material-nav__button{color:#fff;text-decoration:none}#scheme-Paradox .material-layout .material-index>.material-nav .mdl-button,#scheme-Paradox .material-layout .material-post>.material-nav .mdl-button{background-color:#fff;color:rgba(0,0,0,.54)}#scheme-Paradox .material-layout .material-index>.material-nav>.material-nav__button:first-child .mdl-butto,#scheme-Paradox .material-layout .material-post>.material-nav>.material-nav__button:first-child .mdl-button{margin-right:1pc}#scheme-Paradox .material-layout .material-index>.material-nav>.material-nav__button:last-child .mdl-button,#scheme-Paradox .material-layout .material-post>.material-nav>.material-nav__button:last-child .mdl-button{margin-left:1pc}#scheme-Paradox .page-number{display:none}#scheme-Paradox .material-nav .page-number.current{display:block;color:#666;text-align:center;margin:0 auto}#scheme-Paradox .material-layout .mdl-card>a{color:inherit;text-decoration:none;font-weight:inherit}#scheme-Paradox .material-layout .mdl-card h3{margin:0}#scheme-Paradox .material-layout .mdl-card h1 a,#scheme-Paradox .material-layout .mdl-card h2 a,#scheme-Paradox .material-layout .mdl-card h3 a,#scheme-Paradox .material-layout .mdl-card h4 a,#scheme-Paradox .material-layout .mdl-card h5 a,#scheme-Paradox .material-layout .mdl-card h6 a{text-decoration:none}#scheme-Paradox .material-layout .mdl-card h3.quote:after,#scheme-Paradox .material-layout .mdl-card h3.quote:before{display:block;margin-top:.5em;font-size:3em}#scheme-Paradox .material-layout .mdl-card h3.quote:before{content:'“'}#scheme-Paradox .material-layout .mdl-card h3.quote:after{content:'”'}#scheme-Paradox .material-post_container .custom-header{background-color:transparent}#scheme-Paradox .material-post_container .material-index>.mdl-card .mdl-card__media,#scheme-Paradox .material-post_container .material-post>.mdl-card .mdl-card__media{height:280px}#scheme-Paradox .material-post_container .meta+.mdl-card__supporting-text{display:block;border:0;flex-direction:column}#scheme-Paradox .material-post_container .comments{background-color:#eee;display:flex;box-sizing:border-box;padding:2pc;flex-direction:column;justify-content:flex-start;align-items:stretch;position:relative}#scheme-Paradox .material-post_container .comments>form{display:flex;margin-bottom:1pc;flex-diretion:row}#scheme-Paradox .material-post_container .comments>form .mdl-textfield{margin-right:1pc;color:#616161;flex-grow:1}#scheme-Paradox .material-post_container .comments>form .mdl-textfield input,#scheme-Paradox .material-post_container .comments>form .mdl-textfield textarea{resize:none}#scheme-Paradox .material-post_container .comments>form button{margin-top:20px;background-color:rgba(0,0,0,.24);color:#fff}#scheme-Paradox .material-post_container .comments .comment{flex-direction:column;align-items:stretch}#scheme-Paradox .material-post_container .comments .comment>.comment__header{display:flex;margin-bottom:1pc;flex-direction:row;align-items:center}#scheme-Paradox .material-post_container .comments .comment>.comment__header>.comment__author{display:flex;flex-grow:1;flex-direction:column}#scheme-Paradox .material-post_container .comments .comment>.comment__text{line-height:1.5em}#scheme-Paradox .material-post_container .comments .comment>.comment__actions{display:flex;font-size:.8em;flex-direction:row;justify-content:flex-start;align-items:center;padding-left:4pc}#scheme-Paradox .material-post_container .comments .comment>.comment__actions button{margin-right:1pc;color:rgba(0,0,0,.24)}#scheme-Paradox .material-post_container .comments .comment>.comment__answers{padding-top:2pc;padding-left:3pc}#scheme-Paradox #post-toc-trigger-btn{position:fixed;top:5pc;left:1pc;z-index:8;color:#fff;border-radius:50%}@media screen and (max-width:480px){#scheme-Paradox #post-toc-trigger-btn{display:none}}#scheme-Paradox .material-layout .section-spacer{flex-grow:1}#scheme-Paradox .material-layout .something-else{z-index:7;overflow:visible}#scheme-Paradox .material-layout .amazing .mdl-card__title{background-color:#263238}#scheme-Paradox .material-layout .minilogo{width:44px;height:44px;border-radius:22px;background-color:#f5f5f5;background-image:url(../img/avatar.png);background-size:50%}#scheme-Paradox .mdl-grid{display:flex!important}#scheme-Paradox .social-btn{margin:0 1pc;width:24px;height:24px;border-radius:2px;background-color:transparent;background-size:contain;opacity:.46;cursor:pointer}#scheme-Paradox .social-btn__share{background:0 0;color:rgba(0,0,0,.54)}#scheme-Paradox .mdl-mini-footer{box-sizing:border-box;margin-top:5pc;padding:40px;height:90pt;background-color:#fff;align-items:center}@media screen and (max-width:840px){#scheme-Paradox .material-layout .mdl-mini-footer{padding:30px 0 20px;height:200px}}#scheme-Paradox .post_entry-content img{width:98%}#scheme-Paradox #post-content{max-width:90%;margin:1pc auto;padding-top:0}#scheme-Paradox #post-content img{max-width:100%}#scheme-Paradox .page-navigator{display:inline-block;margin:20px 0;padding-left:0;border-radius:4px}#scheme-Paradox .page-navigator li.current{background:#323c3f;color:#fff}#scheme-Paradox .page-navigator>li{display:inline}#scheme-Paradox .page-navigator>li:first-child>a,#scheme-Paradox .page-navigator>li:first-child>span{margin-left:0}#scheme-Paradox .page-navigator>.current>a,#scheme-Paradox .page-navigator>.current>a:focus,#scheme-Paradox .page-navigator>.current>a:hover,#scheme-Paradox .page-navigator>.current>span,#scheme-Paradox .page-navigator>.current>span:focus,#scheme-Paradox .page-navigator>.current>span:hover{z-index:2;color:#fff;cursor:default}#scheme-Paradox .page-navigator>li>a,#scheme-Paradox .page-navigator>li>span{height:2pc;width:2pc;line-height:2pc;color:#ff4081;position:relative;float:left;margin-right:5px;margin-left:5px;text-decoration:none;text-align:center}#scheme-Paradox .footer-develop-a{color:#9e9e9e;text-decoration:none;font-weight:400}#scheme-Paradox .footer-develop-a:hover{color:#0097a7;text-decoration:underline!important}#scheme-Paradox #post_entry-info{border-top:1px solid rgba(0,0,0,.1)}#scheme-Paradox #post_entry-left-info{float:left;width:50%}#scheme-Paradox #post_entry-right-info{float:right;font-size:13px;font-weight:400;padding:1pc;margin-top:20px;margin-right:20px}@media screen and (max-width:480px){#scheme-Paradox #post_entry-left-info{padding:1pc 4%}#scheme-Paradox #post_entry-right-info{margin-top:0;margin-right:0;width:50%;padding:1pc 2%;text-align:right;top:21px}}#scheme-Paradox #post_entry-right-info a{text-decoration:none;font-weight:400}#scheme-Paradox #copyright{margin-left:auto;margin-right:auto;text-align:center}@media screen and (min-width:481px) and (max-width:840px){#scheme-Paradox #copyright{padding:20px 0}}#scheme-Paradox .article-headline-p a{font-weight:400}#scheme-Paradox .article-headline-p a,#scheme-Paradox .article-headline-p-nopic a,#scheme-Paradox .article-headline-p-top a,#scheme-Paradox .index_category-link,#scheme-Paradox .index_share-link,#scheme-Paradox .material-nav a,#scheme-Paradox .post_share-link,#scheme-Paradox .post_tag-link,#scheme-Paradox .sidebar .sidebar-brand,#scheme-Paradox .sidebar-footer-text-a{text-decoration:none}#scheme-Paradox .index_category-link,#scheme-Paradox .post_tag-link{padding:15px}#scheme-Paradox .mdl-mini-footer--right-section{margin-right:60px}@media screen and (max-width:840px){#scheme-Paradox .mdl-mini-footer--right-section{margin-right:0}}#scheme-Paradox .mdl-mini-footer--right-section a{color:#6b6b6b}#scheme-Paradox #author-avatar,#scheme-Paradox #comment__avatar{margin-right:1pc;border-radius:50%;overflow:hidden}#scheme-Paradox .mdl-mini-footer--social-btn{outline-style:none}#scheme-Paradox .material-nav{font-weight:300!important}#scheme-Paradox .material-nav a{font-weight:400}#scheme-Paradox .login-form-group{width:33%;float:left;color:#8a8a8a}#scheme-Paradox .login-input-info{font-size:14px!important}#scheme-Paradox .comment__text{font-weight:400!important;font-size:13px!important;padding-left:4pc}#scheme-Paradox .comment__text p{margin-bottom:6px}#scheme-Paradox .comments__closed{color:#8a8a8a!important}#scheme-Paradox .comment-list{padding-left:0}#scheme-Paradox .comment__author{font-size:13px;font-weight:400!important}#scheme-Paradox #comment__avatar{float:left}#scheme-Paradox #comment-input-div{width:94%;line-height:15px}#scheme-Paradox #comment{color:#616161;font-size:14px;resize:inherit}#scheme-Paradox #comment-button{margin-left:10px;margin-top:-20px;background-color:rgba(0,0,0,.24);color:#fff}#scheme-Paradox #article-functions-like-button{overflow:visible}#scheme-Paradox #article-functions-like-button:hover{color:red}@media screen and (max-width:480px){#scheme-Paradox .material-post_container .mdl-card,#scheme-Paradox .page-module .mdl-card{margin:0;width:100%}}#scheme-Paradox .post-likes-num{font-size:13px;position:relative;top:8px;left:-20px}@media screen and (max-width:850px){#scheme-Paradox #comment-input-div{width:93%}}@media screen and (max-width:742px){#scheme-Paradox #comment-input-div{width:92%}}@media screen and (max-width:660px){#comment-input-div{width:90%}}@media screen and (max-width:550px){#scheme-Paradox #comment-input-div{width:80%}}@media screen and (max-width:480px){#scheme-Paradox .footer-develop-div{float:left;width:100%;margin-right:10px}}@media screen and (max-width:840px){.mdl-mini-footer--right-section{margin-left:auto;margin-right:auto;text-align:center;width:100%}}#scheme-Paradox .article-headline-p{font-size:34px;line-height:40px;font-weight:400;margin:0;text-shadow:1px 1px 8px #444}@media screen and (max-width:840px){#scheme-Paradox .article-headline-p{font-size:22px}}#scheme-Paradox .article-headline-p-top{padding:10px 0;font-size:26px;line-height:26px;font-weight:400;margin:0}#scheme-Paradox .article-headline-p-nopic{font-size:34px;line-height:40px;font-weight:400;margin:0}#scheme-Paradox .more{margin-left:1pc}#scheme-Paradox #top{width:0;height:0;position:absolute;top:0}#scheme-Paradox #search-label{right:28px;bottom:39px;z-index:7}#scheme-Paradox #search-form{bottom:46px}#scheme-Paradox #search-form-label{left:1px}#scheme-Paradox #search-form-label:after{background-color:#ff4081;width:100%}#scheme-Paradox .mdl-badge[data-badge]:after{width:20px;height:20px;font-weight:400}#scheme-Paradox .mdl-button .mdl-badge[data-badge]:after{top:-9pt;right:-10px}@media screen and (max-width:480px){#scheme-Paradox #search-form{margin-left:0}}@media screen and (max-width:840px){#scheme-Paradox .mdl-mini-footer--left-section{width:100%;text-align:center}}#scheme-Isolation .mdl-grid{padding:0}#scheme-Isolation .mdl-cell{margin:0}#scheme-Isolation .material-layout{width:100%;margin-right:auto;margin-left:auto;max-width:339px;padding-right:8px;padding-left:8px}@media screen and (min-width:386px){#scheme-Isolation .material-layout{max-width:548px;padding-right:24px;padding-left:24px}}@media screen and (min-width:579px){#scheme-Isolation .material-layout{max-width:722px;padding-right:2pc;padding-left:2pc}}@media screen and (min-width:769px){#scheme-Isolation .material-layout{max-width:894px;padding-right:3pc;padding-left:3pc}}@media screen and (min-width:1183px){#scheme-Isolation .material-layout{max-width:83pc;padding-right:5pc;padding-left:5pc}}#scheme-Isolation #main{float:left;width:100%;padding-top:9pt;padding-bottom:24px}@media screen and (min-width:579px){#scheme-Isolation #main{padding-top:1pc;padding-bottom:2pc}}@media screen and (min-width:769px){#scheme-Isolation #main{padding-top:24px;padding-bottom:3pc}}@media screen and (min-width:1183px){#scheme-Isolation #main{padding-top:5pc;padding-bottom:5pc;padding-left:23pc}}#scheme-Isolation .post_entry-module{margin-bottom:24px;width:100%;border-radius:2px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}@media screen and (min-width:386px){#scheme-Isolation .post_entry-module{margin-bottom:28px}}@media screen and (min-width:579px){#scheme-Isolation .post_entry-module{margin-bottom:36px}}@media screen and (min-width:769px){#scheme-Isolation .post_entry-module{margin-bottom:52px}}@media screen and (min-width:1183px){#scheme-Isolation .post_entry-module{margin-bottom:82px}}#scheme-Isolation .post_thumbnail-custom img{width:100%;vertical-align:middle;height:auto}#scheme-Isolation .post-header_info.with-thumbnail,#scheme-Isolation .post_entry-header_info.with-thumbnail{position:absolute;padding:40px;width:100%;cursor:default;color:#ebebeb}#scheme-Isolation .post-header_info.without-thumbnail,#scheme-Isolation .post_entry-header_info.without-thumbnail{padding:40px;padding-bottom:0;width:100%;cursor:default}#scheme-Isolation .post-header_info .avatar-img,#scheme-Isolation .post_entry-header_info .avatar-img{width:34px;height:34px;margin-right:8px;border:1px solid #d6d6d6;border-radius:50%}#scheme-Isolation .post-header_info .name-span,#scheme-Isolation .post_entry-header_info .name-span{letter-spacing:2px;line-height:1pc;font-size:13px;font-weight:300;text-transform:uppercase}#scheme-Isolation .post_entry-content{width:100%}@media screen and (min-width:579px){#scheme-Isolation .post_entry-content{padding:2pc}}@media screen and (min-width:769px){#scheme-Isolation .post_entry-content{padding:3pc}}@media screen and (min-width:1183px){#scheme-Isolation .post_entry-content{padding:40px}}#scheme-Isolation .post_entry-title,#scheme-Isolation p.post-title{font-size:24px;line-height:40px;margin-top:-7px;margin-bottom:9px}@media screen and (min-width:579px){#scheme-Isolation .post_entry-title,#scheme-Isolation p.post-title{font-size:28px;line-height:3pc;margin-top:-8px;margin-bottom:24px}}@media screen and (min-width:769px){#scheme-Isolation .post_entry-title,#scheme-Isolation p.post-title{margin-bottom:40px}}@media screen and (min-width:1183px){#scheme-Isolation .post_entry-title,#scheme-Isolation p.post-title{font-size:2pc;line-height:56px;margin-top:-10px;margin-bottom:30px}}#scheme-Isolation .post_entry-excerpt{margin-top:0;margin-bottom:1pc;font-size:1pc;line-height:24px;font-weight:300}@media screen and (min-width:579px){#scheme-Isolation .post_entry-excerpt{margin-bottom:24px}}#scheme-Isolation .post_entry-title a{text-decoration:none;color:#333}#scheme-Isolation .post_entry-tags-list{padding:0;margin:0}#scheme-Isolation .post_entry-tags-list-item{list-style:none;float:left;font-size:11px;border:1px solid #c2c2c2;letter-spacing:1px;border-radius:3px;padding-right:6px;padding-left:8px;margin-top:8px;margin-right:8px;text-align:center;-webkit-appearance:none}#scheme-Isolation .post_entry-tags-list-item a{text-decoration:none;color:#adadad}@media screen and (min-width:386px){#scheme-Isolation .post_entry-tags-list{margin-top:0}}@media screen and (min-width:769px){#scheme-Isolation .post_entry-tags-list{margin-top:1pc}}@media screen and (min-width:1183px){#scheme-Isolation .post_entry-tags-list{margin-top:8px}}#scheme-Isolation .post_entry-footer,#scheme-Isolation .post_entry-footer-info{width:100%}@media screen and (min-width:386px){#scheme-Isolation .post_entry-footer{padding:24px;padding-top:0}}@media screen and (min-width:579px){#scheme-Isolation .post_entry-footer{padding:2pc;padding-top:0}}@media screen and (min-width:769px){#scheme-Isolation .post_entry-footer{padding:3pc;padding-top:0}}@media screen and (min-width:1183px){#scheme-Isolation .post_entry-footer{padding:40px;padding-top:0}}#scheme-Isolation .post_entry-footer-border{width:100%;border-top:1px solid #ebebeb}@media screen and (min-width:386px){#scheme-Isolation .post_entry-footer-border{height:24px}}@media screen and (min-width:579px){#scheme-Isolation .post_entry-footer-border{height:2pc}}@media screen and (min-width:769px){#scheme-Isolation .post_entry-footer-border{height:3pc}}@media screen and (min-width:1183px){#scheme-Isolation .post_entry-footer-border{height:40px}}#scheme-Isolation .post_entry-footer-info{color:#c2c2c2;font-size:14px}#scheme-Isolation .post_entry-footer-date{float:left}#scheme-Isolation .post_entry-footer-comment{float:right}#scheme-Isolation .header{position:fixed;z-index:1;padding-top:24px;padding-bottom:9pt;text-align:center}@media screen and (max-width:1183px){#scheme-Isolation .header{position:relative}}#scheme-Isolation .header a{text-decoration:none}@media screen and (min-width:579px){#scheme-Isolation .header{padding-top:2pc;padding-bottom:1pc}}@media screen and (min-width:769px){#scheme-Isolation .header{padding:3pc 3pc 24px}}@media screen and (min-width:1183px){#scheme-Isolation .header{width:328px;margin-right:-328px;text-align:left;padding:114px 40px 40px 0}}#scheme-Isolation .header-copyright{color:#a5b1b6;display:none}@media screen and (min-width:1183px){#scheme-Isolation .header-copyright{display:block;position:absolute;font-size:9pt;letter-spacing:1px;line-height:20px;margin:0;bottom:-50px}}#scheme-Isolation .header-item{float:left;clear:both;margin-right:auto;margin-left:auto;width:auto}@media screen and (max-width:1183px){#scheme-Isolation .header-item{position:relative;left:50%;transform:translateX(-50%)}}#scheme-Isolation .header-title{border-bottom:1px solid #c7ced1;font-size:24px;line-height:36px;padding-bottom:1pc;margin-bottom:1pc}@media screen and (min-width:579px){#scheme-Isolation .header-title{font-size:24px;line-height:40px;padding-bottom:24px;margin-bottom:24px}}#scheme-Isolation .header-title a{color:#252b2d}#scheme-Isolation .mdl-mini-footer{padding:0}#scheme-Isolation .header-slogan{color:#5c6a70;margin-bottom:1pc}@media screen and (min-width:579px){#scheme-Isolation .header-slogan{margin-bottom:24px}}#scheme-Isolation .header-nav{margin-bottom:1pc}@media screen and (min-width:579px){#scheme-Isolation .header-nav{margin-bottom:24px}}@media screen and (max-width:1183px){#scheme-Isolation .header-nav{padding-top:24px;border-top:1px solid #c7ced1}#scheme-Isolation .header-nav span{margin-right:8px;margin-left:8px}#scheme-Isolation .header-nav span:first-child{margin-left:0}#scheme-Isolation .header-nav span:last-child{margin-right:0}}#scheme-Isolation .header-nav span{float:left;width:auto;line-height:24px;text-transform:uppercase;letter-spacing:1px}@media screen and (min-width:1183px){#scheme-Isolation .header-nav span{clear:both}}@media screen and (min-width:1183px){#scheme-Isolation .header-nav-item:first-child{padding-top:24px;border-top:1px solid #c7ced1}}#scheme-Isolation .header-sns_list{margin-top:24px}@media screen and (max-width:1183px){#scheme-Isolation .header-sns_list{margin-top:0;padding-top:24px;border-top:1px solid #c7ced1;margin-bottom:1pc}}#scheme-Isolation .header-sns_list a{padding:0 8px;margin:0 8px}#scheme-Isolation .header-sns_list a:first-child{padding-left:0;margin-left:0}@media screen and (min-width:1183px){#scheme-Isolation .header-sns_list a:first-child{padding-left:0;margin-left:0;padding-top:24px;border-top:1px solid #c7ced1}}#scheme-Isolation .material-layout .material-index>.material-nav,#scheme-Isolation .material-layout .material-post>.material-nav{display:flex;margin:10px 15px;color:#fff;font-weight:500;flex-direction:row;justify-content:space-between;align-items:center}#scheme-Isolation .page-number{display:none}#scheme-Isolation .material-nav .page-number.current{display:block;color:#666;text-align:center;margin:0 auto}#scheme-Isolation .material-layout .material-index>.material-nav .mdl-button,#scheme-Isolation .material-layout .material-post>.material-nav .mdl-button{background-color:#fff;color:rgba(0,0,0,.54)}#scheme-Isolation #post-content{width:100%}@media screen and (min-width:386px){#scheme-Isolation #post-content{padding:24px}}@media screen and (min-width:579px){#scheme-Isolation #post-content{padding:2pc}}@media screen and (min-width:769px){#scheme-Isolation #post-content{padding:3pc}}@media screen and (min-width:1183px){#scheme-Isolation #post-content{padding:40px}}#scheme-Isolation .material-post .mdl-card{width:100%;border-radius:2px}#scheme-Isolation .material-nav a{text-decoration:none}#scheme-Isolation .post-content_wrapper{width:100%;margin:0 auto;max-width:275px}@media screen and (min-width:386px){#scheme-Isolation .post-content_wrapper{max-width:436px}}@media screen and (min-width:579px){#scheme-Isolation .post-content_wrapper{max-width:530px}}@media screen and (min-width:769px){#scheme-Isolation .post-content_wrapper{max-width:606px}}@media screen and (min-width:1183px){#scheme-Isolation .post-content_wrapper{max-width:40pc}}.st-default-search-input,.st-ui-search-input{border:0!important;padding-top:0!important;background:none!important}.md{line-height:inherit;vertical-align:bottom}.headline,.subhead{font-weight:300;line-height:1.1;color:#212121;text-transform:inherit;letter-spacing:inherit}.sidebar .sidebar-toggle:after,.sidebar:after{clear:both}*,:after,:before{box-sizing:border-box}.sidebar-material-icons{margin-right:2pc;width:24px;height:24px;top:15%;position:relative}.sidebar-indent-left1pc-element{margin-left:1pc}.sidebar-overlay{visibility:hidden;position:fixed;top:0;left:0;right:0;bottom:0;opacity:0;background:#000;z-index:9;-webkit-transition:visibility 0 linear .4s,opacity .4s cubic-bezier(.4,0,.2,1);transition:visibility 0 linear .4s,opacity .4s cubic-bezier(.4,0,.2,1);-webkit-transform:translateZ(0);transform:translateZ(0)}.sidebar-overlay.active{opacity:.5;visibility:visible;-webkit-transition-delay:0;transition-delay:0}.top-bar{height:25px}.headline{font-size:24px}.subhead{font-size:1pc}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-menu{display:none}.sidebar{vertical-align:top;position:relative;display:block;min-height:100%;overflow-y:auto;overflow-x:hidden;border:none;-webkit-transition:all .5s cubic-bezier(.55,0,.1,1);transition:all .5s cubic-bezier(.55,0,.1,1)}.sidebar .sidebar-toggle:after,.sidebar .sidebar-toggle:before,.sidebar:after,.sidebar:before{content:' ';display:table}#sidebar{z-index:10}#sidebar-first-li a{margin-top:8px}.sidebar-footer-text-div{text-align:left;text-transform:none}.sidebar::-webkit-scrollbar-track{border-radius:2px}.sidebar::-webkit-scrollbar{width:5px;background-color:#f7f7f7}.sidebar::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#bfbfbf}.sidebar .sidebar-header{height:158.13px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sidebar .sidebar-header,.sidebar .sidebar-toggle{position:relative;-o-transition:all .2s ease-in-out}.sidebar .sidebar-header.header-cover{background-repeat:no-repeat;background-position:center center;background-size:100%}.sidebar .sidebar-header:hover .sidebar-toggle{opacity:1}.sidebar .sidebar-toggle{float:right;margin:1pc;padding:0;background-image:none;border:none;height:40px;width:40px;font-size:20px;opacity:.7;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sidebar .icon-material-sidebar-arrow:before{content:'\e610'}.sidebar .sidebar-image img{width:54px;height:54px;margin:1pc;border-radius:50%;background-color:hsla(0,0%,100%,.2)}.sidebar .sidebar-brand,.sidebar .sidebar-image img{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sidebar .sidebar-brand{position:absolute;bottom:0;left:0;right:0;display:block;height:3pc;line-height:3pc;padding:0 56px 0 1pc;clear:both;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sidebar .sidebar-brand:focus,.sidebar .sidebar-brand:hover{box-shadow:none;outline:0;text-decoration:none}.sidebar .sidebar-brand .caret{position:absolute;right:24px;top:24px}.sidebar .hot_tags-count .sidebar .sidebar_archives-count,.sidebar .sidebar-brand .sidebar-badge{position:absolute;right:1pc;top:9pt}.sidebar .hot_tags-count,.sidebar .sidebar-badge,.sidebar .sidebar_archives-count{display:inline-block;min-width:24px;height:24px;line-height:24px;padding:0 3px;font-size:10px;text-align:center;white-space:nowrap;vertical-align:baseline}.sidebar .sidebar-badge.badge-circle{border-radius:50%}.sidebar .sidebar-divider,.sidebar .sidebar-nav .divider{position:relative;display:block;height:1px;margin:8px 0;padding:0;overflow:hidden}.sidebar .sidebar-text{display:block;padding:0 56px 0 1pc;transition:all .2s ease-in-out}.sidebar .sidebar-nav li a,.sidebar .sidebar-text{overflow:hidden;font-weight:400;white-space:nowrap;height:3pc;line-height:3pc;text-decoration:none;clear:both;text-overflow:ellipsis;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out}.sidebar .sidebar-text:focus,.sidebar .sidebar-text:hover{box-shadow:none;outline:0}.sidebar .sidebar-text .caret{position:absolute;right:24px;top:24px}.sidebar .hot_tags-count,.sidebar .sidebar-text .sidebar-badge,.sidebar .sidebar_archives-count{position:absolute;right:1pc;top:9pt}.sidebar .sidebar-icon{display:inline-block;margin-right:1pc;min-width:40px;width:40px;text-align:left;font-size:20px}.sidebar .sidebar-icon:after,.sidebar .sidebar-icon:before{vertical-align:middle}.sidebar .sidebar-nav{margin:0;padding:0}.sidebar .sidebar-nav li{position:relative;list-style-type:none}.sidebar .sidebar-nav li a{position:relative;cursor:pointer;user-select:none;display:block;padding:0 56px 0 1pc;transition:all .2s ease-in-out}.sidebar .sidebar-nav li a:focus,.sidebar .sidebar-nav li a:hover{box-shadow:none;outline:0}.sidebar .sidebar-nav li a .caret{position:absolute;right:24px;top:24px;transition:.3s}.sidebar .sidebar-nav li.open a .caret{transform:rotate(-180deg)}.hot_tags-count,.sidebar .sidebar-nav li a .sidebar-badge,.sidebar_archives-count{position:absolute;right:1pc;top:9pt}.sidebar .sidebar-nav li a:hover{background:0 0}.sidebar .sidebar-nav .dropdown-menu{position:relative;width:100%;margin:0;padding:0;border:none;border-radius:0;box-shadow:none}.sidebar-colored{background-color:#fff}.sidebar-colored .sidebar-header{background-color:#e91e63}.sidebar-colored .sidebar-toggle{color:#f5f5f5;background-color:transparent}.sidebar-colored .sidebar-brand{color:#e0e0e0;background-color:transparent}.sidebar-colored .sidebar-brand:focus,.sidebar-colored .sidebar-brand:hover{color:#f5f5f5;background-color:rgba(0,0,0,.1)}.hot_tags-count,.sidebar-colored .sidebar-badge,.sidebar_archives-count{color:#fff;background-color:#ec407a;text-shadow:1px 1px 3px #444}.sidebar-colored .sidebar-divider,.sidebar-colored .sidebar-nav .divider{background-color:#bdbdbd}.sidebar-colored .sidebar-text{color:#212121}.sidebar-colored .sidebar-nav li>a{color:#212121;background-color:transparent}.sidebar-colored .sidebar-nav li>a i{color:#757575}.sidebar-colored .sidebar-nav li:hover>a,.sidebar-colored .sidebar-nav li>a:hover{color:#e91e63;background-color:#e0e0e0}.sidebar-colored .sidebar-nav li:hover>a i,.sidebar-colored .sidebar-nav li>a:hover i{color:#f06292}.sidebar-colored .sidebar-nav li:focus>a,.sidebar-colored .sidebar-nav li>a:focus{color:#212121;background-color:transparent}.sidebar-colored .sidebar-nav li:focus>a i,.sidebar-colored .sidebar-nav li>a:focus i{color:#f06292}.sidebar-colored .sidebar-nav>.open>a,.sidebar-colored .sidebar-nav>.open>a:focus,.sidebar-colored .sidebar-nav>.open>a:hover{color:#e91e63;background-color:#e0e0e0}.sidebar-colored .sidebar-nav>.active>a,.sidebar-colored .sidebar-nav>.active>a:focus,.sidebar-colored .sidebar-nav>.active>a:hover{color:#212121;background-color:#f5f5f5}.sidebar-colored .sidebar-nav>.disabled>a,.sidebar-colored .sidebar-nav>.disabled>a:focus,.sidebar-colored .sidebar-nav>.disabled>a:hover{color:#e0e0e0;background-color:transparent}.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu{background-color:#e0e0e0}.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>li>a:focus{background-color:#e0e0e0;color:#e91e63}.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>li>a:hover{background-color:#cecece;color:#e91e63}.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>.active>a,.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>.active>a:focus,.sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>.active>a:hover{color:#212121;background-color:#f5f5f5}.sidebar{width:0;-webkit-transform:translate3d(-280px,0,0);transform:translate3d(-280px,0,0)}.sidebar.open{min-width:280px;width:280px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.sidebar-fixed-left{position:fixed;top:0;bottom:0;z-index:10;left:0;box-shadow:2px 0 15px rgba(0,0,0,.35);-webkit-box-shadow:2px 0 15px rgba(0,0,0,.35)}@media (max-width:840px){.sidebar.open{min-width:15pc;width:15pc}.sidebar .sidebar-header{height:149.34px}.sidebar .sidebar-image img{width:44px;height:44px}}#scheme-Paradox #sidebar-main{min-height:calc(100% - 75pt);margin-bottom:55px}#scheme-Paradox #footer-image{padding-left:8px;position:relative}.MD-burger-icon{margin:0 0 0 1pc;cursor:pointer;border:none;background:0 0;outline:0;position:fixed;top:2pc;z-index:8;height:2pc;width:2pc}.MD-burger-layer{width:20px;background:#eee;position:relative;-webkit-animation-duration:.3s;animation-duration:.3s;animation-timing-function:ease-in-out}.MD-burger-layer,.MD-burger-layer:after,.MD-burger-layer:before{display:block;height:2px;-webkit-animation-timing-function:ease-in-out}.MD-burger-layer:after,.MD-burger-layer:before{width:inherit;position:absolute;background:inherit;left:0;content:'';-webkit-animation-duration:.3s;animation-duration:.3s;animation-timing-function:ease-in-out}.MD-burger-layer:before{bottom:5px}.MD-burger-layer:after{top:5px}.MD-burger-arrow{-webkit-animation-name:MD-burger-icon-arrow;animation-name:MD-burger-icon-arrow}.MD-burger-arrow,.MD-burger-arrow:before{-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.MD-burger-arrow:before{-webkit-animation-name:MD-burger-icon-before-arrow;animation-name:MD-burger-icon-before-arrow}.MD-burger-arrow:after{-webkit-animation-name:MD-burger-icon-after-arrow;animation-name:MD-burger-icon-after-arrow;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.MD-burger-line{-webkit-animation-name:MD-burger-icon-line;animation-name:MD-burger-icon-line}.MD-burger-line:before{-webkit-animation-name:MD-burger-icon-before-line;animation-name:MD-burger-icon-before-line}.MD-burger-line:after{-webkit-animation-name:MD-burger-icon-after-line;animation-name:MD-burger-icon-after-line}@keyframes MD-burger-icon-arrow{to{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}@keyframes MD-burger-icon-before-arrow{to{-webkit-transform:rotate(45deg);transform:rotate(45deg);margin:3% 37%;width:75%}}@keyframes MD-burger-icon-after-arrow{to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin:3% 37%;width:75%}}@keyframes MD-burger-icon-line{0%{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}}@keyframes MD-burger-icon-before-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);margin:3% 37%;width:75%}}@keyframes MD-burger-icon-after-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin:3% 37%;width:75%}}.post-toc{width:auto;word-wrap:normal;white-space:nowrap;padding:0;padding:0 1pc}.post-toc,.post-toc-child{list-style:none}.post-toc a{color:#727272;text-decoration:none}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;font-feature-settings:liga}#back-to-top{display:block;position:fixed;bottom:24px;right:-41px;transition:background-color .18s cubic-bezier(.6,0,.1,1),box-shadow .18s cubic-bezier(.6,0,.1,1),transform .18s cubic-bezier(.6,0,.1,1);z-index:8}#back-to-top.btt-visible{transform:translate(-64px, 0)}#back-to-top.btt-docked{position:absolute;bottom:75pt}@media screen and (max-width:840px){#back-to-top{bottom:24px}#back-to-top.btt-visible{transform:translate(-60px, 0)}#back-to-top.btt-docked{position:absolute;bottom:180px}}.toTop{display:block;width:40px;height:40px;border-radius:50%;text-align:center;color:#fff;background:#00bcd4;box-shadow:0 0 3px 0 rgba(0,0,0,.12),0 3px 3px 0 rgba(0,0,0,.24);cursor:pointer;-webkit-transition:all .1s ease-out;transition:all .1s ease-out;position:relative;overflow:hidden}.toTop:hover{box-shadow:0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28)}.toTop i{font-size:24px;margin:8px}.footer_top-i{width:24px;height:24px}@keyframes status-active{0%{transform:rotate(0)}to{transform:rotate(135deg)}}@keyframes status-inactive{0%{transform:rotate(135deg)}to{transform:rotate(0)}}@keyframes zoomIn{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes load{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}50%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:1}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@media only screen and (min-width:300px){.chat{width:200px}}@media only screen and (min-width:480px){.chat{width:300px}.chat_field{width:65%}}@media only screen and (min-width:840px){.chat{width:300px}.chat_field{width:65%}}@media only screen and (min-width:1024px){.chat{width:25pc}.chat_field{width:65%}}.ink{display:block;position:absolute;background:rgba(38,50,56,.4);border-radius:100%;-moz-transform:scale(0);-ms-transform:scale(0);webkit-transform:scale(0);transform:scale(0)}.ink.animate{animation:ripple .5s ease-in-out}@keyframes ripple{to{opacity:0;-moz-transform:scale(5);-ms-transform:scale(5);webkit-transform:scale(5);transform:scale(5)}}-#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:10;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:75pt;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translate(0, -4px);transform:rotate(3deg) translate(0, -4px)}#nprogress .spinner{display:block;position:fixed;z-index:10;top:15px;right:15px}.fa,.fa-stack{display:inline-block}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:2px solid transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes nprogress-spinner{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.footer-sns-facebook{background:url('data:image/svg+xml;utf8,')}.footer-sns-gplus{background:url('data:image/svg+xml;utf8,')}.footer-sns-twitter{background:url('data:image/svg+xml;utf8,')}.footer-sns-weibo{background:url('data:image/svg+xml;utf8,')}.footer-sns-instagram{background:url('data:image/svg+xml;utf8,')}.footer-sns-tumblr{background:url('data:image/svg+xml;utf8,')}.footer-sns-github{background:url('data:image/svg+xml;utf8,')}.footer-sns-linkedin{background:url('data:image/svg+xml;utf8,')}.footer-sns-zhihu{background:url('data:image/svg+xml;utf8,')}.footer-sns-bilibili{background:url('data:image/svg+xml;utf8,')}.footer-sns-telegram{background:url('data:image/svg+xml;utf8,')}.footer-sns-v2ex{background:url('data:image/svg+xml;utf8,')} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/css/uc.css b/libs/hexo-theme-material/1.5.2/source/css/uc.css new file mode 100644 index 000000000..0f217c908 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/css/uc.css @@ -0,0 +1,57 @@ +#scheme-Paradox .mdl-grid{ + display: block !important; +} + +#scheme-Paradox .material-layout .mdl-card{ + margin-left: 0; + margin-right: 0; + width: 100%; +} + +#scheme-Paradox .material-layout .mdl-card{ + display: block; +} + +#scheme-Paradox .material-layout .mdl-card__media{ + display: block; +} + +#scheme-Paradox .index-top-block, +#scheme-Paradox footer{ + display: none !important; +} + +#scheme-Paradox .material-index{ + padding-top: 80px !important; +} + +#scheme-Paradox .material-layout .mdl-card__media{ + height: 223px; +} + +#scheme-Paradox .post_entry-content { + display: block !important; +} + +#scheme-Paradox .material-layout .meta{ + display: block !important; +} + +#scheme-Paradox .article-headline-p{ + position: relative; + top: 140px; +} + +#scheme-Paradox #author-avatar{ + width: 44px; + height: 44px; + float: left; +} + +.fabs{ + width: 56px; +} + +#uc_recommend_ad{ + display: none !important; +} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/FontAwesome.otf b/libs/hexo-theme-material/1.5.2/source/fonts/FontAwesome.otf new file mode 100644 index 000000000..401ec0f36 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/FontAwesome.otf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.eot b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.eot new file mode 100644 index 000000000..70508ebab Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.eot differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.ttf new file mode 100644 index 000000000..7015564ad Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.woff b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.woff new file mode 100644 index 000000000..b648a3eea Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.woff differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.woff2 b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.woff2 new file mode 100644 index 000000000..9fa211252 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/MaterialIcons-Regular.woff2 differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Black.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Black.ttf new file mode 100644 index 000000000..991f8310d Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Black.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Bold.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Bold.ttf new file mode 100644 index 000000000..8869666f2 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Bold.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Light.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Light.ttf new file mode 100644 index 000000000..e19094a88 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Light.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Medium.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Medium.ttf new file mode 100644 index 000000000..6a9513371 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Medium.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Regular.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Regular.ttf new file mode 100644 index 000000000..ddee473e0 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Regular.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Thin.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Thin.ttf new file mode 100644 index 000000000..740a1bc24 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/Roboto-Thin.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.eot b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.eot new file mode 100644 index 000000000..e9f60ca95 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.eot differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.svg b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.svg new file mode 100644 index 000000000..855c845e5 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.ttf b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.ttf new file mode 100644 index 000000000..35acda2fa Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.ttf differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.woff b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.woff new file mode 100644 index 000000000..400014a4b Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.woff differ diff --git a/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.woff2 b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.woff2 new file mode 100644 index 000000000..4d13fc604 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/fonts/fontawesome-webfont.woff2 differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/avatar.png b/libs/hexo-theme-material/1.5.2/source/img/avatar.png new file mode 100644 index 000000000..fa09f6046 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/avatar.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/bg.png b/libs/hexo-theme-material/1.5.2/source/img/bg.png new file mode 100644 index 000000000..632e86d8b Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/bg.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/browserstack_logo.png b/libs/hexo-theme-material/1.5.2/source/img/browserstack_logo.png new file mode 100644 index 000000000..0be37e77e Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/browserstack_logo.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/daily_pic.png b/libs/hexo-theme-material/1.5.2/source/img/daily_pic.png new file mode 100644 index 000000000..c28a991a6 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/daily_pic.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/favicon.png b/libs/hexo-theme-material/1.5.2/source/img/favicon.png new file mode 100644 index 000000000..62036bc79 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/favicon.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-bilibili.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-bilibili.svg new file mode 100644 index 000000000..a5ba3210a --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-bilibili.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-facebook.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-facebook.svg new file mode 100644 index 000000000..0b3b92ce6 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-github.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-github.svg new file mode 100644 index 000000000..d5948fa9a --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-gplus.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-gplus.svg new file mode 100644 index 000000000..8891eead7 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-gplus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-instagram.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-instagram.svg new file mode 100644 index 000000000..1da22a491 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-linkedin.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-linkedin.svg new file mode 100644 index 000000000..d2347ac01 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-telegram.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-telegram.svg new file mode 100644 index 000000000..583a73097 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-tumblr.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-tumblr.svg new file mode 100644 index 000000000..6c1fb81bc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-twitter.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-twitter.svg new file mode 100644 index 000000000..47191a5cd --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-v2ex.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-v2ex.svg new file mode 100644 index 000000000..5c6ab7e8f --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-v2ex.svg @@ -0,0 +1 @@ + diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-weibo.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-weibo.svg new file mode 100644 index 000000000..59504cf9d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-zhihu.svg b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-zhihu.svg new file mode 100644 index 000000000..588acbed8 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/footer/footer_ico-zhihu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/gallery/arrow.svg b/libs/hexo-theme-material/1.5.2/source/img/gallery/arrow.svg new file mode 100644 index 000000000..5f0687c88 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/gallery/arrow.svg @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/gallery/close.svg b/libs/hexo-theme-material/1.5.2/source/img/gallery/close.svg new file mode 100644 index 000000000..43e5d21f1 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/gallery/close.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/gallery/spinner.svg b/libs/hexo-theme-material/1.5.2/source/img/gallery/spinner.svg new file mode 100644 index 000000000..789bee6dc --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/gallery/spinner.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/img/logo.png b/libs/hexo-theme-material/1.5.2/source/img/logo.png new file mode 100644 index 000000000..62036bc79 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/logo.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-1.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-1.png new file mode 100644 index 000000000..df67677e9 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-1.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-10.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-10.png new file mode 100644 index 000000000..b08eeef30 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-10.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-11.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-11.png new file mode 100644 index 000000000..49afebec3 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-11.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-12.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-12.png new file mode 100644 index 000000000..4b4d69445 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-12.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-13.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-13.png new file mode 100644 index 000000000..229896413 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-13.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-14.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-14.png new file mode 100644 index 000000000..6dbaf872a Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-14.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-15.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-15.png new file mode 100644 index 000000000..33c0cfd90 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-15.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-16.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-16.png new file mode 100644 index 000000000..0fe201bc5 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-16.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-17.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-17.png new file mode 100644 index 000000000..cf7139eda Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-17.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-18.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-18.png new file mode 100644 index 000000000..01742e3d4 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-18.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-19.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-19.png new file mode 100644 index 000000000..2fecb7950 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-19.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-2.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-2.png new file mode 100644 index 000000000..49f0a5f31 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-2.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-3.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-3.png new file mode 100644 index 000000000..a4a7cca7b Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-3.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-4.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-4.png new file mode 100644 index 000000000..aa849aa95 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-4.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-5.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-5.png new file mode 100644 index 000000000..6c2c58bc9 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-5.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-6.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-6.png new file mode 100644 index 000000000..a3f2a1f6c Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-6.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-7.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-7.png new file mode 100644 index 000000000..1919fcb09 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-7.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-8.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-8.png new file mode 100644 index 000000000..18f7da344 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-8.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/random/material-9.png b/libs/hexo-theme-material/1.5.2/source/img/random/material-9.png new file mode 100644 index 000000000..e2779f4de Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/random/material-9.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/sidebar_header.png b/libs/hexo-theme-material/1.5.2/source/img/sidebar_header.png new file mode 100644 index 000000000..80472c0c4 Binary files /dev/null and b/libs/hexo-theme-material/1.5.2/source/img/sidebar_header.png differ diff --git a/libs/hexo-theme-material/1.5.2/source/img/upyun_logo.svg b/libs/hexo-theme-material/1.5.2/source/img/upyun_logo.svg new file mode 100644 index 000000000..59b062df1 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/img/upyun_logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/js/MathJax.js b/libs/hexo-theme-material/1.5.2/source/js/MathJax.js new file mode 100644 index 000000000..284c04147 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/js/MathJax.js @@ -0,0 +1,19 @@ +/* + * /MathJax.js + * + * Copyright (c) 2009-2016 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +if(document.getElementById&&document.childNodes&&document.createElement){if(!(window.MathJax&&MathJax.Hub)){if(window.MathJax){window.MathJax={AuthorConfig:window.MathJax}}else{window.MathJax={}}MathJax.isPacked=true;MathJax.version="2.7.0";MathJax.fileversion="2.7.0";MathJax.cdnVersion="2.7.0";MathJax.cdnFileVersions={};(function(d){var b=window[d];if(!b){b=window[d]={}}var e=[];var c=function(f){var g=f.constructor;if(!g){g=function(){}}for(var h in f){if(h!=="constructor"&&f.hasOwnProperty(h)){g[h]=f[h]}}return g};var a=function(){return function(){return arguments.callee.Init.call(this,arguments)}};b.Object=c({constructor:a(),Subclass:function(f,h){var g=a();g.SUPER=this;g.Init=this.Init;g.Subclass=this.Subclass;g.Augment=this.Augment;g.protoFunction=this.protoFunction;g.can=this.can;g.has=this.has;g.isa=this.isa;g.prototype=new this(e);g.prototype.constructor=g;g.Augment(f,h);return g},Init:function(f){var g=this;if(f.length===1&&f[0]===e){return g}if(!(g instanceof f.callee)){g=new f.callee(e)}return g.Init.apply(g,f)||g},Augment:function(f,g){var h;if(f!=null){for(h in f){if(f.hasOwnProperty(h)){this.protoFunction(h,f[h])}}if(f.toString!==this.prototype.toString&&f.toString!=={}.toString){this.protoFunction("toString",f.toString)}}if(g!=null){for(h in g){if(g.hasOwnProperty(h)){this[h]=g[h]}}}return this},protoFunction:function(g,f){this.prototype[g]=f;if(typeof f==="function"){f.SUPER=this.SUPER.prototype}},prototype:{Init:function(){},SUPER:function(f){return f.callee.SUPER},can:function(f){return typeof(this[f])==="function"},has:function(f){return typeof(this[f])!=="undefined"},isa:function(f){return(f instanceof Object)&&(this instanceof f)}},can:function(f){return this.prototype.can.call(this,f)},has:function(f){return this.prototype.has.call(this,f)},isa:function(g){var f=this;while(f){if(f===g){return true}else{f=f.SUPER}}return false},SimpleSUPER:c({constructor:function(f){return this.SimpleSUPER.define(f)},define:function(f){var h={};if(f!=null){for(var g in f){if(f.hasOwnProperty(g)){h[g]=this.wrap(g,f[g])}}if(f.toString!==this.prototype.toString&&f.toString!=={}.toString){h.toString=this.wrap("toString",f.toString)}}return h},wrap:function(i,h){if(typeof(h)!=="function"||!h.toString().match(/\.\s*SUPER\s*\(/)){return h}var g=function(){this.SUPER=g.SUPER[i];try{var f=h.apply(this,arguments)}catch(j){delete this.SUPER;throw j}delete this.SUPER;return f};g.toString=function(){return h.toString.apply(h,arguments)};return g}})});b.Object.isArray=Array.isArray||function(f){return Object.prototype.toString.call(f)==="[object Array]"};b.Object.Array=Array})("MathJax");(function(BASENAME){var BASE=window[BASENAME];if(!BASE){BASE=window[BASENAME]={}}var isArray=BASE.Object.isArray;var CALLBACK=function(data){var cb=function(){return arguments.callee.execute.apply(arguments.callee,arguments)};for(var id in CALLBACK.prototype){if(CALLBACK.prototype.hasOwnProperty(id)){if(typeof(data[id])!=="undefined"){cb[id]=data[id]}else{cb[id]=CALLBACK.prototype[id]}}}cb.toString=CALLBACK.prototype.toString;return cb};CALLBACK.prototype={isCallback:true,hook:function(){},data:[],object:window,execute:function(){if(!this.called||this.autoReset){this.called=!this.autoReset;return this.hook.apply(this.object,this.data.concat([].slice.call(arguments,0)))}},reset:function(){delete this.called},toString:function(){return this.hook.toString.apply(this.hook,arguments)}};var ISCALLBACK=function(f){return(typeof(f)==="function"&&f.isCallback)};var EVAL=function(code){return eval.call(window,code)};var TESTEVAL=function(){EVAL("var __TeSt_VaR__ = 1");if(window.__TeSt_VaR__){try{delete window.__TeSt_VaR__}catch(error){window.__TeSt_VaR__=null}}else{if(window.execScript){EVAL=function(code){BASE.__code=code;code="try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}";window.execScript(code);var result=BASE.__result;delete BASE.__result;delete BASE.__code;if(result instanceof Error){throw result}return result}}else{EVAL=function(code){BASE.__code=code;code="try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}";var head=(document.getElementsByTagName("head"))[0];if(!head){head=document.body}var script=document.createElement("script");script.appendChild(document.createTextNode(code));head.appendChild(script);head.removeChild(script);var result=BASE.__result;delete BASE.__result;delete BASE.__code;if(result instanceof Error){throw result}return result}}}TESTEVAL=null};var USING=function(args,i){if(arguments.length>1){if(arguments.length===2&&!(typeof arguments[0]==="function")&&arguments[0] instanceof Object&&typeof arguments[1]==="number"){args=[].slice.call(args,i)}else{args=[].slice.call(arguments,0)}}if(isArray(args)&&args.length===1){args=args[0]}if(typeof args==="function"){if(args.execute===CALLBACK.prototype.execute){return args}return CALLBACK({hook:args})}else{if(isArray(args)){if(typeof(args[0])==="string"&&args[1] instanceof Object&&typeof args[1][args[0]]==="function"){return CALLBACK({hook:args[1][args[0]],object:args[1],data:args.slice(2)})}else{if(typeof args[0]==="function"){return CALLBACK({hook:args[0],data:args.slice(1)})}else{if(typeof args[1]==="function"){return CALLBACK({hook:args[1],object:args[0],data:args.slice(2)})}}}}else{if(typeof(args)==="string"){if(TESTEVAL){TESTEVAL()}return CALLBACK({hook:EVAL,data:[args]})}else{if(args instanceof Object){return CALLBACK(args)}else{if(typeof(args)==="undefined"){return CALLBACK({})}}}}}throw Error("Can't make callback from given data")};var DELAY=function(time,callback){callback=USING(callback);callback.timeout=setTimeout(callback,time);return callback};var WAITFOR=function(callback,signal){callback=USING(callback);if(!callback.called){WAITSIGNAL(callback,signal);signal.pending++}};var WAITEXECUTE=function(){var signals=this.signal;delete this.signal;this.execute=this.oldExecute;delete this.oldExecute;var result=this.execute.apply(this,arguments);if(ISCALLBACK(result)&&!result.called){WAITSIGNAL(result,signals)}else{for(var i=0,m=signals.length;i0&&priority=0;i--){this.hooks.splice(i,1)}this.remove=[]}});var EXECUTEHOOKS=function(hooks,data,reset){if(!hooks){return null}if(!isArray(hooks)){hooks=[hooks]}if(!isArray(data)){data=(data==null?[]:[data])}var handler=HOOKS(reset);for(var i=0,m=hooks.length;ig){g=document.styleSheets.length}if(!i){i=document.head||((document.getElementsByTagName("head"))[0]);if(!i){i=document.body}}return i};var f=[];var c=function(){for(var k=0,j=f.length;k=this.timeout){i(this.STATUS.ERROR);return 1}return 0},file:function(j,i){if(i<0){a.Ajax.loadTimeout(j)}else{a.Ajax.loadComplete(j)}},execute:function(){this.hook.call(this.object,this,this.data[0],this.data[1])},checkSafari2:function(i,j,k){if(i.time(k)){return}if(document.styleSheets.length>j&&document.styleSheets[j].cssRules&&document.styleSheets[j].cssRules.length){k(i.STATUS.OK)}else{setTimeout(i,i.delay)}},checkLength:function(i,l,n){if(i.time(n)){return}var m=0;var j=(l.sheet||l.styleSheet);try{if((j.cssRules||j.rules||[]).length>0){m=1}}catch(k){if(k.message.match(/protected variable|restricted URI/)){m=1}else{if(k.message.match(/Security error/)){m=1}}}if(m){setTimeout(a.Callback([n,i.STATUS.OK]),0)}else{setTimeout(i,i.delay)}}},loadComplete:function(i){i=this.fileURL(i);var j=this.loading[i];if(j&&!j.preloaded){a.Message.Clear(j.message);clearTimeout(j.timeout);if(j.script){if(f.length===0){setTimeout(c,0)}f.push(j.script)}this.loaded[i]=j.status;delete this.loading[i];this.addHook(i,j.callback)}else{if(j){delete this.loading[i]}this.loaded[i]=this.STATUS.OK;j={status:this.STATUS.OK}}if(!this.loadHooks[i]){return null}return this.loadHooks[i].Execute(j.status)},loadTimeout:function(i){if(this.loading[i].timeout){clearTimeout(this.loading[i].timeout)}this.loading[i].status=this.STATUS.ERROR;this.loadError(i);this.loadComplete(i)},loadError:function(i){a.Message.Set(["LoadFailed","File failed to load: %1",i],null,2000);a.Hub.signal.Post(["file load error",i])},Styles:function(k,l){var i=this.StyleString(k);if(i===""){l=a.Callback(l);l()}else{var j=document.createElement("style");j.type="text/css";this.head=h(this.head);this.head.appendChild(j);if(j.styleSheet&&typeof(j.styleSheet.cssText)!=="undefined"){j.styleSheet.cssText=i}else{j.appendChild(document.createTextNode(i))}l=this.timer.create.call(this,l,j)}return l},StyleString:function(n){if(typeof(n)==="string"){return n}var k="",o,m;for(o in n){if(n.hasOwnProperty(o)){if(typeof n[o]==="string"){k+=o+" {"+n[o]+"}\n"}else{if(a.Object.isArray(n[o])){for(var l=0;l="0"&&q<="9"){f[j]=p[f[j]-1];if(typeof f[j]==="number"){f[j]=this.number(f[j])}}else{if(q==="{"){q=f[j].substr(1);if(q>="0"&&q<="9"){f[j]=p[f[j].substr(1,f[j].length-2)-1];if(typeof f[j]==="number"){f[j]=this.number(f[j])}}else{var k=f[j].match(/^\{([a-z]+):%(\d+)\|(.*)\}$/);if(k){if(k[1]==="plural"){var d=p[k[2]-1];if(typeof d==="undefined"){f[j]="???"}else{d=this.plural(d)-1;var h=k[3].replace(/(^|[^%])(%%)*%\|/g,"$1$2%\uEFEF").split(/\|/);if(d>=0&&d=3){c.push([f[0],f[1],this.processSnippet(g,f[2])])}else{c.push(e[d])}}}}else{c.push(e[d])}}return c},markdownPattern:/(%.)|(\*{1,3})((?:%.|.)+?)\2|(`+)((?:%.|.)+?)\4|\[((?:%.|.)+?)\]\(([^\s\)]+)\)/,processMarkdown:function(b,h,d){var j=[],e;var c=b.split(this.markdownPattern);var g=c[0];for(var f=1,a=c.length;f1?d[1]:""));f=null}if(e&&(!b.preJax||d)){c.nodeValue=c.nodeValue.replace(b.postJax,(e.length>1?e[1]:""))}if(f&&!f.nodeValue.match(/\S/)){f=f.previousSibling}}if(b.preRemoveClass&&f&&f.className===b.preRemoveClass){a.MathJax.preview=f}a.MathJax.checked=1},processInput:function(a){var b,i=MathJax.ElementJax.STATE;var h,e,d=a.scripts.length;try{while(a.ithis.processUpdateTime&&a.i1){d.jax[a.outputJax].push(b)}b.MathJax.state=c.OUTPUT},prepareOutput:function(c,f){while(c.jthis.processUpdateTime&&h.i=0;q--){if((b[q].src||"").match(f)){s.script=b[q].innerHTML;if(RegExp.$2){var t=RegExp.$2.substr(1).split(/\&/);for(var p=0,l=t.length;p=parseInt(y[z])}}return true},Select:function(j){var i=j[d.Browser];if(i){return i(d.Browser)}return null}};var e=k.replace(/^Mozilla\/(\d+\.)+\d+ /,"").replace(/[a-z][-a-z0-9._: ]+\/\d+[^ ]*-[^ ]*\.([a-z][a-z])?\d+ /i,"").replace(/Gentoo |Ubuntu\/(\d+\.)*\d+ (\([^)]*\) )?/,"");d.Browser=d.Insert(d.Insert(new String("Unknown"),{version:"0.0"}),a);for(var v in a){if(a.hasOwnProperty(v)){if(a[v]&&v.substr(0,2)==="is"){v=v.slice(2);if(v==="Mac"||v==="PC"){continue}d.Browser=d.Insert(new String(v),a);var r=new RegExp(".*(Version/| Trident/.*; rv:)((?:\\d+\\.)+\\d+)|.*("+v+")"+(v=="MSIE"?" ":"/")+"((?:\\d+\\.)*\\d+)|(?:^|\\(| )([a-z][-a-z0-9._: ]+|(?:Apple)?WebKit)/((?:\\d+\\.)+\\d+)");var u=r.exec(e)||["","","","unknown","0.0"];d.Browser.name=(u[1]!=""?v:(u[3]||u[5]));d.Browser.version=u[2]||u[4]||u[6];break}}}try{d.Browser.Select({Safari:function(j){var i=parseInt((String(j.version).split("."))[0]);if(i>85){j.webkit=j.version}if(i>=538){j.version="8.0"}else{if(i>=537){j.version="7.0"}else{if(i>=536){j.version="6.0"}else{if(i>=534){j.version="5.1"}else{if(i>=533){j.version="5.0"}else{if(i>=526){j.version="4.0"}else{if(i>=525){j.version="3.1"}else{if(i>500){j.version="3.0"}else{if(i>400){j.version="2.0"}else{if(i>85){j.version="1.0"}}}}}}}}}}j.webkit=(navigator.appVersion.match(/WebKit\/(\d+)\./))[1];j.isMobile=(navigator.appVersion.match(/Mobile/i)!=null);j.noContextMenu=j.isMobile},Firefox:function(j){if((j.version==="0.0"||k.match(/Firefox/)==null)&&navigator.product==="Gecko"){var m=k.match(/[\/ ]rv:(\d+\.\d.*?)[\) ]/);if(m){j.version=m[1]}else{var i=(navigator.buildID||navigator.productSub||"0").substr(0,8);if(i>="20111220"){j.version="9.0"}else{if(i>="20111120"){j.version="8.0"}else{if(i>="20110927"){j.version="7.0"}else{if(i>="20110816"){j.version="6.0"}else{if(i>="20110621"){j.version="5.0"}else{if(i>="20110320"){j.version="4.0"}else{if(i>="20100121"){j.version="3.6"}else{if(i>="20090630"){j.version="3.5"}else{if(i>="20080617"){j.version="3.0"}else{if(i>="20061024"){j.version="2.0"}}}}}}}}}}}}j.isMobile=(navigator.appVersion.match(/Android/i)!=null||k.match(/ Fennec\//)!=null||k.match(/Mobile/)!=null)},Chrome:function(i){i.noContextMenu=i.isMobile=!!navigator.userAgent.match(/ Mobile[ \/]/)},Opera:function(i){i.version=opera.version()},Edge:function(i){i.isMobile=!!navigator.userAgent.match(/ Phone/)},MSIE:function(j){j.isMobile=!!navigator.userAgent.match(/ Phone/);j.isIE9=!!(document.documentMode&&(window.performance||window.msPerformance));MathJax.HTML.setScriptBug=!j.isIE9||document.documentMode<9;MathJax.Hub.msieHTMLCollectionBug=(document.documentMode<9);if(document.documentMode<10&&!s.params.NoMathPlayer){try{new ActiveXObject("MathPlayer.Factory.1");j.hasMathPlayer=true}catch(m){}try{if(j.hasMathPlayer){var i=document.createElement("object");i.id="mathplayer";i.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";g.appendChild(i);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");j.mpNamespace=true;if(document.readyState&&(document.readyState==="loading"||document.readyState==="interactive")){document.write('');j.mpImported=true}}else{document.namespaces.add("mjx_IE_fix","http://www.w3.org/1999/xlink")}}catch(m){}}}})}catch(c){console.error(c.message)}d.Browser.Select(MathJax.Message.browsers);if(h.AuthorConfig&&typeof h.AuthorConfig.AuthorInit==="function"){h.AuthorConfig.AuthorInit()}d.queue=h.Callback.Queue();d.queue.Push(["Post",s.signal,"Begin"],["Config",s],["Cookie",s],["Styles",s],["Message",s],function(){var i=h.Callback.Queue(s.Jax(),s.Extensions());return i.Push({})},["Menu",s],s.onLoad(),function(){MathJax.isReady=true},["Typeset",s],["Hash",s],["MenuZoom",s],["Post",s.signal,"End"])})("MathJax")}}; \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/js/Valine.min.js b/libs/hexo-theme-material/1.5.2/source/js/Valine.min.js new file mode 100644 index 000000000..64423a801 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/js/Valine.min.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define("Valine",[],n):"object"==typeof exports?exports.Valine=n():e.Valine=n()}(this,function(){return function(e){function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}var t={};return n.m=e,n.c=t,n.i=function(e){return e},n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:i})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=2)}([function(e,n,t){"use strict";function i(e){return e.replace(RegExp("^"+(e.match(/^(\t| )+/)||"")[0],"gm"),"")}function r(e){return(e+"").replace(/"/g,""").replace(//g,">")}function a(e){function n(e){var n=o[e.replace(/\*/g,"_")[1]||""],t=v[v.length-1]==e;return n?n[1]?(v[t?"pop":"push"](e),n[0|t]):n[0]:e}function t(){for(var e="";v.length;)e+=n(v[v.length-1]);return e}var l,s,c,d,u,p=/((?:^|\n+)(?:\n---+|\* \*(?: \*)+)\n)|(?:^```(\w*)\n([\s\S]*?)\n```$)|((?:(?:^|\n+)(?:\t| {2,}).+)+\n*)|((?:(?:^|\n)([>*+-]|\d+\.)\s+.*)+)|(?:\!\[([^\]]*?)\]\(([^\)]+?)\))|(\[)|(\](?:\(([^\)]+?)\))?)|(?:(?:^|\n+)([^\s].*)\n(\-{3,}|={3,})(?:\n+|$))|(?:(?:^|\n+)(#{1,3})\s*(.+)(?:\n+|$))|(?:`([^`].*?)`)|( \n\n*|\n{2,}|__|\*\*|[_*])/gm,v=[],f="",h=0,g={};for(e=e.replace(/^\[(.+?)\]:\s*(.+)$/gm,function(e,n,t){return g[n.toLowerCase()]=t,""}).replace(/^\n+|\n+$/g,"");c=p.exec(e);)s=e.substring(h,c.index),h=p.lastIndex,l=c[0],s.match(/[^\\](\\\\)*\\$/)||(c[3]||c[4]?l='
'+i(r(c[3]||c[4]).replace(/^\n+|\n+$/g,""))+"
":c[6]?(u=c[6],u.match(/\./)&&(c[5]=c[5].replace(/^\d+/gm,"")),d=a(i(c[5].replace(/^\s*[>*+.-]/gm,""))),">"===u?u="blockquote":(u=u.match(/\./)?"ol":"ul",d=d.replace(/^(.*)(\n|$)/gm,"
  • $1
  • ")),l="<"+u+">"+d+""):c[8]?l=''+r(c[7])+'':c[10]?(f=f.replace("",''),l=t()+""):c[9]?l="":c[12]||c[14]?(u="h"+(c[14]?c[14].length:"="===c[13][0]?1:2),l="<"+u+">"+a(c[12]||c[15])+""):c[16]?l=""+r(c[16])+"":(c[17]||c[1])&&(l=n(c[17]||"--"))),f+=s,f+=l;return(f+e.substring(h)+t()).trim()}Object.defineProperty(n,"__esModule",{value:!0});var o={"":["",""],_:["",""],"\n":["
    "]," ":["
    "],"-":["
    "]};n.default=a},function(e,n,t){var i=t(3);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;t(5)(i,r);i.locals&&(e.exports=i.locals)},function(e,n,t){"use strict";function i(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}var r=function(){function e(e,n){for(var t=0;t
    ';n.element.innerHTML=r;var a=n.element.querySelector(".vloading");a.innerHTML='
    ',n.loading={show:function(){a.setAttribute("style","display:block;")},hide:function(){a.setAttribute("style","display:none;")}};var o=n.element.querySelector(".vempty");o.innerText="还没有评论哦,快来抢沙发吧!",n.nodata={show:function(){o.setAttribute("style","display:block;")},hide:function(){o.setAttribute("style","display:none;")}},n.loading.show(),n.nodata.hide();var l=new n.v.Query("Comment");l.equalTo("url",location.pathname),l.ascending("createdAt"),l.find().then(function(e){n.loading.hide();e.length?(n.nodata.hide(),e.forEach(function(e){var t=document.createElement("li");t.setAttribute("class","vcard"),t.setAttribute("data-id",e.id),t.innerHTML='
    '+e.get("nick")+''+p(e.get("createdAt"))+"回复
    '+e.get("comment")+"
    ";var i=n.element.querySelector(".vlist"),r=i.querySelectorAll("li"),a=t.querySelector(".vat");n.bindAt(a),i.insertBefore(t,r[1])})):n.nodata.show()}).catch(function(e){n.loading.hide(),n.nodata.show()})}},{key:"bind",value:function(){var e=this,n={veditor:"comment",vnick:"nick",vlink:"link"},t={};for(var i in n)!function(){var r=n[i],a=e.element.querySelector("."+i);t[r]=a,a.addEventListener("input",function(e){l[r]=u.encode(a.value.replace(/(^\s*)|(\s*$)/g,""))})}();e.reset=function(){for(var t in n){var i=n[t];e.element.querySelector("."+t).value="",l[i]=""}l.nick="unknow",l.rid=""},e.bindAt=function(e){e.addEventListener("click",function(n){var i=e.getAttribute("at");t.comment.value="@"+i+" ,",t.comment.focus()})},e.element.querySelector(".vsubmit").addEventListener("click",function(n){if(""==l.comment)return void t.comment.focus();""==l.nick&&(l.nick="小调皮"),l.comment=(0,o.default)(l.comment),e.loading.show();var i=e.v.Object.extend("Comment"),r=new i;for(var a in l){var s=l[a];r.set(a,s)}r.save().then(function(n){var t=document.createElement("li");t.setAttribute("class","vcard"),t.setAttribute("data-id",n.id),t.innerHTML='
    '+n.get("nick")+''+p(n.get("createdAt"))+"回复
    '+n.get("comment")+"
    ";var i=e.element.querySelector(".vlist"),r=i.querySelectorAll("li"),a=t.querySelector(".vat");e.bindAt(a),i.insertBefore(t,r[1]),e.reset(),e.loading.hide(),e.nodata.hide()}).catch(function(n){e.loading.hide()})})}}]),e}(),u={encode:function(e){var n="";return 0==e.length?"":(n=e.replace(/&/g,"&"),n=n.replace(//g,">"),n=n.replace(/ /g," "),n=n.replace(/\'/g,"'"),n=n.replace(/\"/g,"""))},decode:function(e){var n="";return 0==e.length?"":(n=e.replace(/&/g,"&"),n=n.replace(/</g,"<"),n=n.replace(/>/g,">"),n=n.replace(/ /g," "),n=n.replace(/'/g,"'"),n=n.replace(/"/g,'"'))}},p=function(e){var n=v(e.getDate(),2),t=v(e.getMonth()+1,2);return v(e.getFullYear(),2)+"-"+t+"-"+n+" "+v(e.getHours(),2)+":"+v(e.getMinutes(),2)+":"+v(e.getSeconds(),2)},v=function(e,n){for(var t=e.toString();t.length div {\n background-color: #9c9c9c;\n height: 100%;\n width: 6px;\n margin-right: 3px;\n display: inline-block;\n -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;\n animation: sk-stretchdelay 1.2s infinite ease-in-out; }\n .valine .spinner .rect2 {\n -webkit-animation-delay: -1.1s;\n animation-delay: -1.1s; }\n .valine .spinner .rect3 {\n -webkit-animation-delay: -1.0s;\n animation-delay: -1.0s; }\n .valine .spinner .rect4 {\n -webkit-animation-delay: -0.9s;\n animation-delay: -0.9s; }\n .valine .spinner .rect5 {\n -webkit-animation-delay: -0.8s;\n animation-delay: -0.8s; }\n\n@-webkit-keyframes sk-stretchdelay {\n 0%,\n 40%,\n 100% {\n -webkit-transform: scaleY(0.4); }\n 20% {\n -webkit-transform: scaleY(1); } }\n\n@keyframes sk-stretchdelay {\n 0%,\n 40%,\n 100% {\n transform: scaleY(0.4);\n -webkit-transform: scaleY(0.4); }\n 20% {\n transform: scaleY(1);\n -webkit-transform: scaleY(1); } }\n',""])},function(e,n){function t(e,n){var t=e[1]||"",r=e[3];if(!r)return t;if(n&&"function"==typeof btoa){var a=i(r);return[t].concat(r.sources.map(function(e){return"/*# sourceURL="+r.sourceRoot+e+" */"})).concat([a]).join("\n")}return[t].join("\n")}function i(e){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+" */"}e.exports=function(e){var n=[];return n.toString=function(){return this.map(function(n){var i=t(n,e);return n[2]?"@media "+n[2]+"{"+i+"}":i}).join("")},n.i=function(e,t){"string"==typeof e&&(e=[[null,e,""]]);for(var i={},r=0;r=0&&y.splice(n,1)}function l(e){var n=document.createElement("style");return e.attrs.type="text/css",c(n,e.attrs),a(e,n),n}function s(e){var n=document.createElement("link");return e.attrs.type="text/css",e.attrs.rel="stylesheet",c(n,e.attrs),a(e,n),n}function c(e,n){Object.keys(n).forEach(function(t){e.setAttribute(t,n[t])})}function d(e,n){var t,i,r,a;if(n.transform&&e.css){if(!(a=n.transform(e.css)))return function(){};e.css=a}if(n.singleton){var c=b++;t=m||(m=l(n)),i=u.bind(null,t,c,!1),r=u.bind(null,t,c,!0)}else e.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(t=s(n),i=v.bind(null,t,n),r=function(){o(t),t.href&&URL.revokeObjectURL(t.href)}):(t=l(n),i=p.bind(null,t),r=function(){o(t)});return i(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;i(e=n)}else r()}}function u(e,n,t,i){var r=t?"":i.css;if(e.styleSheet)e.styleSheet.cssText=w(n,r);else{var a=document.createTextNode(r),o=e.childNodes;o[n]&&e.removeChild(o[n]),o.length?e.insertBefore(a,o[n]):e.appendChild(a)}}function p(e,n){var t=n.css,i=n.media;if(i&&e.setAttribute("media",i),e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}function v(e,n,t){var i=t.css,r=t.sourceMap,a=void 0===n.convertToAbsoluteUrls&&r;(n.convertToAbsoluteUrls||a)&&(i=x(i)),r&&(i+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */");var o=new Blob([i],{type:"text/css"}),l=e.href;e.href=URL.createObjectURL(o),l&&URL.revokeObjectURL(l)}var f={},h=function(e){var n;return function(){return void 0===n&&(n=e.apply(this,arguments)),n}}(function(){return window&&document&&document.all&&!window.atob}),g=function(e){var n={};return function(t){return void 0===n[t]&&(n[t]=e.call(this,t)),n[t]}}(function(e){return document.querySelector(e)}),m=null,b=0,y=[],x=t(6);e.exports=function(e,n){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");n=n||{},n.attrs="object"==typeof n.attrs?n.attrs:{},n.singleton||(n.singleton=h()),n.insertInto||(n.insertInto="head"),n.insertAt||(n.insertAt="bottom");var t=r(e,n);return i(t,n),function(e){for(var a=[],o=0;o'+t.text()+"")}),b.join("")},e.fn.panel=function(t){if(0==this.length){return i}if(this.length>1){for(var a=0;aa&&a>-1*s&&t>c;break;case"right":r=s>a&&a>-1*s&&-1*c>t;break;case"top":r=s>t&&t>-1*s&&a>c;break;case"bottom":r=s>t&&t>-1*s&&-1*c>a +}if(r){return i.touchPosX=null,i.touchPosY=null,i._hide(),!1}}(i.scrollTop()<0&&0>a||n>o-2&&o+2>n&&a>0)&&(e.preventDefault(),e.stopPropagation())}}),i.on("click touchend touchstart touchmove",function(e){e.stopPropagation()}),i.on("click",'a[href="#'+r+'"]',function(e){e.preventDefault(),e.stopPropagation(),l.target.removeClass(l.visibleClass)}),o.on("click touchend",function(e){i._hide(e)}),o.on("click",'a[href="#'+r+'"]',function(e){e.preventDefault(),e.stopPropagation(),l.target.toggleClass(l.visibleClass)}),l.hideOnEscape&&n.on("keydown",function(e){27==e.keyCode&&i._hide(e)}),i},e.fn.placeholder=function(){if("undefined"!=typeof document.createElement("input").placeholder){return e(this)}if(0==this.length){return a}if(this.length>1){for(var t=0;t").append(t.clone()).remove().html().replace(/type="password"/i,'type="text"').replace(/type=password/i,"type=text"));""!=t.attr("id")&&a.attr("id",t.attr("id")+"-polyfill-field"),""!=t.attr("name")&&a.attr("name",t.attr("name")+"-polyfill-field"),a.addClass("polyfill-placeholder").val(a.attr("placeholder")).insertAfter(t),""==t.val()?t.hide():a.hide(),t.on("blur",function(e){e.preventDefault();var a=t.parent().find("input[name="+t.attr("name")+"-polyfill-field]");""==t.val()&&(t.hide(),a.show())}),a.on("focus",function(e){e.preventDefault();var t=a.parent().find("input[name="+a.attr("name").replace("-polyfill-field","")+"]"); +a.hide(),t.show().focus()}).on("keypress",function(e){e.preventDefault(),a.val("")})}),a.on("submit",function(){a.find("input[type=text],input[type=password],textarea").each(function(t){var a=e(this);a.attr("name").match(/-polyfill-field$/)&&a.attr("name",""),a.val()==a.attr("placeholder")&&(a.removeClass("polyfill-placeholder"),a.val(""))})}).on("reset",function(t){t.preventDefault(),a.find("select").val(e("option:first").val()),a.find("input,textarea").each(function(){var a,t=e(this);switch(t.removeClass("polyfill-placeholder"),this.type){case"submit":case"reset":break;case"password":t.val(t.attr("defaultValue")),a=t.parent().find("input[name="+t.attr("name")+"-polyfill-field]"),""==t.val()?(t.hide(),a.show()):(t.show(),a.hide());break;case"checkbox":case"radio":t.attr("checked",t.attr("defaultValue"));break;case"text":case"textarea":t.val(t.attr("defaultValue")),""==t.val()&&(t.addClass("polyfill-placeholder"),t.val(t.attr("placeholder")));break;default:t.val(t.attr("defaultValue"))}})}),a},e.prioritize=function(t,a){var i="__prioritize";"jQuery"!=typeof t&&(t=e(t)),t.each(function(){var o,t=e(this),n=t.parent();if(0!=n.length){if(t.data(i)){if(a){return}o=t.data(i),t.insertAfter(o),t.removeData(i)}else{if(!a){return}if(o=t.prev(),0==o.length){return}t.prependTo(n),t.data(i,o)}}})}}(jQuery); +var skel=function(){var t={breakpointIds:null,events:{},isInit:!1,obj:{attachments:{},breakpoints:{},head:null,states:{}},sd:"/",state:null,stateHandlers:{},stateId:"",vars:{},DOMReady:null,indexOf:null,isArray:null,iterate:null,matchesMedia:null,extend:function(e,n){t.iterate(n,function(i){t.isArray(n[i])?(t.isArray(e[i])||(e[i]=[]),t.extend(e[i],n[i])):"object"==typeof n[i]?("object"!=typeof e[i]&&(e[i]={}),t.extend(e[i],n[i])):e[i]=n[i]})},newStyle:function(t){var e=document.createElement("style");return e.type="text/css",e.innerHTML=t,e},_canUse:null,canUse:function(e){t._canUse||(t._canUse=document.createElement("div"));var n=t._canUse.style,i=e.charAt(0).toUpperCase()+e.slice(1);return e in n||"Moz"+i in n||"Webkit"+i in n||"O"+i in n||"ms"+i in n},on:function(e,n){var i=e.split(/[\s]+/);return t.iterate(i,function(e){var a=i[e];if(t.isInit){if("init"==a){return void n()}if("change"==a){n()}else{var r=a.charAt(0);if("+"==r||"!"==r){var o=a.substring(1);if(o in t.obj.breakpoints){if("+"==r&&t.obj.breakpoints[o].active){n()}else{if("!"==r&&!t.obj.breakpoints[o].active){return void n()}}}}}}t.events[a]||(t.events[a]=[]),t.events[a].push(n)}),t},trigger:function(e){return t.events[e]&&0!=t.events[e].length?(t.iterate(t.events[e],function(n){t.events[e][n]()}),t):void 0},breakpoint:function(e){return t.obj.breakpoints[e]},breakpoints:function(e){function n(t,e){this.name=this.id=t,this.media=e,this.active=!1,this.wasActive=!1}return n.prototype.matches=function(){return t.matchesMedia(this.media)},n.prototype.sync=function(){this.wasActive=this.active,this.active=this.matches()},t.iterate(e,function(i){t.obj.breakpoints[i]=new n(i,e[i])}),window.setTimeout(function(){t.poll()},0),t},addStateHandler:function(e,n){t.stateHandlers[e]=n},callStateHandler:function(e){var n=t.stateHandlers[e]();t.iterate(n,function(e){t.state.attachments.push(n[e])})},changeState:function(e){t.iterate(t.obj.breakpoints,function(e){t.obj.breakpoints[e].sync()}),t.vars.lastStateId=t.stateId,t.stateId=e,t.breakpointIds=t.stateId===t.sd?[]:t.stateId.substring(1).split(t.sd),t.obj.states[t.stateId]?t.state=t.obj.states[t.stateId]:(t.obj.states[t.stateId]={attachments:[]},t.state=t.obj.states[t.stateId],t.iterate(t.stateHandlers,t.callStateHandler)),t.detachAll(t.state.attachments),t.attachAll(t.state.attachments),t.vars.stateId=t.stateId,t.vars.state=t.state,t.trigger("change"),t.iterate(t.obj.breakpoints,function(e){t.obj.breakpoints[e].active?t.obj.breakpoints[e].wasActive||t.trigger("+"+e):t.obj.breakpoints[e].wasActive&&t.trigger("-"+e) +})},generateStateConfig:function(e,n){var i={};return t.extend(i,e),t.iterate(t.breakpointIds,function(e){t.extend(i,n[t.breakpointIds[e]])}),i},getStateId:function(){var e="";return t.iterate(t.obj.breakpoints,function(n){var i=t.obj.breakpoints[n];i.matches()&&(e+=t.sd+i.id)}),e},poll:function(){var e="";e=t.getStateId(),""===e&&(e=t.sd),e!==t.stateId&&t.changeState(e)},_attach:null,attach:function(e){var n=t.obj.head,i=e.element;return i.parentNode&&i.parentNode.tagName?!1:(t._attach||(t._attach=n.firstChild),n.insertBefore(i,t._attach.nextSibling),e.permanent&&(t._attach=i),!0)},attachAll:function(e){var n=[];t.iterate(e,function(t){n[e[t].priority]||(n[e[t].priority]=[]),n[e[t].priority].push(e[t])}),n.reverse(),t.iterate(n,function(e){t.iterate(n[e],function(i){t.attach(n[e][i])})})},detach:function(t){var e=t.element;return t.permanent||!e.parentNode||e.parentNode&&!e.parentNode.tagName?!1:(e.parentNode.removeChild(e),!0)},detachAll:function(e){var n={};t.iterate(e,function(t){n[e[t].id]=!0}),t.iterate(t.obj.attachments,function(e){e in n||t.detach(t.obj.attachments[e])})},attachment:function(e){return e in t.obj.attachments?t.obj.attachments[e]:null},newAttachment:function(e,n,i,a){return t.obj.attachments[e]={id:e,element:n,priority:i,permanent:a}},init:function(){t.initMethods(),t.initVars(),t.initEvents(),t.obj.head=document.getElementsByTagName("head")[0],t.isInit=!0,t.trigger("init")},initEvents:function(){t.on("resize",function(){t.poll()}),t.on("orientationChange",function(){t.poll()}),t.DOMReady(function(){t.trigger("ready")}),window.onload&&t.on("load",window.onload),window.onload=function(){t.trigger("load")},window.onresize&&t.on("resize",window.onresize),window.onresize=function(){t.trigger("resize")},window.onorientationchange&&t.on("orientationChange",window.onorientationchange),window.onorientationchange=function(){t.trigger("orientationChange")}},initMethods:function(){document.addEventListener?!function(e,n){t.DOMReady=n()}("domready",function(){function t(t){for(r=1; +t=n.shift();){t()}}var e,n=[],i=document,a="DOMContentLoaded",r=/^loaded|^c/.test(i.readyState);return i.addEventListener(a,e=function(){i.removeEventListener(a,e),t()}),function(t){r?t():n.push(t)}}):!function(e,n){t.DOMReady=n()}("domready",function(t){function e(t){for(h=1;t=i.shift();){t()}}var n,i=[],a=!1,r=document,o=r.documentElement,s=o.doScroll,c="DOMContentLoaded",d="addEventListener",u="onreadystatechange",l="readyState",f=s?/^loaded|^c/:/^loaded|c/,h=f.test(r[l]);return r[d]&&r[d](c,n=function(){r.removeEventListener(c,n,a),e()},a),s&&r.attachEvent(u,n=function(){/^c/.test(r[l])&&(r.detachEvent(u,n),e())}),t=s?function(e){self!=top?h?e():i.push(e):function(){try{o.doScroll("left")}catch(n){return setTimeout(function(){t(e)},50)}e()}()}:function(t){h?t():i.push(t)}}),Array.prototype.indexOf?t.indexOf=function(t,e){return t.indexOf(e)}:t.indexOf=function(t,e){if("string"==typeof t){return t.indexOf(e)}var n,i,a=e?e:0;if(!this){throw new TypeError}if(i=this.length,0===i||a>=i){return -1}for(0>a&&(a=i-Math.abs(a)),n=a;i>n;n++){if(this[n]===t){return n}}return -1},Array.isArray?t.isArray=function(t){return Array.isArray(t)}:t.isArray=function(t){return"[object Array]"===Object.prototype.toString.call(t)},Object.keys?t.iterate=function(t,e){if(!t){return[]}var n,i=Object.keys(t);for(n=0;i[n]&&e(i[n],t[i[n]])!==!1;n++){}}:t.iterate=function(t,e){if(!t){return[]}var n;for(n in t){if(Object.prototype.hasOwnProperty.call(t,n)&&e(n,t[n])===!1){break}}},window.matchMedia?t.matchesMedia=function(t){return""==t?!0:window.matchMedia(t).matches}:window.styleMedia||window.media?t.matchesMedia=function(t){if(""==t){return !0}var e=window.styleMedia||window.media;return e.matchMedium(t||"all")}:window.getComputedStyle?t.matchesMedia=function(t){if(""==t){return !0}var e=document.createElement("style"),n=document.getElementsByTagName("script")[0],i=null;e.type="text/css",e.id="matchmediajs-test",n.parentNode.insertBefore(e,n),i="getComputedStyle" in window&&window.getComputedStyle(e,null)||e.currentStyle; +var a="@media "+t+"{ #matchmediajs-test { width: 1px; } }";return e.styleSheet?e.styleSheet.cssText=a:e.textContent=a,"1px"===i.width}:t.matchesMedia=function(t){if(""==t){return !0}var e,n,i,a,r={"min-width":null,"max-width":null},o=!1;for(i=t.split(/\s+and\s+/),e=0;er["max-width"]||null!==r["min-height"]&&cr["max-height"]?!1:!0},navigator.userAgent.match(/MSIE ([0-9]+)/)&&RegExp.$1<9&&(t.newStyle=function(t){var e=document.createElement("span");return e.innerHTML=' ",e})},initVars:function(){var e,n,i,a=navigator.userAgent;e="other",n=0,i=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],t.iterate(i,function(t,i){return a.match(i[1])?(e=i[0],n=parseFloat(RegExp.$1),!1):void 0}),t.vars.browser=e,t.vars.browserVersion=n,e="other",n=0,i=[["ios",/([0-9_]+) like Mac OS X/,function(t){return t.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(t){return 0}],["wp",/Windows Phone ([0-9\.]+)/,null],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(t){return t.replace("_",".").replace("_","")}],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null]],t.iterate(i,function(t,i){return a.match(i[1])?(e=i[0],n=parseFloat(i[2]?i[2](RegExp.$1):RegExp.$1),!1):void 0}),t.vars.os=e,t.vars.osVersion=n,t.vars.IEVersion="ie"==t.vars.browser?t.vars.browserVersion:99,t.vars.touch="wp"==t.vars.os?navigator.msMaxTouchPoints>0:!!("ontouchstart" in window),t.vars.mobile="wp"==t.vars.os||"android"==t.vars.os||"ios"==t.vars.os||"bb"==t.vars.os +}};return t.init(),t}();!function(t,e){"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?module.exports=e():t.skel=e()}(this,function(){return skel}); +!function(e){skel.breakpoints({xlarge:"(max-width: 1680px)",large:"(max-width: 1280px)",medium:"(max-width: 980px)",small:"(max-width: 736px)",xsmall:"(max-width: 480px)"}),e(function(){var o=e(window),i=e("body");e("#wrapper");if(skel.vars.IEVersion<12&&i.addClass("ie"),skel.vars.mobile&&i.addClass("touch"),skel.canUse("transition")){i.addClass("loading"),o.on("load",function(){window.setTimeout(function(){i.removeClass("loading")},100)});var t;o.on("resize",function(){window.clearTimeout(t),i.addClass("resizing"),t=window.setTimeout(function(){i.removeClass("resizing")},100)})}o.scrollTop(0),e("form").placeholder();var a=e(".panel");a.each(function(){var o=e(this),n=e('[href="#'+o.attr("id")+'"]'),t=e('
    ').appendTo(o);t.on("click",function(e){o.trigger("---hide")}),o.on("click",function(e){e.stopPropagation()}).on("---toggle",function(){o.hasClass("active")?o.triggerHandler("---hide"):o.triggerHandler("---show")}).on("---show",function(){i.hasClass("content-active")&&a.trigger("---hide"),o.addClass("active"),n.addClass("active"),i.addClass("content-active")}).on("---hide",function(){o.removeClass("active"),n.removeClass("active"),i.removeClass("content-active")}),n.removeAttr("href").css("cursor","pointer").on("click",function(e){e.preventDefault(),e.stopPropagation(),o.trigger("---toggle")})}),i.on("click",function(e){i.hasClass("content-active")&&(e.preventDefault(),e.stopPropagation(),a.trigger("---hide"))}),o.on("keyup",function(e){27==e.keyCode&&i.hasClass("content-active")&&(e.preventDefault(),e.stopPropagation(),a.trigger("---hide"))});var r=e("#header");r.find("a").each(function(){var o=e(this),i=o.attr("href");i&&"#"!=i.charAt(0)&&o.removeAttr("href").css("cursor","pointer").on("click",function(e){e.preventDefault(),e.stopPropagation(),window.location.href=i})});var s=e("#footer");s.find(".copyright").each(function(){var o=e(this),i=o.parent(),n=i.parent().children().last();skel.on("+medium",function(){o.appendTo(n)}).on("-medium",function(){o.appendTo(i) +})});var c=e("#main");c.children(".thumb").each(function(){var t,o=e(this),i=o.find(".image"),n=i.children("img");0!=i.length&&((t=n.data("position"))&&i.css("background-position",t),n.hide(),skel.vars.IEVersion<11&&o.css("cursor","pointer").on("click",function(){i.trigger("click")}))}),c.poptrox({baseZIndex:20000,caption:function(e){var o="";return e.nextAll().each(function(){o+=this.outerHTML}),o},fadeSpeed:300,onPopupClose:function(){i.removeClass("modal-active")},onPopupOpen:function(){i.addClass("modal-active")},overlayOpacity:0,popupCloserText:"",popupHeight:150,popupLoaderText:"",popupSpeed:300,popupWidth:150,selector:".thumb > a.image",usePopupCaption:!0,usePopupCloser:!0,usePopupDefaultStyling:!1,usePopupForceClose:!0,usePopupLoader:!0,usePopupNav:!0,windowMargin:50}),skel.on("-xsmall",function(){c[0]._poptrox.windowMargin=50}).on("+xsmall",function(){c[0]._poptrox.windowMargin=0})})}(jQuery); +!function(e){e.fn.poptrox_disableSelection=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.poptrox=function(o){function t(){i=e(window).width(),s=e(window).height()+r.windowHeightPad;var o=Math.abs(x.width()-x.outerWidth()),t=Math.abs(x.height()-x.outerHeight()),p=(w.width(),w.height(),i-2*r.windowMargin-o),n=s-2*r.windowMargin-t;x.css("min-width",r.popupWidth).css("min-height",r.popupHeight),v.children().css("max-width",p).css("max-height",n)}if(0==this.length){return e(this)}if(this.length>1){for(var p=0;p
    '),u=e(window),d=[],h=0,g=!1,f=new Array;r.usePopupLoader||(r.popupLoaderSelector=null),r.usePopupCloser||(r.popupCloserSelector=null),r.usePopupCaption||(r.popupCaptionSelector=null),r.usePopupNav||(r.popupNavPreviousSelector=null,r.popupNavNextSelector=null); +var x;x=e(r.popupSelector?r.popupSelector:'
    '+(r.popupLoaderSelector?'
    '+r.popupLoaderText+"
    ":"")+'
    '+(r.popupCaptionSelector?'
    ':"")+(r.popupCloserSelector?''+r.popupCloserText+"":"")+(r.popupNavPreviousSelector?'':"")+(r.popupNavNextSelector?'':"")+"
    ");var v=x.find(".pic"),w=e(),b=x.find(r.popupLoaderSelector),m=x.find(r.popupCaptionSelector),C=x.find(r.popupCloserSelector),y=x.find(r.popupNavNextSelector),S=x.find(r.popupNavPreviousSelector),P=y.add(S);if(r.usePopupDefaultStyling&&(x.css("background",r.popupBackgroundColor).css("color",r.popupTextColor).css("padding",r.popupPadding+"px"),m.length>0&&(x.css("padding-bottom",r.popupCaptionHeight+"px"),m.css("position","absolute").css("left","0").css("bottom","0").css("width","100%").css("text-align","center").css("height",r.popupCaptionHeight+"px").css("line-height",r.popupCaptionHeight+"px"),r.popupCaptionTextSize&&m.css("font-size",popupCaptionTextSize)),C.length>0&&C.html(r.popupCloserText).css("font-size",r.popupCloserTextSize).css("background",r.popupCloserBackgroundColor).css("color",r.popupCloserTextColor).css("display","block").css("width","40px").css("height","40px").css("line-height","40px").css("text-align","center").css("position","absolute").css("text-decoration","none").css("outline","0").css("top","0").css("right","-40px"),b.length>0&&b.html("").css("position","relative").css("font-size",r.popupLoaderTextSize).on("startSpinning",function(o){var t=e("
    "+r.popupLoaderText+"
    ");t.css("height",Math.floor(r.popupHeight/2)+"px").css("overflow","hidden").css("line-height",Math.floor(r.popupHeight/2)+"px").css("text-align","center").css("margin-top",Math.floor((x.height()-t.height()+(m.length>0?m.height():0))/2)).css("color",r.popupTextColor?r.popupTextColor:"").on("xfin",function(){t.fadeTo(300,0.5,function(){t.trigger("xfout") +})}).on("xfout",function(){t.fadeTo(300,0.05,function(){t.trigger("xfin")})}).trigger("xfin"),b.append(t)}).on("stopSpinning",function(e){var o=b.find("div");o.remove()}),2==P.length)){P.css("font-size","75px").css("text-align","center").css("color","#fff").css("text-shadow","none").css("height","100%").css("position","absolute").css("top","0").css("opacity","0.35").css("cursor","pointer").css("box-shadow","inset 0px 0px 10px 0px rgba(0,0,0,0)").poptrox_disableSelection();var k,T;r.usePopupEasyClose?(k="100px",T="100px"):(k="75%",T="25%"),y.css("right","0").css("width",k).html('
    >
    '),S.css("left","0").css("width",T).html('
    <
    ')}return u.on("resize orientationchange",function(){t()}),m.on("update",function(e,o){o&&0!=o.length||(o=r.popupBlankCaptionText),m.html(o)}),C.css("cursor","pointer").on("click",function(e){return e.preventDefault(),e.stopPropagation(),x.trigger("poptrox_close"),!0}),y.on("click",function(e){e.stopPropagation(),e.preventDefault(),x.trigger("poptrox_next")}),S.on("click",function(e){e.stopPropagation(),e.preventDefault(),x.trigger("poptrox_previous")}),l.css("position","fixed").css("left",0).css("top",0).css("z-index",r.baseZIndex).css("width","100%").css("height","100%").css("text-align","center").css("cursor","pointer").appendTo(r.parent).prepend('
    ').append('
    ').hide().on("touchmove",function(e){return !1}).on("click",function(e){e.preventDefault(),e.stopPropagation(),x.trigger("poptrox_close")}),x.css("display","inline-block").css("vertical-align","middle").css("position","relative").css("z-index",1).css("cursor","auto").appendTo(l).hide().on("poptrox_next",function(){var e=h+1; +e>=d.length&&(e=0),x.trigger("poptrox_switch",[e])}).on("poptrox_previous",function(){var e=h-1;0>e&&(e=d.length-1),x.trigger("poptrox_switch",[e])}).on("poptrox_reset",function(){t(),x.data("width",r.popupWidth).data("height",r.popupHeight),b.hide().trigger("stopSpinning"),m.hide(),C.hide(),P.hide(),v.hide(),w.attr("src","").detach()}).on("poptrox_open",function(e,o){return g?!0:(g=!0,r.useBodyOverflow&&a.css("overflow","hidden"),r.onPopupOpen&&r.onPopupOpen(),x.addClass("loading"),void l.fadeTo(r.fadeSpeed,1,function(){x.trigger("poptrox_switch",[o,!0])}))}).on("poptrox_switch",function(o,p,i){var s;if(!i&&g){return !0}if(g=!0,x.addClass("loading").css("width",x.data("width")).css("height",x.data("height")),m.hide(),w.attr("src")&&w.attr("src",""),w.detach(),s=d[p],w=s.object,w.off("load"),v.css("text-indent","-9999px").show().append(w),"ajax"==s.type?e.get(s.src,function(e){w.html(e),w.trigger("load")}):w.attr("src",s.src),"image"!=s.type){var n,a;n=s.width,a=s.height,"%"==n.slice(-1)&&(n=parseInt(n.substring(0,n.length-1))/100*u.width()),"%"==a.slice(-1)&&(a=parseInt(a.substring(0,a.length-1))/100*u.height()),w.css("position","relative").css("outline","0").css("z-index",r.baseZIndex+100).width(n).height(a)}b.trigger("startSpinning").fadeIn(300),x.show(),r.popupIsFixed?(x.removeClass("loading").width(r.popupWidth).height(r.popupHeight),w.load(function(){w.off("load"),b.hide().trigger("stopSpinning"),m.trigger("update",[s.captionText]).fadeIn(r.fadeSpeed),C.fadeIn(r.fadeSpeed),v.css("text-indent",0).hide().fadeIn(r.fadeSpeed,function(){g=!1}),h=p,P.fadeIn(r.fadeSpeed)})):w.load(function(){t(),w.off("load"),b.hide().trigger("stopSpinning");var e=w.width(),o=w.height(),i=function(){m.trigger("update",[s.captionText]).fadeIn(r.fadeSpeed),C.fadeIn(r.fadeSpeed),v.css("text-indent",0).hide().fadeIn(r.fadeSpeed,function(){g=!1}),h=p,P.fadeIn(r.fadeSpeed),x.removeClass("loading").data("width",e).data("height",o).css("width","auto").css("height","auto")};e==x.data("width")&&o==x.data("height")?i():x.animate({width:e,height:o},r.popupSpeed,"swing",i) +}),"image"!=s.type&&w.trigger("load")}).on("poptrox_close",function(){return g&&!r.usePopupForceClose?!0:(g=!0,x.hide().trigger("poptrox_reset"),r.onPopupClose&&r.onPopupClose(),void l.fadeOut(r.fadeSpeed,function(){r.useBodyOverflow&&a.css("overflow","auto"),g=!1}))}).trigger("poptrox_reset"),r.usePopupEasyClose?(m.on("click","a",function(e){e.stopPropagation()}),x.css("cursor","pointer").on("click",function(e){e.stopPropagation(),e.preventDefault(),x.trigger("poptrox_close")})):x.on("click",function(e){e.stopPropagation()}),u.keydown(function(e){if(x.is(":visible")){switch(e.keyCode){case 37:case 32:if(r.usePopupNav){return x.trigger("poptrox_previous"),!1}break;case 39:if(r.usePopupNav){return x.trigger("poptrox_next"),!1}break;case 27:return x.trigger("poptrox_close"),!1}}}),n.find(r.selector).each(function(o){var t,p,i=e(this),s=i.find("img"),n=i.data("poptrox");if("ignore"!=n&&i.attr("href")){if(t={src:i.attr("href"),captionText:s.attr("title"),width:null,height:null,type:null,object:null,options:null},r.caption){if("function"==typeof r.caption){c=r.caption(i)}else{if("selector" in r.caption){var a;a=i.find(r.caption.selector),"attribute" in r.caption?c=a.attr(r.caption.attribute):(c=a.html(),r.caption.remove===!0&&a.remove())}}}else{c=s.attr("title")}if(t.captionText=c,n){var l=n.split(",");0 in l&&(t.type=l[0]),1 in l&&(p=l[1].match(/([0-9%]+)x([0-9%]+)/),p&&3==p.length&&(t.width=p[1],t.height=p[2])),2 in l&&(t.options=l[2])}if(!t.type){switch(p=t.src.match(/\/\/([a-z0-9\.]+)\/.*/),(!p||p.length<2)&&(p=[!1]),p[1]){case"api.soundcloud.com":t.type="soundcloud";break;case"youtu.be":t.type="youtube";break;case"vimeo.com":t.type="vimeo";break;case"wistia.net":t.type="wistia";break;case"bcove.me":t.type="bcove";break;default:t.type="image"}}switch(p=t.src.match(/\/\/[a-z0-9\.]+\/(.*)/),t.type){case"iframe":t.object=e(''),t.object.on("click",function(e){e.stopPropagation()}).css("cursor","auto"),t.width&&t.height||(t.width="600",t.height="400"); +break;case"ajax":t.object=e('
    '),t.object.on("click",function(e){e.stopPropagation()}).css("cursor","auto").css("overflow","auto"),t.width&&t.height||(t.width="600",t.height="400");break;case"soundcloud":t.object=e(''),t.src="//w.soundcloud.com/player/?url="+escape(t.src)+(t.options?"&"+t.options:""),t.width="600",t.height="166";break;case"youtube":t.object=e(''),t.src="//www.youtube.com/embed/"+p[1]+(t.options?"?"+t.options:""),t.width&&t.height||(t.width="800",t.height="480");break;case"vimeo":t.object=e(''),t.src="//player.vimeo.com/video/"+p[1]+(t.options?"?"+t.options:""),t.width&&t.height||(t.width="800",t.height="480");break;case"wistia":t.object=e(''),t.src="//fast.wistia.net/"+p[1]+(t.options?"?"+t.options:""),t.width&&t.height||(t.width="800",t.height="480");break;case"bcove":t.object=e(''),t.src="//bcove.me/"+p[1]+(t.options?"?"+t.options:""),t.width&&t.height||(t.width="640",t.height="360");break;default:if(t.object=e(''),r.preload){var p=document.createElement("img");p.src=t.src,f.push(p)}t.width=i.attr("width"),t.height=i.attr("height")}"file:"==window.location.protocol&&t.src.match(/^\/\//)&&(t.src="http:"+t.src),d.push(t),s.removeAttr("title"),i.removeAttr("href").css("cursor","pointer").css("outline",0).on("click",function(e){e.preventDefault(),e.stopPropagation(),x.trigger("poptrox_open",[o])})}}),n.prop("_poptrox",r),n}}(jQuery); +!function(factory){"function"==typeof define&&define.amd?define(["jquery"],factory):"object"==typeof exports?module.exports=factory(require("jquery")):factory(jQuery)}(function($){var dispatch=$.event.dispatch||$.event.handle,special=$.event.special,uid1="D"+ +new Date,uid2="D"+(+new Date+1);special.scrollstart={setup:function(data){var timer,_data=$.extend({latency:special.scrollstop.latency},data),handler=function(evt){var _self=this,_args=arguments;timer?clearTimeout(timer):(evt.type="scrollstart",dispatch.apply(_self,_args)),timer=setTimeout(function(){timer=null},_data.latency)};$(this).bind("scroll",handler).data(uid1,handler)},teardown:function(){$(this).unbind("scroll",$(this).data(uid1))}},special.scrollstop={latency:250,setup:function(data){var timer,_data=$.extend({latency:special.scrollstop.latency},data),handler=function(evt){var _self=this,_args=arguments;timer&&clearTimeout(timer),timer=setTimeout(function(){timer=null,evt.type="scrollstop",dispatch.apply(_self,_args)},_data.latency)};$(this).bind("scroll",handler).data(uid2,handler)},teardown:function(){$(this).unbind("scroll",$(this).data(uid2))}}}); diff --git a/libs/hexo-theme-material/1.5.2/source/js/hanabi-browser-bundle.js b/libs/hexo-theme-material/1.5.2/source/js/hanabi-browser-bundle.js new file mode 100644 index 000000000..2d2e3e980 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/js/hanabi-browser-bundle.js @@ -0,0 +1,2 @@ +!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):e.hanabi=n()}(this,function(){"use strict";function e(e,n){return n={exports:{}},e(n,n.exports),n.exports}function n(e){return''+e+""}var r=e(function(e){var n=e.exports=function(){return new RegExp("(?:"+n.line().source+")|(?:"+n.block().source+")","gm")};n.line=function(){return/(?:^|\s)\/\/(.+?)$/gm},n.block=function(){return/\/\*([\S\s]*?)\*\//gm}}),u=["23AC69","91C132","F19726","E8552D","1AAB8E","E1147F","2980C1","1BA1E6","9FA0A0","F19726","E30B20","E30B20","A3338B"],t=function(e,t){void 0===t&&(t={});var o=t.colors;void 0===o&&(o=u);var f=0,c={},i=/[\u4E00-\u9FFF\u3400-\u4dbf\uf900-\ufaff\u3040-\u309f\uac00-\ud7af\u0400-\u04FF]+|\w+/,s=/'+r+"";return f=++f%o.length,i})};return t}); +var HanabiBrowser={ref:{colors:['23AC69','91C132','F19726','E8552D','1AAB8E','E1147F','2980C1','1BA1E6','9FA0A0','F19726','E30B20','E30B20','A3338B'],lineNumber:true},default:{defaultColors:['23AC69','91C132','F19726','E8552D','1AAB8E','E1147F','2980C1','1BA1E6','9FA0A0','F19726','E30B20','E30B20','A3338B']},start:function(selector,line_number){HanabiBrowser.ref.lineNumber=line_number;$(selector||'code').each(function(code,element){var ha_code=hanabi($(element).html().replace(new RegExp('<','g'),'<').replace(new RegExp('>','g'),'>'),HanabiBrowser.ref);ha_code=ha_code.substring(0,ha_code.length-1).replace(new RegExp('\n','g'),'
    ').replace(new RegExp(' ','g'),'  ');var lineNumber=0;var lines=[];ha_code.split('
    ').forEach(function(codeline){if(HanabiBrowser.ref.lineNumber){lines.push(''+(++lineNumber).toString()+''+codeline)}else{lines.push(''+codeline)}});ha_code=lines.join('
    ');$(element).html(ha_code)})},setLinenumber:function(line_number){HanabiBrowser.ref.lineNumber=line_number;if(HanabiBrowser.ref.lineNumber){$('.hanabi-linenumber').css('display','inline-block')}else{$('.hanabi-linenumber').css('display','none')}},toggleLinenumber:function(){HanabiBrowser.ref.lineNumber=!HanabiBrowser.ref.lineNumber;HanabiBrowser.setLinenumber(HanabiBrowser.ref.lineNumber)},putColor:function(color){if(typeof color=='string'){HanabiBrowser.ref.colors.push(color)}else{HanabiBrowser.ref.colors=HanabiBrowser.ref.colors.concat(color)}},defaultColors:function(){HanabiBrowser.ref.colors=HanabiBrowser.default.defaultColors},clearColors:function(){HanabiBrowser.ref.colors=[]}} \ No newline at end of file diff --git a/libs/hexo-theme-material/1.5.2/source/js/ie-blocker.en.js b/libs/hexo-theme-material/1.5.2/source/js/ie-blocker.en.js new file mode 100644 index 000000000..e7ad89c72 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/js/ie-blocker.en.js @@ -0,0 +1,57 @@ +(function () { + var ibContainer; + var html; + + ibContainer = document.createElement('div'); + ibContainer.setAttribute('id', 'ib-container'); + + html = ""; + html += "
    "; + html += "
    "; + html += "

    You are using an outdated browser.<\/h1>"; + html += "

    To display the website correctly and protect your information,"; + html += "
    please use one of these up-to-date, free and excellent browsers.<\/strong>"; + html += " <\/p>"; + html += " <\/div>"; + html += "

      "; + html += "
    • "; + html += " "; + html += "
      Chrome<\/div>"; + html += "
      Speed, Simplicity, Security - Google.<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += "
    • "; + html += " "; + html += "
      Firefox<\/div>"; + html += "
      The Open Source browser.<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += "
    • "; + html += " "; + html += "
      Safari<\/div>"; + html += "
      Browser designed by Apple Inc.<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += "
    • "; + html += " "; + html += "
      Opera<\/div>"; + html += "
      Fastest and light browser.<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += " <\/ul>"; + html += "
      "; + html += " Try Chrome now!<\/a>"; + html += " <\/div>"; + html += "<\/div>"; + html += "
      <\/div>"; + html += ""; + + ibContainer.innerHTML = html; + + window.onload = function () { + + document.body.appendChild(ibContainer); + + ibContainer.style.display = 'block'; + }; +})(); diff --git a/libs/hexo-theme-material/1.5.2/source/js/ie-blocker.zhCN.js b/libs/hexo-theme-material/1.5.2/source/js/ie-blocker.zhCN.js new file mode 100644 index 000000000..ff3a29450 --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/js/ie-blocker.zhCN.js @@ -0,0 +1,57 @@ +(function () { + var ibContainer; + var html; + + ibContainer = document.createElement('div'); + ibContainer.setAttribute('id', 'ib-container'); + + var html=""; + html += "
      "; + html += "
      "; + html += "

      您的浏览器需要更新<\/h1>"; + html += "

      为了保证页面的正常显示并保护您的个人信息,"; + html += "
      请使用以下新版浏览器<\/strong>"; + html += " <\/p>"; + html += " <\/div>"; + html += "

        "; + html += "
      • "; + html += " "; + html += "
        Chrome<\/div>"; + html += "
        快速,简单,安全 - 由谷歌开发<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += "
      • "; + html += " "; + html += "
        Firefox<\/div>"; + html += "
        快速,安全,免费,开源的浏览器<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += "
      • "; + html += " "; + html += "
        Safari<\/div>"; + html += "
        由苹果公司设计用于 Mac 的产品<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += "
      • "; + html += " "; + html += "
        Opera<\/div>"; + html += "
        快速, 小巧的浏览器<\/div>"; + html += " <\/a>"; + html += " <\/li>"; + html += " <\/ul>"; + html += "
        "; + html += " 试试Chrome<\/a>"; + html += " <\/div>"; + html += "<\/div>"; + html += "
        <\/div>"; + html += ""; + + ibContainer.innerHTML = html; + + window.onload = function () { + + document.body.appendChild(ibContainer); + + ibContainer.style.display = 'block'; + }; +})(); diff --git a/libs/hexo-theme-material/1.5.2/source/js/jquery.min.js b/libs/hexo-theme-material/1.5.2/source/js/jquery.min.js new file mode 100644 index 000000000..a0e8ed57d --- /dev/null +++ b/libs/hexo-theme-material/1.5.2/source/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v2.2.0 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b) {"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a) {if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b) {var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.0",n=function(a,b) {return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b) {return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function() {return e.call(this)},get:function(a) {return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a) {var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a) {return n.each(this,a)},map:function(a) {return this.pushStack(n.map(this,function(b,c) {return a.call(b,c,b)}))},slice:function() {return this.pushStack(e.apply(this,arguments))},first:function() {return this.eq(0)},last:function() {return this.eq(-1)},eq:function(a) {var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function() {return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function() {var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a) {throw new Error(a)},noop:function() {},isFunction:function(a) {return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a) {return null!=a&&a===a.window},isNumeric:function(a) {var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a) {return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!k.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a) {var b;for(b in a)return!1;return!0},type:function(a) {return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a) {var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a) {return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b) {return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b) {var c,d=0;if(s(a)) {for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a) {return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b) {var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c) {return null==b?-1:h.call(b,a,c)},merge:function(a,b) {for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c) {for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c) {var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b) {var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function() {return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b) {i["[object "+b+"]"]=b.toLowerCase()});function s(a) {var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a) {var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b) {return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b) {for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c) {var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function() {m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea) {H={apply:E.length?function(a,b) {G.apply(a,I.call(b))}:function(a,b) {var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e) {var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)) {if(11!==x&&(o=$.exec(a)))if(f=o[1]) {if(9===x) {if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))) {if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()) {(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y) {}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga() {var a=[];function b(c,e) {return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a) {return a[u]=!0,a}function ia(a) {var b=n.createElement("div");try{return!!a(b)}catch(c) {return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b) {var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b) {var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a) {return function(b) {var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a) {return function(b) {var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a) {return ha(function(b) {return b=+b,ha(function(c,d) {var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a) {return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a) {var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a) {var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a) {return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a) {return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a) {return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b) {if("undefined"!=typeof b.getElementById&&p) {var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a) {var b=a.replace(ba,ca);return function(a) {return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a) {var b=a.replace(ba,ca);return function(a) {var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b) {return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b) {var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a) {while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b) {return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a) {o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a) {var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a) {c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b) {var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b) {if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b) {if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b) {if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b) {return fa(a,null,null,b)},fa.matchesSelector=function(a,b) {if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e) {}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b) {return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b) {(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a) {throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a) {var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l) {while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a) {var b,c="",d=0,f=a.nodeType;if(f) {if(1===f||9===f||11===f) {if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a) {return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a) {return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a) {var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a) {var b=a.replace(ba,ca).toLowerCase();return"*"===a?function() {return!0}:function(a) {return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a) {var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a) {return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c) {return function(d) {var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e) {var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a) {return!!a.parentNode}:function(b,c,i) {var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q) {if(f) {while(p) {m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s) {m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b) {k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b) {var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c) {var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a) {return e(a,0,c)}):e}},pseudos:{not:ha(function(a) {var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e) {var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f) {return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a) {return function(b) {return fa(a,b).length>0}}),contains:ha(function(a) {return a=a.replace(ba,ca),function(b) {return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a) {return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b) {var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b) {var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a) {return a===o},focus:function(a) {return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a) {return a.disabled===!1},disabled:function(a) {return a.disabled===!0},checked:function(a) {var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a) {return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a) {for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a) {return!d.pseudos.empty(a)},header:function(a) {return Y.test(a.nodeName)},input:function(a) {return X.test(a.nodeName)},button:function(a) {var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a) {var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function() {return[0]}),last:na(function(a,b) {return[b-1]}),eq:na(function(a,b,c) {return[0>c?c+b:c]}),even:na(function(a,b) {for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b) {for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c) {for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c) {for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c) {var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f) {while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g) {var h,i,j,k=[w,f];if(g) {while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e) {if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a) {return a.length>1?function(b,c,d) {var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c) {for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e) {for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function va(a,b,c,d,e,f) {return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i) {var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d) {j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f) {if(e||a) {if(e) {j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a) {for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a) {return a===b},h,!0),l=ra(function(a) {return J(b,a)>-1},h,!0),m=[function(a,c,d) {var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]) {for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b) {var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k) {var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++) {if(e&&l) {o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)) {i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r) {o=0;while(q=b[o++])q(t,u,g,h);if(f) {if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b) {var c,d=[],e=[],f=A[a+" "];if(!f) {b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f) {var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length) {if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]) {if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--) {if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))) {if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a) {return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a) {return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c) {return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a) {return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c) {return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a) {return null==a.getAttribute("disabled")})||ja(K,function(a,b,c) {var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c) {var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType) {if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b) {for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c) {if(n.isFunction(b))return n.grep(a,function(a,d) {return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a) {return a===b!==c});if("string"==typeof b) {if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a) {return h.call(b,a)>-1!==c})}n.filter=function(a,b,c) {var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a) {return 1===a.nodeType}))},n.fn.extend({find:function(a) {var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function() {for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a) {return this.pushStack(z(this,a||[],!1))},not:function(a) {return this.pushStack(z(this,a||[],!0))},is:function(a) {return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c) {var e,f;if(!a)return this;if(c=c||A,"string"==typeof a) {if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]) {if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a) {var b=n(a,this),c=b.length;return this.filter(function() {for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b) {for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))) {f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a) {return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b) {return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a) {return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b) {while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a) {var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a) {return u(a,"parentNode")},parentsUntil:function(a,b,c) {return u(a,"parentNode",c)},next:function(a) {return F(a,"nextSibling")},prev:function(a) {return F(a,"previousSibling")},nextAll:function(a) {return u(a,"nextSibling")},prevAll:function(a) {return u(a,"previousSibling")},nextUntil:function(a,b,c) {return u(a,"nextSibling",c)},prevUntil:function(a,b,c) {return u(a,"previousSibling",c)},siblings:function(a) {return v((a.parentNode||{}).firstChild,a)},children:function(a) {return v(a.firstChild)},contents:function(a) {return a.contentDocument||n.merge([],a.childNodes)}},function(a,b) {n.fn[a]=function(c,d) {var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a) {var b={};return n.each(a.match(G)||[],function(a,c) {b[c]=!0}),b}n.Callbacks=function(a) {a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function() {for(e=a.once,d=b=!0;g.length;h=-1) {c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a) {return a?n.inArray(a,f)>-1:f.length>0},empty:function() {return f&&(f=[]),this},disable:function() {return e=g=[],f=c="",this},disabled:function() {return!f},lock:function() {return e=g=[],c||(f=c=""),this},locked:function() {return!!e},fireWith:function(a,c) {return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function() {return j.fireWith(this,arguments),this},fired:function() {return!!d}};return j},n.extend({Deferred:function(a) {var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function() {return c},always:function() {return e.done(arguments).fail(arguments),this},then:function() {var a=arguments;return n.Deferred(function(c) {n.each(b,function(b,f) {var g=n.isFunction(a[b])&&a[b];e[f[1]](function() {var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a) {return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f) {var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function() {c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function() {return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a) {var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c) {return function(d) {b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a) {return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a) {a?n.readyWait++:n.ready(!0)},ready:function(a) {(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J() {d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b) {return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g) {var h=0,i=a.length,j=null==c;if("object"===n.type(c)) {e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c) {return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a) {return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M() {this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b) {var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a) {if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c) {var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b) {return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c) {var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b) {var c,d,e,f=a[this.expando];if(void 0!==f) {if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a) {var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c) {var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c) {try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c}catch(e) {}O.set(a,b,c); +}else c=void 0;return c}n.extend({hasData:function(a) {return O.hasData(a)||N.hasData(a)},data:function(a,b,c) {return O.access(a,b,c)},removeData:function(a,b) {O.remove(a,b)},_data:function(a,b,c) {return N.access(a,b,c)},_removeData:function(a,b) {N.remove(a,b)}}),n.fn.extend({data:function(a,b) {var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a) {if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))) {c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function() {O.set(this,a)}):K(this,function(b) {var c,d;if(f&&void 0===b) {if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function() {var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a) {return this.each(function() {O.remove(this,a)})}}),n.extend({queue:function(a,b,c) {var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b) {b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function() {n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b) {var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function() {N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b) {var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length",""],thead:[1,"","
        "],col:[2,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],_default:[0,"",""]};$.optgroup=$.option,$.tbody=$.tfoot=$.colgroup=$.caption=$.thead,$.th=$.td;function _(a,b) {var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function aa(a,b) {for(var c=0,d=a.length;d>c;c++)N.set(a[c],"globalEval",!b||N.get(b[c],"globalEval"))}var ba=/<|&#?\w+;/;function ca(a,b,c,d,e) {for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],o=0,p=a.length;p>o;o++)if(f=a[o],f||0===f)if("object"===n.type(f))n.merge(m,f.nodeType?[f]:f);else if(ba.test(f)) {g=g||l.appendChild(b.createElement("div")),h=(Y.exec(f)||["",""])[1].toLowerCase(),i=$[h]||$._default,g.innerHTML=i[1]+n.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;n.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",o=0;while(f=m[o++])if(d&&n.inArray(f,d)>-1)e&&e.push(f);else if(j=n.contains(f.ownerDocument,f),g=_(l.appendChild(f),"script"),j&&aa(g),c) {k=0;while(f=g[k++])Z.test(f.type||"")&&c.push(f)}return l}!function() {var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var da=/^key/,ea=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,fa=/^([^.]*)(?:\.(.+)|)/;function ga() {return!0}function ha() {return!1}function ia() {try{return d.activeElement}catch(a) {}}function ja(a,b,c,d,e,f) {var g,h;if("object"==typeof b) {"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ja(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ha;else if(!e)return this;return 1===f&&(g=e,e=function(a) {return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function() {n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e) {var f,g,h,i,j,k,l,m,o,p,q,r=N.get(a);if(r) {c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b) {return"undefined"!=typeof n&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(G)||[""],j=b.length;while(j--)h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e) {var f,g,h,i,j,k,l,m,o,p,q,r=N.hasData(a)&&N.get(a);if(r&&(i=r.events)) {b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o) {l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&N.remove(a,"handle events")}},dispatch:function(a) {a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(N.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1) {h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()) {a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.rnamespace||a.rnamespace.test(g.namespace))&&(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b) {var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!==this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)) {for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,la=/\s*$/g;function pa(a,b) {return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a:a}function qa(a) {return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function ra(a) {var b=na.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function sa(a,b) {var c,d,e,f,g,h,i,j;if(1===b.nodeType) {if(N.hasData(a)&&(f=N.access(a),g=N.set(b,f),j=f.events)) {delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}O.hasData(a)&&(h=O.access(a),i=n.extend({},h),O.set(b,i))}}function ta(a,b) {var c=b.nodeName.toLowerCase();"input"===c&&X.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}function ua(a,b,c,d) {b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&ma.test(q))return a.each(function(e) {var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),ua(f,b,c,d)});if(o&&(e=ca(b,a[0].ownerDocument,!1,a,d),g=e.firstChild,1===e.childNodes.length&&(e=g),g||d)) {for(h=n.map(_(e,"script"),qa),i=h.length;o>m;m++)j=e,m!==p&&(j=n.clone(j,!0,!0),i&&n.merge(h,_(j,"script"))),c.call(a[m],j,m);if(i)for(k=h[h.length-1].ownerDocument,n.map(h,ra),m=0;i>m;m++)j=h[m],Z.test(j.type||"")&&!N.access(j,"globalEval")&&n.contains(k,j)&&(j.src?n._evalUrl&&n._evalUrl(j.src):n.globalEval(j.textContent.replace(oa,"")))}return a}function va(a,b,c) {for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(_(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&aa(_(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a) {return a.replace(ka,"<$1>")},clone:function(a,b,c) {var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=_(h),f=_(a),d=0,e=f.length;e>d;d++)ta(f[d],g[d]);if(b)if(c)for(f=f||_(a),g=g||_(h),d=0,e=f.length;e>d;d++)sa(f[d],g[d]);else sa(a,h);return g=_(h,"script"),g.length>0&&aa(g,!i&&_(a,"script")),h},cleanData:function(a) {for(var b,c,d,e=n.event.special,f=0;void 0!==(c=a[f]);f++)if(L(c)) {if(b=c[N.expando]) {if(b.events)for(d in b.events)e[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);c[N.expando]=void 0}c[O.expando]&&(c[O.expando]=void 0)}}}),n.fn.extend({domManip:ua,detach:function(a) {return va(this,a,!0)},remove:function(a) {return va(this,a)},text:function(a) {return K(this,function(a) {return void 0===a?n.text(this):this.empty().each(function() {(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function() {return ua(this,arguments,function(a) {if(1===this.nodeType||11===this.nodeType||9===this.nodeType) {var b=pa(this,a);b.appendChild(a)}})},prepend:function() {return ua(this,arguments,function(a) {if(1===this.nodeType||11===this.nodeType||9===this.nodeType) {var b=pa(this,a);b.insertBefore(a,b.firstChild)}})},before:function() {return ua(this,arguments,function(a) {this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function() {return ua(this,arguments,function(a) {this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function() {for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(_(a,!1)),a.textContent="");return this},clone:function(a,b) {return a=null==a?!1:a,b=null==b?a:b,this.map(function() {return n.clone(this,a,b)})},html:function(a) {return K(this,function(a) {var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!la.test(a)&&!$[(Y.exec(a)||["",""])[1].toLowerCase()]) {a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(_(b,!1)),b.innerHTML=a);b=0}catch(e) {}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function() {var a=[];return ua(this,arguments,function(b) {var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(_(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b) {n.fn[a]=function(a) {for(var c,d=[],e=n(a),f=e.length-1,h=0;f>=h;h++)c=h===f?this:this.clone(!0),n(e[h])[b](c),g.apply(d,c.get());return this.pushStack(d)}});var wa,xa={HTML:"block",BODY:"block"};function ya(a,b) {var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function za(a) {var b=d,c=xa[a];return c||(c=ya(a,b),"none"!==c&&c||(wa=(wa||n("