fontello.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589
  1. @font-face {
  2. font-family: fontello;
  3. src: url(../font/fontello.eot?66697216#iefix) format("embedded-opentype"), url(../font/fontello.woff?66697216) format("woff"), url(../font/fontello.ttf?66697216) format("truetype"), url(../font/fontello.svg?66697216#fontello) format("svg");
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. [class^='icon-']::before {
  8. width: 1em; text-align: center; text-transform: none; line-height: 1em; font-family: "fontello"; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: inherit; margin-right: 0.2em; margin-left: 0.2em; display: inline-block; speak: none;
  9. }
  10. [class*=' icon-']::before {
  11. width: 1em; text-align: center; text-transform: none; line-height: 1em; font-family: "fontello"; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: inherit; margin-right: 0.2em; margin-left: 0.2em; display: inline-block; speak: none;
  12. }
  13. .icon-note::before {
  14. content: "\eb33";
  15. }
  16. .icon-youtube::before {
  17. content: "\e90e";
  18. }
  19. .icon-music-1::before {
  20. content: "\eb35";
  21. }
  22. .icon-search-3::before {
  23. content: "\eb36";
  24. }
  25. .icon-flashlight::before {
  26. content: "\eb37";
  27. }
  28. .icon-mail-3::before {
  29. content: "\eb38";
  30. }
  31. .icon-heart-3::before {
  32. content: "\eb39";
  33. }
  34. .icon-heart-empty-2::before {
  35. content: "\eb3a";
  36. }
  37. .icon-star-3::before {
  38. content: "\eb3b";
  39. }
  40. .icon-star-empty-2::before {
  41. content: "\eb3c";
  42. }
  43. .icon-user-3::before {
  44. content: "\eb3d";
  45. }
  46. .icon-users-1::before {
  47. content: "\eb3e";
  48. }
  49. .icon-user-add::before {
  50. content: "\eb3f";
  51. }
  52. .icon-video-2::before {
  53. content: "\eb40";
  54. }
  55. .icon-picture-2::before {
  56. content: "\eb41";
  57. }
  58. .icon-camera-3::before {
  59. content: "\eb42";
  60. }
  61. .icon-layout::before {
  62. content: "\eb43";
  63. }
  64. .icon-menu-1::before {
  65. content: "\eb44";
  66. }
  67. .icon-check-1::before {
  68. content: "\eb45";
  69. }
  70. .icon-cancel-3::before {
  71. content: "\eb46";
  72. }
  73. .icon-cancel-circled-2::before {
  74. content: "\eb47";
  75. }
  76. .icon-cancel-squared::before {
  77. content: "\eb48";
  78. }
  79. .icon-plus-3::before {
  80. content: "\eb49";
  81. }
  82. .icon-plus-circled-1::before {
  83. content: "\eb4a";
  84. }
  85. .icon-plus-squared::before {
  86. content: "\eb4b";
  87. }
  88. .icon-minus-2::before {
  89. content: "\eb4c";
  90. }
  91. .icon-minus-circled-1::before {
  92. content: "\eb4d";
  93. }
  94. .icon-minus-squared::before {
  95. content: "\eb4e";
  96. }
  97. .icon-help-2::before {
  98. content: "\eb4f";
  99. }
  100. .icon-help-circled-2::before {
  101. content: "\eb50";
  102. }
  103. .icon-info-1::before {
  104. content: "\eb51";
  105. }
  106. .icon-info-circled-2::before {
  107. content: "\eb52";
  108. }
  109. .icon-back::before {
  110. content: "\eb53";
  111. }
  112. .icon-home-3::before {
  113. content: "\eb54";
  114. }
  115. .icon-link-2::before {
  116. content: "\eb55";
  117. }
  118. .icon-attach-3::before {
  119. content: "\eb56";
  120. }
  121. .icon-lock-3::before {
  122. content: "\eb57";
  123. }
  124. .icon-lock-open-3::before {
  125. content: "\eb58";
  126. }
  127. .icon-eye-3::before {
  128. content: "\eb59";
  129. }
  130. .icon-tag-2::before {
  131. content: "\eb5a";
  132. }
  133. .icon-bookmark-1::before {
  134. content: "\ea3f";
  135. }
  136. .icon-bookmarks::before {
  137. content: "\ea40";
  138. }
  139. .icon-flag-1::before {
  140. content: "\ea41";
  141. }
  142. .icon-thumbs-up-1::before {
  143. content: "\ea42";
  144. }
  145. .icon-thumbs-down-1::before {
  146. content: "\ea43";
  147. }
  148. .icon-download-3::before {
  149. content: "\ea44";
  150. }
  151. .icon-upload-3::before {
  152. content: "\ea45";
  153. }
  154. .icon-upload-cloud-2::before {
  155. content: "\ea46";
  156. }
  157. .icon-reply-1::before {
  158. content: "\ea47";
  159. }
  160. .icon-reply-all::before {
  161. content: "\ea48";
  162. }
  163. .icon-forward-1::before {
  164. content: "\ea49";
  165. }
  166. .icon-quote-1::before {
  167. content: "\ea4a";
  168. }
  169. .icon-code::before {
  170. content: "\ea4b";
  171. }
  172. .icon-export-2::before {
  173. content: "\ea4c";
  174. }
  175. .icon-pencil-3::before {
  176. content: "\ea4d";
  177. }
  178. .icon-feather::before {
  179. content: "\ea4e";
  180. }
  181. .icon-print-2::before {
  182. content: "\ea4f";
  183. }
  184. .icon-retweet-2::before {
  185. content: "\ea50";
  186. }
  187. .icon-keyboard::before {
  188. content: "\ea51";
  189. }
  190. .icon-comment-3::before {
  191. content: "\ea52";
  192. }
  193. .icon-chat-2::before {
  194. content: "\ea53";
  195. }
  196. .icon-bell-2::before {
  197. content: "\ea54";
  198. }
  199. .icon-attention-1::before {
  200. content: "\ea55";
  201. }
  202. .icon-alert::before {
  203. content: "\ea56";
  204. }
  205. .icon-vcard::before {
  206. content: "\ea57";
  207. }
  208. .icon-address::before {
  209. content: "\ea58";
  210. }
  211. .icon-location-3::before {
  212. content: "\ea59";
  213. }
  214. .icon-map::before {
  215. content: "\ea5a";
  216. }
  217. .icon-direction::before {
  218. content: "\ea5b";
  219. }
  220. .icon-compass-2::before {
  221. content: "\ea5c";
  222. }
  223. .icon-cup::before {
  224. content: "\ea5d";
  225. }
  226. .icon-trash-3::before {
  227. content: "\ea5e";
  228. }
  229. .icon-doc-3::before {
  230. content: "\ea5f";
  231. }
  232. .icon-docs::before {
  233. content: "\ea60";
  234. }
  235. .icon-doc-landscape::before {
  236. content: "\ea61";
  237. }
  238. .icon-doc-text::before {
  239. content: "\ea62";
  240. }
  241. .icon-doc-text-inv::before {
  242. content: "\ea63";
  243. }
  244. .icon-newspaper-1::before {
  245. content: "\ea64";
  246. }
  247. .icon-book-open-1::before {
  248. content: "\ea65";
  249. }
  250. .icon-book-2::before {
  251. content: "\ea66";
  252. }
  253. .icon-folder-3::before {
  254. content: "\ea67";
  255. }
  256. .icon-archive::before {
  257. content: "\ea68";
  258. }
  259. .icon-box-1::before {
  260. content: "\ea69";
  261. }
  262. .icon-rss-2::before {
  263. content: "\ea6a";
  264. }
  265. .icon-phone-1::before {
  266. content: "\ea6b";
  267. }
  268. .icon-cog-3::before {
  269. content: "\ea6c";
  270. }
  271. .icon-tools::before {
  272. content: "\ea6d";
  273. }
  274. .icon-share-2::before {
  275. content: "\ea6e";
  276. }
  277. .icon-shareable::before {
  278. content: "\ea6f";
  279. }
  280. .icon-basket-1::before {
  281. content: "\ea70";
  282. }
  283. .icon-bag::before {
  284. content: "\ea71";
  285. }
  286. .icon-calendar-3::before {
  287. content: "\ea72";
  288. }
  289. .icon-login-1::before {
  290. content: "\ea73";
  291. }
  292. .icon-logout-1::before {
  293. content: "\ea74";
  294. }
  295. .icon-mic-3::before {
  296. content: "\ea75";
  297. }
  298. .icon-mute::before {
  299. content: "\ea76";
  300. }
  301. .icon-sound::before {
  302. content: "\ea77";
  303. }
  304. .icon-volume-1::before {
  305. content: "\ea78";
  306. }
  307. .icon-clock-3::before {
  308. content: "\ea79";
  309. }
  310. .icon-hourglass-1::before {
  311. content: "\ea7a";
  312. }
  313. .icon-lamp-1::before {
  314. content: "\ea7b";
  315. }
  316. .icon-light-down::before {
  317. content: "\ea7c";
  318. }
  319. .icon-light-up::before {
  320. content: "\ea7d";
  321. }
  322. .icon-adjust-1::before {
  323. content: "\ea7e";
  324. }
  325. .icon-block-2::before {
  326. content: "\ea7f";
  327. }
  328. .icon-resize-full-2::before {
  329. content: "\ea80";
  330. }
  331. .icon-resize-small-2::before {
  332. content: "\ea81";
  333. }
  334. .icon-popup-1::before {
  335. content: "\ea82";
  336. }
  337. .icon-publish::before {
  338. content: "\ea83";
  339. }
  340. .icon-window::before {
  341. content: "\ea84";
  342. }
  343. .icon-arrow-combo::before {
  344. content: "\ea85";
  345. }
  346. .icon-down-circled-1::before {
  347. content: "\ea86";
  348. }
  349. .icon-left-circled-1::before {
  350. content: "\ea87";
  351. }
  352. .icon-right-circled-1::before {
  353. content: "\ea88";
  354. }
  355. .icon-up-circled-1::before {
  356. content: "\ea89";
  357. }
  358. .icon-down-open-2::before {
  359. content: "\ea8a";
  360. }
  361. .icon-left-open-2::before {
  362. content: "\ea8b";
  363. }
  364. .icon-right-open-2::before {
  365. content: "\ea8c";
  366. }
  367. .icon-up-open-2::before {
  368. content: "\ea8d";
  369. }
  370. .icon-down-open-mini::before {
  371. content: "\ea8e";
  372. }
  373. .icon-left-open-mini::before {
  374. content: "\ea8f";
  375. }
  376. .icon-right-open-mini::before {
  377. content: "\ea90";
  378. }
  379. .icon-up-open-mini::before {
  380. content: "\ea91";
  381. }
  382. .icon-down-open-big::before {
  383. content: "\ea92";
  384. }
  385. .icon-left-open-big::before {
  386. content: "\ea93";
  387. }
  388. .icon-right-open-big::before {
  389. content: "\ea94";
  390. }
  391. .icon-up-open-big::before {
  392. content: "\ea95";
  393. }
  394. .icon-down-3::before {
  395. content: "\ea96";
  396. }
  397. .icon-left-3::before {
  398. content: "\ea97";
  399. }
  400. .icon-right-3::before {
  401. content: "\ea98";
  402. }
  403. .icon-up-3::before {
  404. content: "\ea99";
  405. }
  406. .icon-down-dir::before {
  407. content: "\ea9a";
  408. }
  409. .icon-left-dir::before {
  410. content: "\ea9b";
  411. }
  412. .icon-right-dir::before {
  413. content: "\ea9c";
  414. }
  415. .icon-up-dir::before {
  416. content: "\ea9d";
  417. }
  418. .icon-down-bold-1::before {
  419. content: "\ea9e";
  420. }
  421. .icon-left-bold-1::before {
  422. content: "\ea9f";
  423. }
  424. .icon-right-bold-1::before {
  425. content: "\eaa0";
  426. }
  427. .icon-up-bold-1::before {
  428. content: "\eaa1";
  429. }
  430. .icon-down-thin::before {
  431. content: "\eaa2";
  432. }
  433. .icon-left-thin::before {
  434. content: "\eaa3";
  435. }
  436. .icon-right-thin::before {
  437. content: "\eaa4";
  438. }
  439. .icon-up-thin::before {
  440. content: "\eaa5";
  441. }
  442. .icon-ccw-1::before {
  443. content: "\eaa6";
  444. }
  445. .icon-cw-2::before {
  446. content: "\eaa7";
  447. }
  448. .icon-arrows-ccw::before {
  449. content: "\eaa8";
  450. }
  451. .icon-level-down::before {
  452. content: "\eaa9";
  453. }
  454. .icon-level-up::before {
  455. content: "\eaaa";
  456. }
  457. .icon-shuffle-2::before {
  458. content: "\eaab";
  459. }
  460. .icon-loop-1::before {
  461. content: "\eaac";
  462. }
  463. .icon-switch::before {
  464. content: "\eaad";
  465. }
  466. .icon-play-3::before {
  467. content: "\eaae";
  468. }
  469. .icon-stop-3::before {
  470. content: "\eaaf";
  471. }
  472. .icon-pause-3::before {
  473. content: "\eab0";
  474. }
  475. .icon-record-1::before {
  476. content: "\eab1";
  477. }
  478. .icon-to-end-2::before {
  479. content: "\eab2";
  480. }
  481. .icon-to-start-2::before {
  482. content: "\eab3";
  483. }
  484. .icon-fast-forward-2::before {
  485. content: "\eab4";
  486. }
  487. .icon-fast-backward-2::before {
  488. content: "\eab5";
  489. }
  490. .icon-progress-0::before {
  491. content: "\eab6";
  492. }
  493. .icon-progress-1::before {
  494. content: "\eab7";
  495. }
  496. .icon-progress-2::before {
  497. content: "\eab8";
  498. }
  499. .icon-progress-3::before {
  500. content: "\eab9";
  501. }
  502. .icon-target-2::before {
  503. content: "\eaba";
  504. }
  505. .icon-palette::before {
  506. content: "\eabb";
  507. }
  508. .icon-list-2::before {
  509. content: "\eabc";
  510. }
  511. .icon-list-add::before {
  512. content: "\eabd";
  513. }
  514. .icon-signal-2::before {
  515. content: "\eabe";
  516. }
  517. .icon-trophy-1::before {
  518. content: "\eabf";
  519. }
  520. .icon-battery::before {
  521. content: "\eac0";
  522. }
  523. .icon-back-in-time::before {
  524. content: "\eac1";
  525. }
  526. .icon-monitor-1::before {
  527. content: "\eac2";
  528. }
  529. .icon-mobile-2::before {
  530. content: "\eac3";
  531. }
  532. .icon-network-1::before {
  533. content: "\eac4";
  534. }
  535. .icon-cd-1::before {
  536. content: "\eac5";
  537. }
  538. .icon-inbox-2::before {
  539. content: "\eac6";
  540. }
  541. .icon-install::before {
  542. content: "\eac7";
  543. }
  544. .icon-globe-2::before {
  545. content: "\eac8";
  546. }
  547. .icon-cloud-3::before {
  548. content: "\eac9";
  549. }
  550. .icon-cloud-thunder::before {
  551. content: "\eaca";
  552. }
  553. .icon-flash-2::before {
  554. content: "\eacb";
  555. }
  556. .icon-moon-1::before {
  557. content: "\eacc";
  558. }
  559. .icon-flight-1::before {
  560. content: "\eacd";
  561. }
  562. .icon-paper-plane-1::before {
  563. content: "\eace";
  564. }
  565. .icon-leaf-1::before {
  566. content: "\eacf";
  567. }
  568. .icon-lifebuoy::before {
  569. content: "\ead0";
  570. }
  571. .icon-mouse::before {
  572. content: "\ead1";
  573. }
  574. .icon-briefcase-1::before {
  575. content: "\ead2";
  576. }
  577. .icon-suitcase::before {
  578. content: "\ead3";
  579. }
  580. .icon-dot::before {
  581. content: "\ead4";
  582. }
  583. .icon-dot-2::before {
  584. content: "\ead5";
  585. }
  586. .icon-dot-3::before {
  587. content: "\ead6";
  588. }
  589. .icon-brush-1::before {
  590. content: "\ead7";
  591. }
  592. .icon-magnet-1::before {
  593. content: "\ead8";
  594. }
  595. .icon-infinity::before {
  596. content: "\ead9";
  597. }
  598. .icon-erase::before {
  599. content: "\eada";
  600. }
  601. .icon-chart-pie-1::before {
  602. content: "\eadb";
  603. }
  604. .icon-chart-line::before {
  605. content: "\eadc";
  606. }
  607. .icon-chart-bar-2::before {
  608. content: "\eadd";
  609. }
  610. .icon-chart-area::before {
  611. content: "\eade";
  612. }
  613. .icon-tape::before {
  614. content: "\eadf";
  615. }
  616. .icon-graduation-cap::before {
  617. content: "\eae0";
  618. }
  619. .icon-language::before {
  620. content: "\eae1";
  621. }
  622. .icon-ticket::before {
  623. content: "\eae2";
  624. }
  625. .icon-water::before {
  626. content: "\eae3";
  627. }
  628. .icon-droplet::before {
  629. content: "\eae4";
  630. }
  631. .icon-air::before {
  632. content: "\eae5";
  633. }
  634. .icon-credit-card-1::before {
  635. content: "\eae6";
  636. }
  637. .icon-floppy::before {
  638. content: "\eae7";
  639. }
  640. .icon-clipboard-1::before {
  641. content: "\eae8";
  642. }
  643. .icon-megaphone-1::before {
  644. content: "\eae9";
  645. }
  646. .icon-database::before {
  647. content: "\eaea";
  648. }
  649. .icon-drive::before {
  650. content: "\eaeb";
  651. }
  652. .icon-bucket::before {
  653. content: "\eaec";
  654. }
  655. .icon-thermometer::before {
  656. content: "\eaed";
  657. }
  658. .icon-key-2::before {
  659. content: "\eaee";
  660. }
  661. .icon-flow-cascade::before {
  662. content: "\eaef";
  663. }
  664. .icon-flow-branch::before {
  665. content: "\eaf0";
  666. }
  667. .icon-flow-tree::before {
  668. content: "\eaf1";
  669. }
  670. .icon-flow-line::before {
  671. content: "\eaf2";
  672. }
  673. .icon-flow-parallel::before {
  674. content: "\eaf3";
  675. }
  676. .icon-rocket::before {
  677. content: "\eaf4";
  678. }
  679. .icon-gauge-1::before {
  680. content: "\eaf5";
  681. }
  682. .icon-traffic-cone::before {
  683. content: "\eaf6";
  684. }
  685. .icon-cc-1::before {
  686. content: "\eaf7";
  687. }
  688. .icon-cc-by::before {
  689. content: "\eaf8";
  690. }
  691. .icon-cc-nc::before {
  692. content: "\eaf9";
  693. }
  694. .icon-cc-nc-eu::before {
  695. content: "\eafa";
  696. }
  697. .icon-cc-nc-jp::before {
  698. content: "\eafb";
  699. }
  700. .icon-cc-sa::before {
  701. content: "\eafc";
  702. }
  703. .icon-cc-nd::before {
  704. content: "\eafd";
  705. }
  706. .icon-cc-pd::before {
  707. content: "\eafe";
  708. }
  709. .icon-cc-zero::before {
  710. content: "\eaff";
  711. }
  712. .icon-cc-share::before {
  713. content: "\eb00";
  714. }
  715. .icon-cc-remix::before {
  716. content: "\eb01";
  717. }
  718. .icon-github-2::before {
  719. content: "\eb02";
  720. }
  721. .icon-github-circled-1::before {
  722. content: "\eb03";
  723. }
  724. .icon-flickr-1::before {
  725. content: "\eb04";
  726. }
  727. .icon-flickr-circled::before {
  728. content: "\eb05";
  729. }
  730. .icon-vimeo-1::before {
  731. content: "\eb06";
  732. }
  733. .icon-vimeo-circled::before {
  734. content: "\eb07";
  735. }
  736. .icon-twitter-2::before {
  737. content: "\eb08";
  738. }
  739. .icon-twitter-circled-1::before {
  740. content: "\eb09";
  741. }
  742. .icon-facebook-2::before {
  743. content: "\eb0a";
  744. }
  745. .icon-facebook-circled-1::before {
  746. content: "\eb0b";
  747. }
  748. .icon-facebook-squared::before {
  749. content: "\eb0c";
  750. }
  751. .icon-gplus-1::before {
  752. content: "\eb0d";
  753. }
  754. .icon-gplus-circled-1::before {
  755. content: "\eb0e";
  756. }
  757. .icon-pinterest-1::before {
  758. content: "\eb0f";
  759. }
  760. .icon-pinterest-circled::before {
  761. content: "\eb10";
  762. }
  763. .icon-tumblr-1::before {
  764. content: "\eb11";
  765. }
  766. .icon-tumblr-circled::before {
  767. content: "\eb12";
  768. }
  769. .icon-linkedin-2::before {
  770. content: "\eb13";
  771. }
  772. .icon-linkedin-circled-1::before {
  773. content: "\eb14";
  774. }
  775. .icon-dribbble-2::before {
  776. content: "\eb15";
  777. }
  778. .icon-dribbble-circled-1::before {
  779. content: "\eb16";
  780. }
  781. .icon-stumbleupon-1::before {
  782. content: "\eb17";
  783. }
  784. .icon-stumbleupon-circled::before {
  785. content: "\eb18";
  786. }
  787. .icon-lastfm::before {
  788. content: "\eb19";
  789. }
  790. .icon-lastfm-circled::before {
  791. content: "\eb1a";
  792. }
  793. .icon-rdio::before {
  794. content: "\eb1b";
  795. }
  796. .icon-rdio-circled::before {
  797. content: "\eb1c";
  798. }
  799. .icon-spotify::before {
  800. content: "\eb1d";
  801. }
  802. .icon-spotify-circled::before {
  803. content: "\eb1e";
  804. }
  805. .icon-qq::before {
  806. content: "\eb1f";
  807. }
  808. .icon-instagram-2::before {
  809. content: "\eb20";
  810. }
  811. .icon-dropbox::before {
  812. content: "\eb21";
  813. }
  814. .icon-evernote::before {
  815. content: "\eb22";
  816. }
  817. .icon-flattr::before {
  818. content: "\eb23";
  819. }
  820. .icon-skype-1::before {
  821. content: "\eb24";
  822. }
  823. .icon-skype-circled::before {
  824. content: "\eb25";
  825. }
  826. .icon-renren::before {
  827. content: "\eb26";
  828. }
  829. .icon-sina-weibo::before {
  830. content: "\eb27";
  831. }
  832. .icon-paypal::before {
  833. content: "\eb28";
  834. }
  835. .icon-picasa-1::before {
  836. content: "\eb29";
  837. }
  838. .icon-soundcloud-1::before {
  839. content: "\eb2a";
  840. }
  841. .icon-mixi::before {
  842. content: "\eb2b";
  843. }
  844. .icon-behance-1::before {
  845. content: "\eb2c";
  846. }
  847. .icon-google-circles::before {
  848. content: "\eb2d";
  849. }
  850. .icon-vkontakte-1::before {
  851. content: "\eb2e";
  852. }
  853. .icon-smashing::before {
  854. content: "\eb2f";
  855. }
  856. .icon-sweden::before {
  857. content: "\eb30";
  858. }
  859. .icon-db-shape::before {
  860. content: "\eb31";
  861. }
  862. .icon-logo-db::before {
  863. content: "\eb32";
  864. }
  865. .icon-search-2::before {
  866. content: "\e9a8";
  867. }
  868. .icon-mail-2::before {
  869. content: "\e9a9";
  870. }
  871. .icon-heart-2::before {
  872. content: "\e9aa";
  873. }
  874. .icon-heart-empty-1::before {
  875. content: "\e9ab";
  876. }
  877. .icon-star-2::before {
  878. content: "\e9ac";
  879. }
  880. .icon-user-2::before {
  881. content: "\e9ad";
  882. }
  883. .icon-video-1::before {
  884. content: "\e9ae";
  885. }
  886. .icon-picture-1::before {
  887. content: "\e9af";
  888. }
  889. .icon-camera-2::before {
  890. content: "\e9b0";
  891. }
  892. .icon-ok-2::before {
  893. content: "\e9b1";
  894. }
  895. .icon-ok-circle::before {
  896. content: "\e9b2";
  897. }
  898. .icon-cancel-2::before {
  899. content: "\e9b3";
  900. }
  901. .icon-cancel-circle::before {
  902. content: "\e9b4";
  903. }
  904. .icon-plus-2::before {
  905. content: "\e9b5";
  906. }
  907. .icon-plus-circle::before {
  908. content: "\e9b6";
  909. }
  910. .icon-minus-1::before {
  911. content: "\e9b7";
  912. }
  913. .icon-minus-circle::before {
  914. content: "\e9b8";
  915. }
  916. .icon-help-1::before {
  917. content: "\e9b9";
  918. }
  919. .icon-info::before {
  920. content: "\e9ba";
  921. }
  922. .icon-home-2::before {
  923. content: "\e9bb";
  924. }
  925. .icon-link-1::before {
  926. content: "\e9bc";
  927. }
  928. .icon-attach-2::before {
  929. content: "\e9bd";
  930. }
  931. .icon-lock-2::before {
  932. content: "\e9be";
  933. }
  934. .icon-lock-empty::before {
  935. content: "\e9bf";
  936. }
  937. .icon-lock-open-2::before {
  938. content: "\e9c0";
  939. }
  940. .icon-lock-open-empty::before {
  941. content: "\e9c1";
  942. }
  943. .icon-pin::before {
  944. content: "\e9c2";
  945. }
  946. .icon-eye-2::before {
  947. content: "\e9c3";
  948. }
  949. .icon-tag-1::before {
  950. content: "\e9c4";
  951. }
  952. .icon-tag-empty::before {
  953. content: "\e9c5";
  954. }
  955. .icon-download-2::before {
  956. content: "\e9c6";
  957. }
  958. .icon-upload-2::before {
  959. content: "\e9c7";
  960. }
  961. .icon-download-cloud-1::before {
  962. content: "\e9c8";
  963. }
  964. .icon-upload-cloud-1::before {
  965. content: "\e9c9";
  966. }
  967. .icon-quote-left::before {
  968. content: "\e9ca";
  969. }
  970. .icon-quote-right::before {
  971. content: "\e9cb";
  972. }
  973. .icon-quote-left-alt::before {
  974. content: "\e9cc";
  975. }
  976. .icon-quote-right-alt::before {
  977. content: "\e9cd";
  978. }
  979. .icon-pencil-2::before {
  980. content: "\e9ce";
  981. }
  982. .icon-pencil-neg::before {
  983. content: "\e9cf";
  984. }
  985. .icon-pencil-alt::before {
  986. content: "\e9d0";
  987. }
  988. .icon-undo::before {
  989. content: "\e9d1";
  990. }
  991. .icon-comment-2::before {
  992. content: "\e9d2";
  993. }
  994. .icon-comment-inv::before {
  995. content: "\e9d3";
  996. }
  997. .icon-comment-alt-1::before {
  998. content: "\e9d4";
  999. }
  1000. .icon-comment-inv-alt::before {
  1001. content: "\e9d5";
  1002. }
  1003. .icon-comment-alt2::before {
  1004. content: "\e9d6";
  1005. }
  1006. .icon-comment-inv-alt2::before {
  1007. content: "\e9d7";
  1008. }
  1009. .icon-chat-1::before {
  1010. content: "\e9d8";
  1011. }
  1012. .icon-chat-inv::before {
  1013. content: "\e9d9";
  1014. }
  1015. .icon-location-2::before {
  1016. content: "\e9da";
  1017. }
  1018. .icon-location-inv::before {
  1019. content: "\e9db";
  1020. }
  1021. .icon-location-alt::before {
  1022. content: "\e9dc";
  1023. }
  1024. .icon-compass-1::before {
  1025. content: "\e9dd";
  1026. }
  1027. .icon-trash-2::before {
  1028. content: "\e9de";
  1029. }
  1030. .icon-trash-empty::before {
  1031. content: "\e9df";
  1032. }
  1033. .icon-doc-2::before {
  1034. content: "\e9e0";
  1035. }
  1036. .icon-doc-inv::before {
  1037. content: "\e9e1";
  1038. }
  1039. .icon-doc-alt::before {
  1040. content: "\e9e2";
  1041. }
  1042. .icon-doc-inv-alt::before {
  1043. content: "\e9e3";
  1044. }
  1045. .icon-article::before {
  1046. content: "\e9e4";
  1047. }
  1048. .icon-article-alt::before {
  1049. content: "\e9e5";
  1050. }
  1051. .icon-book-open::before {
  1052. content: "\e9e6";
  1053. }
  1054. .icon-folder-2::before {
  1055. content: "\e9e7";
  1056. }
  1057. .icon-folder-empty-1::before {
  1058. content: "\e9e8";
  1059. }
  1060. .icon-box::before {
  1061. content: "\e9e9";
  1062. }
  1063. .icon-rss-1::before {
  1064. content: "\e9ea";
  1065. }
  1066. .icon-rss-alt::before {
  1067. content: "\e9eb";
  1068. }
  1069. .icon-cog-2::before {
  1070. content: "\e9ec";
  1071. }
  1072. .icon-wrench-1::before {
  1073. content: "\e9ed";
  1074. }
  1075. .icon-share-1::before {
  1076. content: "\e9ee";
  1077. }
  1078. .icon-calendar-2::before {
  1079. content: "\e9ef";
  1080. }
  1081. .icon-calendar-inv::before {
  1082. content: "\e9f0";
  1083. }
  1084. .icon-calendar-alt::before {
  1085. content: "\e9f1";
  1086. }
  1087. .icon-mic-2::before {
  1088. content: "\e9f2";
  1089. }
  1090. .icon-volume-off-1::before {
  1091. content: "\e9f3";
  1092. }
  1093. .icon-volume-up-1::before {
  1094. content: "\e9f4";
  1095. }
  1096. .icon-headphones-1::before {
  1097. content: "\e9f5";
  1098. }
  1099. .icon-clock-2::before {
  1100. content: "\e9f6";
  1101. }
  1102. .icon-lamp::before {
  1103. content: "\e9f7";
  1104. }
  1105. .icon-block-1::before {
  1106. content: "\e9f8";
  1107. }
  1108. .icon-resize-full-1::before {
  1109. content: "\e9f9";
  1110. }
  1111. .icon-resize-full-alt-1::before {
  1112. content: "\e9fa";
  1113. }
  1114. .icon-resize-small-1::before {
  1115. content: "\e9fb";
  1116. }
  1117. .icon-resize-small-alt::before {
  1118. content: "\e9fc";
  1119. }
  1120. .icon-resize-vertical-1::before {
  1121. content: "\e9fd";
  1122. }
  1123. .icon-resize-horizontal-1::before {
  1124. content: "\e9fe";
  1125. }
  1126. .icon-move-1::before {
  1127. content: "\e9ff";
  1128. }
  1129. .icon-popup::before {
  1130. content: "\ea00";
  1131. }
  1132. .icon-down-2::before {
  1133. content: "\ea01";
  1134. }
  1135. .icon-left-2::before {
  1136. content: "\ea02";
  1137. }
  1138. .icon-right-2::before {
  1139. content: "\ea03";
  1140. }
  1141. .icon-up-2::before {
  1142. content: "\ea04";
  1143. }
  1144. .icon-down-circle::before {
  1145. content: "\ea05";
  1146. }
  1147. .icon-left-circle::before {
  1148. content: "\ea06";
  1149. }
  1150. .icon-right-circle::before {
  1151. content: "\ea07";
  1152. }
  1153. .icon-up-circle::before {
  1154. content: "\ea08";
  1155. }
  1156. .icon-cw-1::before {
  1157. content: "\ea09";
  1158. }
  1159. .icon-loop::before {
  1160. content: "\ea0a";
  1161. }
  1162. .icon-loop-alt::before {
  1163. content: "\ea0b";
  1164. }
  1165. .icon-exchange::before {
  1166. content: "\ea0c";
  1167. }
  1168. .icon-split::before {
  1169. content: "\ea0d";
  1170. }
  1171. .icon-arrow-curved::before {
  1172. content: "\ea0e";
  1173. }
  1174. .icon-play-2::before {
  1175. content: "\ea0f";
  1176. }
  1177. .icon-play-circle2::before {
  1178. content: "\ea10";
  1179. }
  1180. .icon-stop-2::before {
  1181. content: "\ea11";
  1182. }
  1183. .icon-pause-2::before {
  1184. content: "\ea12";
  1185. }
  1186. .icon-to-start-1::before {
  1187. content: "\ea13";
  1188. }
  1189. .icon-to-end-1::before {
  1190. content: "\ea14";
  1191. }
  1192. .icon-eject-1::before {
  1193. content: "\ea15";
  1194. }
  1195. .icon-target-1::before {
  1196. content: "\ea16";
  1197. }
  1198. .icon-signal-1::before {
  1199. content: "\ea17";
  1200. }
  1201. .icon-award::before {
  1202. content: "\ea18";
  1203. }
  1204. .icon-award-empty::before {
  1205. content: "\ea19";
  1206. }
  1207. .icon-list-1::before {
  1208. content: "\ea1a";
  1209. }
  1210. .icon-list-nested::before {
  1211. content: "\ea1b";
  1212. }
  1213. .icon-bat-empty::before {
  1214. content: "\ea1c";
  1215. }
  1216. .icon-bat-half::before {
  1217. content: "\ea1d";
  1218. }
  1219. .icon-bat-full::before {
  1220. content: "\ea1e";
  1221. }
  1222. .icon-bat-charge::before {
  1223. content: "\ea1f";
  1224. }
  1225. .icon-mobile-1::before {
  1226. content: "\ea20";
  1227. }
  1228. .icon-cd::before {
  1229. content: "\ea21";
  1230. }
  1231. .icon-equalizer::before {
  1232. content: "\ea22";
  1233. }
  1234. .icon-cursor::before {
  1235. content: "\ea23";
  1236. }
  1237. .icon-aperture::before {
  1238. content: "\ea24";
  1239. }
  1240. .icon-aperture-alt::before {
  1241. content: "\ea25";
  1242. }
  1243. .icon-steering-wheel::before {
  1244. content: "\ea26";
  1245. }
  1246. .icon-book-1::before {
  1247. content: "\ea27";
  1248. }
  1249. .icon-book-alt::before {
  1250. content: "\ea28";
  1251. }
  1252. .icon-brush::before {
  1253. content: "\ea29";
  1254. }
  1255. .icon-brush-alt::before {
  1256. content: "\ea2a";
  1257. }
  1258. .icon-eyedropper::before {
  1259. content: "\ea2b";
  1260. }
  1261. .icon-layers::before {
  1262. content: "\ea2c";
  1263. }
  1264. .icon-layers-alt::before {
  1265. content: "\ea2d";
  1266. }
  1267. .icon-sun::before {
  1268. content: "\ea2e";
  1269. }
  1270. .icon-sun-inv::before {
  1271. content: "\ea2f";
  1272. }
  1273. .icon-cloud-2::before {
  1274. content: "\ea30";
  1275. }
  1276. .icon-rain::before {
  1277. content: "\ea31";
  1278. }
  1279. .icon-flash-1::before {
  1280. content: "\ea32";
  1281. }
  1282. .icon-moon::before {
  1283. content: "\ea33";
  1284. }
  1285. .icon-moon-inv::before {
  1286. content: "\ea34";
  1287. }
  1288. .icon-umbrella::before {
  1289. content: "\ea35";
  1290. }
  1291. .icon-chart-bar-1::before {
  1292. content: "\ea36";
  1293. }
  1294. .icon-chart-pie::before {
  1295. content: "\ea37";
  1296. }
  1297. .icon-chart-pie-alt::before {
  1298. content: "\ea38";
  1299. }
  1300. .icon-note-beamed::before {
  1301. content: "\eb34";
  1302. }
  1303. .icon-key-inv::before {
  1304. content: "\ea3a";
  1305. }
  1306. .icon-hash-1::before {
  1307. content: "\ea3b";
  1308. }
  1309. .icon-at-1::before {
  1310. content: "\ea3c";
  1311. }
  1312. .icon-pilcrow::before {
  1313. content: "\ea3d";
  1314. }
  1315. .icon-dial::before {
  1316. content: "\ea3e";
  1317. }
  1318. .icon-search-1::before {
  1319. content: "\e90f";
  1320. }
  1321. .icon-mail-1::before {
  1322. content: "\e910";
  1323. }
  1324. .icon-heart-1::before {
  1325. content: "\e911";
  1326. }
  1327. .icon-heart-broken::before {
  1328. content: "\e912";
  1329. }
  1330. .icon-star-1::before {
  1331. content: "\e913";
  1332. }
  1333. .icon-star-empty-1::before {
  1334. content: "\e914";
  1335. }
  1336. .icon-star-half::before {
  1337. content: "\e915";
  1338. }
  1339. .icon-star-half_empty::before {
  1340. content: "\e916";
  1341. }
  1342. .icon-user-1::before {
  1343. content: "\e917";
  1344. }
  1345. .icon-user-male::before {
  1346. content: "\e918";
  1347. }
  1348. .icon-user-female::before {
  1349. content: "\e919";
  1350. }
  1351. .icon-users::before {
  1352. content: "\e91a";
  1353. }
  1354. .icon-movie::before {
  1355. content: "\e91b";
  1356. }
  1357. .icon-videocam-1::before {
  1358. content: "\e91c";
  1359. }
  1360. .icon-isight::before {
  1361. content: "\e91d";
  1362. }
  1363. .icon-camera-1::before {
  1364. content: "\e91e";
  1365. }
  1366. .icon-menu::before {
  1367. content: "\e91f";
  1368. }
  1369. .icon-th-thumb::before {
  1370. content: "\e920";
  1371. }
  1372. .icon-th-thumb-empty::before {
  1373. content: "\e921";
  1374. }
  1375. .icon-th-list-1::before {
  1376. content: "\e922";
  1377. }
  1378. .icon-ok-1::before {
  1379. content: "\e923";
  1380. }
  1381. .icon-ok-circled-1::before {
  1382. content: "\e924";
  1383. }
  1384. .icon-cancel-1::before {
  1385. content: "\e925";
  1386. }
  1387. .icon-cancel-circled-1::before {
  1388. content: "\e926";
  1389. }
  1390. .icon-plus-1::before {
  1391. content: "\e927";
  1392. }
  1393. .icon-help-circled-1::before {
  1394. content: "\e928";
  1395. }
  1396. .icon-help-circled-alt::before {
  1397. content: "\e929";
  1398. }
  1399. .icon-info-circled-1::before {
  1400. content: "\e92a";
  1401. }
  1402. .icon-info-circled-alt::before {
  1403. content: "\e92b";
  1404. }
  1405. .icon-home-1::before {
  1406. content: "\e92c";
  1407. }
  1408. .icon-link::before {
  1409. content: "\e92d";
  1410. }
  1411. .icon-attach-1::before {
  1412. content: "\e92e";
  1413. }
  1414. .icon-lock-1::before {
  1415. content: "\e92f";
  1416. }
  1417. .icon-lock-alt::before {
  1418. content: "\e930";
  1419. }
  1420. .icon-lock-open-1::before {
  1421. content: "\e931";
  1422. }
  1423. .icon-lock-open-alt-1::before {
  1424. content: "\e932";
  1425. }
  1426. .icon-eye-1::before {
  1427. content: "\e933";
  1428. }
  1429. .icon-download-1::before {
  1430. content: "\e934";
  1431. }
  1432. .icon-upload-1::before {
  1433. content: "\e935";
  1434. }
  1435. .icon-download-cloud::before {
  1436. content: "\e936";
  1437. }
  1438. .icon-upload-cloud::before {
  1439. content: "\e937";
  1440. }
  1441. .icon-reply::before {
  1442. content: "\e938";
  1443. }
  1444. .icon-pencil-1::before {
  1445. content: "\e939";
  1446. }
  1447. .icon-export-1::before {
  1448. content: "\e93a";
  1449. }
  1450. .icon-print-1::before {
  1451. content: "\e93b";
  1452. }
  1453. .icon-retweet-1::before {
  1454. content: "\e93c";
  1455. }
  1456. .icon-comment-1::before {
  1457. content: "\e93d";
  1458. }
  1459. .icon-chat::before {
  1460. content: "\e93e";
  1461. }
  1462. .icon-bell-1::before {
  1463. content: "\e93f";
  1464. }
  1465. .icon-attention::before {
  1466. content: "\e940";
  1467. }
  1468. .icon-attention-alt::before {
  1469. content: "\e941";
  1470. }
  1471. .icon-location-1::before {
  1472. content: "\e942";
  1473. }
  1474. .icon-trash-1::before {
  1475. content: "\e943";
  1476. }
  1477. .icon-doc-1::before {
  1478. content: "\e944";
  1479. }
  1480. .icon-newspaper::before {
  1481. content: "\e945";
  1482. }
  1483. .icon-folder-1::before {
  1484. content: "\e946";
  1485. }
  1486. .icon-folder-open-1::before {
  1487. content: "\e947";
  1488. }
  1489. .icon-folder-empty::before {
  1490. content: "\e948";
  1491. }
  1492. .icon-folder-open-empty::before {
  1493. content: "\e949";
  1494. }
  1495. .icon-cog-1::before {
  1496. content: "\e94a";
  1497. }
  1498. .icon-calendar-1::before {
  1499. content: "\e94b";
  1500. }
  1501. .icon-login::before {
  1502. content: "\e94c";
  1503. }
  1504. .icon-logout::before {
  1505. content: "\e94d";
  1506. }
  1507. .icon-mic-1::before {
  1508. content: "\e94e";
  1509. }
  1510. .icon-mic-off::before {
  1511. content: "\e94f";
  1512. }
  1513. .icon-clock-1::before {
  1514. content: "\e950";
  1515. }
  1516. .icon-stopwatch::before {
  1517. content: "\e951";
  1518. }
  1519. .icon-hourglass::before {
  1520. content: "\e952";
  1521. }
  1522. .icon-zoom-in-1::before {
  1523. content: "\e953";
  1524. }
  1525. .icon-zoom-out-1::before {
  1526. content: "\e954";
  1527. }
  1528. .icon-down-open-1::before {
  1529. content: "\e955";
  1530. }
  1531. .icon-left-open-1::before {
  1532. content: "\e956";
  1533. }
  1534. .icon-right-open-1::before {
  1535. content: "\e957";
  1536. }
  1537. .icon-up-open-1::before {
  1538. content: "\e958";
  1539. }
  1540. .icon-down-1::before {
  1541. content: "\e959";
  1542. }
  1543. .icon-left-1::before {
  1544. content: "\e95a";
  1545. }
  1546. .icon-right-1::before {
  1547. content: "\e95b";
  1548. }
  1549. .icon-up-1::before {
  1550. content: "\e95c";
  1551. }
  1552. .icon-down-bold::before {
  1553. content: "\e95d";
  1554. }
  1555. .icon-left-bold::before {
  1556. content: "\e95e";
  1557. }
  1558. .icon-right-bold::before {
  1559. content: "\e95f";
  1560. }
  1561. .icon-up-bold::before {
  1562. content: "\e960";
  1563. }
  1564. .icon-down-fat::before {
  1565. content: "\e961";
  1566. }
  1567. .icon-left-fat::before {
  1568. content: "\e962";
  1569. }
  1570. .icon-right-fat::before {
  1571. content: "\e963";
  1572. }
  1573. .icon-up-fat::before {
  1574. content: "\e964";
  1575. }
  1576. .icon-ccw::before {
  1577. content: "\e965";
  1578. }
  1579. .icon-shuffle-1::before {
  1580. content: "\e966";
  1581. }
  1582. .icon-play-1::before {
  1583. content: "\e967";
  1584. }
  1585. .icon-pause-1::before {
  1586. content: "\e968";
  1587. }
  1588. .icon-stop-1::before {
  1589. content: "\e969";
  1590. }
  1591. .icon-to-end::before {
  1592. content: "\e96a";
  1593. }
  1594. .icon-to-start::before {
  1595. content: "\e96b";
  1596. }
  1597. .icon-fast-forward-1::before {
  1598. content: "\e96c";
  1599. }
  1600. .icon-fast-backward-1::before {
  1601. content: "\e96d";
  1602. }
  1603. .icon-trophy::before {
  1604. content: "\e96e";
  1605. }
  1606. .icon-monitor::before {
  1607. content: "\e96f";
  1608. }
  1609. .icon-tablet::before {
  1610. content: "\e970";
  1611. }
  1612. .icon-mobile::before {
  1613. content: "\e971";
  1614. }
  1615. .icon-data-science::before {
  1616. content: "\e972";
  1617. }
  1618. .icon-data-science-inv::before {
  1619. content: "\e973";
  1620. }
  1621. .icon-inbox-1::before {
  1622. content: "\e974";
  1623. }
  1624. .icon-globe-1::before {
  1625. content: "\e975";
  1626. }
  1627. .icon-globe-inv::before {
  1628. content: "\e976";
  1629. }
  1630. .icon-flash::before {
  1631. content: "\e977";
  1632. }
  1633. .icon-cloud-1::before {
  1634. content: "\e978";
  1635. }
  1636. .icon-coverflow::before {
  1637. content: "\e979";
  1638. }
  1639. .icon-coverflow-empty::before {
  1640. content: "\e97a";
  1641. }
  1642. .icon-math::before {
  1643. content: "\e97b";
  1644. }
  1645. .icon-math-circled::before {
  1646. content: "\e97c";
  1647. }
  1648. .icon-math-circled-empty::before {
  1649. content: "\e97d";
  1650. }
  1651. .icon-paper-plane::before {
  1652. content: "\e97e";
  1653. }
  1654. .icon-paper-plane-alt::before {
  1655. content: "\e97f";
  1656. }
  1657. .icon-paper-plane-alt2::before {
  1658. content: "\e980";
  1659. }
  1660. .icon-fontsize-1::before {
  1661. content: "\e981";
  1662. }
  1663. .icon-color-adjust::before {
  1664. content: "\e982";
  1665. }
  1666. .icon-fire-1::before {
  1667. content: "\e983";
  1668. }
  1669. .icon-chart-bar::before {
  1670. content: "\e984";
  1671. }
  1672. .icon-hdd-1::before {
  1673. content: "\e985";
  1674. }
  1675. .icon-connected-object::before {
  1676. content: "\e986";
  1677. }
  1678. .icon-ruler::before {
  1679. content: "\e987";
  1680. }
  1681. .icon-vector::before {
  1682. content: "\e988";
  1683. }
  1684. .icon-vector-pencil::before {
  1685. content: "\e989";
  1686. }
  1687. .icon-at::before {
  1688. content: "\e98a";
  1689. }
  1690. .icon-hash::before {
  1691. content: "\e98b";
  1692. }
  1693. .icon-female-1::before {
  1694. content: "\e98c";
  1695. }
  1696. .icon-male-1::before {
  1697. content: "\e98d";
  1698. }
  1699. .icon-spread::before {
  1700. content: "\e98e";
  1701. }
  1702. .icon-king::before {
  1703. content: "\e98f";
  1704. }
  1705. .icon-anchor::before {
  1706. content: "\e990";
  1707. }
  1708. .icon-joystick::before {
  1709. content: "\e991";
  1710. }
  1711. .icon-spinner1::before {
  1712. content: "\e992";
  1713. }
  1714. .icon-spinner2::before {
  1715. content: "\e993";
  1716. }
  1717. .icon-github-1::before {
  1718. content: "\e994";
  1719. }
  1720. .icon-github-circled::before {
  1721. content: "\e995";
  1722. }
  1723. .icon-github-circled-alt::before {
  1724. content: "\e996";
  1725. }
  1726. .icon-github-circled-alt2::before {
  1727. content: "\e997";
  1728. }
  1729. .icon-twitter-1::before {
  1730. content: "\e998";
  1731. }
  1732. .icon-twitter-circled::before {
  1733. content: "\e999";
  1734. }
  1735. .icon-facebook-1::before {
  1736. content: "\e99a";
  1737. }
  1738. .icon-facebook-circled::before {
  1739. content: "\e99b";
  1740. }
  1741. .icon-gplus::before {
  1742. content: "\e99c";
  1743. }
  1744. .icon-gplus-circled::before {
  1745. content: "\e99d";
  1746. }
  1747. .icon-linkedin-1::before {
  1748. content: "\e99e";
  1749. }
  1750. .icon-linkedin-circled::before {
  1751. content: "\e99f";
  1752. }
  1753. .icon-dribbble-1::before {
  1754. content: "\e9a0";
  1755. }
  1756. .icon-dribbble-circled::before {
  1757. content: "\e9a1";
  1758. }
  1759. .icon-instagram-1::before {
  1760. content: "\e9a2";
  1761. }
  1762. .icon-instagram-circled::before {
  1763. content: "\e9a3";
  1764. }
  1765. .icon-soundcloud::before {
  1766. content: "\e9a4";
  1767. }
  1768. .icon-soundcloud-circled::before {
  1769. content: "\e9a5";
  1770. }
  1771. .icon-mfg-logo::before {
  1772. content: "\e9a6";
  1773. }
  1774. .icon-mfg-logo-circled::before {
  1775. content: "\e9a7";
  1776. }
  1777. .icon-glass::before {
  1778. content: "\e800";
  1779. }
  1780. .icon-music::before {
  1781. content: "\e801";
  1782. }
  1783. .icon-search::before {
  1784. content: "\e802";
  1785. }
  1786. .icon-search-circled::before {
  1787. content: "\e803";
  1788. }
  1789. .icon-mail::before {
  1790. content: "\e804";
  1791. }
  1792. .icon-mail-circled::before {
  1793. content: "\e805";
  1794. }
  1795. .icon-heart::before {
  1796. content: "\e806";
  1797. }
  1798. .icon-heart-circled::before {
  1799. content: "\e807";
  1800. }
  1801. .icon-heart-empty::before {
  1802. content: "\e808";
  1803. }
  1804. .icon-star::before {
  1805. content: "\e809";
  1806. }
  1807. .icon-star-circled::before {
  1808. content: "\e80a";
  1809. }
  1810. .icon-star-empty::before {
  1811. content: "\e80b";
  1812. }
  1813. .icon-user::before {
  1814. content: "\e80c";
  1815. }
  1816. .icon-group::before {
  1817. content: "\e80d";
  1818. }
  1819. .icon-group-circled::before {
  1820. content: "\e80e";
  1821. }
  1822. .icon-torso::before {
  1823. content: "\e80f";
  1824. }
  1825. .icon-video::before {
  1826. content: "\e810";
  1827. }
  1828. .icon-video-circled::before {
  1829. content: "\e811";
  1830. }
  1831. .icon-video-alt::before {
  1832. content: "\e812";
  1833. }
  1834. .icon-videocam::before {
  1835. content: "\e813";
  1836. }
  1837. .icon-video-chat::before {
  1838. content: "\e814";
  1839. }
  1840. .icon-picture::before {
  1841. content: "\e815";
  1842. }
  1843. .icon-camera::before {
  1844. content: "\e816";
  1845. }
  1846. .icon-photo::before {
  1847. content: "\e817";
  1848. }
  1849. .icon-photo-circled::before {
  1850. content: "\e818";
  1851. }
  1852. .icon-th-large::before {
  1853. content: "\e819";
  1854. }
  1855. .icon-th::before {
  1856. content: "\e81a";
  1857. }
  1858. .icon-th-list::before {
  1859. content: "\e81b";
  1860. }
  1861. .icon-view-mode::before {
  1862. content: "\e81c";
  1863. }
  1864. .icon-ok::before {
  1865. content: "\e81d";
  1866. }
  1867. .icon-ok-circled::before {
  1868. content: "\e81e";
  1869. }
  1870. .icon-ok-circled2::before {
  1871. content: "\e81f";
  1872. }
  1873. .icon-cancel::before {
  1874. content: "\e820";
  1875. }
  1876. .icon-cancel-circled::before {
  1877. content: "\e821";
  1878. }
  1879. .icon-cancel-circled2::before {
  1880. content: "\e822";
  1881. }
  1882. .icon-plus::before {
  1883. content: "\e823";
  1884. }
  1885. .icon-plus-circled::before {
  1886. content: "\e824";
  1887. }
  1888. .icon-minus::before {
  1889. content: "\e825";
  1890. }
  1891. .icon-minus-circled::before {
  1892. content: "\e826";
  1893. }
  1894. .icon-help::before {
  1895. content: "\e827";
  1896. }
  1897. .icon-help-circled::before {
  1898. content: "\e828";
  1899. }
  1900. .icon-info-circled::before {
  1901. content: "\e829";
  1902. }
  1903. .icon-home::before {
  1904. content: "\e82a";
  1905. }
  1906. .icon-home-circled::before {
  1907. content: "\e82b";
  1908. }
  1909. .icon-website::before {
  1910. content: "\e82c";
  1911. }
  1912. .icon-website-circled::before {
  1913. content: "\e82d";
  1914. }
  1915. .icon-attach::before {
  1916. content: "\e82e";
  1917. }
  1918. .icon-attach-circled::before {
  1919. content: "\e82f";
  1920. }
  1921. .icon-lock::before {
  1922. content: "\e830";
  1923. }
  1924. .icon-lock-circled::before {
  1925. content: "\e831";
  1926. }
  1927. .icon-lock-open::before {
  1928. content: "\e832";
  1929. }
  1930. .icon-lock-open-alt::before {
  1931. content: "\e833";
  1932. }
  1933. .icon-eye::before {
  1934. content: "\e834";
  1935. }
  1936. .icon-eye-off::before {
  1937. content: "\e835";
  1938. }
  1939. .icon-tag::before {
  1940. content: "\e836";
  1941. }
  1942. .icon-tags::before {
  1943. content: "\e837";
  1944. }
  1945. .icon-bookmark::before {
  1946. content: "\e838";
  1947. }
  1948. .icon-bookmark-empty::before {
  1949. content: "\e839";
  1950. }
  1951. .icon-flag::before {
  1952. content: "\e83a";
  1953. }
  1954. .icon-flag-circled::before {
  1955. content: "\e83b";
  1956. }
  1957. .icon-thumbs-up::before {
  1958. content: "\e83c";
  1959. }
  1960. .icon-thumbs-down::before {
  1961. content: "\e83d";
  1962. }
  1963. .icon-download::before {
  1964. content: "\e83e";
  1965. }
  1966. .icon-download-alt::before {
  1967. content: "\e83f";
  1968. }
  1969. .icon-upload::before {
  1970. content: "\e840";
  1971. }
  1972. .icon-share::before {
  1973. content: "\e841";
  1974. }
  1975. .icon-quote::before {
  1976. content: "\e842";
  1977. }
  1978. .icon-quote-circled::before {
  1979. content: "\e843";
  1980. }
  1981. .icon-export::before {
  1982. content: "\e844";
  1983. }
  1984. .icon-pencil::before {
  1985. content: "\e845";
  1986. }
  1987. .icon-pencil-circled::before {
  1988. content: "\e846";
  1989. }
  1990. .icon-edit::before {
  1991. content: "\e847";
  1992. }
  1993. .icon-edit-circled::before {
  1994. content: "\e848";
  1995. }
  1996. .icon-edit-alt::before {
  1997. content: "\e849";
  1998. }
  1999. .icon-print::before {
  2000. content: "\e84a";
  2001. }
  2002. .icon-retweet::before {
  2003. content: "\e84b";
  2004. }
  2005. .icon-comment::before {
  2006. content: "\e84c";
  2007. }
  2008. .icon-comment-alt::before {
  2009. content: "\e84d";
  2010. }
  2011. .icon-bell::before {
  2012. content: "\e84e";
  2013. }
  2014. .icon-warning::before {
  2015. content: "\e84f";
  2016. }
  2017. .icon-exclamation::before {
  2018. content: "\e850";
  2019. }
  2020. .icon-error::before {
  2021. content: "\e851";
  2022. }
  2023. .icon-error-alt::before {
  2024. content: "\e852";
  2025. }
  2026. .icon-location::before {
  2027. content: "\e853";
  2028. }
  2029. .icon-location-circled::before {
  2030. content: "\e854";
  2031. }
  2032. .icon-compass::before {
  2033. content: "\e855";
  2034. }
  2035. .icon-compass-circled::before {
  2036. content: "\e856";
  2037. }
  2038. .icon-trash::before {
  2039. content: "\e857";
  2040. }
  2041. .icon-trash-circled::before {
  2042. content: "\e858";
  2043. }
  2044. .icon-doc::before {
  2045. content: "\e859";
  2046. }
  2047. .icon-doc-circled::before {
  2048. content: "\e85a";
  2049. }
  2050. .icon-doc-new::before {
  2051. content: "\e85b";
  2052. }
  2053. .icon-doc-new-circled::before {
  2054. content: "\e85c";
  2055. }
  2056. .icon-folder::before {
  2057. content: "\e85d";
  2058. }
  2059. .icon-folder-circled::before {
  2060. content: "\e85e";
  2061. }
  2062. .icon-folder-close::before {
  2063. content: "\e85f";
  2064. }
  2065. .icon-folder-open::before {
  2066. content: "\e860";
  2067. }
  2068. .icon-rss::before {
  2069. content: "\e861";
  2070. }
  2071. .icon-phone::before {
  2072. content: "\e862";
  2073. }
  2074. .icon-phone-circled::before {
  2075. content: "\e863";
  2076. }
  2077. .icon-cog::before {
  2078. content: "\e864";
  2079. }
  2080. .icon-cog-circled::before {
  2081. content: "\e865";
  2082. }
  2083. .icon-cogs::before {
  2084. content: "\e866";
  2085. }
  2086. .icon-wrench::before {
  2087. content: "\e867";
  2088. }
  2089. .icon-wrench-circled::before {
  2090. content: "\e868";
  2091. }
  2092. .icon-basket::before {
  2093. content: "\e869";
  2094. }
  2095. .icon-basket-circled::before {
  2096. content: "\e86a";
  2097. }
  2098. .icon-calendar::before {
  2099. content: "\e86b";
  2100. }
  2101. .icon-calendar-circled::before {
  2102. content: "\e86c";
  2103. }
  2104. .icon-mic::before {
  2105. content: "\e86d";
  2106. }
  2107. .icon-mic-circled::before {
  2108. content: "\e86e";
  2109. }
  2110. .icon-volume-off::before {
  2111. content: "\e86f";
  2112. }
  2113. .icon-volume-down::before {
  2114. content: "\e870";
  2115. }
  2116. .icon-volume::before {
  2117. content: "\e871";
  2118. }
  2119. .icon-volume-up::before {
  2120. content: "\e872";
  2121. }
  2122. .icon-headphones::before {
  2123. content: "\e873";
  2124. }
  2125. .icon-clock::before {
  2126. content: "\e874";
  2127. }
  2128. .icon-clock-circled::before {
  2129. content: "\e875";
  2130. }
  2131. .icon-lightbulb::before {
  2132. content: "\e876";
  2133. }
  2134. .icon-lightbulb-alt::before {
  2135. content: "\e877";
  2136. }
  2137. .icon-block::before {
  2138. content: "\e878";
  2139. }
  2140. .icon-resize-full::before {
  2141. content: "\e879";
  2142. }
  2143. .icon-resize-full-alt::before {
  2144. content: "\e87a";
  2145. }
  2146. .icon-resize-small::before {
  2147. content: "\e87b";
  2148. }
  2149. .icon-resize-vertical::before {
  2150. content: "\e87c";
  2151. }
  2152. .icon-resize-horizontal::before {
  2153. content: "\e87d";
  2154. }
  2155. .icon-move::before {
  2156. content: "\e87e";
  2157. }
  2158. .icon-zoom-in::before {
  2159. content: "\e87f";
  2160. }
  2161. .icon-zoom-out::before {
  2162. content: "\e880";
  2163. }
  2164. .icon-down-open::before {
  2165. content: "\e881";
  2166. }
  2167. .icon-left-open::before {
  2168. content: "\e882";
  2169. }
  2170. .icon-right-open::before {
  2171. content: "\e883";
  2172. }
  2173. .icon-up-open::before {
  2174. content: "\e884";
  2175. }
  2176. .icon-down::before {
  2177. content: "\e885";
  2178. }
  2179. .icon-left::before {
  2180. content: "\e886";
  2181. }
  2182. .icon-right::before {
  2183. content: "\e887";
  2184. }
  2185. .icon-up::before {
  2186. content: "\e888";
  2187. }
  2188. .icon-down-circled::before {
  2189. content: "\e889";
  2190. }
  2191. .icon-left-circled::before {
  2192. content: "\e88a";
  2193. }
  2194. .icon-right-circled::before {
  2195. content: "\e88b";
  2196. }
  2197. .icon-up-circled::before {
  2198. content: "\e88c";
  2199. }
  2200. .icon-down-hand::before {
  2201. content: "\e88d";
  2202. }
  2203. .icon-left-hand::before {
  2204. content: "\e88e";
  2205. }
  2206. .icon-right-hand::before {
  2207. content: "\e88f";
  2208. }
  2209. .icon-up-hand::before {
  2210. content: "\e890";
  2211. }
  2212. .icon-cw::before {
  2213. content: "\e891";
  2214. }
  2215. .icon-cw-circled::before {
  2216. content: "\e892";
  2217. }
  2218. .icon-arrows-cw::before {
  2219. content: "\e893";
  2220. }
  2221. .icon-shuffle::before {
  2222. content: "\e894";
  2223. }
  2224. .icon-play::before {
  2225. content: "\e895";
  2226. }
  2227. .icon-play-circled::before {
  2228. content: "\e896";
  2229. }
  2230. .icon-play-circled2::before {
  2231. content: "\e897";
  2232. }
  2233. .icon-stop::before {
  2234. content: "\e898";
  2235. }
  2236. .icon-stop-circled::before {
  2237. content: "\e899";
  2238. }
  2239. .icon-pause::before {
  2240. content: "\e89a";
  2241. }
  2242. .icon-pause-circled::before {
  2243. content: "\e89b";
  2244. }
  2245. .icon-record::before {
  2246. content: "\e89c";
  2247. }
  2248. .icon-eject::before {
  2249. content: "\e89d";
  2250. }
  2251. .icon-backward::before {
  2252. content: "\e89e";
  2253. }
  2254. .icon-backward-circled::before {
  2255. content: "\e89f";
  2256. }
  2257. .icon-fast-backward::before {
  2258. content: "\e8a0";
  2259. }
  2260. .icon-fast-forward::before {
  2261. content: "\e8a1";
  2262. }
  2263. .icon-forward::before {
  2264. content: "\e8a2";
  2265. }
  2266. .icon-forward-circled::before {
  2267. content: "\e8a3";
  2268. }
  2269. .icon-step-backward::before {
  2270. content: "\e8a4";
  2271. }
  2272. .icon-step-forward::before {
  2273. content: "\e8a5";
  2274. }
  2275. .icon-target::before {
  2276. content: "\e8a6";
  2277. }
  2278. .icon-signal::before {
  2279. content: "\e8a7";
  2280. }
  2281. .icon-desktop::before {
  2282. content: "\e8a8";
  2283. }
  2284. .icon-desktop-circled::before {
  2285. content: "\e8a9";
  2286. }
  2287. .icon-laptop::before {
  2288. content: "\e8aa";
  2289. }
  2290. .icon-laptop-circled::before {
  2291. content: "\e8ab";
  2292. }
  2293. .icon-network::before {
  2294. content: "\e8ac";
  2295. }
  2296. .icon-inbox::before {
  2297. content: "\e8ad";
  2298. }
  2299. .icon-inbox-circled::before {
  2300. content: "\e8ae";
  2301. }
  2302. .icon-inbox-alt::before {
  2303. content: "\e8af";
  2304. }
  2305. .icon-globe::before {
  2306. content: "\e8b0";
  2307. }
  2308. .icon-globe-alt::before {
  2309. content: "\e8b1";
  2310. }
  2311. .icon-cloud::before {
  2312. content: "\e8b2";
  2313. }
  2314. .icon-cloud-circled::before {
  2315. content: "\e8b3";
  2316. }
  2317. .icon-flight::before {
  2318. content: "\e8b4";
  2319. }
  2320. .icon-leaf::before {
  2321. content: "\e8b5";
  2322. }
  2323. .icon-font::before {
  2324. content: "\e8b6";
  2325. }
  2326. .icon-fontsize::before {
  2327. content: "\e8b7";
  2328. }
  2329. .icon-bold::before {
  2330. content: "\e8b8";
  2331. }
  2332. .icon-italic::before {
  2333. content: "\e8b9";
  2334. }
  2335. .icon-text-height::before {
  2336. content: "\e8ba";
  2337. }
  2338. .icon-text-width::before {
  2339. content: "\e8bb";
  2340. }
  2341. .icon-align-left::before {
  2342. content: "\e8bc";
  2343. }
  2344. .icon-align-center::before {
  2345. content: "\e8bd";
  2346. }
  2347. .icon-align-right::before {
  2348. content: "\e8be";
  2349. }
  2350. .icon-align-justify::before {
  2351. content: "\e8bf";
  2352. }
  2353. .icon-list::before {
  2354. content: "\e8c0";
  2355. }
  2356. .icon-indent-left::before {
  2357. content: "\e8c1";
  2358. }
  2359. .icon-indent-right::before {
  2360. content: "\e8c2";
  2361. }
  2362. .icon-briefcase::before {
  2363. content: "\e8c3";
  2364. }
  2365. .icon-off::before {
  2366. content: "\e8c4";
  2367. }
  2368. .icon-road::before {
  2369. content: "\e8c5";
  2370. }
  2371. .icon-qrcode::before {
  2372. content: "\e8c6";
  2373. }
  2374. .icon-barcode::before {
  2375. content: "\e8c7";
  2376. }
  2377. .icon-braille::before {
  2378. content: "\e8c8";
  2379. }
  2380. .icon-book::before {
  2381. content: "\e8c9";
  2382. }
  2383. .icon-adjust::before {
  2384. content: "\e8ca";
  2385. }
  2386. .icon-tint::before {
  2387. content: "\e8cb";
  2388. }
  2389. .icon-check::before {
  2390. content: "\e8cc";
  2391. }
  2392. .icon-check-empty::before {
  2393. content: "\e8cd";
  2394. }
  2395. .icon-asterisk::before {
  2396. content: "\e8ce";
  2397. }
  2398. .icon-gift::before {
  2399. content: "\e8cf";
  2400. }
  2401. .icon-fire::before {
  2402. content: "\e8d0";
  2403. }
  2404. .icon-magnet::before {
  2405. content: "\e8d1";
  2406. }
  2407. .icon-chart::before {
  2408. content: "\e8d2";
  2409. }
  2410. .icon-chart-circled::before {
  2411. content: "\e8d3";
  2412. }
  2413. .icon-credit-card::before {
  2414. content: "\e8d4";
  2415. }
  2416. .icon-megaphone::before {
  2417. content: "\e8d5";
  2418. }
  2419. .icon-clipboard::before {
  2420. content: "\e8d6";
  2421. }
  2422. .icon-hdd::before {
  2423. content: "\e8d7";
  2424. }
  2425. .icon-key::before {
  2426. content: "\e8d8";
  2427. }
  2428. .icon-certificate::before {
  2429. content: "\e8d9";
  2430. }
  2431. .icon-tasks::before {
  2432. content: "\e8da";
  2433. }
  2434. .icon-filter::before {
  2435. content: "\e8db";
  2436. }
  2437. .icon-gauge::before {
  2438. content: "\e8dc";
  2439. }
  2440. .icon-smiley::before {
  2441. content: "\e8dd";
  2442. }
  2443. .icon-smiley-circled::before {
  2444. content: "\e8de";
  2445. }
  2446. .icon-address-book::before {
  2447. content: "\e8df";
  2448. }
  2449. .icon-address-book-alt::before {
  2450. content: "\e8e0";
  2451. }
  2452. .icon-asl::before {
  2453. content: "\e8e1";
  2454. }
  2455. .icon-glasses::before {
  2456. content: "\e8e2";
  2457. }
  2458. .icon-hearing-impaired::before {
  2459. content: "\e8e3";
  2460. }
  2461. .icon-iphone-home::before {
  2462. content: "\e8e4";
  2463. }
  2464. .icon-person::before {
  2465. content: "\e8e5";
  2466. }
  2467. .icon-adult::before {
  2468. content: "\e8e6";
  2469. }
  2470. .icon-child::before {
  2471. content: "\e8e7";
  2472. }
  2473. .icon-blind::before {
  2474. content: "\e8e8";
  2475. }
  2476. .icon-guidedog::before {
  2477. content: "\e8e9";
  2478. }
  2479. .icon-accessibility::before {
  2480. content: "\e8ea";
  2481. }
  2482. .icon-universal-access::before {
  2483. content: "\e8eb";
  2484. }
  2485. .icon-male::before {
  2486. content: "\e8ec";
  2487. }
  2488. .icon-female::before {
  2489. content: "\e8ed";
  2490. }
  2491. .icon-behance::before {
  2492. content: "\e8ee";
  2493. }
  2494. .icon-blogger::before {
  2495. content: "\e8ef";
  2496. }
  2497. .icon-cc::before {
  2498. content: "\e8f0";
  2499. }
  2500. .icon-css::before {
  2501. content: "\e8f1";
  2502. }
  2503. .icon-delicious::before {
  2504. content: "\e8f2";
  2505. }
  2506. .icon-deviantart::before {
  2507. content: "\e8f3";
  2508. }
  2509. .icon-digg::before {
  2510. content: "\e8f4";
  2511. }
  2512. .icon-dribbble::before {
  2513. content: "\e8f5";
  2514. }
  2515. .icon-facebook::before {
  2516. content: "\e8f6";
  2517. }
  2518. .icon-flickr::before {
  2519. content: "\e8f7";
  2520. }
  2521. .icon-foursquare::before {
  2522. content: "\e8f8";
  2523. }
  2524. .icon-friendfeed::before {
  2525. content: "\e8f9";
  2526. }
  2527. .icon-friendfeed-rect::before {
  2528. content: "\e8fa";
  2529. }
  2530. .icon-github::before {
  2531. content: "\e8fb";
  2532. }
  2533. .icon-github-text::before {
  2534. content: "\e8fc";
  2535. }
  2536. .icon-googleplus::before {
  2537. content: "\e8fd";
  2538. }
  2539. .icon-instagram::before {
  2540. content: "\e8fe";
  2541. }
  2542. .icon-linkedin::before {
  2543. content: "\e8ff";
  2544. }
  2545. .icon-path::before {
  2546. content: "\e900";
  2547. }
  2548. .icon-picasa::before {
  2549. content: "\e901";
  2550. }
  2551. .icon-pinterest::before {
  2552. content: "\e902";
  2553. }
  2554. .icon-reddit::before {
  2555. content: "\e903";
  2556. }
  2557. .icon-skype::before {
  2558. content: "\e904";
  2559. }
  2560. .icon-slideshare::before {
  2561. content: "\e905";
  2562. }
  2563. .icon-stackoverflow::before {
  2564. content: "\e906";
  2565. }
  2566. .icon-stumbleupon::before {
  2567. content: "\e907";
  2568. }
  2569. .icon-twitter::before {
  2570. content: "\e908";
  2571. }
  2572. .icon-tumblr::before {
  2573. content: "\e909";
  2574. }
  2575. .icon-vimeo::before {
  2576. content: "\e90a";
  2577. }
  2578. .icon-vkontakte::before {
  2579. content: "\e90b";
  2580. }
  2581. .icon-w3c::before {
  2582. content: "\e90c";
  2583. }
  2584. .icon-wordpress::before {
  2585. content: "\e90d";
  2586. }
  2587. .icon-key-1::before {
  2588. content: "\ea39";
  2589. }