WebExtension as alternative to Chromecast
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2928 lines
37 KiB

7 years ago
  1. /*!
  2. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  3. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  4. */
  5. /* FONT PATH
  6. * -------------------------- */
  7. .fa {
  8. display: inline-block;
  9. font: normal normal normal 14px/1 FontAwesome;
  10. font-size: inherit;
  11. text-rendering: auto;
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. }
  15. /* makes the font 33% larger relative to the icon container */
  16. .fa-lg {
  17. font-size: 1.33333333em;
  18. line-height: 0.75em;
  19. vertical-align: -15%;
  20. }
  21. .fa-2x {
  22. font-size: 2em;
  23. }
  24. .fa-3x {
  25. font-size: 3em;
  26. }
  27. .fa-4x {
  28. font-size: 4em;
  29. }
  30. .fa-5x {
  31. font-size: 5em;
  32. }
  33. .fa-fw {
  34. width: 1.28571429em;
  35. text-align: center;
  36. }
  37. .fa-ul {
  38. padding-left: 0;
  39. margin-left: 2.14285714em;
  40. list-style-type: none;
  41. }
  42. .fa-ul>li {
  43. position: relative;
  44. }
  45. .fa-li {
  46. position: absolute;
  47. left: -2.14285714em;
  48. width: 2.14285714em;
  49. top: 0.14285714em;
  50. text-align: center;
  51. }
  52. .fa-li.fa-lg {
  53. left: -1.85714286em;
  54. }
  55. .fa-border {
  56. padding: .2em .25em .15em;
  57. border: solid 0.08em #eeeeee;
  58. border-radius: .1em;
  59. }
  60. .fa-pull-left {
  61. float: left;
  62. }
  63. .fa-pull-right {
  64. float: right;
  65. }
  66. .fa.fa-pull-left {
  67. margin-right: .3em;
  68. }
  69. .fa.fa-pull-right {
  70. margin-left: .3em;
  71. }
  72. /* Deprecated as of 4.4.0 */
  73. .pull-right {
  74. float: right;
  75. }
  76. .pull-left {
  77. float: left;
  78. }
  79. .fa.pull-left {
  80. margin-right: .3em;
  81. }
  82. .fa.pull-right {
  83. margin-left: .3em;
  84. }
  85. .fa-spin {
  86. -webkit-animation: fa-spin 2s infinite linear;
  87. animation: fa-spin 2s infinite linear;
  88. }
  89. .fa-pulse {
  90. -webkit-animation: fa-spin 1s infinite steps(8);
  91. animation: fa-spin 1s infinite steps(8);
  92. }
  93. @-webkit-keyframes fa-spin {
  94. 0% {
  95. -webkit-transform: rotate(0deg);
  96. transform: rotate(0deg);
  97. }
  98. 100% {
  99. -webkit-transform: rotate(359deg);
  100. transform: rotate(359deg);
  101. }
  102. }
  103. @keyframes fa-spin {
  104. 0% {
  105. -webkit-transform: rotate(0deg);
  106. transform: rotate(0deg);
  107. }
  108. 100% {
  109. -webkit-transform: rotate(359deg);
  110. transform: rotate(359deg);
  111. }
  112. }
  113. .fa-rotate-90 {
  114. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  115. -webkit-transform: rotate(90deg);
  116. -ms-transform: rotate(90deg);
  117. transform: rotate(90deg);
  118. }
  119. .fa-rotate-180 {
  120. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  121. -webkit-transform: rotate(180deg);
  122. -ms-transform: rotate(180deg);
  123. transform: rotate(180deg);
  124. }
  125. .fa-rotate-270 {
  126. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  127. -webkit-transform: rotate(270deg);
  128. -ms-transform: rotate(270deg);
  129. transform: rotate(270deg);
  130. }
  131. .fa-flip-horizontal {
  132. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  133. -webkit-transform: scale(-1, 1);
  134. -ms-transform: scale(-1, 1);
  135. transform: scale(-1, 1);
  136. }
  137. .fa-flip-vertical {
  138. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  139. -webkit-transform: scale(1, -1);
  140. -ms-transform: scale(1, -1);
  141. transform: scale(1, -1);
  142. }
  143. :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  144. filter: none;
  145. }
  146. .fa-stack {
  147. position: relative;
  148. display: inline-block;
  149. width: 2em;
  150. height: 2em;
  151. line-height: 2em;
  152. vertical-align: middle;
  153. }
  154. .fa-stack-1x, .fa-stack-2x {
  155. position: absolute;
  156. left: 0;
  157. width: 100%;
  158. text-align: center;
  159. }
  160. .fa-stack-1x {
  161. line-height: inherit;
  162. }
  163. .fa-stack-2x {
  164. font-size: 2em;
  165. }
  166. .fa-inverse {
  167. color: #ffffff;
  168. }
  169. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  170. readers do not read off random characters that represent icons */
  171. .fa-glass:before {
  172. content: "\f000";
  173. }
  174. .fa-music:before {
  175. content: "\f001";
  176. }
  177. .fa-search:before {
  178. content: "\f002";
  179. }
  180. .fa-envelope-o:before {
  181. content: "\f003";
  182. }
  183. .fa-heart:before {
  184. content: "\f004";
  185. }
  186. .fa-star:before {
  187. content: "\f005";
  188. }
  189. .fa-star-o:before {
  190. content: "\f006";
  191. }
  192. .fa-user:before {
  193. content: "\f007";
  194. }
  195. .fa-film:before {
  196. content: "\f008";
  197. }
  198. .fa-th-large:before {
  199. content: "\f009";
  200. }
  201. .fa-th:before {
  202. content: "\f00a";
  203. }
  204. .fa-th-list:before {
  205. content: "\f00b";
  206. }
  207. .fa-check:before {
  208. content: "\f00c";
  209. }
  210. .fa-remove:before, .fa-close:before, .fa-times:before {
  211. content: "\f00d";
  212. }
  213. .fa-search-plus:before {
  214. content: "\f00e";
  215. }
  216. .fa-search-minus:before {
  217. content: "\f010";
  218. }
  219. .fa-power-off:before {
  220. content: "\f011";
  221. }
  222. .fa-signal:before {
  223. content: "\f012";
  224. }
  225. .fa-gear:before, .fa-cog:before {
  226. content: "\f013";
  227. }
  228. .fa-trash-o:before {
  229. content: "\f014";
  230. }
  231. .fa-home:before {
  232. content: "\f015";
  233. }
  234. .fa-file-o:before {
  235. content: "\f016";
  236. }
  237. .fa-clock-o:before {
  238. content: "\f017";
  239. }
  240. .fa-road:before {
  241. content: "\f018";
  242. }
  243. .fa-download:before {
  244. content: "\f019";
  245. }
  246. .fa-arrow-circle-o-down:before {
  247. content: "\f01a";
  248. }
  249. .fa-arrow-circle-o-up:before {
  250. content: "\f01b";
  251. }
  252. .fa-inbox:before {
  253. content: "\f01c";
  254. }
  255. .fa-play-circle-o:before {
  256. content: "\f01d";
  257. }
  258. .fa-rotate-right:before, .fa-repeat:before {
  259. content: "\f01e";
  260. }
  261. .fa-refresh:before {
  262. content: "\f021";
  263. }
  264. .fa-list-alt:before {
  265. content: "\f022";
  266. }
  267. .fa-lock:before {
  268. content: "\f023";
  269. }
  270. .fa-flag:before {
  271. content: "\f024";
  272. }
  273. .fa-headphones:before {
  274. content: "\f025";
  275. }
  276. .fa-volume-off:before {
  277. content: "\f026";
  278. }
  279. .fa-volume-down:before {
  280. content: "\f027";
  281. }
  282. .fa-volume-up:before {
  283. content: "\f028";
  284. }
  285. .fa-qrcode:before {
  286. content: "\f029";
  287. }
  288. .fa-barcode:before {
  289. content: "\f02a";
  290. }
  291. .fa-tag:before {
  292. content: "\f02b";
  293. }
  294. .fa-tags:before {
  295. content: "\f02c";
  296. }
  297. .fa-book:before {
  298. content: "\f02d";
  299. }
  300. .fa-bookmark:before {
  301. content: "\f02e";
  302. }
  303. .fa-print:before {
  304. content: "\f02f";
  305. }
  306. .fa-camera:before {
  307. content: "\f030";
  308. }
  309. .fa-font:before {
  310. content: "\f031";
  311. }
  312. .fa-bold:before {
  313. content: "\f032";
  314. }
  315. .fa-italic:before {
  316. content: "\f033";
  317. }
  318. .fa-text-height:before {
  319. content: "\f034";
  320. }
  321. .fa-text-width:before {
  322. content: "\f035";
  323. }
  324. .fa-align-left:before {
  325. content: "\f036";
  326. }
  327. .fa-align-center:before {
  328. content: "\f037";
  329. }
  330. .fa-align-right:before {
  331. content: "\f038";
  332. }
  333. .fa-align-justify:before {
  334. content: "\f039";
  335. }
  336. .fa-list:before {
  337. content: "\f03a";
  338. }
  339. .fa-dedent:before, .fa-outdent:before {
  340. content: "\f03b";
  341. }
  342. .fa-indent:before {
  343. content: "\f03c";
  344. }
  345. .fa-video-camera:before {
  346. content: "\f03d";
  347. }
  348. .fa-photo:before, .fa-image:before, .fa-picture-o:before {
  349. content: "\f03e";
  350. }
  351. .fa-pencil:before {
  352. content: "\f040";
  353. }
  354. .fa-map-marker:before {
  355. content: "\f041";
  356. }
  357. .fa-adjust:before {
  358. content: "\f042";
  359. }
  360. .fa-tint:before {
  361. content: "\f043";
  362. }
  363. .fa-edit:before, .fa-pencil-square-o:before {
  364. content: "\f044";
  365. }
  366. .fa-share-square-o:before {
  367. content: "\f045";
  368. }
  369. .fa-check-square-o:before {
  370. content: "\f046";
  371. }
  372. .fa-arrows:before {
  373. content: "\f047";
  374. }
  375. .fa-step-backward:before {
  376. content: "\f048";
  377. }
  378. .fa-fast-backward:before {
  379. content: "\f049";
  380. }
  381. .fa-backward:before {
  382. content: "\f04a";
  383. }
  384. .fa-play:before {
  385. content: "\f04b";
  386. }
  387. .fa-pause:before {
  388. content: "\f04c";
  389. }
  390. .fa-stop:before {
  391. content: "\f04d";
  392. }
  393. .fa-forward:before {
  394. content: "\f04e";
  395. }
  396. .fa-fast-forward:before {
  397. content: "\f050";
  398. }
  399. .fa-step-forward:before {
  400. content: "\f051";
  401. }
  402. .fa-eject:before {
  403. content: "\f052";
  404. }
  405. .fa-chevron-left:before {
  406. content: "\f053";
  407. }
  408. .fa-chevron-right:before {
  409. content: "\f054";
  410. }
  411. .fa-plus-circle:before {
  412. content: "\f055";
  413. }
  414. .fa-minus-circle:before {
  415. content: "\f056";
  416. }
  417. .fa-times-circle:before {
  418. content: "\f057";
  419. }
  420. .fa-check-circle:before {
  421. content: "\f058";
  422. }
  423. .fa-question-circle:before {
  424. content: "\f059";
  425. }
  426. .fa-info-circle:before {
  427. content: "\f05a";
  428. }
  429. .fa-crosshairs:before {
  430. content: "\f05b";
  431. }
  432. .fa-times-circle-o:before {
  433. content: "\f05c";
  434. }
  435. .fa-check-circle-o:before {
  436. content: "\f05d";
  437. }
  438. .fa-ban:before {
  439. content: "\f05e";
  440. }
  441. .fa-arrow-left:before {
  442. content: "\f060";
  443. }
  444. .fa-arrow-right:before {
  445. content: "\f061";
  446. }
  447. .fa-arrow-up:before {
  448. content: "\f062";
  449. }
  450. .fa-arrow-down:before {
  451. content: "\f063";
  452. }
  453. .fa-mail-forward:before, .fa-share:before {
  454. content: "\f064";
  455. }
  456. .fa-expand:before {
  457. content: "\f065";
  458. }
  459. .fa-compress:before {
  460. content: "\f066";
  461. }
  462. .fa-plus:before {
  463. content: "\f067";
  464. }
  465. .fa-minus:before {
  466. content: "\f068";
  467. }
  468. .fa-asterisk:before {
  469. content: "\f069";
  470. }
  471. .fa-exclamation-circle:before {
  472. content: "\f06a";
  473. }
  474. .fa-gift:before {
  475. content: "\f06b";
  476. }
  477. .fa-leaf:before {
  478. content: "\f06c";
  479. }
  480. .fa-fire:before {
  481. content: "\f06d";
  482. }
  483. .fa-eye:before {
  484. content: "\f06e";
  485. }
  486. .fa-eye-slash:before {
  487. content: "\f070";
  488. }
  489. .fa-warning:before, .fa-exclamation-triangle:before {
  490. content: "\f071";
  491. }
  492. .fa-plane:before {
  493. content: "\f072";
  494. }
  495. .fa-calendar:before {
  496. content: "\f073";
  497. }
  498. .fa-random:before {
  499. content: "\f074";
  500. }
  501. .fa-comment:before {
  502. content: "\f075";
  503. }
  504. .fa-magnet:before {
  505. content: "\f076";
  506. }
  507. .fa-chevron-up:before {
  508. content: "\f077";
  509. }
  510. .fa-chevron-down:before {
  511. content: "\f078";
  512. }
  513. .fa-retweet:before {
  514. content: "\f079";
  515. }
  516. .fa-shopping-cart:before {
  517. content: "\f07a";
  518. }
  519. .fa-folder:before {
  520. content: "\f07b";
  521. }
  522. .fa-folder-open:before {
  523. content: "\f07c";
  524. }
  525. .fa-arrows-v:before {
  526. content: "\f07d";
  527. }
  528. .fa-arrows-h:before {
  529. content: "\f07e";
  530. }
  531. .fa-bar-chart-o:before, .fa-bar-chart:before {
  532. content: "\f080";
  533. }
  534. .fa-twitter-square:before {
  535. content: "\f081";
  536. }
  537. .fa-facebook-square:before {
  538. content: "\f082";
  539. }
  540. .fa-camera-retro:before {
  541. content: "\f083";
  542. }
  543. .fa-key:before {
  544. content: "\f084";
  545. }
  546. .fa-gears:before, .fa-cogs:before {
  547. content: "\f085";
  548. }
  549. .fa-comments:before {
  550. content: "\f086";
  551. }
  552. .fa-thumbs-o-up:before {
  553. content: "\f087";
  554. }
  555. .fa-thumbs-o-down:before {
  556. content: "\f088";
  557. }
  558. .fa-star-half:before {
  559. content: "\f089";
  560. }
  561. .fa-heart-o:before {
  562. content: "\f08a";
  563. }
  564. .fa-sign-out:before {
  565. content: "\f08b";
  566. }
  567. .fa-linkedin-square:before {
  568. content: "\f08c";
  569. }
  570. .fa-thumb-tack:before {
  571. content: "\f08d";
  572. }
  573. .fa-external-link:before {
  574. content: "\f08e";
  575. }
  576. .fa-sign-in:before {
  577. content: "\f090";
  578. }
  579. .fa-trophy:before {
  580. content: "\f091";
  581. }
  582. .fa-github-square:before {
  583. content: "\f092";
  584. }
  585. .fa-upload:before {
  586. content: "\f093";
  587. }
  588. .fa-lemon-o:before {
  589. content: "\f094";
  590. }
  591. .fa-phone:before {
  592. content: "\f095";
  593. }
  594. .fa-square-o:before {
  595. content: "\f096";
  596. }
  597. .fa-bookmark-o:before {
  598. content: "\f097";
  599. }
  600. .fa-phone-square:before {
  601. content: "\f098";
  602. }
  603. .fa-twitter:before {
  604. content: "\f099";
  605. }
  606. .fa-facebook-f:before, .fa-facebook:before {
  607. content: "\f09a";
  608. }
  609. .fa-github:before {
  610. content: "\f09b";
  611. }
  612. .fa-unlock:before {
  613. content: "\f09c";
  614. }
  615. .fa-credit-card:before {
  616. content: "\f09d";
  617. }
  618. .fa-feed:before, .fa-rss:before {
  619. content: "\f09e";
  620. }
  621. .fa-hdd-o:before {
  622. content: "\f0a0";
  623. }
  624. .fa-bullhorn:before {
  625. content: "\f0a1";
  626. }
  627. .fa-bell:before {
  628. content: "\f0f3";
  629. }
  630. .fa-certificate:before {
  631. content: "\f0a3";
  632. }
  633. .fa-hand-o-right:before {
  634. content: "\f0a4";
  635. }
  636. .fa-hand-o-left:before {
  637. content: "\f0a5";
  638. }
  639. .fa-hand-o-up:before {
  640. content: "\f0a6";
  641. }
  642. .fa-hand-o-down:before {
  643. content: "\f0a7";
  644. }
  645. .fa-arrow-circle-left:before {
  646. content: "\f0a8";
  647. }
  648. .fa-arrow-circle-right:before {
  649. content: "\f0a9";
  650. }
  651. .fa-arrow-circle-up:before {
  652. content: "\f0aa";
  653. }
  654. .fa-arrow-circle-down:before {
  655. content: "\f0ab";
  656. }
  657. .fa-globe:before {
  658. content: "\f0ac";
  659. }
  660. .fa-wrench:before {
  661. content: "\f0ad";
  662. }
  663. .fa-tasks:before {
  664. content: "\f0ae";
  665. }
  666. .fa-filter:before {
  667. content: "\f0b0";
  668. }
  669. .fa-briefcase:before {
  670. content: "\f0b1";
  671. }
  672. .fa-arrows-alt:before {
  673. content: "\f0b2";
  674. }
  675. .fa-group:before, .fa-users:before {
  676. content: "\f0c0";
  677. }
  678. .fa-chain:before, .fa-link:before {
  679. content: "\f0c1";
  680. }
  681. .fa-cloud:before {
  682. content: "\f0c2";
  683. }
  684. .fa-flask:before {
  685. content: "\f0c3";
  686. }
  687. .fa-cut:before, .fa-scissors:before {
  688. content: "\f0c4";
  689. }
  690. .fa-copy:before, .fa-files-o:before {
  691. content: "\f0c5";
  692. }
  693. .fa-paperclip:before {
  694. content: "\f0c6";
  695. }
  696. .fa-save:before, .fa-floppy-o:before {
  697. content: "\f0c7";
  698. }
  699. .fa-square:before {
  700. content: "\f0c8";
  701. }
  702. .fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  703. content: "\f0c9";
  704. }
  705. .fa-list-ul:before {
  706. content: "\f0ca";
  707. }
  708. .fa-list-ol:before {
  709. content: "\f0cb";
  710. }
  711. .fa-strikethrough:before {
  712. content: "\f0cc";
  713. }
  714. .fa-underline:before {
  715. content: "\f0cd";
  716. }
  717. .fa-table:before {
  718. content: "\f0ce";
  719. }
  720. .fa-magic:before {
  721. content: "\f0d0";
  722. }
  723. .fa-truck:before {
  724. content: "\f0d1";
  725. }
  726. .fa-pinterest:before {
  727. content: "\f0d2";
  728. }
  729. .fa-pinterest-square:before {
  730. content: "\f0d3";
  731. }
  732. .fa-google-plus-square:before {
  733. content: "\f0d4";
  734. }
  735. .fa-google-plus:before {
  736. content: "\f0d5";
  737. }
  738. .fa-money:before {
  739. content: "\f0d6";
  740. }
  741. .fa-caret-down:before {
  742. content: "\f0d7";
  743. }
  744. .fa-caret-up:before {
  745. content: "\f0d8";
  746. }
  747. .fa-caret-left:before {
  748. content: "\f0d9";
  749. }
  750. .fa-caret-right:before {
  751. content: "\f0da";
  752. }
  753. .fa-columns:before {
  754. content: "\f0db";
  755. }
  756. .fa-unsorted:before, .fa-sort:before {
  757. content: "\f0dc";
  758. }
  759. .fa-sort-down:before, .fa-sort-desc:before {
  760. content: "\f0dd";
  761. }
  762. .fa-sort-up:before, .fa-sort-asc:before {
  763. content: "\f0de";
  764. }
  765. .fa-envelope:before {
  766. content: "\f0e0";
  767. }
  768. .fa-linkedin:before {
  769. content: "\f0e1";
  770. }
  771. .fa-rotate-left:before, .fa-undo:before {
  772. content: "\f0e2";
  773. }
  774. .fa-legal:before, .fa-gavel:before {
  775. content: "\f0e3";
  776. }
  777. .fa-dashboard:before, .fa-tachometer:before {
  778. content: "\f0e4";
  779. }
  780. .fa-comment-o:before {
  781. content: "\f0e5";
  782. }
  783. .fa-comments-o:before {
  784. content: "\f0e6";
  785. }
  786. .fa-flash:before, .fa-bolt:before {
  787. content: "\f0e7";
  788. }
  789. .fa-sitemap:before {
  790. content: "\f0e8";
  791. }
  792. .fa-umbrella:before {
  793. content: "\f0e9";
  794. }
  795. .fa-paste:before, .fa-clipboard:before {
  796. content: "\f0ea";
  797. }
  798. .fa-lightbulb-o:before {
  799. content: "\f0eb";
  800. }
  801. .fa-exchange:before {
  802. content: "\f0ec";
  803. }
  804. .fa-cloud-download:before {
  805. content: "\f0ed";
  806. }
  807. .fa-cloud-upload:before {
  808. content: "\f0ee";
  809. }
  810. .fa-user-md:before {
  811. content: "\f0f0";
  812. }
  813. .fa-stethoscope:before {
  814. content: "\f0f1";
  815. }
  816. .fa-suitcase:before {
  817. content: "\f0f2";
  818. }
  819. .fa-bell-o:before {
  820. content: "\f0a2";
  821. }
  822. .fa-coffee:before {
  823. content: "\f0f4";
  824. }
  825. .fa-cutlery:before {
  826. content: "\f0f5";
  827. }
  828. .fa-file-text-o:before {
  829. content: "\f0f6";
  830. }
  831. .fa-building-o:before {
  832. content: "\f0f7";
  833. }
  834. .fa-hospital-o:before {
  835. content: "\f0f8";
  836. }
  837. .fa-ambulance:before {
  838. content: "\f0f9";
  839. }
  840. .fa-medkit:before {
  841. content: "\f0fa";
  842. }
  843. .fa-fighter-jet:before {
  844. content: "\f0fb";
  845. }
  846. .fa-beer:before {
  847. content: "\f0fc";
  848. }
  849. .fa-h-square:before {
  850. content: "\f0fd";
  851. }
  852. .fa-plus-square:before {
  853. content: "\f0fe";
  854. }
  855. .fa-angle-double-left:before {
  856. content: "\f100";
  857. }
  858. .fa-angle-double-right:before {
  859. content: "\f101";
  860. }
  861. .fa-angle-double-up:before {
  862. content: "\f102";
  863. }
  864. .fa-angle-double-down:before {
  865. content: "\f103";
  866. }
  867. .fa-angle-left:before {
  868. content: "\f104";
  869. }
  870. .fa-angle-right:before {
  871. content: "\f105";
  872. }
  873. .fa-angle-up:before {
  874. content: "\f106";
  875. }
  876. .fa-angle-down:before {
  877. content: "\f107";
  878. }
  879. .fa-desktop:before {
  880. content: "\f108";
  881. }
  882. .fa-laptop:before {
  883. content: "\f109";
  884. }
  885. .fa-tablet:before {
  886. content: "\f10a";
  887. }
  888. .fa-mobile-phone:before, .fa-mobile:before {
  889. content: "\f10b";
  890. }
  891. .fa-circle-o:before {
  892. content: "\f10c";
  893. }
  894. .fa-quote-left:before {
  895. content: "\f10d";
  896. }
  897. .fa-quote-right:before {
  898. content: "\f10e";
  899. }
  900. .fa-spinner:before {
  901. content: "\f110";
  902. }
  903. .fa-circle:before {
  904. content: "\f111";
  905. }
  906. .fa-mail-reply:before, .fa-reply:before {
  907. content: "\f112";
  908. }
  909. .fa-github-alt:before {
  910. content: "\f113";
  911. }
  912. .fa-folder-o:before {
  913. content: "\f114";
  914. }
  915. .fa-folder-open-o:before {
  916. content: "\f115";
  917. }
  918. .fa-smile-o:before {
  919. content: "\f118";
  920. }
  921. .fa-frown-o:before {
  922. content: "\f119";
  923. }
  924. .fa-meh-o:before {
  925. content: "\f11a";
  926. }
  927. .fa-gamepad:before {
  928. content: "\f11b";
  929. }
  930. .fa-keyboard-o:before {
  931. content: "\f11c";
  932. }
  933. .fa-flag-o:before {
  934. content: "\f11d";
  935. }
  936. .fa-flag-checkered:before {
  937. content: "\f11e";
  938. }
  939. .fa-terminal:before {
  940. content: "\f120";
  941. }
  942. .fa-code:before {
  943. content: "\f121";
  944. }
  945. .fa-mail-reply-all:before, .fa-reply-all:before {
  946. content: "\f122";
  947. }
  948. .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  949. content: "\f123";
  950. }
  951. .fa-location-arrow:before {
  952. content: "\f124";
  953. }
  954. .fa-crop:before {
  955. content: "\f125";
  956. }
  957. .fa-code-fork:before {
  958. content: "\f126";
  959. }
  960. .fa-unlink:before, .fa-chain-broken:before {
  961. content: "\f127";
  962. }
  963. .fa-question:before {
  964. content: "\f128";
  965. }
  966. .fa-info:before {
  967. content: "\f129";
  968. }
  969. .fa-exclamation:before {
  970. content: "\f12a";
  971. }
  972. .fa-superscript:before {
  973. content: "\f12b";
  974. }
  975. .fa-subscript:before {
  976. content: "\f12c";
  977. }
  978. .fa-eraser:before {
  979. content: "\f12d";
  980. }
  981. .fa-puzzle-piece:before {
  982. content: "\f12e";
  983. }
  984. .fa-microphone:before {
  985. content: "\f130";
  986. }
  987. .fa-microphone-slash:before {
  988. content: "\f131";
  989. }
  990. .fa-shield:before {
  991. content: "\f132";
  992. }
  993. .fa-calendar-o:before {
  994. content: "\f133";
  995. }
  996. .fa-fire-extinguisher:before {
  997. content: "\f134";
  998. }
  999. .fa-rocket:before {
  1000. content: "\f135";
  1001. }
  1002. .fa-maxcdn:before {
  1003. content: "\f136";
  1004. }
  1005. .fa-chevron-circle-left:before {
  1006. content: "\f137";
  1007. }
  1008. .fa-chevron-circle-right:before {
  1009. content: "\f138";
  1010. }
  1011. .fa-chevron-circle-up:before {
  1012. content: "\f139";
  1013. }
  1014. .fa-chevron-circle-down:before {
  1015. content: "\f13a";
  1016. }
  1017. .fa-html5:before {
  1018. content: "\f13b";
  1019. }
  1020. .fa-css3:before {
  1021. content: "\f13c";
  1022. }
  1023. .fa-anchor:before {
  1024. content: "\f13d";
  1025. }
  1026. .fa-unlock-alt:before {
  1027. content: "\f13e";
  1028. }
  1029. .fa-bullseye:before {
  1030. content: "\f140";
  1031. }
  1032. .fa-ellipsis-h:before {
  1033. content: "\f141";
  1034. }
  1035. .fa-ellipsis-v:before {
  1036. content: "\f142";
  1037. }
  1038. .fa-rss-square:before {
  1039. content: "\f143";
  1040. }
  1041. .fa-play-circle:before {
  1042. content: "\f144";
  1043. }
  1044. .fa-ticket:before {
  1045. content: "\f145";
  1046. }
  1047. .fa-minus-square:before {
  1048. content: "\f146";
  1049. }
  1050. .fa-minus-square-o:before {
  1051. content: "\f147";
  1052. }
  1053. .fa-level-up:before {
  1054. content: "\f148";
  1055. }
  1056. .fa-level-down:before {
  1057. content: "\f149";
  1058. }
  1059. .fa-check-square:before {
  1060. content: "\f14a";
  1061. }
  1062. .fa-pencil-square:before {
  1063. content: "\f14b";
  1064. }
  1065. .fa-external-link-square:before {
  1066. content: "\f14c";
  1067. }
  1068. .fa-share-square:before {
  1069. content: "\f14d";
  1070. }
  1071. .fa-compass:before {
  1072. content: "\f14e";
  1073. }
  1074. .fa-toggle-down:before, .fa-caret-square-o-down:before {
  1075. content: "\f150";
  1076. }
  1077. .fa-toggle-up:before, .fa-caret-square-o-up:before {
  1078. content: "\f151";
  1079. }
  1080. .fa-toggle-right:before, .fa-caret-square-o-right:before {
  1081. content: "\f152";
  1082. }
  1083. .fa-euro:before, .fa-eur:before {
  1084. content: "\f153";
  1085. }
  1086. .fa-gbp:before {
  1087. content: "\f154";
  1088. }
  1089. .fa-dollar:before, .fa-usd:before {
  1090. content: "\f155";
  1091. }
  1092. .fa-rupee:before, .fa-inr:before {
  1093. content: "\f156";
  1094. }
  1095. .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  1096. content: "\f157";
  1097. }
  1098. .fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  1099. content: "\f158";
  1100. }
  1101. .fa-won:before, .fa-krw:before {
  1102. content: "\f159";
  1103. }
  1104. .fa-bitcoin:before, .fa-btc:before {
  1105. content: "\f15a";
  1106. }
  1107. .fa-file:before {
  1108. content: "\f15b";
  1109. }
  1110. .fa-file-text:before {
  1111. content: "\f15c";
  1112. }
  1113. .fa-sort-alpha-asc:before {
  1114. content: "\f15d";
  1115. }
  1116. .fa-sort-alpha-desc:before {
  1117. content: "\f15e";
  1118. }
  1119. .fa-sort-amount-asc:before {
  1120. content: "\f160";
  1121. }
  1122. .fa-sort-amount-desc:before {
  1123. content: "\f161";
  1124. }
  1125. .fa-sort-numeric-asc:before {
  1126. content: "\f162";
  1127. }
  1128. .fa-sort-numeric-desc:before {
  1129. content: "\f163";
  1130. }
  1131. .fa-thumbs-up:before {
  1132. content: "\f164";
  1133. }
  1134. .fa-thumbs-down:before {
  1135. content: "\f165";
  1136. }
  1137. .fa-youtube-square:before {
  1138. content: "\f166";
  1139. }
  1140. .fa-youtube:before {
  1141. content: "\f167";
  1142. }
  1143. .fa-xing:before {
  1144. content: "\f168";
  1145. }
  1146. .fa-xing-square:before {
  1147. content: "\f169";
  1148. }
  1149. .fa-youtube-play:before {
  1150. content: "\f16a";
  1151. }
  1152. .fa-dropbox:before {
  1153. content: "\f16b";
  1154. }
  1155. .fa-stack-overflow:before {
  1156. content: "\f16c";
  1157. }
  1158. .fa-instagram:before {
  1159. content: "\f16d";
  1160. }
  1161. .fa-flickr:before {
  1162. content: "\f16e";
  1163. }
  1164. .fa-adn:before {
  1165. content: "\f170";
  1166. }
  1167. .fa-bitbucket:before {
  1168. content: "\f171";
  1169. }
  1170. .fa-bitbucket-square:before {
  1171. content: "\f172";
  1172. }
  1173. .fa-tumblr:before {
  1174. content: "\f173";
  1175. }
  1176. .fa-tumblr-square:before {
  1177. content: "\f174";
  1178. }
  1179. .fa-long-arrow-down:before {
  1180. content: "\f175";
  1181. }
  1182. .fa-long-arrow-up:before {
  1183. content: "\f176";
  1184. }
  1185. .fa-long-arrow-left:before {
  1186. content: "\f177";
  1187. }
  1188. .fa-long-arrow-right:before {
  1189. content: "\f178";
  1190. }
  1191. .fa-apple:before {
  1192. content: "\f179";
  1193. }
  1194. .fa-windows:before {
  1195. content: "\f17a";
  1196. }
  1197. .fa-android:before {
  1198. content: "\f17b";
  1199. }
  1200. .fa-linux:before {
  1201. content: "\f17c";
  1202. }
  1203. .fa-dribbble:before {
  1204. content: "\f17d";
  1205. }
  1206. .fa-skype:before {
  1207. content: "\f17e";
  1208. }
  1209. .fa-foursquare:before {
  1210. content: "\f180";
  1211. }
  1212. .fa-trello:before {
  1213. content: "\f181";
  1214. }
  1215. .fa-female:before {
  1216. content: "\f182";
  1217. }
  1218. .fa-male:before {
  1219. content: "\f183";
  1220. }
  1221. .fa-gittip:before, .fa-gratipay:before {
  1222. content: "\f184";
  1223. }
  1224. .fa-sun-o:before {
  1225. content: "\f185";
  1226. }
  1227. .fa-moon-o:before {
  1228. content: "\f186";
  1229. }
  1230. .fa-archive:before {
  1231. content: "\f187";
  1232. }
  1233. .fa-bug:before {
  1234. content: "\f188";
  1235. }
  1236. .fa-vk:before {
  1237. content: "\f189";
  1238. }
  1239. .fa-weibo:before {
  1240. content: "\f18a";
  1241. }
  1242. .fa-renren:before {
  1243. content: "\f18b";
  1244. }
  1245. .fa-pagelines:before {
  1246. content: "\f18c";
  1247. }
  1248. .fa-stack-exchange:before {
  1249. content: "\f18d";
  1250. }
  1251. .fa-arrow-circle-o-right:before {
  1252. content: "\f18e";
  1253. }
  1254. .fa-arrow-circle-o-left:before {
  1255. content: "\f190";
  1256. }
  1257. .fa-toggle-left:before, .fa-caret-square-o-left:before {
  1258. content: "\f191";
  1259. }
  1260. .fa-dot-circle-o:before {
  1261. content: "\f192";
  1262. }
  1263. .fa-wheelchair:before {
  1264. content: "\f193";
  1265. }
  1266. .fa-vimeo-square:before {
  1267. content: "\f194";
  1268. }
  1269. .fa-turkish-lira:before, .fa-try:before {
  1270. content: "\f195";
  1271. }
  1272. .fa-plus-square-o:before {
  1273. content: "\f196";
  1274. }
  1275. .fa-space-shuttle:before {
  1276. content: "\f197";
  1277. }
  1278. .fa-slack:before {
  1279. content: "\f198";
  1280. }
  1281. .fa-envelope-square:before {
  1282. content: "\f199";
  1283. }
  1284. .fa-wordpress:before {
  1285. content: "\f19a";
  1286. }
  1287. .fa-openid:before {
  1288. content: "\f19b";
  1289. }
  1290. .fa-institution:before, .fa-bank:before, .fa-university:before {
  1291. content: "\f19c";
  1292. }
  1293. .fa-mortar-board:before, .fa-graduation-cap:before {
  1294. content: "\f19d";
  1295. }
  1296. .fa-yahoo:before {
  1297. content: "\f19e";
  1298. }
  1299. .fa-google:before {
  1300. content: "\f1a0";
  1301. }
  1302. .fa-reddit:before {
  1303. content: "\f1a1";
  1304. }
  1305. .fa-reddit-square:before {
  1306. content: "\f1a2";
  1307. }
  1308. .fa-stumbleupon-circle:before {
  1309. content: "\f1a3";
  1310. }
  1311. .fa-stumbleupon:before {
  1312. content: "\f1a4";
  1313. }
  1314. .fa-delicious:before {
  1315. content: "\f1a5";
  1316. }
  1317. .fa-digg:before {
  1318. content: "\f1a6";
  1319. }
  1320. .fa-pied-piper-pp:before {
  1321. content: "\f1a7";
  1322. }
  1323. .fa-pied-piper-alt:before {
  1324. content: "\f1a8";
  1325. }
  1326. .fa-drupal:before {
  1327. content: "\f1a9";
  1328. }
  1329. .fa-joomla:before {
  1330. content: "\f1aa";
  1331. }
  1332. .fa-language:before {
  1333. content: "\f1ab";
  1334. }
  1335. .fa-fax:before {
  1336. content: "\f1ac";
  1337. }
  1338. .fa-building:before {
  1339. content: "\f1ad";
  1340. }
  1341. .fa-child:before {
  1342. content: "\f1ae";
  1343. }
  1344. .fa-paw:before {
  1345. content: "\f1b0";
  1346. }
  1347. .fa-spoon:before {
  1348. content: "\f1b1";
  1349. }
  1350. .fa-cube:before {
  1351. content: "\f1b2";
  1352. }
  1353. .fa-cubes:before {
  1354. content: "\f1b3";
  1355. }
  1356. .fa-behance:before {
  1357. content: "\f1b4";
  1358. }
  1359. .fa-behance-square:before {
  1360. content: "\f1b5";
  1361. }
  1362. .fa-steam:before {
  1363. content: "\f1b6";
  1364. }
  1365. .fa-steam-square:before {
  1366. content: "\f1b7";
  1367. }
  1368. .fa-recycle:before {
  1369. content: "\f1b8";
  1370. }
  1371. .fa-automobile:before, .fa-car:before {
  1372. content: "\f1b9";
  1373. }
  1374. .fa-cab:before, .fa-taxi:before {
  1375. content: "\f1ba";
  1376. }
  1377. .fa-tree:before {
  1378. content: "\f1bb";
  1379. }
  1380. .fa-spotify:before {
  1381. content: "\f1bc";
  1382. }
  1383. .fa-deviantart:before {
  1384. content: "\f1bd";
  1385. }
  1386. .fa-soundcloud:before {
  1387. content: "\f1be";
  1388. }
  1389. .fa-database:before {
  1390. content: "\f1c0";
  1391. }
  1392. .fa-file-pdf-o:before {
  1393. content: "\f1c1";
  1394. }
  1395. .fa-file-word-o:before {
  1396. content: "\f1c2";
  1397. }
  1398. .fa-file-excel-o:before {
  1399. content: "\f1c3";
  1400. }
  1401. .fa-file-powerpoint-o:before {
  1402. content: "\f1c4";
  1403. }
  1404. .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  1405. content: "\f1c5";
  1406. }
  1407. .fa-file-zip-o:before, .fa-file-archive-o:before {
  1408. content: "\f1c6";
  1409. }
  1410. .fa-file-sound-o:before, .fa-file-audio-o:before {
  1411. content: "\f1c7";
  1412. }
  1413. .fa-file-movie-o:before, .fa-file-video-o:before {
  1414. content: "\f1c8";
  1415. }
  1416. .fa-file-code-o:before {
  1417. content: "\f1c9";
  1418. }
  1419. .fa-vine:before {
  1420. content: "\f1ca";
  1421. }
  1422. .fa-codepen:before {
  1423. content: "\f1cb";
  1424. }
  1425. .fa-jsfiddle:before {
  1426. content: "\f1cc";
  1427. }
  1428. .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  1429. content: "\f1cd";
  1430. }
  1431. .fa-circle-o-notch:before {
  1432. content: "\f1ce";
  1433. }
  1434. .fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  1435. content: "\f1d0";
  1436. }
  1437. .fa-ge:before, .fa-empire:before {
  1438. content: "\f1d1";
  1439. }
  1440. .fa-git-square:before {
  1441. content: "\f1d2";
  1442. }
  1443. .fa-git:before {
  1444. content: "\f1d3";
  1445. }
  1446. .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  1447. content: "\f1d4";
  1448. }
  1449. .fa-tencent-weibo:before {
  1450. content: "\f1d5";
  1451. }
  1452. .fa-qq:before {
  1453. content: "\f1d6";
  1454. }
  1455. .fa-wechat:before, .fa-weixin:before {
  1456. content: "\f1d7";
  1457. }
  1458. .fa-send:before, .fa-paper-plane:before {
  1459. content: "\f1d8";
  1460. }
  1461. .fa-send-o:before, .fa-paper-plane-o:before {
  1462. content: "\f1d9";
  1463. }
  1464. .fa-history:before {
  1465. content: "\f1da";
  1466. }
  1467. .fa-circle-thin:before {
  1468. content: "\f1db";
  1469. }
  1470. .fa-header:before {
  1471. content: "\f1dc";
  1472. }
  1473. .fa-paragraph:before {
  1474. content: "\f1dd";
  1475. }
  1476. .fa-sliders:before {
  1477. content: "\f1de";
  1478. }
  1479. .fa-share-alt:before {
  1480. content: "\f1e0";
  1481. }
  1482. .fa-share-alt-square:before {
  1483. content: "\f1e1";
  1484. }
  1485. .fa-bomb:before {
  1486. content: "\f1e2";
  1487. }
  1488. .fa-soccer-ball-o:before, .fa-futbol-o:before {
  1489. content: "\f1e3";
  1490. }
  1491. .fa-tty:before {
  1492. content: "\f1e4";
  1493. }
  1494. .fa-binoculars:before {
  1495. content: "\f1e5";
  1496. }
  1497. .fa-plug:before {
  1498. content: "\f1e6";
  1499. }
  1500. .fa-slideshare:before {
  1501. content: "\f1e7";
  1502. }
  1503. .fa-twitch:before {
  1504. content: "\f1e8";
  1505. }
  1506. .fa-yelp:before {
  1507. content: "\f1e9";
  1508. }
  1509. .fa-newspaper-o:before {
  1510. content: "\f1ea";
  1511. }
  1512. .fa-wifi:before {
  1513. content: "\f1eb";
  1514. }
  1515. .fa-calculator:before {
  1516. content: "\f1ec";
  1517. }
  1518. .fa-paypal:before {
  1519. content: "\f1ed";
  1520. }
  1521. .fa-google-wallet:before {
  1522. content: "\f1ee";
  1523. }
  1524. .fa-cc-visa:before {
  1525. content: "\f1f0";
  1526. }
  1527. .fa-cc-mastercard:before {
  1528. content: "\f1f1";
  1529. }
  1530. .fa-cc-discover:before {
  1531. content: "\f1f2";
  1532. }
  1533. .fa-cc-amex:before {
  1534. content: "\f1f3";
  1535. }
  1536. .fa-cc-paypal:before {
  1537. content: "\f1f4";
  1538. }
  1539. .fa-cc-stripe:before {
  1540. content: "\f1f5";
  1541. }
  1542. .fa-bell-slash:before {
  1543. content: "\f1f6";
  1544. }
  1545. .fa-bell-slash-o:before {
  1546. content: "\f1f7";
  1547. }
  1548. .fa-trash:before {
  1549. content: "\f1f8";
  1550. }
  1551. .fa-copyright:before {
  1552. content: "\f1f9";
  1553. }
  1554. .fa-at:before {
  1555. content: "\f1fa";
  1556. }
  1557. .fa-eyedropper:before {
  1558. content: "\f1fb";
  1559. }
  1560. .fa-paint-brush:before {
  1561. content: "\f1fc";
  1562. }
  1563. .fa-birthday-cake:before {
  1564. content: "\f1fd";
  1565. }
  1566. .fa-area-chart:before {
  1567. content: "\f1fe";
  1568. }
  1569. .fa-pie-chart:before {
  1570. content: "\f200";
  1571. }
  1572. .fa-line-chart:before {
  1573. content: "\f201";
  1574. }
  1575. .fa-lastfm:before {
  1576. content: "\f202";
  1577. }
  1578. .fa-lastfm-square:before {
  1579. content: "\f203";
  1580. }
  1581. .fa-toggle-off:before {
  1582. content: "\f204";
  1583. }
  1584. .fa-toggle-on:before {
  1585. content: "\f205";
  1586. }
  1587. .fa-bicycle:before {
  1588. content: "\f206";
  1589. }
  1590. .fa-bus:before {
  1591. content: "\f207";
  1592. }
  1593. .fa-ioxhost:before {
  1594. content: "\f208";
  1595. }
  1596. .fa-angellist:before {
  1597. content: "\f209";
  1598. }
  1599. .fa-cc:before {
  1600. content: "\f20a";
  1601. }
  1602. .fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  1603. content: "\f20b";
  1604. }
  1605. .fa-meanpath:before {
  1606. content: "\f20c";
  1607. }
  1608. .fa-buysellads:before {
  1609. content: "\f20d";
  1610. }
  1611. .fa-connectdevelop:before {
  1612. content: "\f20e";
  1613. }
  1614. .fa-dashcube:before {
  1615. content: "\f210";
  1616. }
  1617. .fa-forumbee:before {
  1618. content: "\f211";
  1619. }
  1620. .fa-leanpub:before {
  1621. content: "\f212";
  1622. }
  1623. .fa-sellsy:before {
  1624. content: "\f213";
  1625. }
  1626. .fa-shirtsinbulk:before {
  1627. content: "\f214";
  1628. }
  1629. .fa-simplybuilt:before {
  1630. content: "\f215";
  1631. }
  1632. .fa-skyatlas:before {
  1633. content: "\f216";
  1634. }
  1635. .fa-cart-plus:before {
  1636. content: "\f217";
  1637. }
  1638. .fa-cart-arrow-down:before {
  1639. content: "\f218";
  1640. }
  1641. .fa-diamond:before {
  1642. content: "\f219";
  1643. }
  1644. .fa-ship:before {
  1645. content: "\f21a";
  1646. }
  1647. .fa-user-secret:before {
  1648. content: "\f21b";
  1649. }
  1650. .fa-motorcycle:before {
  1651. content: "\f21c";
  1652. }
  1653. .fa-street-view:before {
  1654. content: "\f21d";
  1655. }
  1656. .fa-heartbeat:before {
  1657. content: "\f21e";
  1658. }
  1659. .fa-venus:before {
  1660. content: "\f221";
  1661. }
  1662. .fa-mars:before {
  1663. content: "\f222";
  1664. }
  1665. .fa-mercury:before {
  1666. content: "\f223";
  1667. }
  1668. .fa-intersex:before, .fa-transgender:before {
  1669. content: "\f224";
  1670. }
  1671. .fa-transgender-alt:before {
  1672. content: "\f225";
  1673. }
  1674. .fa-venus-double:before {
  1675. content: "\f226";
  1676. }
  1677. .fa-mars-double:before {
  1678. content: "\f227";
  1679. }
  1680. .fa-venus-mars:before {
  1681. content: "\f228";
  1682. }
  1683. .fa-mars-stroke:before {
  1684. content: "\f229";
  1685. }
  1686. .fa-mars-stroke-v:before {
  1687. content: "\f22a";
  1688. }
  1689. .fa-mars-stroke-h:before {
  1690. content: "\f22b";
  1691. }
  1692. .fa-neuter:before {
  1693. content: "\f22c";
  1694. }
  1695. .fa-genderless:before {
  1696. content: "\f22d";
  1697. }
  1698. .fa-facebook-official:before {
  1699. content: "\f230";
  1700. }
  1701. .fa-pinterest-p:before {
  1702. content: "\f231";
  1703. }
  1704. .fa-whatsapp:before {
  1705. content: "\f232";
  1706. }
  1707. .fa-server:before {
  1708. content: "\f233";
  1709. }
  1710. .fa-user-plus:before {
  1711. content: "\f234";
  1712. }
  1713. .fa-user-times:before {
  1714. content: "\f235";
  1715. }
  1716. .fa-hotel:before, .fa-bed:before {
  1717. content: "\f236";
  1718. }
  1719. .fa-viacoin:before {
  1720. content: "\f237";
  1721. }
  1722. .fa-train:before {
  1723. content: "\f238";
  1724. }
  1725. .fa-subway:before {
  1726. content: "\f239";
  1727. }
  1728. .fa-medium:before {
  1729. content: "\f23a";
  1730. }
  1731. .fa-yc:before, .fa-y-combinator:before {
  1732. content: "\f23b";
  1733. }
  1734. .fa-optin-monster:before {
  1735. content: "\f23c";
  1736. }
  1737. .fa-opencart:before {
  1738. content: "\f23d";
  1739. }
  1740. .fa-expeditedssl:before {
  1741. content: "\f23e";
  1742. }
  1743. .fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  1744. content: "\f240";
  1745. }
  1746. .fa-battery-3:before, .fa-battery-three-quarters:before {
  1747. content: "\f241";
  1748. }
  1749. .fa-battery-2:before, .fa-battery-half:before {
  1750. content: "\f242";
  1751. }
  1752. .fa-battery-1:before, .fa-battery-quarter:before {
  1753. content: "\f243";
  1754. }
  1755. .fa-battery-0:before, .fa-battery-empty:before {
  1756. content: "\f244";
  1757. }
  1758. .fa-mouse-pointer:before {
  1759. content: "\f245";
  1760. }
  1761. .fa-i-cursor:before {
  1762. content: "\f246";
  1763. }
  1764. .fa-object-group:before {
  1765. content: "\f247";
  1766. }
  1767. .fa-object-ungroup:before {
  1768. content: "\f248";
  1769. }
  1770. .fa-sticky-note:before {
  1771. content: "\f249";
  1772. }
  1773. .fa-sticky-note-o:before {
  1774. content: "\f24a";
  1775. }
  1776. .fa-cc-jcb:before {
  1777. content: "\f24b";
  1778. }
  1779. .fa-cc-diners-club:before {
  1780. content: "\f24c";
  1781. }
  1782. .fa-clone:before {
  1783. content: "\f24d";
  1784. }
  1785. .fa-balance-scale:before {
  1786. content: "\f24e";
  1787. }
  1788. .fa-hourglass-o:before {
  1789. content: "\f250";
  1790. }
  1791. .fa-hourglass-1:before, .fa-hourglass-start:before {
  1792. content: "\f251";
  1793. }
  1794. .fa-hourglass-2:before, .fa-hourglass-half:before {
  1795. content: "\f252";
  1796. }
  1797. .fa-hourglass-3:before, .fa-hourglass-end:before {
  1798. content: "\f253";
  1799. }
  1800. .fa-hourglass:before {
  1801. content: "\f254";
  1802. }
  1803. .fa-hand-grab-o:before, .fa-hand-rock-o:before {
  1804. content: "\f255";
  1805. }
  1806. .fa-hand-stop-o:before, .fa-hand-paper-o:before {
  1807. content: "\f256";
  1808. }
  1809. .fa-hand-scissors-o:before {
  1810. content: "\f257";
  1811. }
  1812. .fa-hand-lizard-o:before {
  1813. content: "\f258";
  1814. }
  1815. .fa-hand-spock-o:before {
  1816. content: "\f259";
  1817. }
  1818. .fa-hand-pointer-o:before {
  1819. content: "\f25a";
  1820. }
  1821. .fa-hand-peace-o:before {
  1822. content: "\f25b";
  1823. }
  1824. .fa-trademark:before {
  1825. content: "\f25c";
  1826. }
  1827. .fa-registered:before {
  1828. content: "\f25d";
  1829. }
  1830. .fa-creative-commons:before {
  1831. content: "\f25e";
  1832. }
  1833. .fa-gg:before {
  1834. content: "\f260";
  1835. }
  1836. .fa-gg-circle:before {
  1837. content: "\f261";
  1838. }
  1839. .fa-tripadvisor:before {
  1840. content: "\f262";
  1841. }
  1842. .fa-odnoklassniki:before {
  1843. content: "\f263";
  1844. }
  1845. .fa-odnoklassniki-square:before {
  1846. content: "\f264";
  1847. }
  1848. .fa-get-pocket:before {
  1849. content: "\f265";
  1850. }
  1851. .fa-wikipedia-w:before {
  1852. content: "\f266";
  1853. }
  1854. .fa-safari:before {
  1855. content: "\f267";
  1856. }
  1857. .fa-chrome:before {
  1858. content: "\f268";
  1859. }
  1860. .fa-firefox:before {
  1861. content: "\f269";
  1862. }
  1863. .fa-opera:before {
  1864. content: "\f26a";
  1865. }
  1866. .fa-internet-explorer:before {
  1867. content: "\f26b";
  1868. }
  1869. .fa-tv:before, .fa-television:before {
  1870. content: "\f26c";
  1871. }
  1872. .fa-contao:before {
  1873. content: "\f26d";
  1874. }
  1875. .fa-500px:before {
  1876. content: "\f26e";
  1877. }
  1878. .fa-amazon:before {
  1879. content: "\f270";
  1880. }
  1881. .fa-calendar-plus-o:before {
  1882. content: "\f271";
  1883. }
  1884. .fa-calendar-minus-o:before {
  1885. content: "\f272";
  1886. }
  1887. .fa-calendar-times-o:before {
  1888. content: "\f273";
  1889. }
  1890. .fa-calendar-check-o:before {
  1891. content: "\f274";
  1892. }
  1893. .fa-industry:before {
  1894. content: "\f275";
  1895. }
  1896. .fa-map-pin:before {
  1897. content: "\f276";
  1898. }
  1899. .fa-map-signs:before {
  1900. content: "\f277";
  1901. }
  1902. .fa-map-o:before {
  1903. content: "\f278";
  1904. }
  1905. .fa-map:before {
  1906. content: "\f279";
  1907. }
  1908. .fa-commenting:before {
  1909. content: "\f27a";
  1910. }
  1911. .fa-commenting-o:before {
  1912. content: "\f27b";
  1913. }
  1914. .fa-houzz:before {
  1915. content: "\f27c";
  1916. }
  1917. .fa-vimeo:before {
  1918. content: "\f27d";
  1919. }
  1920. .fa-black-tie:before {
  1921. content: "\f27e";
  1922. }
  1923. .fa-fonticons:before {
  1924. content: "\f280";
  1925. }
  1926. .fa-reddit-alien:before {
  1927. content: "\f281";
  1928. }
  1929. .fa-edge:before {
  1930. content: "\f282";
  1931. }
  1932. .fa-credit-card-alt:before {
  1933. content: "\f283";
  1934. }
  1935. .fa-codiepie:before {
  1936. content: "\f284";
  1937. }
  1938. .fa-modx:before {
  1939. content: "\f285";
  1940. }
  1941. .fa-fort-awesome:before {
  1942. content: "\f286";
  1943. }
  1944. .fa-usb:before {
  1945. content: "\f287";
  1946. }
  1947. .fa-product-hunt:before {
  1948. content: "\f288";
  1949. }
  1950. .fa-mixcloud:before {
  1951. content: "\f289";
  1952. }
  1953. .fa-scribd:before {
  1954. content: "\f28a";
  1955. }
  1956. .fa-pause-circle:before {
  1957. content: "\f28b";
  1958. }
  1959. .fa-pause-circle-o:before {
  1960. content: "\f28c";
  1961. }
  1962. .fa-stop-circle:before {
  1963. content: "\f28d";
  1964. }
  1965. .fa-stop-circle-o:before {
  1966. content: "\f28e";
  1967. }
  1968. .fa-shopping-bag:before {
  1969. content: "\f290";
  1970. }
  1971. .fa-shopping-basket:before {
  1972. content: "\f291";
  1973. }
  1974. .fa-hashtag:before {
  1975. content: "\f292";
  1976. }
  1977. .fa-bluetooth:before {
  1978. content: "\f293";
  1979. }
  1980. .fa-bluetooth-b:before {
  1981. content: "\f294";
  1982. }
  1983. .fa-percent:before {
  1984. content: "\f295";
  1985. }
  1986. .fa-gitlab:before {
  1987. content: "\f296";
  1988. }
  1989. .fa-wpbeginner:before {
  1990. content: "\f297";
  1991. }
  1992. .fa-wpforms:before {
  1993. content: "\f298";
  1994. }
  1995. .fa-envira:before {
  1996. content: "\f299";
  1997. }
  1998. .fa-universal-access:before {
  1999. content: "\f29a";
  2000. }
  2001. .fa-wheelchair-alt:before {
  2002. content: "\f29b";
  2003. }
  2004. .fa-question-circle-o:before {
  2005. content: "\f29c";
  2006. }
  2007. .fa-blind:before {
  2008. content: "\f29d";
  2009. }
  2010. .fa-audio-description:before {
  2011. content: "\f29e";
  2012. }
  2013. .fa-volume-control-phone:before {
  2014. content: "\f2a0";
  2015. }
  2016. .fa-braille:before {
  2017. content: "\f2a1";
  2018. }
  2019. .fa-assistive-listening-systems:before {
  2020. content: "\f2a2";
  2021. }
  2022. .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  2023. content: "\f2a3";
  2024. }
  2025. .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  2026. content: "\f2a4";
  2027. }
  2028. .fa-glide:before {
  2029. content: "\f2a5";
  2030. }
  2031. .fa-glide-g:before {
  2032. content: "\f2a6";
  2033. }
  2034. .fa-signing:before, .fa-sign-language:before {
  2035. content: "\f2a7";
  2036. }
  2037. .fa-low-vision:before {
  2038. content: "\f2a8";
  2039. }
  2040. .fa-viadeo:before {
  2041. content: "\f2a9";
  2042. }
  2043. .fa-viadeo-square:before {
  2044. content: "\f2aa";
  2045. }
  2046. .fa-snapchat:before {
  2047. content: "\f2ab";
  2048. }
  2049. .fa-snapchat-ghost:before {
  2050. content: "\f2ac";
  2051. }
  2052. .fa-snapchat-square:before {
  2053. content: "\f2ad";
  2054. }
  2055. .fa-pied-piper:before {
  2056. content: "\f2ae";
  2057. }
  2058. .fa-first-order:before {
  2059. content: "\f2b0";
  2060. }
  2061. .fa-yoast:before {
  2062. content: "\f2b1";
  2063. }
  2064. .fa-themeisle:before {
  2065. content: "\f2b2";
  2066. }
  2067. .fa-google-plus-circle:before, .fa-google-plus-official:before {
  2068. content: "\f2b3";
  2069. }
  2070. .fa-fa:before, .fa-font-awesome:before {
  2071. content: "\f2b4";
  2072. }
  2073. .fa-handshake-o:before {
  2074. content: "\f2b5";
  2075. }
  2076. .fa-envelope-open:before {
  2077. content: "\f2b6";
  2078. }
  2079. .fa-envelope-open-o:before {
  2080. content: "\f2b7";
  2081. }
  2082. .fa-linode:before {
  2083. content: "\f2b8";
  2084. }
  2085. .fa-address-book:before {
  2086. content: "\f2b9";
  2087. }
  2088. .fa-address-book-o:before {
  2089. content: "\f2ba";
  2090. }
  2091. .fa-vcard:before, .fa-address-card:before {
  2092. content: "\f2bb";
  2093. }
  2094. .fa-vcard-o:before, .fa-address-card-o:before {
  2095. content: "\f2bc";
  2096. }
  2097. .fa-user-circle:before {
  2098. content: "\f2bd";
  2099. }
  2100. .fa-user-circle-o:before {
  2101. content: "\f2be";
  2102. }
  2103. .fa-user-o:before {
  2104. content: "\f2c0";
  2105. }
  2106. .fa-id-badge:before {
  2107. content: "\f2c1";
  2108. }
  2109. .fa-drivers-license:before, .fa-id-card:before {
  2110. content: "\f2c2";
  2111. }
  2112. .fa-drivers-license-o:before, .fa-id-card-o:before {
  2113. content: "\f2c3";
  2114. }
  2115. .fa-quora:before {
  2116. content: "\f2c4";
  2117. }
  2118. .fa-free-code-camp:before {
  2119. content: "\f2c5";
  2120. }
  2121. .fa-telegram:before {
  2122. content: "\f2c6";
  2123. }
  2124. .fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  2125. content: "\f2c7";
  2126. }
  2127. .fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  2128. content: "\f2c8";
  2129. }
  2130. .fa-thermometer-2:before, .fa-thermometer-half:before {
  2131. content: "\f2c9";
  2132. }
  2133. .fa-thermometer-1:before, .fa-thermometer-quarter:before {
  2134. content: "\f2ca";
  2135. }
  2136. .fa-thermometer-0:before, .fa-thermometer-empty:before {
  2137. content: "\f2cb";
  2138. }
  2139. .fa-shower:before {
  2140. content: "\f2cc";
  2141. }
  2142. .fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  2143. content: "\f2cd";
  2144. }
  2145. .fa-podcast:before {
  2146. content: "\f2ce";
  2147. }
  2148. .fa-window-maximize:before {
  2149. content: "\f2d0";
  2150. }
  2151. .fa-window-minimize:before {
  2152. content: "\f2d1";
  2153. }
  2154. .fa-window-restore:before {
  2155. content: "\f2d2";
  2156. }
  2157. .fa-times-rectangle:before, .fa-window-close:before {
  2158. content: "\f2d3";
  2159. }
  2160. .fa-times-rectangle-o:before, .fa-window-close-o:before {
  2161. content: "\f2d4";
  2162. }
  2163. .fa-bandcamp:before {
  2164. content: "\f2d5";
  2165. }
  2166. .fa-grav:before {
  2167. content: "\f2d6";
  2168. }
  2169. .fa-etsy:before {
  2170. content: "\f2d7";
  2171. }
  2172. .fa-imdb:before {
  2173. content: "\f2d8";
  2174. }
  2175. .fa-ravelry:before {
  2176. content: "\f2d9";
  2177. }
  2178. .fa-eercast:before {
  2179. content: "\f2da";
  2180. }
  2181. .fa-microchip:before {
  2182. content: "\f2db";
  2183. }
  2184. .fa-snowflake-o:before {
  2185. content: "\f2dc";
  2186. }
  2187. .fa-superpowers:before {
  2188. content: "\f2dd";
  2189. }
  2190. .fa-wpexplorer:before {
  2191. content: "\f2de";
  2192. }
  2193. .fa-meetup:before {
  2194. content: "\f2e0";
  2195. }
  2196. .sr-only {
  2197. position: absolute;
  2198. width: 1px;
  2199. height: 1px;
  2200. padding: 0;
  2201. margin: -1px;
  2202. overflow: hidden;
  2203. clip: rect(0, 0, 0, 0);
  2204. border: 0;
  2205. }
  2206. .sr-only-focusable:active, .sr-only-focusable:focus {
  2207. position: static;
  2208. width: auto;
  2209. height: auto;
  2210. margin: 0;
  2211. overflow: visible;
  2212. clip: auto;
  2213. }