Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

font-awesome.css 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. /*!
  2. * Font Awesome 4.3.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. @font-face {
  8. font-family: 'FontAwesome';
  9. src: url('../fonts/fontawesome-webfonte0a5.eot?v=4.3.0');
  10. src: url('../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfonte0a5.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfonte0a5.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfonte0a5.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfonte0a5.svg?v=4.3.0#fontawesomeregular') format('svg');
  11. font-weight: normal;
  12. font-style: normal;
  13. }
  14. .fa {
  15. display: inline-block;
  16. font-family: 'FontAwesome';
  17. font-weight: normal;
  18. font-style: normal;
  19. font-size: inherit;
  20. text-rendering: auto;
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23. transform: translate(0, 0);
  24. }
  25. /* makes the font 33% larger relative to the icon container */
  26. .fa-lg {
  27. font-size: 1.33333333em;
  28. line-height: 0.75em;
  29. vertical-align: -15%;
  30. }
  31. .fa-2x {
  32. font-size: 2em;
  33. }
  34. .fa-3x {
  35. font-size: 3em;
  36. }
  37. .fa-4x {
  38. font-size: 4em;
  39. }
  40. .fa-5x {
  41. font-size: 5em;
  42. }
  43. .fa-fw {
  44. width: 1.28571429em;
  45. text-align: center;
  46. }
  47. .fa-ul {
  48. padding-left: 0;
  49. margin-left: 2.14285714em;
  50. list-style-type: none;
  51. }
  52. .fa-ul > li {
  53. position: relative;
  54. }
  55. .fa-li {
  56. position: absolute;
  57. left: -2.14285714em;
  58. width: 2.14285714em;
  59. top: 0.14285714em;
  60. text-align: center;
  61. }
  62. .fa-li.fa-lg {
  63. left: -1.85714286em;
  64. }
  65. .fa-border {
  66. padding: .2em .25em .15em;
  67. border: solid 0.08em #eeeeee;
  68. border-radius: .1em;
  69. }
  70. .pull-right {
  71. float: right;
  72. }
  73. .pull-left {
  74. float: left;
  75. }
  76. .fa.pull-left {
  77. margin-right: .3em;
  78. }
  79. .fa.pull-right {
  80. margin-left: .3em;
  81. }
  82. .fa-spin {
  83. -webkit-animation: fa-spin 2s infinite linear;
  84. animation: fa-spin 2s infinite linear;
  85. }
  86. .fa-pulse {
  87. -webkit-animation: fa-spin 1s infinite steps(8);
  88. animation: fa-spin 1s infinite steps(8);
  89. }
  90. @-webkit-keyframes fa-spin {
  91. 0% {
  92. -webkit-transform: rotate(0deg);
  93. transform: rotate(0deg);
  94. }
  95. 100% {
  96. -webkit-transform: rotate(359deg);
  97. transform: rotate(359deg);
  98. }
  99. }
  100. @keyframes fa-spin {
  101. 0% {
  102. -webkit-transform: rotate(0deg);
  103. transform: rotate(0deg);
  104. }
  105. 100% {
  106. -webkit-transform: rotate(359deg);
  107. transform: rotate(359deg);
  108. }
  109. }
  110. .fa-rotate-90 {
  111. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  112. -webkit-transform: rotate(90deg);
  113. -ms-transform: rotate(90deg);
  114. transform: rotate(90deg);
  115. }
  116. .fa-rotate-180 {
  117. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  118. -webkit-transform: rotate(180deg);
  119. -ms-transform: rotate(180deg);
  120. transform: rotate(180deg);
  121. }
  122. .fa-rotate-270 {
  123. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  124. -webkit-transform: rotate(270deg);
  125. -ms-transform: rotate(270deg);
  126. transform: rotate(270deg);
  127. }
  128. .fa-flip-horizontal {
  129. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  130. -webkit-transform: scale(-1, 1);
  131. -ms-transform: scale(-1, 1);
  132. transform: scale(-1, 1);
  133. }
  134. .fa-flip-vertical {
  135. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  136. -webkit-transform: scale(1, -1);
  137. -ms-transform: scale(1, -1);
  138. transform: scale(1, -1);
  139. }
  140. :root .fa-rotate-90,
  141. :root .fa-rotate-180,
  142. :root .fa-rotate-270,
  143. :root .fa-flip-horizontal,
  144. :root .fa-flip-vertical {
  145. filter: none;
  146. }
  147. .fa-stack {
  148. position: relative;
  149. display: inline-block;
  150. width: 2em;
  151. height: 2em;
  152. line-height: 2em;
  153. vertical-align: middle;
  154. }
  155. .fa-stack-1x,
  156. .fa-stack-2x {
  157. position: absolute;
  158. left: 0;
  159. width: 100%;
  160. text-align: center;
  161. }
  162. .fa-stack-1x {
  163. line-height: inherit;
  164. }
  165. .fa-stack-2x {
  166. font-size: 2em;
  167. }
  168. .fa-inverse {
  169. color: #ffffff;
  170. }
  171. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  172. readers do not read off random characters that represent icons */
  173. .fa-glass:before {
  174. content: "\f000";
  175. }
  176. .fa-music:before {
  177. content: "\f001";
  178. }
  179. .fa-search:before {
  180. content: "\f002";
  181. }
  182. .fa-envelope-o:before {
  183. content: "\f003";
  184. }
  185. .fa-heart:before {
  186. content: "\f004";
  187. }
  188. .fa-star:before {
  189. content: "\f005";
  190. }
  191. .fa-star-o:before {
  192. content: "\f006";
  193. }
  194. .fa-user:before {
  195. content: "\f007";
  196. }
  197. .fa-film:before {
  198. content: "\f008";
  199. }
  200. .fa-th-large:before {
  201. content: "\f009";
  202. }
  203. .fa-th:before {
  204. content: "\f00a";
  205. }
  206. .fa-th-list:before {
  207. content: "\f00b";
  208. }
  209. .fa-check:before {
  210. content: "\f00c";
  211. }
  212. .fa-remove:before,
  213. .fa-close:before,
  214. .fa-times:before {
  215. content: "\f00d";
  216. }
  217. .fa-search-plus:before {
  218. content: "\f00e";
  219. }
  220. .fa-search-minus:before {
  221. content: "\f010";
  222. }
  223. .fa-power-off:before {
  224. content: "\f011";
  225. }
  226. .fa-signal:before {
  227. content: "\f012";
  228. }
  229. .fa-gear:before,
  230. .fa-cog:before {
  231. content: "\f013";
  232. }
  233. .fa-trash-o:before {
  234. content: "\f014";
  235. }
  236. .fa-home:before {
  237. content: "\f015";
  238. }
  239. .fa-file-o:before {
  240. content: "\f016";
  241. }
  242. .fa-clock-o:before {
  243. content: "\f017";
  244. }
  245. .fa-road:before {
  246. content: "\f018";
  247. }
  248. .fa-download:before {
  249. content: "\f019";
  250. }
  251. .fa-arrow-circle-o-down:before {
  252. content: "\f01a";
  253. }
  254. .fa-arrow-circle-o-up:before {
  255. content: "\f01b";
  256. }
  257. .fa-inbox:before {
  258. content: "\f01c";
  259. }
  260. .fa-play-circle-o:before {
  261. content: "\f01d";
  262. }
  263. .fa-rotate-right:before,
  264. .fa-repeat:before {
  265. content: "\f01e";
  266. }
  267. .fa-refresh:before {
  268. content: "\f021";
  269. }
  270. .fa-list-alt:before {
  271. content: "\f022";
  272. }
  273. .fa-lock:before {
  274. content: "\f023";
  275. }
  276. .fa-flag:before {
  277. content: "\f024";
  278. }
  279. .fa-headphones:before {
  280. content: "\f025";
  281. }
  282. .fa-volume-off:before {
  283. content: "\f026";
  284. }
  285. .fa-volume-down:before {
  286. content: "\f027";
  287. }
  288. .fa-volume-up:before {
  289. content: "\f028";
  290. }
  291. .fa-qrcode:before {
  292. content: "\f029";
  293. }
  294. .fa-barcode:before {
  295. content: "\f02a";
  296. }
  297. .fa-tag:before {
  298. content: "\f02b";
  299. }
  300. .fa-tags:before {
  301. content: "\f02c";
  302. }
  303. .fa-book:before {
  304. content: "\f02d";
  305. }
  306. .fa-bookmark:before {
  307. content: "\f02e";
  308. }
  309. .fa-print:before {
  310. content: "\f02f";
  311. }
  312. .fa-camera:before {
  313. content: "\f030";
  314. }
  315. .fa-font:before {
  316. content: "\f031";
  317. }
  318. .fa-bold:before {
  319. content: "\f032";
  320. }
  321. .fa-italic:before {
  322. content: "\f033";
  323. }
  324. .fa-text-height:before {
  325. content: "\f034";
  326. }
  327. .fa-text-width:before {
  328. content: "\f035";
  329. }
  330. .fa-align-left:before {
  331. content: "\f036";
  332. }
  333. .fa-align-center:before {
  334. content: "\f037";
  335. }
  336. .fa-align-right:before {
  337. content: "\f038";
  338. }
  339. .fa-align-justify:before {
  340. content: "\f039";
  341. }
  342. .fa-list:before {
  343. content: "\f03a";
  344. }
  345. .fa-dedent:before,
  346. .fa-outdent:before {
  347. content: "\f03b";
  348. }
  349. .fa-indent:before {
  350. content: "\f03c";
  351. }
  352. .fa-video-camera:before {
  353. content: "\f03d";
  354. }
  355. .fa-photo:before,
  356. .fa-image:before,
  357. .fa-picture-o:before {
  358. content: "\f03e";
  359. }
  360. .fa-pencil:before {
  361. content: "\f040";
  362. }
  363. .fa-map-marker:before {
  364. content: "\f041";
  365. }
  366. .fa-adjust:before {
  367. content: "\f042";
  368. }
  369. .fa-tint:before {
  370. content: "\f043";
  371. }
  372. .fa-edit:before,
  373. .fa-pencil-square-o:before {
  374. content: "\f044";
  375. }
  376. .fa-share-square-o:before {
  377. content: "\f045";
  378. }
  379. .fa-check-square-o:before {
  380. content: "\f046";
  381. }
  382. .fa-arrows:before {
  383. content: "\f047";
  384. }
  385. .fa-step-backward:before {
  386. content: "\f048";
  387. }
  388. .fa-fast-backward:before {
  389. content: "\f049";
  390. }
  391. .fa-backward:before {
  392. content: "\f04a";
  393. }
  394. .fa-play:before {
  395. content: "\f04b";
  396. }
  397. .fa-pause:before {
  398. content: "\f04c";
  399. }
  400. .fa-stop:before {
  401. content: "\f04d";
  402. }
  403. .fa-forward:before {
  404. content: "\f04e";
  405. }
  406. .fa-fast-forward:before {
  407. content: "\f050";
  408. }
  409. .fa-step-forward:before {
  410. content: "\f051";
  411. }
  412. .fa-eject:before {
  413. content: "\f052";
  414. }
  415. .fa-chevron-left:before {
  416. content: "\f053";
  417. }
  418. .fa-chevron-right:before {
  419. content: "\f054";
  420. }
  421. .fa-plus-circle:before {
  422. content: "\f055";
  423. }
  424. .fa-minus-circle:before {
  425. content: "\f056";
  426. }
  427. .fa-times-circle:before {
  428. content: "\f057";
  429. }
  430. .fa-check-circle:before {
  431. content: "\f058";
  432. }
  433. .fa-question-circle:before {
  434. content: "\f059";
  435. }
  436. .fa-info-circle:before {
  437. content: "\f05a";
  438. }
  439. .fa-crosshairs:before {
  440. content: "\f05b";
  441. }
  442. .fa-times-circle-o:before {
  443. content: "\f05c";
  444. }
  445. .fa-check-circle-o:before {
  446. content: "\f05d";
  447. }
  448. .fa-ban:before {
  449. content: "\f05e";
  450. }
  451. .fa-arrow-left:before {
  452. content: "\f060";
  453. }
  454. .fa-arrow-right:before {
  455. content: "\f061";
  456. }
  457. .fa-arrow-up:before {
  458. content: "\f062";
  459. }
  460. .fa-arrow-down:before {
  461. content: "\f063";
  462. }
  463. .fa-mail-forward:before,
  464. .fa-share:before {
  465. content: "\f064";
  466. }
  467. .fa-expand:before {
  468. content: "\f065";
  469. }
  470. .fa-compress:before {
  471. content: "\f066";
  472. }
  473. .fa-plus:before {
  474. content: "\f067";
  475. }
  476. .fa-minus:before {
  477. content: "\f068";
  478. }
  479. .fa-asterisk:before {
  480. content: "\f069";
  481. }
  482. .fa-exclamation-circle:before {
  483. content: "\f06a";
  484. }
  485. .fa-gift:before {
  486. content: "\f06b";
  487. }
  488. .fa-leaf:before {
  489. content: "\f06c";
  490. }
  491. .fa-fire:before {
  492. content: "\f06d";
  493. }
  494. .fa-eye:before {
  495. content: "\f06e";
  496. }
  497. .fa-eye-slash:before {
  498. content: "\f070";
  499. }
  500. .fa-warning:before,
  501. .fa-exclamation-triangle:before {
  502. content: "\f071";
  503. }
  504. .fa-plane:before {
  505. content: "\f072";
  506. }
  507. .fa-calendar:before {
  508. content: "\f073";
  509. }
  510. .fa-random:before {
  511. content: "\f074";
  512. }
  513. .fa-comment:before {
  514. content: "\f075";
  515. }
  516. .fa-magnet:before {
  517. content: "\f076";
  518. }
  519. .fa-chevron-up:before {
  520. content: "\f077";
  521. }
  522. .fa-chevron-down:before {
  523. content: "\f078";
  524. }
  525. .fa-retweet:before {
  526. content: "\f079";
  527. }
  528. .fa-shopping-cart:before {
  529. content: "\f07a";
  530. }
  531. .fa-folder:before {
  532. content: "\f07b";
  533. }
  534. .fa-folder-open:before {
  535. content: "\f07c";
  536. }
  537. .fa-arrows-v:before {
  538. content: "\f07d";
  539. }
  540. .fa-arrows-h:before {
  541. content: "\f07e";
  542. }
  543. .fa-bar-chart-o:before,
  544. .fa-bar-chart:before {
  545. content: "\f080";
  546. }
  547. .fa-twitter-square:before {
  548. content: "\f081";
  549. }
  550. .fa-facebook-square:before {
  551. content: "\f082";
  552. }
  553. .fa-camera-retro:before {
  554. content: "\f083";
  555. }
  556. .fa-key:before {
  557. content: "\f084";
  558. }
  559. .fa-gears:before,
  560. .fa-cogs:before {
  561. content: "\f085";
  562. }
  563. .fa-comments:before {
  564. content: "\f086";
  565. }
  566. .fa-thumbs-o-up:before {
  567. content: "\f087";
  568. }
  569. .fa-thumbs-o-down:before {
  570. content: "\f088";
  571. }
  572. .fa-star-half:before {
  573. content: "\f089";
  574. }
  575. .fa-heart-o:before {
  576. content: "\f08a";
  577. }
  578. .fa-sign-out:before {
  579. content: "\f08b";
  580. }
  581. .fa-linkedin-square:before {
  582. content: "\f08c";
  583. }
  584. .fa-thumb-tack:before {
  585. content: "\f08d";
  586. }
  587. .fa-external-link:before {
  588. content: "\f08e";
  589. }
  590. .fa-sign-in:before {
  591. content: "\f090";
  592. }
  593. .fa-trophy:before {
  594. content: "\f091";
  595. }
  596. .fa-github-square:before {
  597. content: "\f092";
  598. }
  599. .fa-upload:before {
  600. content: "\f093";
  601. }
  602. .fa-lemon-o:before {
  603. content: "\f094";
  604. }
  605. .fa-phone:before {
  606. content: "\f095";
  607. }
  608. .fa-square-o:before {
  609. content: "\f096";
  610. }
  611. .fa-bookmark-o:before {
  612. content: "\f097";
  613. }
  614. .fa-phone-square:before {
  615. content: "\f098";
  616. }
  617. .fa-twitter:before {
  618. content: "\f099";
  619. }
  620. .fa-facebook-f:before,
  621. .fa-facebook:before {
  622. content: "\f09a";
  623. }
  624. .fa-github:before {
  625. content: "\f09b";
  626. }
  627. .fa-unlock:before {
  628. content: "\f09c";
  629. }
  630. .fa-credit-card:before {
  631. content: "\f09d";
  632. }
  633. .fa-rss:before {
  634. content: "\f09e";
  635. }
  636. .fa-hdd-o:before {
  637. content: "\f0a0";
  638. }
  639. .fa-bullhorn:before {
  640. content: "\f0a1";
  641. }
  642. .fa-bell:before {
  643. content: "\f0f3";
  644. }
  645. .fa-certificate:before {
  646. content: "\f0a3";
  647. }
  648. .fa-hand-o-right:before {
  649. content: "\f0a4";
  650. }
  651. .fa-hand-o-left:before {
  652. content: "\f0a5";
  653. }
  654. .fa-hand-o-up:before {
  655. content: "\f0a6";
  656. }
  657. .fa-hand-o-down:before {
  658. content: "\f0a7";
  659. }
  660. .fa-arrow-circle-left:before {
  661. content: "\f0a8";
  662. }
  663. .fa-arrow-circle-right:before {
  664. content: "\f0a9";
  665. }
  666. .fa-arrow-circle-up:before {
  667. content: "\f0aa";
  668. }
  669. .fa-arrow-circle-down:before {
  670. content: "\f0ab";
  671. }
  672. .fa-globe:before {
  673. content: "\f0ac";
  674. }
  675. .fa-wrench:before {
  676. content: "\f0ad";
  677. }
  678. .fa-tasks:before {
  679. content: "\f0ae";
  680. }
  681. .fa-filter:before {
  682. content: "\f0b0";
  683. }
  684. .fa-briefcase:before {
  685. content: "\f0b1";
  686. }
  687. .fa-arrows-alt:before {
  688. content: "\f0b2";
  689. }
  690. .fa-group:before,
  691. .fa-users:before {
  692. content: "\f0c0";
  693. }
  694. .fa-chain:before,
  695. .fa-link:before {
  696. content: "\f0c1";
  697. }
  698. .fa-cloud:before {
  699. content: "\f0c2";
  700. }
  701. .fa-flask:before {
  702. content: "\f0c3";
  703. }
  704. .fa-cut:before,
  705. .fa-scissors:before {
  706. content: "\f0c4";
  707. }
  708. .fa-copy:before,
  709. .fa-files-o:before {
  710. content: "\f0c5";
  711. }
  712. .fa-paperclip:before {
  713. content: "\f0c6";
  714. }
  715. .fa-save:before,
  716. .fa-floppy-o:before {
  717. content: "\f0c7";
  718. }
  719. .fa-square:before {
  720. content: "\f0c8";
  721. }
  722. .fa-navicon:before,
  723. .fa-reorder:before,
  724. .fa-bars:before {
  725. content: "\f0c9";
  726. }
  727. .fa-list-ul:before {
  728. content: "\f0ca";
  729. }
  730. .fa-list-ol:before {
  731. content: "\f0cb";
  732. }
  733. .fa-strikethrough:before {
  734. content: "\f0cc";
  735. }
  736. .fa-underline:before {
  737. content: "\f0cd";
  738. }
  739. .fa-table:before {
  740. content: "\f0ce";
  741. }
  742. .fa-magic:before {
  743. content: "\f0d0";
  744. }
  745. .fa-truck:before {
  746. content: "\f0d1";
  747. }
  748. .fa-pinterest:before {
  749. content: "\f0d2";
  750. }
  751. .fa-pinterest-square:before {
  752. content: "\f0d3";
  753. }
  754. .fa-google-plus-square:before {
  755. content: "\f0d4";
  756. }
  757. .fa-google-plus:before {
  758. content: "\f0d5";
  759. }
  760. .fa-money:before {
  761. content: "\f0d6";
  762. }
  763. .fa-caret-down:before {
  764. content: "\f0d7";
  765. }
  766. .fa-caret-up:before {
  767. content: "\f0d8";
  768. }
  769. .fa-caret-left:before {
  770. content: "\f0d9";
  771. }
  772. .fa-caret-right:before {
  773. content: "\f0da";
  774. }
  775. .fa-columns:before {
  776. content: "\f0db";
  777. }
  778. .fa-unsorted:before,
  779. .fa-sort:before {
  780. content: "\f0dc";
  781. }
  782. .fa-sort-down:before,
  783. .fa-sort-desc:before {
  784. content: "\f0dd";
  785. }
  786. .fa-sort-up:before,
  787. .fa-sort-asc:before {
  788. content: "\f0de";
  789. }
  790. .fa-envelope:before {
  791. content: "\f0e0";
  792. }
  793. .fa-linkedin:before {
  794. content: "\f0e1";
  795. }
  796. .fa-rotate-left:before,
  797. .fa-undo:before {
  798. content: "\f0e2";
  799. }
  800. .fa-legal:before,
  801. .fa-gavel:before {
  802. content: "\f0e3";
  803. }
  804. .fa-dashboard:before,
  805. .fa-tachometer:before {
  806. content: "\f0e4";
  807. }
  808. .fa-comment-o:before {
  809. content: "\f0e5";
  810. }
  811. .fa-comments-o:before {
  812. content: "\f0e6";
  813. }
  814. .fa-flash:before,
  815. .fa-bolt:before {
  816. content: "\f0e7";
  817. }
  818. .fa-sitemap:before {
  819. content: "\f0e8";
  820. }
  821. .fa-umbrella:before {
  822. content: "\f0e9";
  823. }
  824. .fa-paste:before,
  825. .fa-clipboard:before {
  826. content: "\f0ea";
  827. }
  828. .fa-lightbulb-o:before {
  829. content: "\f0eb";
  830. }
  831. .fa-exchange:before {
  832. content: "\f0ec";
  833. }
  834. .fa-cloud-download:before {
  835. content: "\f0ed";
  836. }
  837. .fa-cloud-upload:before {
  838. content: "\f0ee";
  839. }
  840. .fa-user-md:before {
  841. content: "\f0f0";
  842. }
  843. .fa-stethoscope:before {
  844. content: "\f0f1";
  845. }
  846. .fa-suitcase:before {
  847. content: "\f0f2";
  848. }
  849. .fa-bell-o:before {
  850. content: "\f0a2";
  851. }
  852. .fa-coffee:before {
  853. content: "\f0f4";
  854. }
  855. .fa-cutlery:before {
  856. content: "\f0f5";
  857. }
  858. .fa-file-text-o:before {
  859. content: "\f0f6";
  860. }
  861. .fa-building-o:before {
  862. content: "\f0f7";
  863. }
  864. .fa-hospital-o:before {
  865. content: "\f0f8";
  866. }
  867. .fa-ambulance:before {
  868. content: "\f0f9";
  869. }
  870. .fa-medkit:before {
  871. content: "\f0fa";
  872. }
  873. .fa-fighter-jet:before {
  874. content: "\f0fb";
  875. }
  876. .fa-beer:before {
  877. content: "\f0fc";
  878. }
  879. .fa-h-square:before {
  880. content: "\f0fd";
  881. }
  882. .fa-plus-square:before {
  883. content: "\f0fe";
  884. }
  885. .fa-angle-double-left:before {
  886. content: "\f100";
  887. }
  888. .fa-angle-double-right:before {
  889. content: "\f101";
  890. }
  891. .fa-angle-double-up:before {
  892. content: "\f102";
  893. }
  894. .fa-angle-double-down:before {
  895. content: "\f103";
  896. }
  897. .fa-angle-left:before {
  898. content: "\f104";
  899. }
  900. .fa-angle-right:before {
  901. content: "\f105";
  902. }
  903. .fa-angle-up:before {
  904. content: "\f106";
  905. }
  906. .fa-angle-down:before {
  907. content: "\f107";
  908. }
  909. .fa-desktop:before {
  910. content: "\f108";
  911. }
  912. .fa-laptop:before {
  913. content: "\f109";
  914. }
  915. .fa-tablet:before {
  916. content: "\f10a";
  917. }
  918. .fa-mobile-phone:before,
  919. .fa-mobile:before {
  920. content: "\f10b";
  921. }
  922. .fa-circle-o:before {
  923. content: "\f10c";
  924. }
  925. .fa-quote-left:before {
  926. content: "\f10d";
  927. }
  928. .fa-quote-right:before {
  929. content: "\f10e";
  930. }
  931. .fa-spinner:before {
  932. content: "\f110";
  933. }
  934. .fa-circle:before {
  935. content: "\f111";
  936. }
  937. .fa-mail-reply:before,
  938. .fa-reply:before {
  939. content: "\f112";
  940. }
  941. .fa-github-alt:before {
  942. content: "\f113";
  943. }
  944. .fa-folder-o:before {
  945. content: "\f114";
  946. }
  947. .fa-folder-open-o:before {
  948. content: "\f115";
  949. }
  950. .fa-smile-o:before {
  951. content: "\f118";
  952. }
  953. .fa-frown-o:before {
  954. content: "\f119";
  955. }
  956. .fa-meh-o:before {
  957. content: "\f11a";
  958. }
  959. .fa-gamepad:before {
  960. content: "\f11b";
  961. }
  962. .fa-keyboard-o:before {
  963. content: "\f11c";
  964. }
  965. .fa-flag-o:before {
  966. content: "\f11d";
  967. }
  968. .fa-flag-checkered:before {
  969. content: "\f11e";
  970. }
  971. .fa-terminal:before {
  972. content: "\f120";
  973. }
  974. .fa-code:before {
  975. content: "\f121";
  976. }
  977. .fa-mail-reply-all:before,
  978. .fa-reply-all:before {
  979. content: "\f122";
  980. }
  981. .fa-star-half-empty:before,
  982. .fa-star-half-full:before,
  983. .fa-star-half-o:before {
  984. content: "\f123";
  985. }
  986. .fa-location-arrow:before {
  987. content: "\f124";
  988. }
  989. .fa-crop:before {
  990. content: "\f125";
  991. }
  992. .fa-code-fork:before {
  993. content: "\f126";
  994. }
  995. .fa-unlink:before,
  996. .fa-chain-broken:before {
  997. content: "\f127";
  998. }
  999. .fa-question:before {
  1000. content: "\f128";
  1001. }
  1002. .fa-info:before {
  1003. content: "\f129";
  1004. }
  1005. .fa-exclamation:before {
  1006. content: "\f12a";
  1007. }
  1008. .fa-superscript:before {
  1009. content: "\f12b";
  1010. }
  1011. .fa-subscript:before {
  1012. content: "\f12c";
  1013. }
  1014. .fa-eraser:before {
  1015. content: "\f12d";
  1016. }
  1017. .fa-puzzle-piece:before {
  1018. content: "\f12e";
  1019. }
  1020. .fa-microphone:before {
  1021. content: "\f130";
  1022. }
  1023. .fa-microphone-slash:before {
  1024. content: "\f131";
  1025. }
  1026. .fa-shield:before {
  1027. content: "\f132";
  1028. }
  1029. .fa-calendar-o:before {
  1030. content: "\f133";
  1031. }
  1032. .fa-fire-extinguisher:before {
  1033. content: "\f134";
  1034. }
  1035. .fa-rocket:before {
  1036. content: "\f135";
  1037. }
  1038. .fa-maxcdn:before {
  1039. content: "\f136";
  1040. }
  1041. .fa-chevron-circle-left:before {
  1042. content: "\f137";
  1043. }
  1044. .fa-chevron-circle-right:before {
  1045. content: "\f138";
  1046. }
  1047. .fa-chevron-circle-up:before {
  1048. content: "\f139";
  1049. }
  1050. .fa-chevron-circle-down:before {
  1051. content: "\f13a";
  1052. }
  1053. .fa-html5:before {
  1054. content: "\f13b";
  1055. }
  1056. .fa-css3:before {
  1057. content: "\f13c";
  1058. }
  1059. .fa-anchor:before {
  1060. content: "\f13d";
  1061. }
  1062. .fa-unlock-alt:before {
  1063. content: "\f13e";
  1064. }
  1065. .fa-bullseye:before {
  1066. content: "\f140";
  1067. }
  1068. .fa-ellipsis-h:before {
  1069. content: "\f141";
  1070. }
  1071. .fa-ellipsis-v:before {
  1072. content: "\f142";
  1073. }
  1074. .fa-rss-square:before {
  1075. content: "\f143";
  1076. }
  1077. .fa-play-circle:before {
  1078. content: "\f144";
  1079. }
  1080. .fa-ticket:before {
  1081. content: "\f145";
  1082. }
  1083. .fa-minus-square:before {
  1084. content: "\f146";
  1085. }
  1086. .fa-minus-square-o:before {
  1087. content: "\f147";
  1088. }
  1089. .fa-level-up:before {
  1090. content: "\f148";
  1091. }
  1092. .fa-level-down:before {
  1093. content: "\f149";
  1094. }
  1095. .fa-check-square:before {
  1096. content: "\f14a";
  1097. }
  1098. .fa-pencil-square:before {
  1099. content: "\f14b";
  1100. }
  1101. .fa-external-link-square:before {
  1102. content: "\f14c";
  1103. }
  1104. .fa-share-square:before {
  1105. content: "\f14d";
  1106. }
  1107. .fa-compass:before {
  1108. content: "\f14e";
  1109. }
  1110. .fa-toggle-down:before,
  1111. .fa-caret-square-o-down:before {
  1112. content: "\f150";
  1113. }
  1114. .fa-toggle-up:before,
  1115. .fa-caret-square-o-up:before {
  1116. content: "\f151";
  1117. }
  1118. .fa-toggle-right:before,
  1119. .fa-caret-square-o-right:before {
  1120. content: "\f152";
  1121. }
  1122. .fa-euro:before,
  1123. .fa-eur:before {
  1124. content: "\f153";
  1125. }
  1126. .fa-gbp:before {
  1127. content: "\f154";
  1128. }
  1129. .fa-dollar:before,
  1130. .fa-usd:before {
  1131. content: "\f155";
  1132. }
  1133. .fa-rupee:before,
  1134. .fa-inr:before {
  1135. content: "\f156";
  1136. }
  1137. .fa-cny:before,
  1138. .fa-rmb:before,
  1139. .fa-yen:before,
  1140. .fa-jpy:before {
  1141. content: "\f157";
  1142. }
  1143. .fa-ruble:before,
  1144. .fa-rouble:before,
  1145. .fa-rub:before {
  1146. content: "\f158";
  1147. }
  1148. .fa-won:before,
  1149. .fa-krw:before {
  1150. content: "\f159";
  1151. }
  1152. .fa-bitcoin:before,
  1153. .fa-btc:before {
  1154. content: "\f15a";
  1155. }
  1156. .fa-file:before {
  1157. content: "\f15b";
  1158. }
  1159. .fa-file-text:before {
  1160. content: "\f15c";
  1161. }
  1162. .fa-sort-alpha-asc:before {
  1163. content: "\f15d";
  1164. }
  1165. .fa-sort-alpha-desc:before {
  1166. content: "\f15e";
  1167. }
  1168. .fa-sort-amount-asc:before {
  1169. content: "\f160";
  1170. }
  1171. .fa-sort-amount-desc:before {
  1172. content: "\f161";
  1173. }
  1174. .fa-sort-numeric-asc:before {
  1175. content: "\f162";
  1176. }
  1177. .fa-sort-numeric-desc:before {
  1178. content: "\f163";
  1179. }
  1180. .fa-thumbs-up:before {
  1181. content: "\f164";
  1182. }
  1183. .fa-thumbs-down:before {
  1184. content: "\f165";
  1185. }
  1186. .fa-youtube-square:before {
  1187. content: "\f166";
  1188. }
  1189. .fa-youtube:before {
  1190. content: "\f167";
  1191. }
  1192. .fa-xing:before {
  1193. content: "\f168";
  1194. }
  1195. .fa-xing-square:before {
  1196. content: "\f169";
  1197. }
  1198. .fa-youtube-play:before {
  1199. content: "\f16a";
  1200. }
  1201. .fa-dropbox:before {
  1202. content: "\f16b";
  1203. }
  1204. .fa-stack-overflow:before {
  1205. content: "\f16c";
  1206. }
  1207. .fa-instagram:before {
  1208. content: "\f16d";
  1209. }
  1210. .fa-flickr:before {
  1211. content: "\f16e";
  1212. }
  1213. .fa-adn:before {
  1214. content: "\f170";
  1215. }
  1216. .fa-bitbucket:before {
  1217. content: "\f171";
  1218. }
  1219. .fa-bitbucket-square:before {
  1220. content: "\f172";
  1221. }
  1222. .fa-tumblr:before {
  1223. content: "\f173";
  1224. }
  1225. .fa-tumblr-square:before {
  1226. content: "\f174";
  1227. }
  1228. .fa-long-arrow-down:before {
  1229. content: "\f175";
  1230. }
  1231. .fa-long-arrow-up:before {
  1232. content: "\f176";
  1233. }
  1234. .fa-long-arrow-left:before {
  1235. content: "\f177";
  1236. }
  1237. .fa-long-arrow-right:before {
  1238. content: "\f178";
  1239. }
  1240. .fa-apple:before {
  1241. content: "\f179";
  1242. }
  1243. .fa-windows:before {
  1244. content: "\f17a";
  1245. }
  1246. .fa-android:before {
  1247. content: "\f17b";
  1248. }
  1249. .fa-linux:before {
  1250. content: "\f17c";
  1251. }
  1252. .fa-dribbble:before {
  1253. content: "\f17d";
  1254. }
  1255. .fa-skype:before {
  1256. content: "\f17e";
  1257. }
  1258. .fa-foursquare:before {
  1259. content: "\f180";
  1260. }
  1261. .fa-trello:before {
  1262. content: "\f181";
  1263. }
  1264. .fa-female:before {
  1265. content: "\f182";
  1266. }
  1267. .fa-male:before {
  1268. content: "\f183";
  1269. }
  1270. .fa-gittip:before,
  1271. .fa-gratipay:before {
  1272. content: "\f184";
  1273. }
  1274. .fa-sun-o:before {
  1275. content: "\f185";
  1276. }
  1277. .fa-moon-o:before {
  1278. content: "\f186";
  1279. }
  1280. .fa-archive:before {
  1281. content: "\f187";
  1282. }
  1283. .fa-bug:before {
  1284. content: "\f188";
  1285. }
  1286. .fa-vk:before {
  1287. content: "\f189";
  1288. }
  1289. .fa-weibo:before {
  1290. content: "\f18a";
  1291. }
  1292. .fa-renren:before {
  1293. content: "\f18b";
  1294. }
  1295. .fa-pagelines:before {
  1296. content: "\f18c";
  1297. }
  1298. .fa-stack-exchange:before {
  1299. content: "\f18d";
  1300. }
  1301. .fa-arrow-circle-o-right:before {
  1302. content: "\f18e";
  1303. }
  1304. .fa-arrow-circle-o-left:before {
  1305. content: "\f190";
  1306. }
  1307. .fa-toggle-left:before,
  1308. .fa-caret-square-o-left:before {
  1309. content: "\f191";
  1310. }
  1311. .fa-dot-circle-o:before {
  1312. content: "\f192";
  1313. }
  1314. .fa-wheelchair:before {
  1315. content: "\f193";
  1316. }
  1317. .fa-vimeo-square:before {
  1318. content: "\f194";
  1319. }
  1320. .fa-turkish-lira:before,
  1321. .fa-try:before {
  1322. content: "\f195";
  1323. }
  1324. .fa-plus-square-o:before {
  1325. content: "\f196";
  1326. }
  1327. .fa-space-shuttle:before {
  1328. content: "\f197";
  1329. }
  1330. .fa-slack:before {
  1331. content: "\f198";
  1332. }
  1333. .fa-envelope-square:before {
  1334. content: "\f199";
  1335. }
  1336. .fa-wordpress:before {
  1337. content: "\f19a";
  1338. }
  1339. .fa-openid:before {
  1340. content: "\f19b";
  1341. }
  1342. .fa-institution:before,
  1343. .fa-bank:before,
  1344. .fa-university:before {
  1345. content: "\f19c";
  1346. }
  1347. .fa-mortar-board:before,
  1348. .fa-graduation-cap:before {
  1349. content: "\f19d";
  1350. }
  1351. .fa-yahoo:before {
  1352. content: "\f19e";
  1353. }
  1354. .fa-google:before {
  1355. content: "\f1a0";
  1356. }
  1357. .fa-reddit:before {
  1358. content: "\f1a1";
  1359. }
  1360. .fa-reddit-square:before {
  1361. content: "\f1a2";
  1362. }
  1363. .fa-stumbleupon-circle:before {
  1364. content: "\f1a3";
  1365. }
  1366. .fa-stumbleupon:before {
  1367. content: "\f1a4";
  1368. }
  1369. .fa-delicious:before {
  1370. content: "\f1a5";
  1371. }
  1372. .fa-digg:before {
  1373. content: "\f1a6";
  1374. }
  1375. .fa-pied-piper:before {
  1376. content: "\f1a7";
  1377. }
  1378. .fa-pied-piper-alt:before {
  1379. content: "\f1a8";
  1380. }
  1381. .fa-drupal:before {
  1382. content: "\f1a9";
  1383. }
  1384. .fa-joomla:before {
  1385. content: "\f1aa";
  1386. }
  1387. .fa-language:before {
  1388. content: "\f1ab";
  1389. }
  1390. .fa-fax:before {
  1391. content: "\f1ac";
  1392. }
  1393. .fa-building:before {
  1394. content: "\f1ad";
  1395. }
  1396. .fa-child:before {
  1397. content: "\f1ae";
  1398. }
  1399. .fa-paw:before {
  1400. content: "\f1b0";
  1401. }
  1402. .fa-spoon:before {
  1403. content: "\f1b1";
  1404. }
  1405. .fa-cube:before {
  1406. content: "\f1b2";
  1407. }
  1408. .fa-cubes:before {
  1409. content: "\f1b3";
  1410. }
  1411. .fa-behance:before {
  1412. content: "\f1b4";
  1413. }
  1414. .fa-behance-square:before {
  1415. content: "\f1b5";
  1416. }
  1417. .fa-steam:before {
  1418. content: "\f1b6";
  1419. }
  1420. .fa-steam-square:before {
  1421. content: "\f1b7";
  1422. }
  1423. .fa-recycle:before {
  1424. content: "\f1b8";
  1425. }
  1426. .fa-automobile:before,
  1427. .fa-car:before {
  1428. content: "\f1b9";
  1429. }
  1430. .fa-cab:before,
  1431. .fa-taxi:before {
  1432. content: "\f1ba";
  1433. }
  1434. .fa-tree:before {
  1435. content: "\f1bb";
  1436. }
  1437. .fa-spotify:before {
  1438. content: "\f1bc";
  1439. }
  1440. .fa-deviantart:before {
  1441. content: "\f1bd";
  1442. }
  1443. .fa-soundcloud:before {
  1444. content: "\f1be";
  1445. }
  1446. .fa-database:before {
  1447. content: "\f1c0";
  1448. }
  1449. .fa-file-pdf-o:before {
  1450. content: "\f1c1";
  1451. }
  1452. .fa-file-word-o:before {
  1453. content: "\f1c2";
  1454. }
  1455. .fa-file-excel-o:before {
  1456. content: "\f1c3";
  1457. }
  1458. .fa-file-powerpoint-o:before {
  1459. content: "\f1c4";
  1460. }
  1461. .fa-file-photo-o:before,
  1462. .fa-file-picture-o:before,
  1463. .fa-file-image-o:before {
  1464. content: "\f1c5";
  1465. }
  1466. .fa-file-zip-o:before,
  1467. .fa-file-archive-o:before {
  1468. content: "\f1c6";
  1469. }
  1470. .fa-file-sound-o:before,
  1471. .fa-file-audio-o:before {
  1472. content: "\f1c7";
  1473. }
  1474. .fa-file-movie-o:before,
  1475. .fa-file-video-o:before {
  1476. content: "\f1c8";
  1477. }
  1478. .fa-file-code-o:before {
  1479. content: "\f1c9";
  1480. }
  1481. .fa-vine:before {
  1482. content: "\f1ca";
  1483. }
  1484. .fa-codepen:before {
  1485. content: "\f1cb";
  1486. }
  1487. .fa-jsfiddle:before {
  1488. content: "\f1cc";
  1489. }
  1490. .fa-life-bouy:before,
  1491. .fa-life-buoy:before,
  1492. .fa-life-saver:before,
  1493. .fa-support:before,
  1494. .fa-life-ring:before {
  1495. content: "\f1cd";
  1496. }
  1497. .fa-circle-o-notch:before {
  1498. content: "\f1ce";
  1499. }
  1500. .fa-ra:before,
  1501. .fa-rebel:before {
  1502. content: "\f1d0";
  1503. }
  1504. .fa-ge:before,
  1505. .fa-empire:before {
  1506. content: "\f1d1";
  1507. }
  1508. .fa-git-square:before {
  1509. content: "\f1d2";
  1510. }
  1511. .fa-git:before {
  1512. content: "\f1d3";
  1513. }
  1514. .fa-hacker-news:before {
  1515. content: "\f1d4";
  1516. }
  1517. .fa-tencent-weibo:before {
  1518. content: "\f1d5";
  1519. }
  1520. .fa-qq:before {
  1521. content: "\f1d6";
  1522. }
  1523. .fa-wechat:before,
  1524. .fa-weixin:before {
  1525. content: "\f1d7";
  1526. }
  1527. .fa-send:before,
  1528. .fa-paper-plane:before {
  1529. content: "\f1d8";
  1530. }
  1531. .fa-send-o:before,
  1532. .fa-paper-plane-o:before {
  1533. content: "\f1d9";
  1534. }
  1535. .fa-history:before {
  1536. content: "\f1da";
  1537. }
  1538. .fa-genderless:before,
  1539. .fa-circle-thin:before {
  1540. content: "\f1db";
  1541. }
  1542. .fa-header:before {
  1543. content: "\f1dc";
  1544. }
  1545. .fa-paragraph:before {
  1546. content: "\f1dd";
  1547. }
  1548. .fa-sliders:before {
  1549. content: "\f1de";
  1550. }
  1551. .fa-share-alt:before {
  1552. content: "\f1e0";
  1553. }
  1554. .fa-share-alt-square:before {
  1555. content: "\f1e1";
  1556. }
  1557. .fa-bomb:before {
  1558. content: "\f1e2";
  1559. }
  1560. .fa-soccer-ball-o:before,
  1561. .fa-futbol-o:before {
  1562. content: "\f1e3";
  1563. }
  1564. .fa-tty:before {
  1565. content: "\f1e4";
  1566. }
  1567. .fa-binoculars:before {
  1568. content: "\f1e5";
  1569. }
  1570. .fa-plug:before {
  1571. content: "\f1e6";
  1572. }
  1573. .fa-slideshare:before {
  1574. content: "\f1e7";
  1575. }
  1576. .fa-twitch:before {
  1577. content: "\f1e8";
  1578. }
  1579. .fa-yelp:before {
  1580. content: "\f1e9";
  1581. }
  1582. .fa-newspaper-o:before {
  1583. content: "\f1ea";
  1584. }
  1585. .fa-wifi:before {
  1586. content: "\f1eb";
  1587. }
  1588. .fa-calculator:before {
  1589. content: "\f1ec";
  1590. }
  1591. .fa-paypal:before {
  1592. content: "\f1ed";
  1593. }
  1594. .fa-google-wallet:before {
  1595. content: "\f1ee";
  1596. }
  1597. .fa-cc-visa:before {
  1598. content: "\f1f0";
  1599. }
  1600. .fa-cc-mastercard:before {
  1601. content: "\f1f1";
  1602. }
  1603. .fa-cc-discover:before {
  1604. content: "\f1f2";
  1605. }
  1606. .fa-cc-amex:before {
  1607. content: "\f1f3";
  1608. }
  1609. .fa-cc-paypal:before {
  1610. content: "\f1f4";
  1611. }
  1612. .fa-cc-stripe:before {
  1613. content: "\f1f5";
  1614. }
  1615. .fa-bell-slash:before {
  1616. content: "\f1f6";
  1617. }
  1618. .fa-bell-slash-o:before {
  1619. content: "\f1f7";
  1620. }
  1621. .fa-trash:before {
  1622. content: "\f1f8";
  1623. }
  1624. .fa-copyright:before {
  1625. content: "\f1f9";
  1626. }
  1627. .fa-at:before {
  1628. content: "\f1fa";
  1629. }
  1630. .fa-eyedropper:before {
  1631. content: "\f1fb";
  1632. }
  1633. .fa-paint-brush:before {
  1634. content: "\f1fc";
  1635. }
  1636. .fa-birthday-cake:before {
  1637. content: "\f1fd";
  1638. }
  1639. .fa-area-chart:before {
  1640. content: "\f1fe";
  1641. }
  1642. .fa-pie-chart:before {
  1643. content: "\f200";
  1644. }
  1645. .fa-line-chart:before {
  1646. content: "\f201";
  1647. }
  1648. .fa-lastfm:before {
  1649. content: "\f202";
  1650. }
  1651. .fa-lastfm-square:before {
  1652. content: "\f203";
  1653. }
  1654. .fa-toggle-off:before {
  1655. content: "\f204";
  1656. }
  1657. .fa-toggle-on:before {
  1658. content: "\f205";
  1659. }
  1660. .fa-bicycle:before {
  1661. content: "\f206";
  1662. }
  1663. .fa-bus:before {
  1664. content: "\f207";
  1665. }
  1666. .fa-ioxhost:before {
  1667. content: "\f208";
  1668. }
  1669. .fa-angellist:before {
  1670. content: "\f209";
  1671. }
  1672. .fa-cc:before {
  1673. content: "\f20a";
  1674. }
  1675. .fa-shekel:before,
  1676. .fa-sheqel:before,
  1677. .fa-ils:before {
  1678. content: "\f20b";
  1679. }
  1680. .fa-meanpath:before {
  1681. content: "\f20c";
  1682. }
  1683. .fa-buysellads:before {
  1684. content: "\f20d";
  1685. }
  1686. .fa-connectdevelop:before {
  1687. content: "\f20e";
  1688. }
  1689. .fa-dashcube:before {
  1690. content: "\f210";
  1691. }
  1692. .fa-forumbee:before {
  1693. content: "\f211";
  1694. }
  1695. .fa-leanpub:before {
  1696. content: "\f212";
  1697. }
  1698. .fa-sellsy:before {
  1699. content: "\f213";
  1700. }
  1701. .fa-shirtsinbulk:before {
  1702. content: "\f214";
  1703. }
  1704. .fa-simplybuilt:before {
  1705. content: "\f215";
  1706. }
  1707. .fa-skyatlas:before {
  1708. content: "\f216";
  1709. }
  1710. .fa-cart-plus:before {
  1711. content: "\f217";
  1712. }
  1713. .fa-cart-arrow-down:before {
  1714. content: "\f218";
  1715. }
  1716. .fa-diamond:before {
  1717. content: "\f219";
  1718. }
  1719. .fa-ship:before {
  1720. content: "\f21a";
  1721. }
  1722. .fa-user-secret:before {
  1723. content: "\f21b";
  1724. }
  1725. .fa-motorcycle:before {
  1726. content: "\f21c";
  1727. }
  1728. .fa-street-view:before {
  1729. content: "\f21d";
  1730. }
  1731. .fa-heartbeat:before {
  1732. content: "\f21e";
  1733. }
  1734. .fa-venus:before {
  1735. content: "\f221";
  1736. }
  1737. .fa-mars:before {
  1738. content: "\f222";
  1739. }
  1740. .fa-mercury:before {
  1741. content: "\f223";
  1742. }
  1743. .fa-transgender:before {
  1744. content: "\f224";
  1745. }
  1746. .fa-transgender-alt:before {
  1747. content: "\f225";
  1748. }
  1749. .fa-venus-double:before {
  1750. content: "\f226";
  1751. }
  1752. .fa-mars-double:before {
  1753. content: "\f227";
  1754. }
  1755. .fa-venus-mars:before {
  1756. content: "\f228";
  1757. }
  1758. .fa-mars-stroke:before {
  1759. content: "\f229";
  1760. }
  1761. .fa-mars-stroke-v:before {
  1762. content: "\f22a";
  1763. }
  1764. .fa-mars-stroke-h:before {
  1765. content: "\f22b";
  1766. }
  1767. .fa-neuter:before {
  1768. content: "\f22c";
  1769. }
  1770. .fa-facebook-official:before {
  1771. content: "\f230";
  1772. }
  1773. .fa-pinterest-p:before {
  1774. content: "\f231";
  1775. }
  1776. .fa-whatsapp:before {
  1777. content: "\f232";
  1778. }
  1779. .fa-server:before {
  1780. content: "\f233";
  1781. }
  1782. .fa-user-plus:before {
  1783. content: "\f234";
  1784. }
  1785. .fa-user-times:before {
  1786. content: "\f235";
  1787. }
  1788. .fa-hotel:before,
  1789. .fa-bed:before {
  1790. content: "\f236";
  1791. }
  1792. .fa-viacoin:before {
  1793. content: "\f237";
  1794. }
  1795. .fa-train:before {
  1796. content: "\f238";
  1797. }
  1798. .fa-subway:before {
  1799. content: "\f239";
  1800. }
  1801. .fa-medium:before {
  1802. content: "\f23a";
  1803. }