jekyll-theme-prettydocs-full 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +7 -0
- data/_data/default/base.yml +8 -0
- data/_data/default/cards.yml +35 -0
- data/_data/default/contact.yml +24 -0
- data/_data/default/faqs.yml +46 -0
- data/_data/default/timeline.yml +33 -0
- data/_includes/_partials/item.html +11 -0
- data/_includes/_partials/post.html +40 -0
- data/_includes/_partials/social-buttons.html +12 -0
- data/_includes/_partials/toc.html +43 -0
- data/_includes/_sections/blog_post.html +50 -0
- data/_includes/_sections/cards.html +25 -0
- data/_includes/_sections/contact.html +29 -0
- data/_includes/_sections/faqs.html +28 -0
- data/_includes/_sections/items-list.html +11 -0
- data/_includes/_sections/not-found.html +11 -0
- data/_includes/_sections/resources.html +68 -0
- data/_includes/_sections/timeline.html +40 -0
- data/_includes/_shower/setup.md +39 -0
- data/_includes/_shower/showerify.html +125 -0
- data/_includes/_theme/footer.html +8 -0
- data/_includes/_theme/head.html +43 -0
- data/_includes/_theme/header.html +36 -0
- data/_includes/_theme/js.html +11 -0
- data/_includes/_utils/common +29 -0
- data/_includes/_utils/picture +18 -0
- data/_layouts/compress.html +9 -0
- data/_layouts/default.html +19 -0
- data/_layouts/faqs.html +9 -0
- data/_layouts/landing.html +18 -0
- data/_layouts/page.html +18 -0
- data/_layouts/post.html +5 -0
- data/_layouts/shower.html +27 -0
- data/_sass/globals/_base.scss +44 -0
- data/_sass/globals/_mixins.scss +175 -0
- data/_sass/partials/_base.scss +108 -0
- data/_sass/partials/_buttons.scss +97 -0
- data/_sass/partials/_cards.scss +170 -0
- data/_sass/partials/_contact.scss +29 -0
- data/_sass/partials/_doc.scss +521 -0
- data/_sass/partials/_footer.scss +9 -0
- data/_sass/partials/_header.scss +87 -0
- data/_sass/partials/_helper.scss +42 -0
- data/_sass/partials/_landing.scss +61 -0
- data/_sass/partials/_post.scss +32 -0
- data/_sass/partials/_resources.scss +10 -0
- data/_sass/partials/_toc.scss +163 -0
- data/_sass/prettydocs-jekyll.scss +20 -0
- data/_sass/vendor/_shower.scss +535 -0
- data/_sass/vendor/_timeline.scss +221 -0
- data/_sass/vendor/shower/defaults.scss +47 -0
- data/_sass/vendor/shower/reset.scss +46 -0
- data/_sass/vendor/shower/screen.scss +549 -0
- data/_sass/vendor/timeline/functions/desaturated-lighten.scss +7 -0
- data/_sass/vendor/timeline/functions/map-deep-get.scss +9 -0
- data/_sass/vendor/timeline/functions/map-set.scss +5 -0
- data/_sass/vendor/timeline/functions/mutate-colors.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-element.scss +23 -0
- data/_sass/vendor/timeline/mixins/timeline-event-variant.scss +20 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-color-variant.scss +6 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-size-variant.scss +17 -0
- data/_sass/vendor/timeline/mixins/timeline-item-right-side-position.scss +21 -0
- data/_sass/vendor/timeline/mixins/timeline-item-start-margins.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-item-variant.scss +28 -0
- data/_sass/vendor/timeline/mixins/timeline-label-variant.scss +3 -0
- data/_sass/vendor/timeline/mixins/timeline-line-variant.scss +5 -0
- data/_sass/vendor/timeline/mixins/timeline-point-color-variant.scss +4 -0
- data/_sass/vendor/timeline/mixins/timeline-point-size-variant.scss +12 -0
- data/_sass/vendor/timeline/mixins/timeline-responsive-variant.scss +26 -0
- data/_sass/vendor/timeline/mixins/timeline-row-clearfix.scss +10 -0
- data/_sass/vendor/timeline/mixins/timeline-single-column.scss +56 -0
- data/_sass/vendor/timeline/mixins/transform-center.scss +3 -0
- data/_sass/vendor/timeline/variables.scss +90 -0
- data/assets/css/main.scss +4 -0
- data/assets/css/shower.scss +4 -0
- data/assets/images/empty.gif +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/labtocat.png +0 -0
- data/assets/js/main.js +45 -0
- data/assets/plugins/elegant_font/Licensing/gpl_license.txt +339 -0
- data/assets/plugins/elegant_font/Licensing/mit_license.txt +21 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.eot +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.svg +1832 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.woff +0 -0
- data/assets/plugins/elegant_font/css/index.html +3019 -0
- data/assets/plugins/elegant_font/css/lte-ie7.js +387 -0
- data/assets/plugins/elegant_font/css/style.css +1159 -0
- data/assets/plugins/elegant_font/images/PNG/arrow-up-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_back.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_move.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_balance.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_blocked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-checked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-selected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calendar.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calulator.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clipboard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cog.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cogs.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_creditcard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_desktop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_film.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_genius.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_group.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_headphones.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_hourglass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_image.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_images.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_laptop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lifesaver.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_loading.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-06.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mobile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_music.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ol.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_paperclip.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_phone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_piechart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_profile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_refresh.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_rook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_table.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tablet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_target.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tool.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tools.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ul.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumbleupon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_square.png +0 -0
- data/assets/plugins/elegant_font/images/SVG/arrow-up-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_back.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2dwnn_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_move.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-horiz.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-vert.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_balance.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_blocked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-checked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-selected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calculator_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calendar.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calulator.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-slelected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clipboard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cog.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cogs.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_creditcard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_desktop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_film.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_genius.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-2x2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-3x3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_group.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_headphones.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_hourglass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_image.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_images.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_laptop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lifesaver.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_loading.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-06.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mobile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_music.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ol.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_paperclip.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_phone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_piechart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_profile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_refresh.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_rook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_table.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tablet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_target.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tool.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tools.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ul.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumbleupon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_square.svg +1 -0
- data/assets/plugins/prism/min/prism-min.js +2 -0
- data/assets/plugins/prism/prism.css +163 -0
- data/assets/plugins/prism/prism.js +18 -0
- metadata +929 -0
| @@ -0,0 +1,387 @@ | |
| 1 | 
            +
            /* Load this script using conditional IE comments if you need to support IE 7 and IE 6. */
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            window.onload = function() {
         | 
| 4 | 
            +
            	function addIcon(el, entity) {
         | 
| 5 | 
            +
            		var html = el.innerHTML;
         | 
| 6 | 
            +
            		el.innerHTML = '<span style="font-family: \'ElegantIcons\'">' + entity + '</span>' + html;
         | 
| 7 | 
            +
            	}
         | 
| 8 | 
            +
            	var icons = {
         | 
| 9 | 
            +
            			'arrow_up' : '!',
         | 
| 10 | 
            +
            			'arrow_down' : '"',
         | 
| 11 | 
            +
            			'arrow_left' : '#',
         | 
| 12 | 
            +
            			'arrow_right' : '$',
         | 
| 13 | 
            +
            			'arrow_left-up' : '%',
         | 
| 14 | 
            +
            			'arrow_right-up' : '&',
         | 
| 15 | 
            +
            			'arrow_right-down' : ''',
         | 
| 16 | 
            +
            			'arrow_left-down' : '(',
         | 
| 17 | 
            +
            			'arrow-up-down' : ')',
         | 
| 18 | 
            +
            			'arrow_up-down_alt' : '*',
         | 
| 19 | 
            +
            			'arrow_left-right_alt' : '+',
         | 
| 20 | 
            +
            			'arrow_left-right' : ',',
         | 
| 21 | 
            +
            			'arrow_expand_alt2' : '-',
         | 
| 22 | 
            +
            			'arrow_expand_alt' : '.',
         | 
| 23 | 
            +
            			'arrow_condense' : '/',
         | 
| 24 | 
            +
            			'arrow_expand' : '0',
         | 
| 25 | 
            +
            			'arrow_move' : '1',
         | 
| 26 | 
            +
            			'arrow_carrot-up' : '2',
         | 
| 27 | 
            +
            			'arrow_carrot-down' : '3',
         | 
| 28 | 
            +
            			'arrow_carrot-left' : '4',
         | 
| 29 | 
            +
            			'arrow_carrot-right' : '5',
         | 
| 30 | 
            +
            			'arrow_carrot-2up' : '6',
         | 
| 31 | 
            +
            			'arrow_carrot-2down' : '7',
         | 
| 32 | 
            +
            			'arrow_carrot-2left' : '8',
         | 
| 33 | 
            +
            			'arrow_carrot-2right' : '9',
         | 
| 34 | 
            +
            			'arrow_carrot-up_alt2' : ':',
         | 
| 35 | 
            +
            			'arrow_carrot-down_alt2' : ';',
         | 
| 36 | 
            +
            			'arrow_carrot-left_alt2' : '<',
         | 
| 37 | 
            +
            			'arrow_carrot-right_alt2' : '=',
         | 
| 38 | 
            +
            			'arrow_carrot-2up_alt2' : '>',
         | 
| 39 | 
            +
            			'arrow_carrot-2down_alt2' : '?',
         | 
| 40 | 
            +
            			'arrow_carrot-2left_alt2' : '@',
         | 
| 41 | 
            +
            			'arrow_carrot-2right_alt2' : 'A',
         | 
| 42 | 
            +
            			'arrow_triangle-up' : 'B',
         | 
| 43 | 
            +
            			'arrow_triangle-down' : 'C',
         | 
| 44 | 
            +
            			'arrow_triangle-left' : 'D',
         | 
| 45 | 
            +
            			'arrow_triangle-right' : 'E',
         | 
| 46 | 
            +
            			'arrow_triangle-up_alt2' : 'F',
         | 
| 47 | 
            +
            			'arrow_triangle-down_alt2' : 'G',
         | 
| 48 | 
            +
            			'arrow_triangle-left_alt2' : 'H',
         | 
| 49 | 
            +
            			'arrow_triangle-right_alt2' : 'I',
         | 
| 50 | 
            +
            			'arrow_back' : 'J',
         | 
| 51 | 
            +
            			'icon_minus-06' : 'K',
         | 
| 52 | 
            +
            			'icon_plus' : 'L',
         | 
| 53 | 
            +
            			'icon_close' : 'M',
         | 
| 54 | 
            +
            			'icon_check' : 'N',
         | 
| 55 | 
            +
            			'icon_minus_alt2' : 'O',
         | 
| 56 | 
            +
            			'icon_plus_alt2' : 'P',
         | 
| 57 | 
            +
            			'icon_close_alt2' : 'Q',
         | 
| 58 | 
            +
            			'icon_check_alt2' : 'R',
         | 
| 59 | 
            +
            			'icon_zoom-out_alt' : 'S',
         | 
| 60 | 
            +
            			'icon_zoom-in_alt' : 'T',
         | 
| 61 | 
            +
            			'icon_search' : 'U',
         | 
| 62 | 
            +
            			'icon_box-empty' : 'V',
         | 
| 63 | 
            +
            			'icon_box-selected' : 'W',
         | 
| 64 | 
            +
            			'icon_minus-box' : 'X',
         | 
| 65 | 
            +
            			'icon_plus-box' : 'Y',
         | 
| 66 | 
            +
            			'icon_box-checked' : 'Z',
         | 
| 67 | 
            +
            			'icon_circle-empty' : '[',
         | 
| 68 | 
            +
            			'icon_circle-slelected' : '\',
         | 
| 69 | 
            +
            			'icon_stop_alt2' : ']',
         | 
| 70 | 
            +
            			'icon_stop' : '^',
         | 
| 71 | 
            +
            			'icon_pause_alt2' : '_',
         | 
| 72 | 
            +
            			'icon_pause' : '`',
         | 
| 73 | 
            +
            			'icon_menu' : 'a',
         | 
| 74 | 
            +
            			'icon_menu-square_alt2' : 'b',
         | 
| 75 | 
            +
            			'icon_menu-circle_alt2' : 'c',
         | 
| 76 | 
            +
            			'icon_ul' : 'd',
         | 
| 77 | 
            +
            			'icon_ol' : 'e',
         | 
| 78 | 
            +
            			'icon_adjust-horiz' : 'f',
         | 
| 79 | 
            +
            			'icon_adjust-vert' : 'g',
         | 
| 80 | 
            +
            			'icon_document_alt' : 'h',
         | 
| 81 | 
            +
            			'icon_documents_alt' : 'i',
         | 
| 82 | 
            +
            			'icon_pencil' : 'j',
         | 
| 83 | 
            +
            			'icon_pencil-edit_alt' : 'k',
         | 
| 84 | 
            +
            			'icon_pencil-edit' : 'l',
         | 
| 85 | 
            +
            			'icon_folder-alt' : 'm',
         | 
| 86 | 
            +
            			'icon_folder-open_alt' : 'n',
         | 
| 87 | 
            +
            			'icon_folder-add_alt' : 'o',
         | 
| 88 | 
            +
            			'icon_info_alt' : 'p',
         | 
| 89 | 
            +
            			'icon_error-oct_alt' : 'q',
         | 
| 90 | 
            +
            			'icon_error-circle_alt' : 'r',
         | 
| 91 | 
            +
            			'icon_error-triangle_alt' : 's',
         | 
| 92 | 
            +
            			'icon_question_alt2' : 't',
         | 
| 93 | 
            +
            			'icon_question' : 'u',
         | 
| 94 | 
            +
            			'icon_comment_alt' : 'v',
         | 
| 95 | 
            +
            			'icon_chat_alt' : 'w',
         | 
| 96 | 
            +
            			'icon_vol-mute_alt' : 'x',
         | 
| 97 | 
            +
            			'icon_volume-low_alt' : 'y',
         | 
| 98 | 
            +
            			'icon_volume-high_alt' : 'z',
         | 
| 99 | 
            +
            			'icon_quotations' : '{',
         | 
| 100 | 
            +
            			'icon_quotations_alt2' : '|',
         | 
| 101 | 
            +
            			'icon_clock_alt' : '}',
         | 
| 102 | 
            +
            			'icon_lock_alt' : '~',
         | 
| 103 | 
            +
            			'icon_lock-open_alt' : '',
         | 
| 104 | 
            +
            			'icon_key_alt' : '',
         | 
| 105 | 
            +
            			'icon_cloud_alt' : '',
         | 
| 106 | 
            +
            			'icon_cloud-upload_alt' : '',
         | 
| 107 | 
            +
            			'icon_cloud-download_alt' : '',
         | 
| 108 | 
            +
            			'icon_image' : '',
         | 
| 109 | 
            +
            			'icon_images' : '',
         | 
| 110 | 
            +
            			'icon_lightbulb_alt' : '',
         | 
| 111 | 
            +
            			'icon_gift_alt' : '',
         | 
| 112 | 
            +
            			'icon_house_alt' : '',
         | 
| 113 | 
            +
            			'icon_genius' : '',
         | 
| 114 | 
            +
            			'icon_mobile' : '',
         | 
| 115 | 
            +
            			'icon_tablet' : '',
         | 
| 116 | 
            +
            			'icon_laptop' : '',
         | 
| 117 | 
            +
            			'icon_desktop' : '',
         | 
| 118 | 
            +
            			'icon_camera_alt' : '',
         | 
| 119 | 
            +
            			'icon_mail_alt' : '',
         | 
| 120 | 
            +
            			'icon_cone_alt' : '',
         | 
| 121 | 
            +
            			'icon_ribbon_alt' : '',
         | 
| 122 | 
            +
            			'icon_bag_alt' : '',
         | 
| 123 | 
            +
            			'icon_creditcard' : '',
         | 
| 124 | 
            +
            			'icon_cart_alt' : '',
         | 
| 125 | 
            +
            			'icon_paperclip' : '',
         | 
| 126 | 
            +
            			'icon_tag_alt' : '',
         | 
| 127 | 
            +
            			'icon_tags_alt' : '',
         | 
| 128 | 
            +
            			'icon_trash_alt' : '',
         | 
| 129 | 
            +
            			'icon_cursor_alt' : '',
         | 
| 130 | 
            +
            			'icon_mic_alt' : '',
         | 
| 131 | 
            +
            			'icon_compass_alt' : '',
         | 
| 132 | 
            +
            			'icon_pin_alt' : '',
         | 
| 133 | 
            +
            			'icon_pushpin_alt' : '',
         | 
| 134 | 
            +
            			'icon_map_alt' : '',
         | 
| 135 | 
            +
            			'icon_drawer_alt' : '',
         | 
| 136 | 
            +
            			'icon_toolbox_alt' : '',
         | 
| 137 | 
            +
            			'icon_book_alt' : '',
         | 
| 138 | 
            +
            			'icon_calendar' : '',
         | 
| 139 | 
            +
            			'icon_film' : '',
         | 
| 140 | 
            +
            			'icon_table' : '',
         | 
| 141 | 
            +
            			'icon_contacts_alt' : '',
         | 
| 142 | 
            +
            			'icon_headphones' : '',
         | 
| 143 | 
            +
            			'icon_lifesaver' : '',
         | 
| 144 | 
            +
            			'icon_piechart' : '',
         | 
| 145 | 
            +
            			'icon_refresh' : '',
         | 
| 146 | 
            +
            			'icon_link_alt' : '',
         | 
| 147 | 
            +
            			'icon_link' : '',
         | 
| 148 | 
            +
            			'icon_loading' : '',
         | 
| 149 | 
            +
            			'icon_blocked' : '',
         | 
| 150 | 
            +
            			'icon_archive_alt' : '',
         | 
| 151 | 
            +
            			'icon_heart_alt' : '',
         | 
| 152 | 
            +
            			'icon_star_alt' : '',
         | 
| 153 | 
            +
            			'icon_star-half_alt' : '',
         | 
| 154 | 
            +
            			'icon_star' : '',
         | 
| 155 | 
            +
            			'icon_star-half' : '',
         | 
| 156 | 
            +
            			'icon_tools' : '',
         | 
| 157 | 
            +
            			'icon_tool' : '',
         | 
| 158 | 
            +
            			'icon_cog' : '',
         | 
| 159 | 
            +
            			'icon_cogs' : '',
         | 
| 160 | 
            +
            			'arrow_up_alt' : '',
         | 
| 161 | 
            +
            			'arrow_down_alt' : '',
         | 
| 162 | 
            +
            			'arrow_left_alt' : '',
         | 
| 163 | 
            +
            			'arrow_right_alt' : '',
         | 
| 164 | 
            +
            			'arrow_left-up_alt' : '',
         | 
| 165 | 
            +
            			'arrow_right-up_alt' : '',
         | 
| 166 | 
            +
            			'arrow_right-down_alt' : '',
         | 
| 167 | 
            +
            			'arrow_left-down_alt' : '',
         | 
| 168 | 
            +
            			'arrow_condense_alt' : '',
         | 
| 169 | 
            +
            			'arrow_expand_alt3' : '',
         | 
| 170 | 
            +
            			'arrow_carrot_up_alt' : '',
         | 
| 171 | 
            +
            			'arrow_carrot-down_alt' : '',
         | 
| 172 | 
            +
            			'arrow_carrot-left_alt' : '',
         | 
| 173 | 
            +
            			'arrow_carrot-right_alt' : '',
         | 
| 174 | 
            +
            			'arrow_carrot-2up_alt' : '',
         | 
| 175 | 
            +
            			'arrow_carrot-2dwnn_alt' : '',
         | 
| 176 | 
            +
            			'arrow_carrot-2left_alt' : '',
         | 
| 177 | 
            +
            			'arrow_carrot-2right_alt' : '',
         | 
| 178 | 
            +
            			'arrow_triangle-up_alt' : '',
         | 
| 179 | 
            +
            			'arrow_triangle-down_alt' : '',
         | 
| 180 | 
            +
            			'arrow_triangle-left_alt' : '',
         | 
| 181 | 
            +
            			'arrow_triangle-right_alt' : '',
         | 
| 182 | 
            +
            			'icon_minus_alt' : '',
         | 
| 183 | 
            +
            			'icon_plus_alt' : '',
         | 
| 184 | 
            +
            			'icon_close_alt' : '',
         | 
| 185 | 
            +
            			'icon_check_alt' : '',
         | 
| 186 | 
            +
            			'icon_zoom-out' : '',
         | 
| 187 | 
            +
            			'icon_zoom-in' : '',
         | 
| 188 | 
            +
            			'icon_stop_alt' : '',
         | 
| 189 | 
            +
            			'icon_menu-square_alt' : '',
         | 
| 190 | 
            +
            			'icon_menu-circle_alt' : '',
         | 
| 191 | 
            +
            			'icon_document' : '',
         | 
| 192 | 
            +
            			'icon_documents' : '',
         | 
| 193 | 
            +
            			'icon_pencil_alt' : '',
         | 
| 194 | 
            +
            			'icon_folder' : '',
         | 
| 195 | 
            +
            			'icon_folder-open' : '',
         | 
| 196 | 
            +
            			'icon_folder-add' : '',
         | 
| 197 | 
            +
            			'icon_folder_upload' : '',
         | 
| 198 | 
            +
            			'icon_folder_download' : '',
         | 
| 199 | 
            +
            			'icon_info' : '',
         | 
| 200 | 
            +
            			'icon_error-circle' : '',
         | 
| 201 | 
            +
            			'icon_error-oct' : '',
         | 
| 202 | 
            +
            			'icon_error-triangle' : '',
         | 
| 203 | 
            +
            			'icon_question_alt' : '',
         | 
| 204 | 
            +
            			'icon_comment' : '',
         | 
| 205 | 
            +
            			'icon_chat' : '',
         | 
| 206 | 
            +
            			'icon_vol-mute' : '',
         | 
| 207 | 
            +
            			'icon_volume-low' : '',
         | 
| 208 | 
            +
            			'icon_volume-high' : '',
         | 
| 209 | 
            +
            			'icon_quotations_alt' : '',
         | 
| 210 | 
            +
            			'icon_clock' : '',
         | 
| 211 | 
            +
            			'icon_lock' : '',
         | 
| 212 | 
            +
            			'icon_lock-open' : '',
         | 
| 213 | 
            +
            			'icon_key' : '',
         | 
| 214 | 
            +
            			'icon_cloud' : '',
         | 
| 215 | 
            +
            			'icon_cloud-upload' : '',
         | 
| 216 | 
            +
            			'icon_cloud-download' : '',
         | 
| 217 | 
            +
            			'icon_lightbulb' : '',
         | 
| 218 | 
            +
            			'icon_gift' : '',
         | 
| 219 | 
            +
            			'icon_house' : '',
         | 
| 220 | 
            +
            			'icon_camera' : '',
         | 
| 221 | 
            +
            			'icon_mail' : '',
         | 
| 222 | 
            +
            			'icon_cone' : '',
         | 
| 223 | 
            +
            			'icon_ribbon' : '',
         | 
| 224 | 
            +
            			'icon_bag' : '',
         | 
| 225 | 
            +
            			'icon_cart' : '',
         | 
| 226 | 
            +
            			'icon_tag' : '',
         | 
| 227 | 
            +
            			'icon_tags' : '',
         | 
| 228 | 
            +
            			'icon_trash' : '',
         | 
| 229 | 
            +
            			'icon_cursor' : '',
         | 
| 230 | 
            +
            			'icon_mic' : '',
         | 
| 231 | 
            +
            			'icon_compass' : '',
         | 
| 232 | 
            +
            			'icon_pin' : '',
         | 
| 233 | 
            +
            			'icon_pushpin' : '',
         | 
| 234 | 
            +
            			'icon_map' : '',
         | 
| 235 | 
            +
            			'icon_drawer' : '',
         | 
| 236 | 
            +
            			'icon_toolbox' : '',
         | 
| 237 | 
            +
            			'icon_book' : '',
         | 
| 238 | 
            +
            			'icon_contacts' : '',
         | 
| 239 | 
            +
            			'icon_archive' : '',
         | 
| 240 | 
            +
            			'icon_heart' : '',
         | 
| 241 | 
            +
            			'icon_profile' : '',
         | 
| 242 | 
            +
            			'icon_group' : '',
         | 
| 243 | 
            +
            			'icon_grid-2x2' : '',
         | 
| 244 | 
            +
            			'icon_grid-3x3' : '',
         | 
| 245 | 
            +
            			'icon_music' : '',
         | 
| 246 | 
            +
            			'icon_pause_alt' : '',
         | 
| 247 | 
            +
            			'icon_phone' : '',
         | 
| 248 | 
            +
            			'icon_upload' : '',
         | 
| 249 | 
            +
            			'icon_download' : '',
         | 
| 250 | 
            +
            			'social_facebook' : '',
         | 
| 251 | 
            +
            			'social_twitter' : '',
         | 
| 252 | 
            +
            			'social_pinterest' : '',
         | 
| 253 | 
            +
            			'social_googleplus' : '',
         | 
| 254 | 
            +
            			'social_tumblr' : '',
         | 
| 255 | 
            +
            			'social_tumbleupon' : '',
         | 
| 256 | 
            +
            			'social_wordpress' : '',
         | 
| 257 | 
            +
            			'social_instagram' : '',
         | 
| 258 | 
            +
            			'social_dribbble' : '',
         | 
| 259 | 
            +
            			'social_vimeo' : '',
         | 
| 260 | 
            +
            			'social_linkedin' : '',
         | 
| 261 | 
            +
            			'social_rss' : '',
         | 
| 262 | 
            +
            			'social_deviantart' : '',
         | 
| 263 | 
            +
            			'social_share' : '',
         | 
| 264 | 
            +
            			'social_myspace' : '',
         | 
| 265 | 
            +
            			'social_skype' : '',
         | 
| 266 | 
            +
            			'social_youtube' : '',
         | 
| 267 | 
            +
            			'social_picassa' : '',
         | 
| 268 | 
            +
            			'social_googledrive' : '',
         | 
| 269 | 
            +
            			'social_flickr' : '',
         | 
| 270 | 
            +
            			'social_blogger' : '',
         | 
| 271 | 
            +
            			'social_spotify' : '',
         | 
| 272 | 
            +
            			'social_delicious' : '',
         | 
| 273 | 
            +
            			'social_facebook_circle' : '',
         | 
| 274 | 
            +
            			'social_twitter_circle' : '',
         | 
| 275 | 
            +
            			'social_pinterest_circle' : '',
         | 
| 276 | 
            +
            			'social_googleplus_circle' : '',
         | 
| 277 | 
            +
            			'social_tumblr_circle' : '',
         | 
| 278 | 
            +
            			'social_stumbleupon_circle' : '',
         | 
| 279 | 
            +
            			'social_wordpress_circle' : '',
         | 
| 280 | 
            +
            			'social_instagram_circle' : '',
         | 
| 281 | 
            +
            			'social_dribbble_circle' : '',
         | 
| 282 | 
            +
            			'social_vimeo_circle' : '',
         | 
| 283 | 
            +
            			'social_linkedin_circle' : '',
         | 
| 284 | 
            +
            			'social_rss_circle' : '',
         | 
| 285 | 
            +
            			'social_deviantart_circle' : '',
         | 
| 286 | 
            +
            			'social_share_circle' : '',
         | 
| 287 | 
            +
            			'social_myspace_circle' : '',
         | 
| 288 | 
            +
            			'social_skype_circle' : '',
         | 
| 289 | 
            +
            			'social_youtube_circle' : '',
         | 
| 290 | 
            +
            			'social_picassa_circle' : '',
         | 
| 291 | 
            +
            			'social_googledrive_alt2' : '',
         | 
| 292 | 
            +
            			'social_flickr_circle' : '',
         | 
| 293 | 
            +
            			'social_blogger_circle' : '',
         | 
| 294 | 
            +
            			'social_spotify_circle' : '',
         | 
| 295 | 
            +
            			'social_delicious_circle' : '',
         | 
| 296 | 
            +
            			'social_facebook_square' : '',
         | 
| 297 | 
            +
            			'social_twitter_square' : '',
         | 
| 298 | 
            +
            			'social_pinterest_square' : '',
         | 
| 299 | 
            +
            			'social_googleplus_square' : '',
         | 
| 300 | 
            +
            			'social_tumblr_square' : '',
         | 
| 301 | 
            +
            			'social_stumbleupon_square' : '',
         | 
| 302 | 
            +
            			'social_wordpress_square' : '',
         | 
| 303 | 
            +
            			'social_instagram_square' : '',
         | 
| 304 | 
            +
            			'social_dribbble_square' : '',
         | 
| 305 | 
            +
            			'social_vimeo_square' : '',
         | 
| 306 | 
            +
            			'social_linkedin_square' : '',
         | 
| 307 | 
            +
            			'social_rss_square' : '',
         | 
| 308 | 
            +
            			'social_deviantart_square' : '',
         | 
| 309 | 
            +
            			'social_share_square' : '',
         | 
| 310 | 
            +
            			'social_myspace_square' : '',
         | 
| 311 | 
            +
            			'social_skype_square' : '',
         | 
| 312 | 
            +
            			'social_youtube_square' : '',
         | 
| 313 | 
            +
            			'social_picassa_square' : '',
         | 
| 314 | 
            +
            			'social_googledrive_square' : '',
         | 
| 315 | 
            +
            			'social_flickr_square' : '',
         | 
| 316 | 
            +
            			'social_blogger_square' : '',
         | 
| 317 | 
            +
            			'social_spotify_square' : '',
         | 
| 318 | 
            +
            			'social_delicious_square' : '',
         | 
| 319 | 
            +
            			'icon_printer' : '',
         | 
| 320 | 
            +
            			'icon_calulator' : '',
         | 
| 321 | 
            +
            			'icon_building' : '',
         | 
| 322 | 
            +
            			'icon_floppy' : '',
         | 
| 323 | 
            +
            			'icon_drive' : '',
         | 
| 324 | 
            +
            			'icon_search-2' : '',
         | 
| 325 | 
            +
            			'icon_id' : '',
         | 
| 326 | 
            +
            			'icon_id-2' : '',
         | 
| 327 | 
            +
            			'icon_puzzle' : '',
         | 
| 328 | 
            +
            			'icon_like' : '',
         | 
| 329 | 
            +
            			'icon_dislike' : '',
         | 
| 330 | 
            +
            			'icon_mug' : '',
         | 
| 331 | 
            +
            			'icon_currency' : '',
         | 
| 332 | 
            +
            			'icon_wallet' : '',
         | 
| 333 | 
            +
            			'icon_pens' : '',
         | 
| 334 | 
            +
            			'icon_easel' : '',
         | 
| 335 | 
            +
            			'icon_flowchart' : '',
         | 
| 336 | 
            +
            			'icon_datareport' : '',
         | 
| 337 | 
            +
            			'icon_briefcase' : '',
         | 
| 338 | 
            +
            			'icon_shield' : '',
         | 
| 339 | 
            +
            			'icon_percent' : '',
         | 
| 340 | 
            +
            			'icon_globe' : '',
         | 
| 341 | 
            +
            			'icon_globe-2' : '',
         | 
| 342 | 
            +
            			'icon_target' : '',
         | 
| 343 | 
            +
            			'icon_hourglass' : '',
         | 
| 344 | 
            +
            			'icon_balance' : '',
         | 
| 345 | 
            +
            			'icon_rook' : '',
         | 
| 346 | 
            +
            			'icon_printer-alt' : '',
         | 
| 347 | 
            +
            			'icon_calculator_alt' : '',
         | 
| 348 | 
            +
            			'icon_building_alt' : '',
         | 
| 349 | 
            +
            			'icon_floppy_alt' : '',
         | 
| 350 | 
            +
            			'icon_drive_alt' : '',
         | 
| 351 | 
            +
            			'icon_search_alt' : '',
         | 
| 352 | 
            +
            			'icon_id_alt' : '',
         | 
| 353 | 
            +
            			'icon_id-2_alt' : '',
         | 
| 354 | 
            +
            			'icon_puzzle_alt' : '',
         | 
| 355 | 
            +
            			'icon_like_alt' : '',
         | 
| 356 | 
            +
            			'icon_dislike_alt' : '',
         | 
| 357 | 
            +
            			'icon_mug_alt' : '',
         | 
| 358 | 
            +
            			'icon_currency_alt' : '',
         | 
| 359 | 
            +
            			'icon_wallet_alt' : '',
         | 
| 360 | 
            +
            			'icon_pens_alt' : '',
         | 
| 361 | 
            +
            			'icon_easel_alt' : '',
         | 
| 362 | 
            +
            			'icon_flowchart_alt' : '',
         | 
| 363 | 
            +
            			'icon_datareport_alt' : '',
         | 
| 364 | 
            +
            			'icon_briefcase_alt' : '',
         | 
| 365 | 
            +
            			'icon_shield_alt' : '',
         | 
| 366 | 
            +
            			'icon_percent_alt' : '',
         | 
| 367 | 
            +
            			'icon_globe_alt' : '',
         | 
| 368 | 
            +
            			'icon_clipboard' : ''
         | 
| 369 | 
            +
            		},
         | 
| 370 | 
            +
            		els = document.getElementsByTagName('*'),
         | 
| 371 | 
            +
            		i, attr, c, el;
         | 
| 372 | 
            +
            	for (i = 0; ; i += 1) {
         | 
| 373 | 
            +
            		el = els[i];
         | 
| 374 | 
            +
            		if(!el) {
         | 
| 375 | 
            +
            			break;
         | 
| 376 | 
            +
            		}
         | 
| 377 | 
            +
            		attr = el.getAttribute('data-icon');
         | 
| 378 | 
            +
            		if (attr) {
         | 
| 379 | 
            +
            			addIcon(el, attr);
         | 
| 380 | 
            +
            		}
         | 
| 381 | 
            +
            		c = el.className;
         | 
| 382 | 
            +
            		c = c.match(/[^\s'"]+/);
         | 
| 383 | 
            +
            		if (c && icons[c[0]]) {
         | 
| 384 | 
            +
            			addIcon(el, icons[c[0]]);
         | 
| 385 | 
            +
            		}
         | 
| 386 | 
            +
            	}
         | 
| 387 | 
            +
            };
         | 
| @@ -0,0 +1,1159 @@ | |
| 1 | 
            +
            @font-face {
         | 
| 2 | 
            +
            	font-family: 'ElegantIcons';
         | 
| 3 | 
            +
            	src:url('fonts/ElegantIcons.eot');
         | 
| 4 | 
            +
            	src:url('fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
         | 
| 5 | 
            +
            		url('fonts/ElegantIcons.woff') format('woff'),
         | 
| 6 | 
            +
            		url('fonts/ElegantIcons.ttf') format('truetype'),
         | 
| 7 | 
            +
            		url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
         | 
| 8 | 
            +
            	font-weight: normal;
         | 
| 9 | 
            +
            	font-style: normal;
         | 
| 10 | 
            +
            }
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            /* Use the following CSS code if you want to use data attributes for inserting your icons */
         | 
| 13 | 
            +
            [data-icon]:before {
         | 
| 14 | 
            +
            	font-family: 'ElegantIcons';
         | 
| 15 | 
            +
            	content: attr(data-icon);
         | 
| 16 | 
            +
            	speak: none;
         | 
| 17 | 
            +
            	font-weight: normal;
         | 
| 18 | 
            +
            	font-variant: normal;
         | 
| 19 | 
            +
            	text-transform: none;
         | 
| 20 | 
            +
            	line-height: 1;
         | 
| 21 | 
            +
            	-webkit-font-smoothing: antialiased;
         | 
| 22 | 
            +
            	-moz-osx-font-smoothing: grayscale;
         | 
| 23 | 
            +
            }
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            /* Use the following CSS code if you want to have a class per icon */
         | 
| 26 | 
            +
            /*
         | 
| 27 | 
            +
            Instead of a list of all class selectors,
         | 
| 28 | 
            +
            you can use the generic selector below, but it's slower:
         | 
| 29 | 
            +
            [class*="your-class-prefix"] {
         | 
| 30 | 
            +
            */
         | 
| 31 | 
            +
            .arrow_up, .arrow_down, .arrow_left, .arrow_right, .arrow_left-up, .arrow_right-up, .arrow_right-down, .arrow_left-down, .arrow-up-down, .arrow_up-down_alt, .arrow_left-right_alt, .arrow_left-right, .arrow_expand_alt2, .arrow_expand_alt, .arrow_condense, .arrow_expand, .arrow_move, .arrow_carrot-up, .arrow_carrot-down, .arrow_carrot-left, .arrow_carrot-right, .arrow_carrot-2up, .arrow_carrot-2down, .arrow_carrot-2left, .arrow_carrot-2right, .arrow_carrot-up_alt2, .arrow_carrot-down_alt2, .arrow_carrot-left_alt2, .arrow_carrot-right_alt2, .arrow_carrot-2up_alt2, .arrow_carrot-2down_alt2, .arrow_carrot-2left_alt2, .arrow_carrot-2right_alt2, .arrow_triangle-up, .arrow_triangle-down, .arrow_triangle-left, .arrow_triangle-right, .arrow_triangle-up_alt2, .arrow_triangle-down_alt2, .arrow_triangle-left_alt2, .arrow_triangle-right_alt2, .arrow_back, .icon_minus-06, .icon_plus, .icon_close, .icon_check, .icon_minus_alt2, .icon_plus_alt2, .icon_close_alt2, .icon_check_alt2, .icon_zoom-out_alt, .icon_zoom-in_alt, .icon_search, .icon_box-empty, .icon_box-selected, .icon_minus-box, .icon_plus-box, .icon_box-checked, .icon_circle-empty, .icon_circle-slelected, .icon_stop_alt2, .icon_stop, .icon_pause_alt2, .icon_pause, .icon_menu, .icon_menu-square_alt2, .icon_menu-circle_alt2, .icon_ul, .icon_ol, .icon_adjust-horiz, .icon_adjust-vert, .icon_document_alt, .icon_documents_alt, .icon_pencil, .icon_pencil-edit_alt, .icon_pencil-edit, .icon_folder-alt, .icon_folder-open_alt, .icon_folder-add_alt, .icon_info_alt, .icon_error-oct_alt, .icon_error-circle_alt, .icon_error-triangle_alt, .icon_question_alt2, .icon_question, .icon_comment_alt, .icon_chat_alt, .icon_vol-mute_alt, .icon_volume-low_alt, .icon_volume-high_alt, .icon_quotations, .icon_quotations_alt2, .icon_clock_alt, .icon_lock_alt, .icon_lock-open_alt, .icon_key_alt, .icon_cloud_alt, .icon_cloud-upload_alt, .icon_cloud-download_alt, .icon_image, .icon_images, .icon_lightbulb_alt, .icon_gift_alt, .icon_house_alt, .icon_genius, .icon_mobile, .icon_tablet, .icon_laptop, .icon_desktop, .icon_camera_alt, .icon_mail_alt, .icon_cone_alt, .icon_ribbon_alt, .icon_bag_alt, .icon_creditcard, .icon_cart_alt, .icon_paperclip, .icon_tag_alt, .icon_tags_alt, .icon_trash_alt, .icon_cursor_alt, .icon_mic_alt, .icon_compass_alt, .icon_pin_alt, .icon_pushpin_alt, .icon_map_alt, .icon_drawer_alt, .icon_toolbox_alt, .icon_book_alt, .icon_calendar, .icon_film, .icon_table, .icon_contacts_alt, .icon_headphones, .icon_lifesaver, .icon_piechart, .icon_refresh, .icon_link_alt, .icon_link, .icon_loading, .icon_blocked, .icon_archive_alt, .icon_heart_alt, .icon_star_alt, .icon_star-half_alt, .icon_star, .icon_star-half, .icon_tools, .icon_tool, .icon_cog, .icon_cogs, .arrow_up_alt, .arrow_down_alt, .arrow_left_alt, .arrow_right_alt, .arrow_left-up_alt, .arrow_right-up_alt, .arrow_right-down_alt, .arrow_left-down_alt, .arrow_condense_alt, .arrow_expand_alt3, .arrow_carrot_up_alt, .arrow_carrot-down_alt, .arrow_carrot-left_alt, .arrow_carrot-right_alt, .arrow_carrot-2up_alt, .arrow_carrot-2dwnn_alt, .arrow_carrot-2left_alt, .arrow_carrot-2right_alt, .arrow_triangle-up_alt, .arrow_triangle-down_alt, .arrow_triangle-left_alt, .arrow_triangle-right_alt, .icon_minus_alt, .icon_plus_alt, .icon_close_alt, .icon_check_alt, .icon_zoom-out, .icon_zoom-in, .icon_stop_alt, .icon_menu-square_alt, .icon_menu-circle_alt, .icon_document, .icon_documents, .icon_pencil_alt, .icon_folder, .icon_folder-open, .icon_folder-add, .icon_folder_upload, .icon_folder_download, .icon_info, .icon_error-circle, .icon_error-oct, .icon_error-triangle, .icon_question_alt, .icon_comment, .icon_chat, .icon_vol-mute, .icon_volume-low, .icon_volume-high, .icon_quotations_alt, .icon_clock, .icon_lock, .icon_lock-open, .icon_key, .icon_cloud, .icon_cloud-upload, .icon_cloud-download, .icon_lightbulb, .icon_gift, .icon_house, .icon_camera, .icon_mail, .icon_cone, .icon_ribbon, .icon_bag, .icon_cart, .icon_tag, .icon_tags, .icon_trash, .icon_cursor, .icon_mic, .icon_compass, .icon_pin, .icon_pushpin, .icon_map, .icon_drawer, .icon_toolbox, .icon_book, .icon_contacts, .icon_archive, .icon_heart, .icon_profile, .icon_group, .icon_grid-2x2, .icon_grid-3x3, .icon_music, .icon_pause_alt, .icon_phone, .icon_upload, .icon_download, .social_facebook, .social_twitter, .social_pinterest, .social_googleplus, .social_tumblr, .social_tumbleupon, .social_wordpress, .social_instagram, .social_dribbble, .social_vimeo, .social_linkedin, .social_rss, .social_deviantart, .social_share, .social_myspace, .social_skype, .social_youtube, .social_picassa, .social_googledrive, .social_flickr, .social_blogger, .social_spotify, .social_delicious, .social_facebook_circle, .social_twitter_circle, .social_pinterest_circle, .social_googleplus_circle, .social_tumblr_circle, .social_stumbleupon_circle, .social_wordpress_circle, .social_instagram_circle, .social_dribbble_circle, .social_vimeo_circle, .social_linkedin_circle, .social_rss_circle, .social_deviantart_circle, .social_share_circle, .social_myspace_circle, .social_skype_circle, .social_youtube_circle, .social_picassa_circle, .social_googledrive_alt2, .social_flickr_circle, .social_blogger_circle, .social_spotify_circle, .social_delicious_circle, .social_facebook_square, .social_twitter_square, .social_pinterest_square, .social_googleplus_square, .social_tumblr_square, .social_stumbleupon_square, .social_wordpress_square, .social_instagram_square, .social_dribbble_square, .social_vimeo_square, .social_linkedin_square, .social_rss_square, .social_deviantart_square, .social_share_square, .social_myspace_square, .social_skype_square, .social_youtube_square, .social_picassa_square, .social_googledrive_square, .social_flickr_square, .social_blogger_square, .social_spotify_square, .social_delicious_square, .icon_printer, .icon_calulator, .icon_building, .icon_floppy, .icon_drive, .icon_search-2, .icon_id, .icon_id-2, .icon_puzzle, .icon_like, .icon_dislike, .icon_mug, .icon_currency, .icon_wallet, .icon_pens, .icon_easel, .icon_flowchart, .icon_datareport, .icon_briefcase, .icon_shield, .icon_percent, .icon_globe, .icon_globe-2, .icon_target, .icon_hourglass, .icon_balance, .icon_rook, .icon_printer-alt, .icon_calculator_alt, .icon_building_alt, .icon_floppy_alt, .icon_drive_alt, .icon_search_alt, .icon_id_alt, .icon_id-2_alt, .icon_puzzle_alt, .icon_like_alt, .icon_dislike_alt, .icon_mug_alt, .icon_currency_alt, .icon_wallet_alt, .icon_pens_alt, .icon_easel_alt, .icon_flowchart_alt, .icon_datareport_alt, .icon_briefcase_alt, .icon_shield_alt, .icon_percent_alt, .icon_globe_alt, .icon_clipboard {
         | 
| 32 | 
            +
            	font-family: 'ElegantIcons';
         | 
| 33 | 
            +
            	speak: none;
         | 
| 34 | 
            +
            	font-style: normal;
         | 
| 35 | 
            +
            	font-weight: normal;
         | 
| 36 | 
            +
            	font-variant: normal;
         | 
| 37 | 
            +
            	text-transform: none;
         | 
| 38 | 
            +
            	line-height: 1;
         | 
| 39 | 
            +
            	-webkit-font-smoothing: antialiased;
         | 
| 40 | 
            +
            }
         | 
| 41 | 
            +
            .arrow_up:before {
         | 
| 42 | 
            +
            	content: "\21";
         | 
| 43 | 
            +
            }
         | 
| 44 | 
            +
            .arrow_down:before {
         | 
| 45 | 
            +
            	content: "\22";
         | 
| 46 | 
            +
            }
         | 
| 47 | 
            +
            .arrow_left:before {
         | 
| 48 | 
            +
            	content: "\23";
         | 
| 49 | 
            +
            }
         | 
| 50 | 
            +
            .arrow_right:before {
         | 
| 51 | 
            +
            	content: "\24";
         | 
| 52 | 
            +
            }
         | 
| 53 | 
            +
            .arrow_left-up:before {
         | 
| 54 | 
            +
            	content: "\25";
         | 
| 55 | 
            +
            }
         | 
| 56 | 
            +
            .arrow_right-up:before {
         | 
| 57 | 
            +
            	content: "\26";
         | 
| 58 | 
            +
            }
         | 
| 59 | 
            +
            .arrow_right-down:before {
         | 
| 60 | 
            +
            	content: "\27";
         | 
| 61 | 
            +
            }
         | 
| 62 | 
            +
            .arrow_left-down:before {
         | 
| 63 | 
            +
            	content: "\28";
         | 
| 64 | 
            +
            }
         | 
| 65 | 
            +
            .arrow-up-down:before {
         | 
| 66 | 
            +
            	content: "\29";
         | 
| 67 | 
            +
            }
         | 
| 68 | 
            +
            .arrow_up-down_alt:before {
         | 
| 69 | 
            +
            	content: "\2a";
         | 
| 70 | 
            +
            }
         | 
| 71 | 
            +
            .arrow_left-right_alt:before {
         | 
| 72 | 
            +
            	content: "\2b";
         | 
| 73 | 
            +
            }
         | 
| 74 | 
            +
            .arrow_left-right:before {
         | 
| 75 | 
            +
            	content: "\2c";
         | 
| 76 | 
            +
            }
         | 
| 77 | 
            +
            .arrow_expand_alt2:before {
         | 
| 78 | 
            +
            	content: "\2d";
         | 
| 79 | 
            +
            }
         | 
| 80 | 
            +
            .arrow_expand_alt:before {
         | 
| 81 | 
            +
            	content: "\2e";
         | 
| 82 | 
            +
            }
         | 
| 83 | 
            +
            .arrow_condense:before {
         | 
| 84 | 
            +
            	content: "\2f";
         | 
| 85 | 
            +
            }
         | 
| 86 | 
            +
            .arrow_expand:before {
         | 
| 87 | 
            +
            	content: "\30";
         | 
| 88 | 
            +
            }
         | 
| 89 | 
            +
            .arrow_move:before {
         | 
| 90 | 
            +
            	content: "\31";
         | 
| 91 | 
            +
            }
         | 
| 92 | 
            +
            .arrow_carrot-up:before {
         | 
| 93 | 
            +
            	content: "\32";
         | 
| 94 | 
            +
            }
         | 
| 95 | 
            +
            .arrow_carrot-down:before {
         | 
| 96 | 
            +
            	content: "\33";
         | 
| 97 | 
            +
            }
         | 
| 98 | 
            +
            .arrow_carrot-left:before {
         | 
| 99 | 
            +
            	content: "\34";
         | 
| 100 | 
            +
            }
         | 
| 101 | 
            +
            .arrow_carrot-right:before {
         | 
| 102 | 
            +
            	content: "\35";
         | 
| 103 | 
            +
            }
         | 
| 104 | 
            +
            .arrow_carrot-2up:before {
         | 
| 105 | 
            +
            	content: "\36";
         | 
| 106 | 
            +
            }
         | 
| 107 | 
            +
            .arrow_carrot-2down:before {
         | 
| 108 | 
            +
            	content: "\37";
         | 
| 109 | 
            +
            }
         | 
| 110 | 
            +
            .arrow_carrot-2left:before {
         | 
| 111 | 
            +
            	content: "\38";
         | 
| 112 | 
            +
            }
         | 
| 113 | 
            +
            .arrow_carrot-2right:before {
         | 
| 114 | 
            +
            	content: "\39";
         | 
| 115 | 
            +
            }
         | 
| 116 | 
            +
            .arrow_carrot-up_alt2:before {
         | 
| 117 | 
            +
            	content: "\3a";
         | 
| 118 | 
            +
            }
         | 
| 119 | 
            +
            .arrow_carrot-down_alt2:before {
         | 
| 120 | 
            +
            	content: "\3b";
         | 
| 121 | 
            +
            }
         | 
| 122 | 
            +
            .arrow_carrot-left_alt2:before {
         | 
| 123 | 
            +
            	content: "\3c";
         | 
| 124 | 
            +
            }
         | 
| 125 | 
            +
            .arrow_carrot-right_alt2:before {
         | 
| 126 | 
            +
            	content: "\3d";
         | 
| 127 | 
            +
            }
         | 
| 128 | 
            +
            .arrow_carrot-2up_alt2:before {
         | 
| 129 | 
            +
            	content: "\3e";
         | 
| 130 | 
            +
            }
         | 
| 131 | 
            +
            .arrow_carrot-2down_alt2:before {
         | 
| 132 | 
            +
            	content: "\3f";
         | 
| 133 | 
            +
            }
         | 
| 134 | 
            +
            .arrow_carrot-2left_alt2:before {
         | 
| 135 | 
            +
            	content: "\40";
         | 
| 136 | 
            +
            }
         | 
| 137 | 
            +
            .arrow_carrot-2right_alt2:before {
         | 
| 138 | 
            +
            	content: "\41";
         | 
| 139 | 
            +
            }
         | 
| 140 | 
            +
            .arrow_triangle-up:before {
         | 
| 141 | 
            +
            	content: "\42";
         | 
| 142 | 
            +
            }
         | 
| 143 | 
            +
            .arrow_triangle-down:before {
         | 
| 144 | 
            +
            	content: "\43";
         | 
| 145 | 
            +
            }
         | 
| 146 | 
            +
            .arrow_triangle-left:before {
         | 
| 147 | 
            +
            	content: "\44";
         | 
| 148 | 
            +
            }
         | 
| 149 | 
            +
            .arrow_triangle-right:before {
         | 
| 150 | 
            +
            	content: "\45";
         | 
| 151 | 
            +
            }
         | 
| 152 | 
            +
            .arrow_triangle-up_alt2:before {
         | 
| 153 | 
            +
            	content: "\46";
         | 
| 154 | 
            +
            }
         | 
| 155 | 
            +
            .arrow_triangle-down_alt2:before {
         | 
| 156 | 
            +
            	content: "\47";
         | 
| 157 | 
            +
            }
         | 
| 158 | 
            +
            .arrow_triangle-left_alt2:before {
         | 
| 159 | 
            +
            	content: "\48";
         | 
| 160 | 
            +
            }
         | 
| 161 | 
            +
            .arrow_triangle-right_alt2:before {
         | 
| 162 | 
            +
            	content: "\49";
         | 
| 163 | 
            +
            }
         | 
| 164 | 
            +
            .arrow_back:before {
         | 
| 165 | 
            +
            	content: "\4a";
         | 
| 166 | 
            +
            }
         | 
| 167 | 
            +
            .icon_minus-06:before {
         | 
| 168 | 
            +
            	content: "\4b";
         | 
| 169 | 
            +
            }
         | 
| 170 | 
            +
            .icon_plus:before {
         | 
| 171 | 
            +
            	content: "\4c";
         | 
| 172 | 
            +
            }
         | 
| 173 | 
            +
            .icon_close:before {
         | 
| 174 | 
            +
            	content: "\4d";
         | 
| 175 | 
            +
            }
         | 
| 176 | 
            +
            .icon_check:before {
         | 
| 177 | 
            +
            	content: "\4e";
         | 
| 178 | 
            +
            }
         | 
| 179 | 
            +
            .icon_minus_alt2:before {
         | 
| 180 | 
            +
            	content: "\4f";
         | 
| 181 | 
            +
            }
         | 
| 182 | 
            +
            .icon_plus_alt2:before {
         | 
| 183 | 
            +
            	content: "\50";
         | 
| 184 | 
            +
            }
         | 
| 185 | 
            +
            .icon_close_alt2:before {
         | 
| 186 | 
            +
            	content: "\51";
         | 
| 187 | 
            +
            }
         | 
| 188 | 
            +
            .icon_check_alt2:before {
         | 
| 189 | 
            +
            	content: "\52";
         | 
| 190 | 
            +
            }
         | 
| 191 | 
            +
            .icon_zoom-out_alt:before {
         | 
| 192 | 
            +
            	content: "\53";
         | 
| 193 | 
            +
            }
         | 
| 194 | 
            +
            .icon_zoom-in_alt:before {
         | 
| 195 | 
            +
            	content: "\54";
         | 
| 196 | 
            +
            }
         | 
| 197 | 
            +
            .icon_search:before {
         | 
| 198 | 
            +
            	content: "\55";
         | 
| 199 | 
            +
            }
         | 
| 200 | 
            +
            .icon_box-empty:before {
         | 
| 201 | 
            +
            	content: "\56";
         | 
| 202 | 
            +
            }
         | 
| 203 | 
            +
            .icon_box-selected:before {
         | 
| 204 | 
            +
            	content: "\57";
         | 
| 205 | 
            +
            }
         | 
| 206 | 
            +
            .icon_minus-box:before {
         | 
| 207 | 
            +
            	content: "\58";
         | 
| 208 | 
            +
            }
         | 
| 209 | 
            +
            .icon_plus-box:before {
         | 
| 210 | 
            +
            	content: "\59";
         | 
| 211 | 
            +
            }
         | 
| 212 | 
            +
            .icon_box-checked:before {
         | 
| 213 | 
            +
            	content: "\5a";
         | 
| 214 | 
            +
            }
         | 
| 215 | 
            +
            .icon_circle-empty:before {
         | 
| 216 | 
            +
            	content: "\5b";
         | 
| 217 | 
            +
            }
         | 
| 218 | 
            +
            .icon_circle-slelected:before {
         | 
| 219 | 
            +
            	content: "\5c";
         | 
| 220 | 
            +
            }
         | 
| 221 | 
            +
            .icon_stop_alt2:before {
         | 
| 222 | 
            +
            	content: "\5d";
         | 
| 223 | 
            +
            }
         | 
| 224 | 
            +
            .icon_stop:before {
         | 
| 225 | 
            +
            	content: "\5e";
         | 
| 226 | 
            +
            }
         | 
| 227 | 
            +
            .icon_pause_alt2:before {
         | 
| 228 | 
            +
            	content: "\5f";
         | 
| 229 | 
            +
            }
         | 
| 230 | 
            +
            .icon_pause:before {
         | 
| 231 | 
            +
            	content: "\60";
         | 
| 232 | 
            +
            }
         | 
| 233 | 
            +
            .icon_menu:before {
         | 
| 234 | 
            +
            	content: "\61";
         | 
| 235 | 
            +
            }
         | 
| 236 | 
            +
            .icon_menu-square_alt2:before {
         | 
| 237 | 
            +
            	content: "\62";
         | 
| 238 | 
            +
            }
         | 
| 239 | 
            +
            .icon_menu-circle_alt2:before {
         | 
| 240 | 
            +
            	content: "\63";
         | 
| 241 | 
            +
            }
         | 
| 242 | 
            +
            .icon_ul:before {
         | 
| 243 | 
            +
            	content: "\64";
         | 
| 244 | 
            +
            }
         | 
| 245 | 
            +
            .icon_ol:before {
         | 
| 246 | 
            +
            	content: "\65";
         | 
| 247 | 
            +
            }
         | 
| 248 | 
            +
            .icon_adjust-horiz:before {
         | 
| 249 | 
            +
            	content: "\66";
         | 
| 250 | 
            +
            }
         | 
| 251 | 
            +
            .icon_adjust-vert:before {
         | 
| 252 | 
            +
            	content: "\67";
         | 
| 253 | 
            +
            }
         | 
| 254 | 
            +
            .icon_document_alt:before {
         | 
| 255 | 
            +
            	content: "\68";
         | 
| 256 | 
            +
            }
         | 
| 257 | 
            +
            .icon_documents_alt:before {
         | 
| 258 | 
            +
            	content: "\69";
         | 
| 259 | 
            +
            }
         | 
| 260 | 
            +
            .icon_pencil:before {
         | 
| 261 | 
            +
            	content: "\6a";
         | 
| 262 | 
            +
            }
         | 
| 263 | 
            +
            .icon_pencil-edit_alt:before {
         | 
| 264 | 
            +
            	content: "\6b";
         | 
| 265 | 
            +
            }
         | 
| 266 | 
            +
            .icon_pencil-edit:before {
         | 
| 267 | 
            +
            	content: "\6c";
         | 
| 268 | 
            +
            }
         | 
| 269 | 
            +
            .icon_folder-alt:before {
         | 
| 270 | 
            +
            	content: "\6d";
         | 
| 271 | 
            +
            }
         | 
| 272 | 
            +
            .icon_folder-open_alt:before {
         | 
| 273 | 
            +
            	content: "\6e";
         | 
| 274 | 
            +
            }
         | 
| 275 | 
            +
            .icon_folder-add_alt:before {
         | 
| 276 | 
            +
            	content: "\6f";
         | 
| 277 | 
            +
            }
         | 
| 278 | 
            +
            .icon_info_alt:before {
         | 
| 279 | 
            +
            	content: "\70";
         | 
| 280 | 
            +
            }
         | 
| 281 | 
            +
            .icon_error-oct_alt:before {
         | 
| 282 | 
            +
            	content: "\71";
         | 
| 283 | 
            +
            }
         | 
| 284 | 
            +
            .icon_error-circle_alt:before {
         | 
| 285 | 
            +
            	content: "\72";
         | 
| 286 | 
            +
            }
         | 
| 287 | 
            +
            .icon_error-triangle_alt:before {
         | 
| 288 | 
            +
            	content: "\73";
         | 
| 289 | 
            +
            }
         | 
| 290 | 
            +
            .icon_question_alt2:before {
         | 
| 291 | 
            +
            	content: "\74";
         | 
| 292 | 
            +
            }
         | 
| 293 | 
            +
            .icon_question:before {
         | 
| 294 | 
            +
            	content: "\75";
         | 
| 295 | 
            +
            }
         | 
| 296 | 
            +
            .icon_comment_alt:before {
         | 
| 297 | 
            +
            	content: "\76";
         | 
| 298 | 
            +
            }
         | 
| 299 | 
            +
            .icon_chat_alt:before {
         | 
| 300 | 
            +
            	content: "\77";
         | 
| 301 | 
            +
            }
         | 
| 302 | 
            +
            .icon_vol-mute_alt:before {
         | 
| 303 | 
            +
            	content: "\78";
         | 
| 304 | 
            +
            }
         | 
| 305 | 
            +
            .icon_volume-low_alt:before {
         | 
| 306 | 
            +
            	content: "\79";
         | 
| 307 | 
            +
            }
         | 
| 308 | 
            +
            .icon_volume-high_alt:before {
         | 
| 309 | 
            +
            	content: "\7a";
         | 
| 310 | 
            +
            }
         | 
| 311 | 
            +
            .icon_quotations:before {
         | 
| 312 | 
            +
            	content: "\7b";
         | 
| 313 | 
            +
            }
         | 
| 314 | 
            +
            .icon_quotations_alt2:before {
         | 
| 315 | 
            +
            	content: "\7c";
         | 
| 316 | 
            +
            }
         | 
| 317 | 
            +
            .icon_clock_alt:before {
         | 
| 318 | 
            +
            	content: "\7d";
         | 
| 319 | 
            +
            }
         | 
| 320 | 
            +
            .icon_lock_alt:before {
         | 
| 321 | 
            +
            	content: "\7e";
         | 
| 322 | 
            +
            }
         | 
| 323 | 
            +
            .icon_lock-open_alt:before {
         | 
| 324 | 
            +
            	content: "\e000";
         | 
| 325 | 
            +
            }
         | 
| 326 | 
            +
            .icon_key_alt:before {
         | 
| 327 | 
            +
            	content: "\e001";
         | 
| 328 | 
            +
            }
         | 
| 329 | 
            +
            .icon_cloud_alt:before {
         | 
| 330 | 
            +
            	content: "\e002";
         | 
| 331 | 
            +
            }
         | 
| 332 | 
            +
            .icon_cloud-upload_alt:before {
         | 
| 333 | 
            +
            	content: "\e003";
         | 
| 334 | 
            +
            }
         | 
| 335 | 
            +
            .icon_cloud-download_alt:before {
         | 
| 336 | 
            +
            	content: "\e004";
         | 
| 337 | 
            +
            }
         | 
| 338 | 
            +
            .icon_image:before {
         | 
| 339 | 
            +
            	content: "\e005";
         | 
| 340 | 
            +
            }
         | 
| 341 | 
            +
            .icon_images:before {
         | 
| 342 | 
            +
            	content: "\e006";
         | 
| 343 | 
            +
            }
         | 
| 344 | 
            +
            .icon_lightbulb_alt:before {
         | 
| 345 | 
            +
            	content: "\e007";
         | 
| 346 | 
            +
            }
         | 
| 347 | 
            +
            .icon_gift_alt:before {
         | 
| 348 | 
            +
            	content: "\e008";
         | 
| 349 | 
            +
            }
         | 
| 350 | 
            +
            .icon_house_alt:before {
         | 
| 351 | 
            +
            	content: "\e009";
         | 
| 352 | 
            +
            }
         | 
| 353 | 
            +
            .icon_genius:before {
         | 
| 354 | 
            +
            	content: "\e00a";
         | 
| 355 | 
            +
            }
         | 
| 356 | 
            +
            .icon_mobile:before {
         | 
| 357 | 
            +
            	content: "\e00b";
         | 
| 358 | 
            +
            }
         | 
| 359 | 
            +
            .icon_tablet:before {
         | 
| 360 | 
            +
            	content: "\e00c";
         | 
| 361 | 
            +
            }
         | 
| 362 | 
            +
            .icon_laptop:before {
         | 
| 363 | 
            +
            	content: "\e00d";
         | 
| 364 | 
            +
            }
         | 
| 365 | 
            +
            .icon_desktop:before {
         | 
| 366 | 
            +
            	content: "\e00e";
         | 
| 367 | 
            +
            }
         | 
| 368 | 
            +
            .icon_camera_alt:before {
         | 
| 369 | 
            +
            	content: "\e00f";
         | 
| 370 | 
            +
            }
         | 
| 371 | 
            +
            .icon_mail_alt:before {
         | 
| 372 | 
            +
            	content: "\e010";
         | 
| 373 | 
            +
            }
         | 
| 374 | 
            +
            .icon_cone_alt:before {
         | 
| 375 | 
            +
            	content: "\e011";
         | 
| 376 | 
            +
            }
         | 
| 377 | 
            +
            .icon_ribbon_alt:before {
         | 
| 378 | 
            +
            	content: "\e012";
         | 
| 379 | 
            +
            }
         | 
| 380 | 
            +
            .icon_bag_alt:before {
         | 
| 381 | 
            +
            	content: "\e013";
         | 
| 382 | 
            +
            }
         | 
| 383 | 
            +
            .icon_creditcard:before {
         | 
| 384 | 
            +
            	content: "\e014";
         | 
| 385 | 
            +
            }
         | 
| 386 | 
            +
            .icon_cart_alt:before {
         | 
| 387 | 
            +
            	content: "\e015";
         | 
| 388 | 
            +
            }
         | 
| 389 | 
            +
            .icon_paperclip:before {
         | 
| 390 | 
            +
            	content: "\e016";
         | 
| 391 | 
            +
            }
         | 
| 392 | 
            +
            .icon_tag_alt:before {
         | 
| 393 | 
            +
            	content: "\e017";
         | 
| 394 | 
            +
            }
         | 
| 395 | 
            +
            .icon_tags_alt:before {
         | 
| 396 | 
            +
            	content: "\e018";
         | 
| 397 | 
            +
            }
         | 
| 398 | 
            +
            .icon_trash_alt:before {
         | 
| 399 | 
            +
            	content: "\e019";
         | 
| 400 | 
            +
            }
         | 
| 401 | 
            +
            .icon_cursor_alt:before {
         | 
| 402 | 
            +
            	content: "\e01a";
         | 
| 403 | 
            +
            }
         | 
| 404 | 
            +
            .icon_mic_alt:before {
         | 
| 405 | 
            +
            	content: "\e01b";
         | 
| 406 | 
            +
            }
         | 
| 407 | 
            +
            .icon_compass_alt:before {
         | 
| 408 | 
            +
            	content: "\e01c";
         | 
| 409 | 
            +
            }
         | 
| 410 | 
            +
            .icon_pin_alt:before {
         | 
| 411 | 
            +
            	content: "\e01d";
         | 
| 412 | 
            +
            }
         | 
| 413 | 
            +
            .icon_pushpin_alt:before {
         | 
| 414 | 
            +
            	content: "\e01e";
         | 
| 415 | 
            +
            }
         | 
| 416 | 
            +
            .icon_map_alt:before {
         | 
| 417 | 
            +
            	content: "\e01f";
         | 
| 418 | 
            +
            }
         | 
| 419 | 
            +
            .icon_drawer_alt:before {
         | 
| 420 | 
            +
            	content: "\e020";
         | 
| 421 | 
            +
            }
         | 
| 422 | 
            +
            .icon_toolbox_alt:before {
         | 
| 423 | 
            +
            	content: "\e021";
         | 
| 424 | 
            +
            }
         | 
| 425 | 
            +
            .icon_book_alt:before {
         | 
| 426 | 
            +
            	content: "\e022";
         | 
| 427 | 
            +
            }
         | 
| 428 | 
            +
            .icon_calendar:before {
         | 
| 429 | 
            +
            	content: "\e023";
         | 
| 430 | 
            +
            }
         | 
| 431 | 
            +
            .icon_film:before {
         | 
| 432 | 
            +
            	content: "\e024";
         | 
| 433 | 
            +
            }
         | 
| 434 | 
            +
            .icon_table:before {
         | 
| 435 | 
            +
            	content: "\e025";
         | 
| 436 | 
            +
            }
         | 
| 437 | 
            +
            .icon_contacts_alt:before {
         | 
| 438 | 
            +
            	content: "\e026";
         | 
| 439 | 
            +
            }
         | 
| 440 | 
            +
            .icon_headphones:before {
         | 
| 441 | 
            +
            	content: "\e027";
         | 
| 442 | 
            +
            }
         | 
| 443 | 
            +
            .icon_lifesaver:before {
         | 
| 444 | 
            +
            	content: "\e028";
         | 
| 445 | 
            +
            }
         | 
| 446 | 
            +
            .icon_piechart:before {
         | 
| 447 | 
            +
            	content: "\e029";
         | 
| 448 | 
            +
            }
         | 
| 449 | 
            +
            .icon_refresh:before {
         | 
| 450 | 
            +
            	content: "\e02a";
         | 
| 451 | 
            +
            }
         | 
| 452 | 
            +
            .icon_link_alt:before {
         | 
| 453 | 
            +
            	content: "\e02b";
         | 
| 454 | 
            +
            }
         | 
| 455 | 
            +
            .icon_link:before {
         | 
| 456 | 
            +
            	content: "\e02c";
         | 
| 457 | 
            +
            }
         | 
| 458 | 
            +
            .icon_loading:before {
         | 
| 459 | 
            +
            	content: "\e02d";
         | 
| 460 | 
            +
            }
         | 
| 461 | 
            +
            .icon_blocked:before {
         | 
| 462 | 
            +
            	content: "\e02e";
         | 
| 463 | 
            +
            }
         | 
| 464 | 
            +
            .icon_archive_alt:before {
         | 
| 465 | 
            +
            	content: "\e02f";
         | 
| 466 | 
            +
            }
         | 
| 467 | 
            +
            .icon_heart_alt:before {
         | 
| 468 | 
            +
            	content: "\e030";
         | 
| 469 | 
            +
            }
         | 
| 470 | 
            +
            .icon_star_alt:before {
         | 
| 471 | 
            +
            	content: "\e031";
         | 
| 472 | 
            +
            }
         | 
| 473 | 
            +
            .icon_star-half_alt:before {
         | 
| 474 | 
            +
            	content: "\e032";
         | 
| 475 | 
            +
            }
         | 
| 476 | 
            +
            .icon_star:before {
         | 
| 477 | 
            +
            	content: "\e033";
         | 
| 478 | 
            +
            }
         | 
| 479 | 
            +
            .icon_star-half:before {
         | 
| 480 | 
            +
            	content: "\e034";
         | 
| 481 | 
            +
            }
         | 
| 482 | 
            +
            .icon_tools:before {
         | 
| 483 | 
            +
            	content: "\e035";
         | 
| 484 | 
            +
            }
         | 
| 485 | 
            +
            .icon_tool:before {
         | 
| 486 | 
            +
            	content: "\e036";
         | 
| 487 | 
            +
            }
         | 
| 488 | 
            +
            .icon_cog:before {
         | 
| 489 | 
            +
            	content: "\e037";
         | 
| 490 | 
            +
            }
         | 
| 491 | 
            +
            .icon_cogs:before {
         | 
| 492 | 
            +
            	content: "\e038";
         | 
| 493 | 
            +
            }
         | 
| 494 | 
            +
            .arrow_up_alt:before {
         | 
| 495 | 
            +
            	content: "\e039";
         | 
| 496 | 
            +
            }
         | 
| 497 | 
            +
            .arrow_down_alt:before {
         | 
| 498 | 
            +
            	content: "\e03a";
         | 
| 499 | 
            +
            }
         | 
| 500 | 
            +
            .arrow_left_alt:before {
         | 
| 501 | 
            +
            	content: "\e03b";
         | 
| 502 | 
            +
            }
         | 
| 503 | 
            +
            .arrow_right_alt:before {
         | 
| 504 | 
            +
            	content: "\e03c";
         | 
| 505 | 
            +
            }
         | 
| 506 | 
            +
            .arrow_left-up_alt:before {
         | 
| 507 | 
            +
            	content: "\e03d";
         | 
| 508 | 
            +
            }
         | 
| 509 | 
            +
            .arrow_right-up_alt:before {
         | 
| 510 | 
            +
            	content: "\e03e";
         | 
| 511 | 
            +
            }
         | 
| 512 | 
            +
            .arrow_right-down_alt:before {
         | 
| 513 | 
            +
            	content: "\e03f";
         | 
| 514 | 
            +
            }
         | 
| 515 | 
            +
            .arrow_left-down_alt:before {
         | 
| 516 | 
            +
            	content: "\e040";
         | 
| 517 | 
            +
            }
         | 
| 518 | 
            +
            .arrow_condense_alt:before {
         | 
| 519 | 
            +
            	content: "\e041";
         | 
| 520 | 
            +
            }
         | 
| 521 | 
            +
            .arrow_expand_alt3:before {
         | 
| 522 | 
            +
            	content: "\e042";
         | 
| 523 | 
            +
            }
         | 
| 524 | 
            +
            .arrow_carrot_up_alt:before {
         | 
| 525 | 
            +
            	content: "\e043";
         | 
| 526 | 
            +
            }
         | 
| 527 | 
            +
            .arrow_carrot-down_alt:before {
         | 
| 528 | 
            +
            	content: "\e044";
         | 
| 529 | 
            +
            }
         | 
| 530 | 
            +
            .arrow_carrot-left_alt:before {
         | 
| 531 | 
            +
            	content: "\e045";
         | 
| 532 | 
            +
            }
         | 
| 533 | 
            +
            .arrow_carrot-right_alt:before {
         | 
| 534 | 
            +
            	content: "\e046";
         | 
| 535 | 
            +
            }
         | 
| 536 | 
            +
            .arrow_carrot-2up_alt:before {
         | 
| 537 | 
            +
            	content: "\e047";
         | 
| 538 | 
            +
            }
         | 
| 539 | 
            +
            .arrow_carrot-2dwnn_alt:before {
         | 
| 540 | 
            +
            	content: "\e048";
         | 
| 541 | 
            +
            }
         | 
| 542 | 
            +
            .arrow_carrot-2left_alt:before {
         | 
| 543 | 
            +
            	content: "\e049";
         | 
| 544 | 
            +
            }
         | 
| 545 | 
            +
            .arrow_carrot-2right_alt:before {
         | 
| 546 | 
            +
            	content: "\e04a";
         | 
| 547 | 
            +
            }
         | 
| 548 | 
            +
            .arrow_triangle-up_alt:before {
         | 
| 549 | 
            +
            	content: "\e04b";
         | 
| 550 | 
            +
            }
         | 
| 551 | 
            +
            .arrow_triangle-down_alt:before {
         | 
| 552 | 
            +
            	content: "\e04c";
         | 
| 553 | 
            +
            }
         | 
| 554 | 
            +
            .arrow_triangle-left_alt:before {
         | 
| 555 | 
            +
            	content: "\e04d";
         | 
| 556 | 
            +
            }
         | 
| 557 | 
            +
            .arrow_triangle-right_alt:before {
         | 
| 558 | 
            +
            	content: "\e04e";
         | 
| 559 | 
            +
            }
         | 
| 560 | 
            +
            .icon_minus_alt:before {
         | 
| 561 | 
            +
            	content: "\e04f";
         | 
| 562 | 
            +
            }
         | 
| 563 | 
            +
            .icon_plus_alt:before {
         | 
| 564 | 
            +
            	content: "\e050";
         | 
| 565 | 
            +
            }
         | 
| 566 | 
            +
            .icon_close_alt:before {
         | 
| 567 | 
            +
            	content: "\e051";
         | 
| 568 | 
            +
            }
         | 
| 569 | 
            +
            .icon_check_alt:before {
         | 
| 570 | 
            +
            	content: "\e052";
         | 
| 571 | 
            +
            }
         | 
| 572 | 
            +
            .icon_zoom-out:before {
         | 
| 573 | 
            +
            	content: "\e053";
         | 
| 574 | 
            +
            }
         | 
| 575 | 
            +
            .icon_zoom-in:before {
         | 
| 576 | 
            +
            	content: "\e054";
         | 
| 577 | 
            +
            }
         | 
| 578 | 
            +
            .icon_stop_alt:before {
         | 
| 579 | 
            +
            	content: "\e055";
         | 
| 580 | 
            +
            }
         | 
| 581 | 
            +
            .icon_menu-square_alt:before {
         | 
| 582 | 
            +
            	content: "\e056";
         | 
| 583 | 
            +
            }
         | 
| 584 | 
            +
            .icon_menu-circle_alt:before {
         | 
| 585 | 
            +
            	content: "\e057";
         | 
| 586 | 
            +
            }
         | 
| 587 | 
            +
            .icon_document:before {
         | 
| 588 | 
            +
            	content: "\e058";
         | 
| 589 | 
            +
            }
         | 
| 590 | 
            +
            .icon_documents:before {
         | 
| 591 | 
            +
            	content: "\e059";
         | 
| 592 | 
            +
            }
         | 
| 593 | 
            +
            .icon_pencil_alt:before {
         | 
| 594 | 
            +
            	content: "\e05a";
         | 
| 595 | 
            +
            }
         | 
| 596 | 
            +
            .icon_folder:before {
         | 
| 597 | 
            +
            	content: "\e05b";
         | 
| 598 | 
            +
            }
         | 
| 599 | 
            +
            .icon_folder-open:before {
         | 
| 600 | 
            +
            	content: "\e05c";
         | 
| 601 | 
            +
            }
         | 
| 602 | 
            +
            .icon_folder-add:before {
         | 
| 603 | 
            +
            	content: "\e05d";
         | 
| 604 | 
            +
            }
         | 
| 605 | 
            +
            .icon_folder_upload:before {
         | 
| 606 | 
            +
            	content: "\e05e";
         | 
| 607 | 
            +
            }
         | 
| 608 | 
            +
            .icon_folder_download:before {
         | 
| 609 | 
            +
            	content: "\e05f";
         | 
| 610 | 
            +
            }
         | 
| 611 | 
            +
            .icon_info:before {
         | 
| 612 | 
            +
            	content: "\e060";
         | 
| 613 | 
            +
            }
         | 
| 614 | 
            +
            .icon_error-circle:before {
         | 
| 615 | 
            +
            	content: "\e061";
         | 
| 616 | 
            +
            }
         | 
| 617 | 
            +
            .icon_error-oct:before {
         | 
| 618 | 
            +
            	content: "\e062";
         | 
| 619 | 
            +
            }
         | 
| 620 | 
            +
            .icon_error-triangle:before {
         | 
| 621 | 
            +
            	content: "\e063";
         | 
| 622 | 
            +
            }
         | 
| 623 | 
            +
            .icon_question_alt:before {
         | 
| 624 | 
            +
            	content: "\e064";
         | 
| 625 | 
            +
            }
         | 
| 626 | 
            +
            .icon_comment:before {
         | 
| 627 | 
            +
            	content: "\e065";
         | 
| 628 | 
            +
            }
         | 
| 629 | 
            +
            .icon_chat:before {
         | 
| 630 | 
            +
            	content: "\e066";
         | 
| 631 | 
            +
            }
         | 
| 632 | 
            +
            .icon_vol-mute:before {
         | 
| 633 | 
            +
            	content: "\e067";
         | 
| 634 | 
            +
            }
         | 
| 635 | 
            +
            .icon_volume-low:before {
         | 
| 636 | 
            +
            	content: "\e068";
         | 
| 637 | 
            +
            }
         | 
| 638 | 
            +
            .icon_volume-high:before {
         | 
| 639 | 
            +
            	content: "\e069";
         | 
| 640 | 
            +
            }
         | 
| 641 | 
            +
            .icon_quotations_alt:before {
         | 
| 642 | 
            +
            	content: "\e06a";
         | 
| 643 | 
            +
            }
         | 
| 644 | 
            +
            .icon_clock:before {
         | 
| 645 | 
            +
            	content: "\e06b";
         | 
| 646 | 
            +
            }
         | 
| 647 | 
            +
            .icon_lock:before {
         | 
| 648 | 
            +
            	content: "\e06c";
         | 
| 649 | 
            +
            }
         | 
| 650 | 
            +
            .icon_lock-open:before {
         | 
| 651 | 
            +
            	content: "\e06d";
         | 
| 652 | 
            +
            }
         | 
| 653 | 
            +
            .icon_key:before {
         | 
| 654 | 
            +
            	content: "\e06e";
         | 
| 655 | 
            +
            }
         | 
| 656 | 
            +
            .icon_cloud:before {
         | 
| 657 | 
            +
            	content: "\e06f";
         | 
| 658 | 
            +
            }
         | 
| 659 | 
            +
            .icon_cloud-upload:before {
         | 
| 660 | 
            +
            	content: "\e070";
         | 
| 661 | 
            +
            }
         | 
| 662 | 
            +
            .icon_cloud-download:before {
         | 
| 663 | 
            +
            	content: "\e071";
         | 
| 664 | 
            +
            }
         | 
| 665 | 
            +
            .icon_lightbulb:before {
         | 
| 666 | 
            +
            	content: "\e072";
         | 
| 667 | 
            +
            }
         | 
| 668 | 
            +
            .icon_gift:before {
         | 
| 669 | 
            +
            	content: "\e073";
         | 
| 670 | 
            +
            }
         | 
| 671 | 
            +
            .icon_house:before {
         | 
| 672 | 
            +
            	content: "\e074";
         | 
| 673 | 
            +
            }
         | 
| 674 | 
            +
            .icon_camera:before {
         | 
| 675 | 
            +
            	content: "\e075";
         | 
| 676 | 
            +
            }
         | 
| 677 | 
            +
            .icon_mail:before {
         | 
| 678 | 
            +
            	content: "\e076";
         | 
| 679 | 
            +
            }
         | 
| 680 | 
            +
            .icon_cone:before {
         | 
| 681 | 
            +
            	content: "\e077";
         | 
| 682 | 
            +
            }
         | 
| 683 | 
            +
            .icon_ribbon:before {
         | 
| 684 | 
            +
            	content: "\e078";
         | 
| 685 | 
            +
            }
         | 
| 686 | 
            +
            .icon_bag:before {
         | 
| 687 | 
            +
            	content: "\e079";
         | 
| 688 | 
            +
            }
         | 
| 689 | 
            +
            .icon_cart:before {
         | 
| 690 | 
            +
            	content: "\e07a";
         | 
| 691 | 
            +
            }
         | 
| 692 | 
            +
            .icon_tag:before {
         | 
| 693 | 
            +
            	content: "\e07b";
         | 
| 694 | 
            +
            }
         | 
| 695 | 
            +
            .icon_tags:before {
         | 
| 696 | 
            +
            	content: "\e07c";
         | 
| 697 | 
            +
            }
         | 
| 698 | 
            +
            .icon_trash:before {
         | 
| 699 | 
            +
            	content: "\e07d";
         | 
| 700 | 
            +
            }
         | 
| 701 | 
            +
            .icon_cursor:before {
         | 
| 702 | 
            +
            	content: "\e07e";
         | 
| 703 | 
            +
            }
         | 
| 704 | 
            +
            .icon_mic:before {
         | 
| 705 | 
            +
            	content: "\e07f";
         | 
| 706 | 
            +
            }
         | 
| 707 | 
            +
            .icon_compass:before {
         | 
| 708 | 
            +
            	content: "\e080";
         | 
| 709 | 
            +
            }
         | 
| 710 | 
            +
            .icon_pin:before {
         | 
| 711 | 
            +
            	content: "\e081";
         | 
| 712 | 
            +
            }
         | 
| 713 | 
            +
            .icon_pushpin:before {
         | 
| 714 | 
            +
            	content: "\e082";
         | 
| 715 | 
            +
            }
         | 
| 716 | 
            +
            .icon_map:before {
         | 
| 717 | 
            +
            	content: "\e083";
         | 
| 718 | 
            +
            }
         | 
| 719 | 
            +
            .icon_drawer:before {
         | 
| 720 | 
            +
            	content: "\e084";
         | 
| 721 | 
            +
            }
         | 
| 722 | 
            +
            .icon_toolbox:before {
         | 
| 723 | 
            +
            	content: "\e085";
         | 
| 724 | 
            +
            }
         | 
| 725 | 
            +
            .icon_book:before {
         | 
| 726 | 
            +
            	content: "\e086";
         | 
| 727 | 
            +
            }
         | 
| 728 | 
            +
            .icon_contacts:before {
         | 
| 729 | 
            +
            	content: "\e087";
         | 
| 730 | 
            +
            }
         | 
| 731 | 
            +
            .icon_archive:before {
         | 
| 732 | 
            +
            	content: "\e088";
         | 
| 733 | 
            +
            }
         | 
| 734 | 
            +
            .icon_heart:before {
         | 
| 735 | 
            +
            	content: "\e089";
         | 
| 736 | 
            +
            }
         | 
| 737 | 
            +
            .icon_profile:before {
         | 
| 738 | 
            +
            	content: "\e08a";
         | 
| 739 | 
            +
            }
         | 
| 740 | 
            +
            .icon_group:before {
         | 
| 741 | 
            +
            	content: "\e08b";
         | 
| 742 | 
            +
            }
         | 
| 743 | 
            +
            .icon_grid-2x2:before {
         | 
| 744 | 
            +
            	content: "\e08c";
         | 
| 745 | 
            +
            }
         | 
| 746 | 
            +
            .icon_grid-3x3:before {
         | 
| 747 | 
            +
            	content: "\e08d";
         | 
| 748 | 
            +
            }
         | 
| 749 | 
            +
            .icon_music:before {
         | 
| 750 | 
            +
            	content: "\e08e";
         | 
| 751 | 
            +
            }
         | 
| 752 | 
            +
            .icon_pause_alt:before {
         | 
| 753 | 
            +
            	content: "\e08f";
         | 
| 754 | 
            +
            }
         | 
| 755 | 
            +
            .icon_phone:before {
         | 
| 756 | 
            +
            	content: "\e090";
         | 
| 757 | 
            +
            }
         | 
| 758 | 
            +
            .icon_upload:before {
         | 
| 759 | 
            +
            	content: "\e091";
         | 
| 760 | 
            +
            }
         | 
| 761 | 
            +
            .icon_download:before {
         | 
| 762 | 
            +
            	content: "\e092";
         | 
| 763 | 
            +
            }
         | 
| 764 | 
            +
            .social_facebook:before {
         | 
| 765 | 
            +
            	content: "\e093";
         | 
| 766 | 
            +
            }
         | 
| 767 | 
            +
            .social_twitter:before {
         | 
| 768 | 
            +
            	content: "\e094";
         | 
| 769 | 
            +
            }
         | 
| 770 | 
            +
            .social_pinterest:before {
         | 
| 771 | 
            +
            	content: "\e095";
         | 
| 772 | 
            +
            }
         | 
| 773 | 
            +
            .social_googleplus:before {
         | 
| 774 | 
            +
            	content: "\e096";
         | 
| 775 | 
            +
            }
         | 
| 776 | 
            +
            .social_tumblr:before {
         | 
| 777 | 
            +
            	content: "\e097";
         | 
| 778 | 
            +
            }
         | 
| 779 | 
            +
            .social_tumbleupon:before {
         | 
| 780 | 
            +
            	content: "\e098";
         | 
| 781 | 
            +
            }
         | 
| 782 | 
            +
            .social_wordpress:before {
         | 
| 783 | 
            +
            	content: "\e099";
         | 
| 784 | 
            +
            }
         | 
| 785 | 
            +
            .social_instagram:before {
         | 
| 786 | 
            +
            	content: "\e09a";
         | 
| 787 | 
            +
            }
         | 
| 788 | 
            +
            .social_dribbble:before {
         | 
| 789 | 
            +
            	content: "\e09b";
         | 
| 790 | 
            +
            }
         | 
| 791 | 
            +
            .social_vimeo:before {
         | 
| 792 | 
            +
            	content: "\e09c";
         | 
| 793 | 
            +
            }
         | 
| 794 | 
            +
            .social_linkedin:before {
         | 
| 795 | 
            +
            	content: "\e09d";
         | 
| 796 | 
            +
            }
         | 
| 797 | 
            +
            .social_rss:before {
         | 
| 798 | 
            +
            	content: "\e09e";
         | 
| 799 | 
            +
            }
         | 
| 800 | 
            +
            .social_deviantart:before {
         | 
| 801 | 
            +
            	content: "\e09f";
         | 
| 802 | 
            +
            }
         | 
| 803 | 
            +
            .social_share:before {
         | 
| 804 | 
            +
            	content: "\e0a0";
         | 
| 805 | 
            +
            }
         | 
| 806 | 
            +
            .social_myspace:before {
         | 
| 807 | 
            +
            	content: "\e0a1";
         | 
| 808 | 
            +
            }
         | 
| 809 | 
            +
            .social_skype:before {
         | 
| 810 | 
            +
            	content: "\e0a2";
         | 
| 811 | 
            +
            }
         | 
| 812 | 
            +
            .social_youtube:before {
         | 
| 813 | 
            +
            	content: "\e0a3";
         | 
| 814 | 
            +
            }
         | 
| 815 | 
            +
            .social_picassa:before {
         | 
| 816 | 
            +
            	content: "\e0a4";
         | 
| 817 | 
            +
            }
         | 
| 818 | 
            +
            .social_googledrive:before {
         | 
| 819 | 
            +
            	content: "\e0a5";
         | 
| 820 | 
            +
            }
         | 
| 821 | 
            +
            .social_flickr:before {
         | 
| 822 | 
            +
            	content: "\e0a6";
         | 
| 823 | 
            +
            }
         | 
| 824 | 
            +
            .social_blogger:before {
         | 
| 825 | 
            +
            	content: "\e0a7";
         | 
| 826 | 
            +
            }
         | 
| 827 | 
            +
            .social_spotify:before {
         | 
| 828 | 
            +
            	content: "\e0a8";
         | 
| 829 | 
            +
            }
         | 
| 830 | 
            +
            .social_delicious:before {
         | 
| 831 | 
            +
            	content: "\e0a9";
         | 
| 832 | 
            +
            }
         | 
| 833 | 
            +
            .social_facebook_circle:before {
         | 
| 834 | 
            +
            	content: "\e0aa";
         | 
| 835 | 
            +
            }
         | 
| 836 | 
            +
            .social_twitter_circle:before {
         | 
| 837 | 
            +
            	content: "\e0ab";
         | 
| 838 | 
            +
            }
         | 
| 839 | 
            +
            .social_pinterest_circle:before {
         | 
| 840 | 
            +
            	content: "\e0ac";
         | 
| 841 | 
            +
            }
         | 
| 842 | 
            +
            .social_googleplus_circle:before {
         | 
| 843 | 
            +
            	content: "\e0ad";
         | 
| 844 | 
            +
            }
         | 
| 845 | 
            +
            .social_tumblr_circle:before {
         | 
| 846 | 
            +
            	content: "\e0ae";
         | 
| 847 | 
            +
            }
         | 
| 848 | 
            +
            .social_stumbleupon_circle:before {
         | 
| 849 | 
            +
            	content: "\e0af";
         | 
| 850 | 
            +
            }
         | 
| 851 | 
            +
            .social_wordpress_circle:before {
         | 
| 852 | 
            +
            	content: "\e0b0";
         | 
| 853 | 
            +
            }
         | 
| 854 | 
            +
            .social_instagram_circle:before {
         | 
| 855 | 
            +
            	content: "\e0b1";
         | 
| 856 | 
            +
            }
         | 
| 857 | 
            +
            .social_dribbble_circle:before {
         | 
| 858 | 
            +
            	content: "\e0b2";
         | 
| 859 | 
            +
            }
         | 
| 860 | 
            +
            .social_vimeo_circle:before {
         | 
| 861 | 
            +
            	content: "\e0b3";
         | 
| 862 | 
            +
            }
         | 
| 863 | 
            +
            .social_linkedin_circle:before {
         | 
| 864 | 
            +
            	content: "\e0b4";
         | 
| 865 | 
            +
            }
         | 
| 866 | 
            +
            .social_rss_circle:before {
         | 
| 867 | 
            +
            	content: "\e0b5";
         | 
| 868 | 
            +
            }
         | 
| 869 | 
            +
            .social_deviantart_circle:before {
         | 
| 870 | 
            +
            	content: "\e0b6";
         | 
| 871 | 
            +
            }
         | 
| 872 | 
            +
            .social_share_circle:before {
         | 
| 873 | 
            +
            	content: "\e0b7";
         | 
| 874 | 
            +
            }
         | 
| 875 | 
            +
            .social_myspace_circle:before {
         | 
| 876 | 
            +
            	content: "\e0b8";
         | 
| 877 | 
            +
            }
         | 
| 878 | 
            +
            .social_skype_circle:before {
         | 
| 879 | 
            +
            	content: "\e0b9";
         | 
| 880 | 
            +
            }
         | 
| 881 | 
            +
            .social_youtube_circle:before {
         | 
| 882 | 
            +
            	content: "\e0ba";
         | 
| 883 | 
            +
            }
         | 
| 884 | 
            +
            .social_picassa_circle:before {
         | 
| 885 | 
            +
            	content: "\e0bb";
         | 
| 886 | 
            +
            }
         | 
| 887 | 
            +
            .social_googledrive_alt2:before {
         | 
| 888 | 
            +
            	content: "\e0bc";
         | 
| 889 | 
            +
            }
         | 
| 890 | 
            +
            .social_flickr_circle:before {
         | 
| 891 | 
            +
            	content: "\e0bd";
         | 
| 892 | 
            +
            }
         | 
| 893 | 
            +
            .social_blogger_circle:before {
         | 
| 894 | 
            +
            	content: "\e0be";
         | 
| 895 | 
            +
            }
         | 
| 896 | 
            +
            .social_spotify_circle:before {
         | 
| 897 | 
            +
            	content: "\e0bf";
         | 
| 898 | 
            +
            }
         | 
| 899 | 
            +
            .social_delicious_circle:before {
         | 
| 900 | 
            +
            	content: "\e0c0";
         | 
| 901 | 
            +
            }
         | 
| 902 | 
            +
            .social_facebook_square:before {
         | 
| 903 | 
            +
            	content: "\e0c1";
         | 
| 904 | 
            +
            }
         | 
| 905 | 
            +
            .social_twitter_square:before {
         | 
| 906 | 
            +
            	content: "\e0c2";
         | 
| 907 | 
            +
            }
         | 
| 908 | 
            +
            .social_pinterest_square:before {
         | 
| 909 | 
            +
            	content: "\e0c3";
         | 
| 910 | 
            +
            }
         | 
| 911 | 
            +
            .social_googleplus_square:before {
         | 
| 912 | 
            +
            	content: "\e0c4";
         | 
| 913 | 
            +
            }
         | 
| 914 | 
            +
            .social_tumblr_square:before {
         | 
| 915 | 
            +
            	content: "\e0c5";
         | 
| 916 | 
            +
            }
         | 
| 917 | 
            +
            .social_stumbleupon_square:before {
         | 
| 918 | 
            +
            	content: "\e0c6";
         | 
| 919 | 
            +
            }
         | 
| 920 | 
            +
            .social_wordpress_square:before {
         | 
| 921 | 
            +
            	content: "\e0c7";
         | 
| 922 | 
            +
            }
         | 
| 923 | 
            +
            .social_instagram_square:before {
         | 
| 924 | 
            +
            	content: "\e0c8";
         | 
| 925 | 
            +
            }
         | 
| 926 | 
            +
            .social_dribbble_square:before {
         | 
| 927 | 
            +
            	content: "\e0c9";
         | 
| 928 | 
            +
            }
         | 
| 929 | 
            +
            .social_vimeo_square:before {
         | 
| 930 | 
            +
            	content: "\e0ca";
         | 
| 931 | 
            +
            }
         | 
| 932 | 
            +
            .social_linkedin_square:before {
         | 
| 933 | 
            +
            	content: "\e0cb";
         | 
| 934 | 
            +
            }
         | 
| 935 | 
            +
            .social_rss_square:before {
         | 
| 936 | 
            +
            	content: "\e0cc";
         | 
| 937 | 
            +
            }
         | 
| 938 | 
            +
            .social_deviantart_square:before {
         | 
| 939 | 
            +
            	content: "\e0cd";
         | 
| 940 | 
            +
            }
         | 
| 941 | 
            +
            .social_share_square:before {
         | 
| 942 | 
            +
            	content: "\e0ce";
         | 
| 943 | 
            +
            }
         | 
| 944 | 
            +
            .social_myspace_square:before {
         | 
| 945 | 
            +
            	content: "\e0cf";
         | 
| 946 | 
            +
            }
         | 
| 947 | 
            +
            .social_skype_square:before {
         | 
| 948 | 
            +
            	content: "\e0d0";
         | 
| 949 | 
            +
            }
         | 
| 950 | 
            +
            .social_youtube_square:before {
         | 
| 951 | 
            +
            	content: "\e0d1";
         | 
| 952 | 
            +
            }
         | 
| 953 | 
            +
            .social_picassa_square:before {
         | 
| 954 | 
            +
            	content: "\e0d2";
         | 
| 955 | 
            +
            }
         | 
| 956 | 
            +
            .social_googledrive_square:before {
         | 
| 957 | 
            +
            	content: "\e0d3";
         | 
| 958 | 
            +
            }
         | 
| 959 | 
            +
            .social_flickr_square:before {
         | 
| 960 | 
            +
            	content: "\e0d4";
         | 
| 961 | 
            +
            }
         | 
| 962 | 
            +
            .social_blogger_square:before {
         | 
| 963 | 
            +
            	content: "\e0d5";
         | 
| 964 | 
            +
            }
         | 
| 965 | 
            +
            .social_spotify_square:before {
         | 
| 966 | 
            +
            	content: "\e0d6";
         | 
| 967 | 
            +
            }
         | 
| 968 | 
            +
            .social_delicious_square:before {
         | 
| 969 | 
            +
            	content: "\e0d7";
         | 
| 970 | 
            +
            }
         | 
| 971 | 
            +
            .icon_printer:before {
         | 
| 972 | 
            +
            	content: "\e103";
         | 
| 973 | 
            +
            }
         | 
| 974 | 
            +
            .icon_calulator:before {
         | 
| 975 | 
            +
            	content: "\e0ee";
         | 
| 976 | 
            +
            }
         | 
| 977 | 
            +
            .icon_building:before {
         | 
| 978 | 
            +
            	content: "\e0ef";
         | 
| 979 | 
            +
            }
         | 
| 980 | 
            +
            .icon_floppy:before {
         | 
| 981 | 
            +
            	content: "\e0e8";
         | 
| 982 | 
            +
            }
         | 
| 983 | 
            +
            .icon_drive:before {
         | 
| 984 | 
            +
            	content: "\e0ea";
         | 
| 985 | 
            +
            }
         | 
| 986 | 
            +
            .icon_search-2:before {
         | 
| 987 | 
            +
            	content: "\e101";
         | 
| 988 | 
            +
            }
         | 
| 989 | 
            +
            .icon_id:before {
         | 
| 990 | 
            +
            	content: "\e107";
         | 
| 991 | 
            +
            }
         | 
| 992 | 
            +
            .icon_id-2:before {
         | 
| 993 | 
            +
            	content: "\e108";
         | 
| 994 | 
            +
            }
         | 
| 995 | 
            +
            .icon_puzzle:before {
         | 
| 996 | 
            +
            	content: "\e102";
         | 
| 997 | 
            +
            }
         | 
| 998 | 
            +
            .icon_like:before {
         | 
| 999 | 
            +
            	content: "\e106";
         | 
| 1000 | 
            +
            }
         | 
| 1001 | 
            +
            .icon_dislike:before {
         | 
| 1002 | 
            +
            	content: "\e0eb";
         | 
| 1003 | 
            +
            }
         | 
| 1004 | 
            +
            .icon_mug:before {
         | 
| 1005 | 
            +
            	content: "\e105";
         | 
| 1006 | 
            +
            }
         | 
| 1007 | 
            +
            .icon_currency:before {
         | 
| 1008 | 
            +
            	content: "\e0ed";
         | 
| 1009 | 
            +
            }
         | 
| 1010 | 
            +
            .icon_wallet:before {
         | 
| 1011 | 
            +
            	content: "\e100";
         | 
| 1012 | 
            +
            }
         | 
| 1013 | 
            +
            .icon_pens:before {
         | 
| 1014 | 
            +
            	content: "\e104";
         | 
| 1015 | 
            +
            }
         | 
| 1016 | 
            +
            .icon_easel:before {
         | 
| 1017 | 
            +
            	content: "\e0e9";
         | 
| 1018 | 
            +
            }
         | 
| 1019 | 
            +
            .icon_flowchart:before {
         | 
| 1020 | 
            +
            	content: "\e109";
         | 
| 1021 | 
            +
            }
         | 
| 1022 | 
            +
            .icon_datareport:before {
         | 
| 1023 | 
            +
            	content: "\e0ec";
         | 
| 1024 | 
            +
            }
         | 
| 1025 | 
            +
            .icon_briefcase:before {
         | 
| 1026 | 
            +
            	content: "\e0fe";
         | 
| 1027 | 
            +
            }
         | 
| 1028 | 
            +
            .icon_shield:before {
         | 
| 1029 | 
            +
            	content: "\e0f6";
         | 
| 1030 | 
            +
            }
         | 
| 1031 | 
            +
            .icon_percent:before {
         | 
| 1032 | 
            +
            	content: "\e0fb";
         | 
| 1033 | 
            +
            }
         | 
| 1034 | 
            +
            .icon_globe:before {
         | 
| 1035 | 
            +
            	content: "\e0e2";
         | 
| 1036 | 
            +
            }
         | 
| 1037 | 
            +
            .icon_globe-2:before {
         | 
| 1038 | 
            +
            	content: "\e0e3";
         | 
| 1039 | 
            +
            }
         | 
| 1040 | 
            +
            .icon_target:before {
         | 
| 1041 | 
            +
            	content: "\e0f5";
         | 
| 1042 | 
            +
            }
         | 
| 1043 | 
            +
            .icon_hourglass:before {
         | 
| 1044 | 
            +
            	content: "\e0e1";
         | 
| 1045 | 
            +
            }
         | 
| 1046 | 
            +
            .icon_balance:before {
         | 
| 1047 | 
            +
            	content: "\e0ff";
         | 
| 1048 | 
            +
            }
         | 
| 1049 | 
            +
            .icon_rook:before {
         | 
| 1050 | 
            +
            	content: "\e0f8";
         | 
| 1051 | 
            +
            }
         | 
| 1052 | 
            +
            .icon_printer-alt:before {
         | 
| 1053 | 
            +
            	content: "\e0fa";
         | 
| 1054 | 
            +
            }
         | 
| 1055 | 
            +
            .icon_calculator_alt:before {
         | 
| 1056 | 
            +
            	content: "\e0e7";
         | 
| 1057 | 
            +
            }
         | 
| 1058 | 
            +
            .icon_building_alt:before {
         | 
| 1059 | 
            +
            	content: "\e0fd";
         | 
| 1060 | 
            +
            }
         | 
| 1061 | 
            +
            .icon_floppy_alt:before {
         | 
| 1062 | 
            +
            	content: "\e0e4";
         | 
| 1063 | 
            +
            }
         | 
| 1064 | 
            +
            .icon_drive_alt:before {
         | 
| 1065 | 
            +
            	content: "\e0e5";
         | 
| 1066 | 
            +
            }
         | 
| 1067 | 
            +
            .icon_search_alt:before {
         | 
| 1068 | 
            +
            	content: "\e0f7";
         | 
| 1069 | 
            +
            }
         | 
| 1070 | 
            +
            .icon_id_alt:before {
         | 
| 1071 | 
            +
            	content: "\e0e0";
         | 
| 1072 | 
            +
            }
         | 
| 1073 | 
            +
            .icon_id-2_alt:before {
         | 
| 1074 | 
            +
            	content: "\e0fc";
         | 
| 1075 | 
            +
            }
         | 
| 1076 | 
            +
            .icon_puzzle_alt:before {
         | 
| 1077 | 
            +
            	content: "\e0f9";
         | 
| 1078 | 
            +
            }
         | 
| 1079 | 
            +
            .icon_like_alt:before {
         | 
| 1080 | 
            +
            	content: "\e0dd";
         | 
| 1081 | 
            +
            }
         | 
| 1082 | 
            +
            .icon_dislike_alt:before {
         | 
| 1083 | 
            +
            	content: "\e0f1";
         | 
| 1084 | 
            +
            }
         | 
| 1085 | 
            +
            .icon_mug_alt:before {
         | 
| 1086 | 
            +
            	content: "\e0dc";
         | 
| 1087 | 
            +
            }
         | 
| 1088 | 
            +
            .icon_currency_alt:before {
         | 
| 1089 | 
            +
            	content: "\e0f3";
         | 
| 1090 | 
            +
            }
         | 
| 1091 | 
            +
            .icon_wallet_alt:before {
         | 
| 1092 | 
            +
            	content: "\e0d8";
         | 
| 1093 | 
            +
            }
         | 
| 1094 | 
            +
            .icon_pens_alt:before {
         | 
| 1095 | 
            +
            	content: "\e0db";
         | 
| 1096 | 
            +
            }
         | 
| 1097 | 
            +
            .icon_easel_alt:before {
         | 
| 1098 | 
            +
            	content: "\e0f0";
         | 
| 1099 | 
            +
            }
         | 
| 1100 | 
            +
            .icon_flowchart_alt:before {
         | 
| 1101 | 
            +
            	content: "\e0df";
         | 
| 1102 | 
            +
            }
         | 
| 1103 | 
            +
            .icon_datareport_alt:before {
         | 
| 1104 | 
            +
            	content: "\e0f2";
         | 
| 1105 | 
            +
            }
         | 
| 1106 | 
            +
            .icon_briefcase_alt:before {
         | 
| 1107 | 
            +
            	content: "\e0f4";
         | 
| 1108 | 
            +
            }
         | 
| 1109 | 
            +
            .icon_shield_alt:before {
         | 
| 1110 | 
            +
            	content: "\e0d9";
         | 
| 1111 | 
            +
            }
         | 
| 1112 | 
            +
            .icon_percent_alt:before {
         | 
| 1113 | 
            +
            	content: "\e0da";
         | 
| 1114 | 
            +
            }
         | 
| 1115 | 
            +
            .icon_globe_alt:before {
         | 
| 1116 | 
            +
            	content: "\e0de";
         | 
| 1117 | 
            +
            }
         | 
| 1118 | 
            +
            .icon_clipboard:before {
         | 
| 1119 | 
            +
            	content: "\e0e6";
         | 
| 1120 | 
            +
            }
         | 
| 1121 | 
            +
             | 
| 1122 | 
            +
             | 
| 1123 | 
            +
            	.glyph {
         | 
| 1124 | 
            +
            		float: left;
         | 
| 1125 | 
            +
            		text-align: center;
         | 
| 1126 | 
            +
            		padding: .75em;
         | 
| 1127 | 
            +
            		margin: .4em 1.5em .75em 0;
         | 
| 1128 | 
            +
            		width: 6em;
         | 
| 1129 | 
            +
            text-shadow: none;
         | 
| 1130 | 
            +
            	}
         | 
| 1131 | 
            +
                    .glyph_big {
         | 
| 1132 | 
            +
                    font-size: 128px;
         | 
| 1133 | 
            +
                    color: #59c5dc;
         | 
| 1134 | 
            +
                    float: left;
         | 
| 1135 | 
            +
                    margin-right: 20px;
         | 
| 1136 | 
            +
                    }
         | 
| 1137 | 
            +
             | 
| 1138 | 
            +
                    .glyph div { padding-bottom: 10px;}
         | 
| 1139 | 
            +
             | 
| 1140 | 
            +
            	.glyph input {
         | 
| 1141 | 
            +
            		font-family: consolas, monospace;
         | 
| 1142 | 
            +
            		font-size: 12px;
         | 
| 1143 | 
            +
            		width: 100%;
         | 
| 1144 | 
            +
            		text-align: center;
         | 
| 1145 | 
            +
            		border: 0;
         | 
| 1146 | 
            +
            		box-shadow: 0 0 0 1px #ccc;
         | 
| 1147 | 
            +
            		padding: .2em;
         | 
| 1148 | 
            +
                            -moz-border-radius: 5px;
         | 
| 1149 | 
            +
                            -webkit-border-radius: 5px;
         | 
| 1150 | 
            +
            	}
         | 
| 1151 | 
            +
            	.centered {
         | 
| 1152 | 
            +
            		margin-left: auto;
         | 
| 1153 | 
            +
            		margin-right: auto;
         | 
| 1154 | 
            +
            	}
         | 
| 1155 | 
            +
            	.glyph .fs1 {
         | 
| 1156 | 
            +
            		font-size: 2em;
         | 
| 1157 | 
            +
            	}
         | 
| 1158 | 
            +
             | 
| 1159 | 
            +
            	
         |