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
| Binary file | 
| Binary file | 
| @@ -0,0 +1,3019 @@ | |
| 1 | 
            +
            <!doctype html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
            <title>Your Font/Glyphs</title>
         | 
| 5 | 
            +
            <link rel="stylesheet" href="style.css" />
         | 
| 6 | 
            +
            <!--[if lte IE 7]><script src="lte-ie7.js"></script><![endif]-->
         | 
| 7 | 
            +
            <style>
         | 
| 8 | 
            +
            	section, header, footer {display: block;}
         | 
| 9 | 
            +
            	body {
         | 
| 10 | 
            +
            		font-family: sans-serif;
         | 
| 11 | 
            +
            		color: #666;
         | 
| 12 | 
            +
            		line-height: 1.5;
         | 
| 13 | 
            +
            		font-size: 1em;
         | 
| 14 | 
            +
            	}
         | 
| 15 | 
            +
            	* {
         | 
| 16 | 
            +
            		-moz-box-sizing: border-box;
         | 
| 17 | 
            +
            		-webkit-box-sizing: border-box;
         | 
| 18 | 
            +
            		box-sizing: border-box;
         | 
| 19 | 
            +
            		margin: 0;
         | 
| 20 | 
            +
            		padding: 0;
         | 
| 21 | 
            +
            	}
         | 
| 22 | 
            +
            	.glyph {
         | 
| 23 | 
            +
            		float: left;
         | 
| 24 | 
            +
            		text-align: center;
         | 
| 25 | 
            +
            		padding: .75em;
         | 
| 26 | 
            +
            		margin: .4em 1.5em .75em 0;
         | 
| 27 | 
            +
            		width: 6em;
         | 
| 28 | 
            +
            		text-shadow: none;
         | 
| 29 | 
            +
            	}
         | 
| 30 | 
            +
            	
         | 
| 31 | 
            +
            	.glyph input {
         | 
| 32 | 
            +
            		font-family: consolas, monospace;
         | 
| 33 | 
            +
            		font-size: 12px;
         | 
| 34 | 
            +
            		width: 100%;
         | 
| 35 | 
            +
            		text-align: center;
         | 
| 36 | 
            +
            		border: 0;
         | 
| 37 | 
            +
            		box-shadow: 0 0 0 1px #ccc;
         | 
| 38 | 
            +
            		padding: .2em;
         | 
| 39 | 
            +
                            -moz-border-radius: 5px;
         | 
| 40 | 
            +
                            -webkit-border-radius: 5px;
         | 
| 41 | 
            +
            	}
         | 
| 42 | 
            +
            	
         | 
| 43 | 
            +
            	
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            	.new {
         | 
| 46 | 
            +
            		color:#00adef !important;
         | 
| 47 | 
            +
            	}
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            	
         | 
| 50 | 
            +
            	.w-main {
         | 
| 51 | 
            +
            		width: 80%;
         | 
| 52 | 
            +
            	}
         | 
| 53 | 
            +
            	.centered {
         | 
| 54 | 
            +
            		margin-left: auto;
         | 
| 55 | 
            +
            		margin-right: auto;
         | 
| 56 | 
            +
            	}
         | 
| 57 | 
            +
            	.fs1 {
         | 
| 58 | 
            +
            		font-size: 2em;
         | 
| 59 | 
            +
            	}
         | 
| 60 | 
            +
            	header {
         | 
| 61 | 
            +
            		margin: 2em 0;
         | 
| 62 | 
            +
            		padding-bottom: .5em;
         | 
| 63 | 
            +
            		color: #666;
         | 
| 64 | 
            +
            		box-shadow: 0 2px #eee;
         | 
| 65 | 
            +
            	}
         | 
| 66 | 
            +
            	header h1 {
         | 
| 67 | 
            +
            		font-size: 2em;
         | 
| 68 | 
            +
            		font-weight: normal;
         | 
| 69 | 
            +
            	}
         | 
| 70 | 
            +
            	.clearfix:before, .clearfix:after { content: ""; display: table; }
         | 
| 71 | 
            +
            	.clearfix:after, .clear { clear: both; }
         | 
| 72 | 
            +
            	footer {
         | 
| 73 | 
            +
            		margin-top: 2em;
         | 
| 74 | 
            +
            		padding: .5em 0;
         | 
| 75 | 
            +
            		box-shadow: 0 -2px #eee;
         | 
| 76 | 
            +
            	}
         | 
| 77 | 
            +
            	a, a:visited {
         | 
| 78 | 
            +
            		color: #B35047;
         | 
| 79 | 
            +
            		text-decoration: none;
         | 
| 80 | 
            +
            	}
         | 
| 81 | 
            +
            	a:hover, a:focus {color: #000;}
         | 
| 82 | 
            +
            	
         | 
| 83 | 
            +
            	.box1 {
         | 
| 84 | 
            +
            		font-size: 16px;
         | 
| 85 | 
            +
            		display: inline-block;
         | 
| 86 | 
            +
            		width: 30%;
         | 
| 87 | 
            +
            		padding: .25em .5em;
         | 
| 88 | 
            +
            		margin: 20px 10px 0 0;
         | 
| 89 | 
            +
            	}
         | 
| 90 | 
            +
            </style>
         | 
| 91 | 
            +
            </head>
         | 
| 92 | 
            +
            <body>
         | 
| 93 | 
            +
            	<div class="w-main centered">
         | 
| 94 | 
            +
            	<section class="mtm clearfix" id="glyphs">
         | 
| 95 | 
            +
            	<div class="glyph">
         | 
| 96 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="!"></div>
         | 
| 97 | 
            +
            		<input type="text" readonly value="&#x21;" />
         | 
| 98 | 
            +
            	</div>
         | 
| 99 | 
            +
            	<div class="glyph">
         | 
| 100 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="""></div>
         | 
| 101 | 
            +
            		<input type="text" readonly value="&#x22;" />
         | 
| 102 | 
            +
            	</div>
         | 
| 103 | 
            +
            	<div class="glyph">
         | 
| 104 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="#"></div>
         | 
| 105 | 
            +
            		<input type="text" readonly value="&#x23;" />
         | 
| 106 | 
            +
            	</div>
         | 
| 107 | 
            +
            	<div class="glyph">
         | 
| 108 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="$"></div>
         | 
| 109 | 
            +
            		<input type="text" readonly value="&#x24;" />
         | 
| 110 | 
            +
            	</div>
         | 
| 111 | 
            +
            	<div class="glyph">
         | 
| 112 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="%"></div>
         | 
| 113 | 
            +
            		<input type="text" readonly value="&#x25;" />
         | 
| 114 | 
            +
            	</div>
         | 
| 115 | 
            +
            	<div class="glyph">
         | 
| 116 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="&"></div>
         | 
| 117 | 
            +
            		<input type="text" readonly value="&#x26;" />
         | 
| 118 | 
            +
            	</div>
         | 
| 119 | 
            +
            	<div class="glyph">
         | 
| 120 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="'"></div>
         | 
| 121 | 
            +
            		<input type="text" readonly value="&#x27;" />
         | 
| 122 | 
            +
            	</div>
         | 
| 123 | 
            +
            	<div class="glyph">
         | 
| 124 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="("></div>
         | 
| 125 | 
            +
            		<input type="text" readonly value="&#x28;" />
         | 
| 126 | 
            +
            	</div>
         | 
| 127 | 
            +
            	<div class="glyph">
         | 
| 128 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=")"></div>
         | 
| 129 | 
            +
            		<input type="text" readonly value="&#x29;" />
         | 
| 130 | 
            +
            	</div>
         | 
| 131 | 
            +
            	<div class="glyph">
         | 
| 132 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="*"></div>
         | 
| 133 | 
            +
            		<input type="text" readonly value="&#x2a;" />
         | 
| 134 | 
            +
            	</div>
         | 
| 135 | 
            +
            	<div class="glyph">
         | 
| 136 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="+"></div>
         | 
| 137 | 
            +
            		<input type="text" readonly value="&#x2b;" />
         | 
| 138 | 
            +
            	</div>
         | 
| 139 | 
            +
            	<div class="glyph">
         | 
| 140 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=","></div>
         | 
| 141 | 
            +
            		<input type="text" readonly value="&#x2c;" />
         | 
| 142 | 
            +
            	</div>
         | 
| 143 | 
            +
            	<div class="glyph">
         | 
| 144 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="-"></div>
         | 
| 145 | 
            +
            		<input type="text" readonly value="&#x2d;" />
         | 
| 146 | 
            +
            	</div>
         | 
| 147 | 
            +
            	<div class="glyph">
         | 
| 148 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="."></div>
         | 
| 149 | 
            +
            		<input type="text" readonly value="&#x2e;" />
         | 
| 150 | 
            +
            	</div>
         | 
| 151 | 
            +
            	<div class="glyph">
         | 
| 152 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="/"></div>
         | 
| 153 | 
            +
            		<input type="text" readonly value="&#x2f;" />
         | 
| 154 | 
            +
            	</div>
         | 
| 155 | 
            +
            	<div class="glyph">
         | 
| 156 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="0"></div>
         | 
| 157 | 
            +
            		<input type="text" readonly value="&#x30;" />
         | 
| 158 | 
            +
            	</div>
         | 
| 159 | 
            +
            	<div class="glyph">
         | 
| 160 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="1"></div>
         | 
| 161 | 
            +
            		<input type="text" readonly value="&#x31;" />
         | 
| 162 | 
            +
            	</div>
         | 
| 163 | 
            +
            	<div class="glyph">
         | 
| 164 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="2"></div>
         | 
| 165 | 
            +
            		<input type="text" readonly value="&#x32;" />
         | 
| 166 | 
            +
            	</div>
         | 
| 167 | 
            +
            	<div class="glyph">
         | 
| 168 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="3"></div>
         | 
| 169 | 
            +
            		<input type="text" readonly value="&#x33;" />
         | 
| 170 | 
            +
            	</div>
         | 
| 171 | 
            +
            	<div class="glyph">
         | 
| 172 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="4"></div>
         | 
| 173 | 
            +
            		<input type="text" readonly value="&#x34;" />
         | 
| 174 | 
            +
            	</div>
         | 
| 175 | 
            +
            	<div class="glyph">
         | 
| 176 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="5"></div>
         | 
| 177 | 
            +
            		<input type="text" readonly value="&#x35;" />
         | 
| 178 | 
            +
            	</div>
         | 
| 179 | 
            +
            	<div class="glyph">
         | 
| 180 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="6"></div>
         | 
| 181 | 
            +
            		<input type="text" readonly value="&#x36;" />
         | 
| 182 | 
            +
            	</div>
         | 
| 183 | 
            +
            	<div class="glyph">
         | 
| 184 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="7"></div>
         | 
| 185 | 
            +
            		<input type="text" readonly value="&#x37;" />
         | 
| 186 | 
            +
            	</div>
         | 
| 187 | 
            +
            	<div class="glyph">
         | 
| 188 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="8"></div>
         | 
| 189 | 
            +
            		<input type="text" readonly value="&#x38;" />
         | 
| 190 | 
            +
            	</div>
         | 
| 191 | 
            +
            	<div class="glyph">
         | 
| 192 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="9"></div>
         | 
| 193 | 
            +
            		<input type="text" readonly value="&#x39;" />
         | 
| 194 | 
            +
            	</div>
         | 
| 195 | 
            +
            	<div class="glyph">
         | 
| 196 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=":"></div>
         | 
| 197 | 
            +
            		<input type="text" readonly value="&#x3a;" />
         | 
| 198 | 
            +
            	</div>
         | 
| 199 | 
            +
            	<div class="glyph">
         | 
| 200 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=";"></div>
         | 
| 201 | 
            +
            		<input type="text" readonly value="&#x3b;" />
         | 
| 202 | 
            +
            	</div>
         | 
| 203 | 
            +
            	<div class="glyph">
         | 
| 204 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="<"></div>
         | 
| 205 | 
            +
            		<input type="text" readonly value="&#x3c;" />
         | 
| 206 | 
            +
            	</div>
         | 
| 207 | 
            +
            	<div class="glyph">
         | 
| 208 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="="></div>
         | 
| 209 | 
            +
            		<input type="text" readonly value="&#x3d;" />
         | 
| 210 | 
            +
            	</div>
         | 
| 211 | 
            +
            	<div class="glyph">
         | 
| 212 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=">"></div>
         | 
| 213 | 
            +
            		<input type="text" readonly value="&#x3e;" />
         | 
| 214 | 
            +
            	</div>
         | 
| 215 | 
            +
            	<div class="glyph">
         | 
| 216 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="?"></div>
         | 
| 217 | 
            +
            		<input type="text" readonly value="&#x3f;" />
         | 
| 218 | 
            +
            	</div>
         | 
| 219 | 
            +
            	<div class="glyph">
         | 
| 220 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="@"></div>
         | 
| 221 | 
            +
            		<input type="text" readonly value="&#x40;" />
         | 
| 222 | 
            +
            	</div>
         | 
| 223 | 
            +
            	<div class="glyph">
         | 
| 224 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="A"></div>
         | 
| 225 | 
            +
            		<input type="text" readonly value="&#x41;" />
         | 
| 226 | 
            +
            	</div>
         | 
| 227 | 
            +
            	<div class="glyph">
         | 
| 228 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="B"></div>
         | 
| 229 | 
            +
            		<input type="text" readonly value="&#x42;" />
         | 
| 230 | 
            +
            	</div>
         | 
| 231 | 
            +
            	<div class="glyph">
         | 
| 232 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="C"></div>
         | 
| 233 | 
            +
            		<input type="text" readonly value="&#x43;" />
         | 
| 234 | 
            +
            	</div>
         | 
| 235 | 
            +
            	<div class="glyph">
         | 
| 236 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="D"></div>
         | 
| 237 | 
            +
            		<input type="text" readonly value="&#x44;" />
         | 
| 238 | 
            +
            	</div>
         | 
| 239 | 
            +
            	<div class="glyph">
         | 
| 240 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="E"></div>
         | 
| 241 | 
            +
            		<input type="text" readonly value="&#x45;" />
         | 
| 242 | 
            +
            	</div>
         | 
| 243 | 
            +
            	<div class="glyph">
         | 
| 244 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="F"></div>
         | 
| 245 | 
            +
            		<input type="text" readonly value="&#x46;" />
         | 
| 246 | 
            +
            	</div>
         | 
| 247 | 
            +
            	<div class="glyph">
         | 
| 248 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="G"></div>
         | 
| 249 | 
            +
            		<input type="text" readonly value="&#x47;" />
         | 
| 250 | 
            +
            	</div>
         | 
| 251 | 
            +
            	<div class="glyph">
         | 
| 252 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="H"></div>
         | 
| 253 | 
            +
            		<input type="text" readonly value="&#x48;" />
         | 
| 254 | 
            +
            	</div>
         | 
| 255 | 
            +
            	<div class="glyph">
         | 
| 256 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="I"></div>
         | 
| 257 | 
            +
            		<input type="text" readonly value="&#x49;" />
         | 
| 258 | 
            +
            	</div>
         | 
| 259 | 
            +
            	<div class="glyph">
         | 
| 260 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="J"></div>
         | 
| 261 | 
            +
            		<input type="text" readonly value="&#x4a;" />
         | 
| 262 | 
            +
            	</div>
         | 
| 263 | 
            +
            	<div class="glyph">
         | 
| 264 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="K"></div>
         | 
| 265 | 
            +
            		<input type="text" readonly value="&#x4b;" />
         | 
| 266 | 
            +
            	</div>
         | 
| 267 | 
            +
            	<div class="glyph">
         | 
| 268 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="L"></div>
         | 
| 269 | 
            +
            		<input type="text" readonly value="&#x4c;" />
         | 
| 270 | 
            +
            	</div>
         | 
| 271 | 
            +
            	<div class="glyph">
         | 
| 272 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="M"></div>
         | 
| 273 | 
            +
            		<input type="text" readonly value="&#x4d;" />
         | 
| 274 | 
            +
            	</div>
         | 
| 275 | 
            +
            	<div class="glyph">
         | 
| 276 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="N"></div>
         | 
| 277 | 
            +
            		<input type="text" readonly value="&#x4e;" />
         | 
| 278 | 
            +
            	</div>
         | 
| 279 | 
            +
            	<div class="glyph">
         | 
| 280 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="O"></div>
         | 
| 281 | 
            +
            		<input type="text" readonly value="&#x4f;" />
         | 
| 282 | 
            +
            	</div>
         | 
| 283 | 
            +
            	<div class="glyph">
         | 
| 284 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="P"></div>
         | 
| 285 | 
            +
            		<input type="text" readonly value="&#x50;" />
         | 
| 286 | 
            +
            	</div>
         | 
| 287 | 
            +
            	<div class="glyph">
         | 
| 288 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="Q"></div>
         | 
| 289 | 
            +
            		<input type="text" readonly value="&#x51;" />
         | 
| 290 | 
            +
            	</div>
         | 
| 291 | 
            +
            	<div class="glyph">
         | 
| 292 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="R"></div>
         | 
| 293 | 
            +
            		<input type="text" readonly value="&#x52;" />
         | 
| 294 | 
            +
            	</div>
         | 
| 295 | 
            +
            	<div class="glyph">
         | 
| 296 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="S"></div>
         | 
| 297 | 
            +
            		<input type="text" readonly value="&#x53;" />
         | 
| 298 | 
            +
            	</div>
         | 
| 299 | 
            +
            	<div class="glyph">
         | 
| 300 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="T"></div>
         | 
| 301 | 
            +
            		<input type="text" readonly value="&#x54;" />
         | 
| 302 | 
            +
            	</div>
         | 
| 303 | 
            +
            	<div class="glyph">
         | 
| 304 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="U"></div>
         | 
| 305 | 
            +
            		<input type="text" readonly value="&#x55;" />
         | 
| 306 | 
            +
            	</div>
         | 
| 307 | 
            +
            	<div class="glyph">
         | 
| 308 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="V"></div>
         | 
| 309 | 
            +
            		<input type="text" readonly value="&#x56;" />
         | 
| 310 | 
            +
            	</div>
         | 
| 311 | 
            +
            	<div class="glyph">
         | 
| 312 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="W"></div>
         | 
| 313 | 
            +
            		<input type="text" readonly value="&#x57;" />
         | 
| 314 | 
            +
            	</div>
         | 
| 315 | 
            +
            	<div class="glyph">
         | 
| 316 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="X"></div>
         | 
| 317 | 
            +
            		<input type="text" readonly value="&#x58;" />
         | 
| 318 | 
            +
            	</div>
         | 
| 319 | 
            +
            	<div class="glyph">
         | 
| 320 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="Y"></div>
         | 
| 321 | 
            +
            		<input type="text" readonly value="&#x59;" />
         | 
| 322 | 
            +
            	</div>
         | 
| 323 | 
            +
            	<div class="glyph">
         | 
| 324 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="Z"></div>
         | 
| 325 | 
            +
            		<input type="text" readonly value="&#x5a;" />
         | 
| 326 | 
            +
            	</div>
         | 
| 327 | 
            +
            	<div class="glyph">
         | 
| 328 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="["></div>
         | 
| 329 | 
            +
            		<input type="text" readonly value="&#x5b;" />
         | 
| 330 | 
            +
            	</div>
         | 
| 331 | 
            +
            	<div class="glyph">
         | 
| 332 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="\"></div>
         | 
| 333 | 
            +
            		<input type="text" readonly value="&#x5c;" />
         | 
| 334 | 
            +
            	</div>
         | 
| 335 | 
            +
            	<div class="glyph">
         | 
| 336 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="]"></div>
         | 
| 337 | 
            +
            		<input type="text" readonly value="&#x5d;" />
         | 
| 338 | 
            +
            	</div>
         | 
| 339 | 
            +
            	<div class="glyph">
         | 
| 340 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="^"></div>
         | 
| 341 | 
            +
            		<input type="text" readonly value="&#x5e;" />
         | 
| 342 | 
            +
            	</div>
         | 
| 343 | 
            +
            	<div class="glyph">
         | 
| 344 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="_"></div>
         | 
| 345 | 
            +
            		<input type="text" readonly value="&#x5f;" />
         | 
| 346 | 
            +
            	</div>
         | 
| 347 | 
            +
            	<div class="glyph">
         | 
| 348 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="`"></div>
         | 
| 349 | 
            +
            		<input type="text" readonly value="&#x60;" />
         | 
| 350 | 
            +
            	</div>
         | 
| 351 | 
            +
            	<div class="glyph">
         | 
| 352 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="a"></div>
         | 
| 353 | 
            +
            		<input type="text" readonly value="&#x61;" />
         | 
| 354 | 
            +
            	</div>
         | 
| 355 | 
            +
            	<div class="glyph">
         | 
| 356 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="b"></div>
         | 
| 357 | 
            +
            		<input type="text" readonly value="&#x62;" />
         | 
| 358 | 
            +
            	</div>
         | 
| 359 | 
            +
            	<div class="glyph">
         | 
| 360 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="c"></div>
         | 
| 361 | 
            +
            		<input type="text" readonly value="&#x63;" />
         | 
| 362 | 
            +
            	</div>
         | 
| 363 | 
            +
            	<div class="glyph">
         | 
| 364 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="d"></div>
         | 
| 365 | 
            +
            		<input type="text" readonly value="&#x64;" />
         | 
| 366 | 
            +
            	</div>
         | 
| 367 | 
            +
            	<div class="glyph">
         | 
| 368 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="e"></div>
         | 
| 369 | 
            +
            		<input type="text" readonly value="&#x65;" />
         | 
| 370 | 
            +
            	</div>
         | 
| 371 | 
            +
            	<div class="glyph">
         | 
| 372 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="f"></div>
         | 
| 373 | 
            +
            		<input type="text" readonly value="&#x66;" />
         | 
| 374 | 
            +
            	</div>
         | 
| 375 | 
            +
            	<div class="glyph">
         | 
| 376 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="g"></div>
         | 
| 377 | 
            +
            		<input type="text" readonly value="&#x67;" />
         | 
| 378 | 
            +
            	</div>
         | 
| 379 | 
            +
            	<div class="glyph">
         | 
| 380 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="h"></div>
         | 
| 381 | 
            +
            		<input type="text" readonly value="&#x68;" />
         | 
| 382 | 
            +
            	</div>
         | 
| 383 | 
            +
            	<div class="glyph">
         | 
| 384 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="i"></div>
         | 
| 385 | 
            +
            		<input type="text" readonly value="&#x69;" />
         | 
| 386 | 
            +
            	</div>
         | 
| 387 | 
            +
            	<div class="glyph">
         | 
| 388 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="j"></div>
         | 
| 389 | 
            +
            		<input type="text" readonly value="&#x6a;" />
         | 
| 390 | 
            +
            	</div>
         | 
| 391 | 
            +
            	<div class="glyph">
         | 
| 392 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="k"></div>
         | 
| 393 | 
            +
            		<input type="text" readonly value="&#x6b;" />
         | 
| 394 | 
            +
            	</div>
         | 
| 395 | 
            +
            	<div class="glyph">
         | 
| 396 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="l"></div>
         | 
| 397 | 
            +
            		<input type="text" readonly value="&#x6c;" />
         | 
| 398 | 
            +
            	</div>
         | 
| 399 | 
            +
            	<div class="glyph">
         | 
| 400 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="m"></div>
         | 
| 401 | 
            +
            		<input type="text" readonly value="&#x6d;" />
         | 
| 402 | 
            +
            	</div>
         | 
| 403 | 
            +
            	<div class="glyph">
         | 
| 404 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="n"></div>
         | 
| 405 | 
            +
            		<input type="text" readonly value="&#x6e;" />
         | 
| 406 | 
            +
            	</div>
         | 
| 407 | 
            +
            	<div class="glyph">
         | 
| 408 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="o"></div>
         | 
| 409 | 
            +
            		<input type="text" readonly value="&#x6f;" />
         | 
| 410 | 
            +
            	</div>
         | 
| 411 | 
            +
            	<div class="glyph">
         | 
| 412 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="p"></div>
         | 
| 413 | 
            +
            		<input type="text" readonly value="&#x70;" />
         | 
| 414 | 
            +
            	</div>
         | 
| 415 | 
            +
            	<div class="glyph">
         | 
| 416 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="q"></div>
         | 
| 417 | 
            +
            		<input type="text" readonly value="&#x71;" />
         | 
| 418 | 
            +
            	</div>
         | 
| 419 | 
            +
            	<div class="glyph">
         | 
| 420 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="r"></div>
         | 
| 421 | 
            +
            		<input type="text" readonly value="&#x72;" />
         | 
| 422 | 
            +
            	</div>
         | 
| 423 | 
            +
            	<div class="glyph">
         | 
| 424 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="s"></div>
         | 
| 425 | 
            +
            		<input type="text" readonly value="&#x73;" />
         | 
| 426 | 
            +
            	</div>
         | 
| 427 | 
            +
            	<div class="glyph">
         | 
| 428 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="t"></div>
         | 
| 429 | 
            +
            		<input type="text" readonly value="&#x74;" />
         | 
| 430 | 
            +
            	</div>
         | 
| 431 | 
            +
            	<div class="glyph">
         | 
| 432 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="u"></div>
         | 
| 433 | 
            +
            		<input type="text" readonly value="&#x75;" />
         | 
| 434 | 
            +
            	</div>
         | 
| 435 | 
            +
            	<div class="glyph">
         | 
| 436 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="v"></div>
         | 
| 437 | 
            +
            		<input type="text" readonly value="&#x76;" />
         | 
| 438 | 
            +
            	</div>
         | 
| 439 | 
            +
            	<div class="glyph">
         | 
| 440 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="w"></div>
         | 
| 441 | 
            +
            		<input type="text" readonly value="&#x77;" />
         | 
| 442 | 
            +
            	</div>
         | 
| 443 | 
            +
            	<div class="glyph">
         | 
| 444 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="x"></div>
         | 
| 445 | 
            +
            		<input type="text" readonly value="&#x78;" />
         | 
| 446 | 
            +
            	</div>
         | 
| 447 | 
            +
            	<div class="glyph">
         | 
| 448 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="y"></div>
         | 
| 449 | 
            +
            		<input type="text" readonly value="&#x79;" />
         | 
| 450 | 
            +
            	</div>
         | 
| 451 | 
            +
            	<div class="glyph">
         | 
| 452 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="z"></div>
         | 
| 453 | 
            +
            		<input type="text" readonly value="&#x7a;" />
         | 
| 454 | 
            +
            	</div>
         | 
| 455 | 
            +
            	<div class="glyph">
         | 
| 456 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="{"></div>
         | 
| 457 | 
            +
            		<input type="text" readonly value="&#x7b;" />
         | 
| 458 | 
            +
            	</div>
         | 
| 459 | 
            +
            	<div class="glyph">
         | 
| 460 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="|"></div>
         | 
| 461 | 
            +
            		<input type="text" readonly value="&#x7c;" />
         | 
| 462 | 
            +
            	</div>
         | 
| 463 | 
            +
            	<div class="glyph">
         | 
| 464 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="}"></div>
         | 
| 465 | 
            +
            		<input type="text" readonly value="&#x7d;" />
         | 
| 466 | 
            +
            	</div>
         | 
| 467 | 
            +
            	<div class="glyph">
         | 
| 468 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon="~"></div>
         | 
| 469 | 
            +
            		<input type="text" readonly value="&#x7e;" />
         | 
| 470 | 
            +
            	</div>
         | 
| 471 | 
            +
            	<div class="glyph">
         | 
| 472 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 473 | 
            +
            		<input type="text" readonly value="&#xe000;" />
         | 
| 474 | 
            +
            	</div>
         | 
| 475 | 
            +
            	<div class="glyph">
         | 
| 476 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 477 | 
            +
            		<input type="text" readonly value="&#xe001;" />
         | 
| 478 | 
            +
            	</div>
         | 
| 479 | 
            +
            	<div class="glyph">
         | 
| 480 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 481 | 
            +
            		<input type="text" readonly value="&#xe002;" />
         | 
| 482 | 
            +
            	</div>
         | 
| 483 | 
            +
            	<div class="glyph">
         | 
| 484 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 485 | 
            +
            		<input type="text" readonly value="&#xe003;" />
         | 
| 486 | 
            +
            	</div>
         | 
| 487 | 
            +
            	<div class="glyph">
         | 
| 488 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 489 | 
            +
            		<input type="text" readonly value="&#xe004;" />
         | 
| 490 | 
            +
            	</div>
         | 
| 491 | 
            +
            	<div class="glyph">
         | 
| 492 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 493 | 
            +
            		<input type="text" readonly value="&#xe005;" />
         | 
| 494 | 
            +
            	</div>
         | 
| 495 | 
            +
            	<div class="glyph">
         | 
| 496 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 497 | 
            +
            		<input type="text" readonly value="&#xe006;" />
         | 
| 498 | 
            +
            	</div>
         | 
| 499 | 
            +
            	<div class="glyph">
         | 
| 500 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 501 | 
            +
            		<input type="text" readonly value="&#xe007;" />
         | 
| 502 | 
            +
            	</div>
         | 
| 503 | 
            +
            	<div class="glyph">
         | 
| 504 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 505 | 
            +
            		<input type="text" readonly value="&#xe008;" />
         | 
| 506 | 
            +
            	</div>
         | 
| 507 | 
            +
            	<div class="glyph">
         | 
| 508 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 509 | 
            +
            		<input type="text" readonly value="&#xe009;" />
         | 
| 510 | 
            +
            	</div>
         | 
| 511 | 
            +
            	<div class="glyph">
         | 
| 512 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 513 | 
            +
            		<input type="text" readonly value="&#xe00a;" />
         | 
| 514 | 
            +
            	</div>
         | 
| 515 | 
            +
            	<div class="glyph">
         | 
| 516 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 517 | 
            +
            		<input type="text" readonly value="&#xe00b;" />
         | 
| 518 | 
            +
            	</div>
         | 
| 519 | 
            +
            	<div class="glyph">
         | 
| 520 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 521 | 
            +
            		<input type="text" readonly value="&#xe00c;" />
         | 
| 522 | 
            +
            	</div>
         | 
| 523 | 
            +
            	<div class="glyph">
         | 
| 524 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 525 | 
            +
            		<input type="text" readonly value="&#xe00d;" />
         | 
| 526 | 
            +
            	</div>
         | 
| 527 | 
            +
            	<div class="glyph">
         | 
| 528 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 529 | 
            +
            		<input type="text" readonly value="&#xe00e;" />
         | 
| 530 | 
            +
            	</div>
         | 
| 531 | 
            +
            	<div class="glyph">
         | 
| 532 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 533 | 
            +
            		<input type="text" readonly value="&#xe00f;" />
         | 
| 534 | 
            +
            	</div>
         | 
| 535 | 
            +
            	<div class="glyph">
         | 
| 536 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 537 | 
            +
            		<input type="text" readonly value="&#xe010;" />
         | 
| 538 | 
            +
            	</div>
         | 
| 539 | 
            +
            	<div class="glyph">
         | 
| 540 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 541 | 
            +
            		<input type="text" readonly value="&#xe011;" />
         | 
| 542 | 
            +
            	</div>
         | 
| 543 | 
            +
            	<div class="glyph">
         | 
| 544 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 545 | 
            +
            		<input type="text" readonly value="&#xe012;" />
         | 
| 546 | 
            +
            	</div>
         | 
| 547 | 
            +
            	<div class="glyph">
         | 
| 548 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 549 | 
            +
            		<input type="text" readonly value="&#xe013;" />
         | 
| 550 | 
            +
            	</div>
         | 
| 551 | 
            +
            	<div class="glyph">
         | 
| 552 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 553 | 
            +
            		<input type="text" readonly value="&#xe014;" />
         | 
| 554 | 
            +
            	</div>
         | 
| 555 | 
            +
            	<div class="glyph">
         | 
| 556 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 557 | 
            +
            		<input type="text" readonly value="&#xe015;" />
         | 
| 558 | 
            +
            	</div>
         | 
| 559 | 
            +
            	<div class="glyph">
         | 
| 560 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 561 | 
            +
            		<input type="text" readonly value="&#xe016;" />
         | 
| 562 | 
            +
            	</div>
         | 
| 563 | 
            +
            	<div class="glyph">
         | 
| 564 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 565 | 
            +
            		<input type="text" readonly value="&#xe017;" />
         | 
| 566 | 
            +
            	</div>
         | 
| 567 | 
            +
            	<div class="glyph">
         | 
| 568 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 569 | 
            +
            		<input type="text" readonly value="&#xe018;" />
         | 
| 570 | 
            +
            	</div>
         | 
| 571 | 
            +
            	<div class="glyph">
         | 
| 572 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 573 | 
            +
            		<input type="text" readonly value="&#xe019;" />
         | 
| 574 | 
            +
            	</div>
         | 
| 575 | 
            +
            	<div class="glyph">
         | 
| 576 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 577 | 
            +
            		<input type="text" readonly value="&#xe01a;" />
         | 
| 578 | 
            +
            	</div>
         | 
| 579 | 
            +
            	<div class="glyph">
         | 
| 580 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 581 | 
            +
            		<input type="text" readonly value="&#xe01b;" />
         | 
| 582 | 
            +
            	</div>
         | 
| 583 | 
            +
            	<div class="glyph">
         | 
| 584 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 585 | 
            +
            		<input type="text" readonly value="&#xe01c;" />
         | 
| 586 | 
            +
            	</div>
         | 
| 587 | 
            +
            	<div class="glyph">
         | 
| 588 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 589 | 
            +
            		<input type="text" readonly value="&#xe01d;" />
         | 
| 590 | 
            +
            	</div>
         | 
| 591 | 
            +
            	<div class="glyph">
         | 
| 592 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 593 | 
            +
            		<input type="text" readonly value="&#xe01e;" />
         | 
| 594 | 
            +
            	</div>
         | 
| 595 | 
            +
            	<div class="glyph">
         | 
| 596 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 597 | 
            +
            		<input type="text" readonly value="&#xe01f;" />
         | 
| 598 | 
            +
            	</div>
         | 
| 599 | 
            +
            	<div class="glyph">
         | 
| 600 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 601 | 
            +
            		<input type="text" readonly value="&#xe020;" />
         | 
| 602 | 
            +
            	</div>
         | 
| 603 | 
            +
            	<div class="glyph">
         | 
| 604 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 605 | 
            +
            		<input type="text" readonly value="&#xe021;" />
         | 
| 606 | 
            +
            	</div>
         | 
| 607 | 
            +
            	<div class="glyph">
         | 
| 608 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 609 | 
            +
            		<input type="text" readonly value="&#xe022;" />
         | 
| 610 | 
            +
            	</div>
         | 
| 611 | 
            +
            	<div class="glyph">
         | 
| 612 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 613 | 
            +
            		<input type="text" readonly value="&#xe023;" />
         | 
| 614 | 
            +
            	</div>
         | 
| 615 | 
            +
            	<div class="glyph">
         | 
| 616 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 617 | 
            +
            		<input type="text" readonly value="&#xe024;" />
         | 
| 618 | 
            +
            	</div>
         | 
| 619 | 
            +
            	<div class="glyph">
         | 
| 620 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 621 | 
            +
            		<input type="text" readonly value="&#xe025;" />
         | 
| 622 | 
            +
            	</div>
         | 
| 623 | 
            +
            	<div class="glyph">
         | 
| 624 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 625 | 
            +
            		<input type="text" readonly value="&#xe026;" />
         | 
| 626 | 
            +
            	</div>
         | 
| 627 | 
            +
            	<div class="glyph">
         | 
| 628 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 629 | 
            +
            		<input type="text" readonly value="&#xe027;" />
         | 
| 630 | 
            +
            	</div>
         | 
| 631 | 
            +
            	<div class="glyph">
         | 
| 632 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 633 | 
            +
            		<input type="text" readonly value="&#xe028;" />
         | 
| 634 | 
            +
            	</div>
         | 
| 635 | 
            +
            	<div class="glyph">
         | 
| 636 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 637 | 
            +
            		<input type="text" readonly value="&#xe029;" />
         | 
| 638 | 
            +
            	</div>
         | 
| 639 | 
            +
            	<div class="glyph">
         | 
| 640 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 641 | 
            +
            		<input type="text" readonly value="&#xe02a;" />
         | 
| 642 | 
            +
            	</div>
         | 
| 643 | 
            +
            	<div class="glyph">
         | 
| 644 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 645 | 
            +
            		<input type="text" readonly value="&#xe02b;" />
         | 
| 646 | 
            +
            	</div>
         | 
| 647 | 
            +
            	<div class="glyph">
         | 
| 648 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 649 | 
            +
            		<input type="text" readonly value="&#xe02c;" />
         | 
| 650 | 
            +
            	</div>
         | 
| 651 | 
            +
            	<div class="glyph">
         | 
| 652 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 653 | 
            +
            		<input type="text" readonly value="&#xe02d;" />
         | 
| 654 | 
            +
            	</div>
         | 
| 655 | 
            +
            	<div class="glyph">
         | 
| 656 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 657 | 
            +
            		<input type="text" readonly value="&#xe02e;" />
         | 
| 658 | 
            +
            	</div>
         | 
| 659 | 
            +
            	<div class="glyph">
         | 
| 660 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 661 | 
            +
            		<input type="text" readonly value="&#xe02f;" />
         | 
| 662 | 
            +
            	</div>
         | 
| 663 | 
            +
            	<div class="glyph">
         | 
| 664 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 665 | 
            +
            		<input type="text" readonly value="&#xe030;" />
         | 
| 666 | 
            +
            	</div>
         | 
| 667 | 
            +
                
         | 
| 668 | 
            +
                <div class="new">
         | 
| 669 | 
            +
                
         | 
| 670 | 
            +
                <div class="glyph">
         | 
| 671 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 672 | 
            +
            		<input type="text" readonly value="&#xe103;" />
         | 
| 673 | 
            +
            	</div>
         | 
| 674 | 
            +
            	<div class="glyph">
         | 
| 675 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 676 | 
            +
            		<input type="text" readonly value="&#xe0ee;" />
         | 
| 677 | 
            +
            	</div>
         | 
| 678 | 
            +
            	<div class="glyph">
         | 
| 679 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 680 | 
            +
            		<input type="text" readonly value="&#xe0ef;" />
         | 
| 681 | 
            +
            	</div>
         | 
| 682 | 
            +
            	<div class="glyph">
         | 
| 683 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 684 | 
            +
            		<input type="text" readonly value="&#xe0e8;" />
         | 
| 685 | 
            +
            	</div>
         | 
| 686 | 
            +
            	<div class="glyph">
         | 
| 687 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 688 | 
            +
            		<input type="text" readonly value="&#xe0ea;" />
         | 
| 689 | 
            +
            	</div>
         | 
| 690 | 
            +
            	<div class="glyph">
         | 
| 691 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 692 | 
            +
            		<input type="text" readonly value="&#xe101;" />
         | 
| 693 | 
            +
            	</div>
         | 
| 694 | 
            +
            	<div class="glyph">
         | 
| 695 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 696 | 
            +
            		<input type="text" readonly value="&#xe107;" />
         | 
| 697 | 
            +
            	</div>
         | 
| 698 | 
            +
            	<div class="glyph">
         | 
| 699 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 700 | 
            +
            		<input type="text" readonly value="&#xe108;" />
         | 
| 701 | 
            +
            	</div>
         | 
| 702 | 
            +
            	<div class="glyph">
         | 
| 703 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 704 | 
            +
            		<input type="text" readonly value="&#xe102;" />
         | 
| 705 | 
            +
            	</div>
         | 
| 706 | 
            +
            	<div class="glyph">
         | 
| 707 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 708 | 
            +
            		<input type="text" readonly value="&#xe106;" />
         | 
| 709 | 
            +
            	</div>
         | 
| 710 | 
            +
            	<div class="glyph">
         | 
| 711 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 712 | 
            +
            		<input type="text" readonly value="&#xe0eb;" />
         | 
| 713 | 
            +
            	</div>
         | 
| 714 | 
            +
            	<div class="glyph">
         | 
| 715 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 716 | 
            +
            		<input type="text" readonly value="&#xe105;" />
         | 
| 717 | 
            +
            	</div>
         | 
| 718 | 
            +
            	<div class="glyph">
         | 
| 719 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 720 | 
            +
            		<input type="text" readonly value="&#xe0ed;" />
         | 
| 721 | 
            +
            	</div>
         | 
| 722 | 
            +
            	<div class="glyph">
         | 
| 723 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 724 | 
            +
            		<input type="text" readonly value="&#xe100;" />
         | 
| 725 | 
            +
            	</div>
         | 
| 726 | 
            +
            	<div class="glyph">
         | 
| 727 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 728 | 
            +
            		<input type="text" readonly value="&#xe104;" />
         | 
| 729 | 
            +
            	</div>
         | 
| 730 | 
            +
            	<div class="glyph">
         | 
| 731 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 732 | 
            +
            		<input type="text" readonly value="&#xe0e9;" />
         | 
| 733 | 
            +
            	</div>
         | 
| 734 | 
            +
            	<div class="glyph">
         | 
| 735 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 736 | 
            +
            		<input type="text" readonly value="&#xe109;" />
         | 
| 737 | 
            +
            	</div>
         | 
| 738 | 
            +
            	<div class="glyph">
         | 
| 739 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 740 | 
            +
            		<input type="text" readonly value="&#xe0ec;" />
         | 
| 741 | 
            +
            	</div>
         | 
| 742 | 
            +
            	<div class="glyph">
         | 
| 743 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 744 | 
            +
            		<input type="text" readonly value="&#xe0fe;" />
         | 
| 745 | 
            +
            	</div>
         | 
| 746 | 
            +
            	<div class="glyph">
         | 
| 747 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 748 | 
            +
            		<input type="text" readonly value="&#xe0f6;" />
         | 
| 749 | 
            +
            	</div>
         | 
| 750 | 
            +
            	<div class="glyph">
         | 
| 751 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 752 | 
            +
            		<input type="text" readonly value="&#xe0fb;" />
         | 
| 753 | 
            +
            	</div>
         | 
| 754 | 
            +
            	<div class="glyph">
         | 
| 755 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 756 | 
            +
            		<input type="text" readonly value="&#xe0e2;" />
         | 
| 757 | 
            +
            	</div>
         | 
| 758 | 
            +
            	<div class="glyph">
         | 
| 759 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 760 | 
            +
            		<input type="text" readonly value="&#xe0e3;" />
         | 
| 761 | 
            +
            	</div>
         | 
| 762 | 
            +
            	<div class="glyph">
         | 
| 763 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 764 | 
            +
            		<input type="text" readonly value="&#xe0f5;" />
         | 
| 765 | 
            +
            	</div>
         | 
| 766 | 
            +
            	<div class="glyph">
         | 
| 767 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 768 | 
            +
            		<input type="text" readonly value="&#xe0e1;" />
         | 
| 769 | 
            +
            	</div>
         | 
| 770 | 
            +
            	<div class="glyph">
         | 
| 771 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 772 | 
            +
            		<input type="text" readonly value="&#xe0ff;" />
         | 
| 773 | 
            +
            	</div>
         | 
| 774 | 
            +
                
         | 
| 775 | 
            +
                </div>
         | 
| 776 | 
            +
                
         | 
| 777 | 
            +
            	<div class="glyph">
         | 
| 778 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 779 | 
            +
            		<input type="text" readonly value="&#xe031;" />
         | 
| 780 | 
            +
            	</div>
         | 
| 781 | 
            +
            	<div class="glyph">
         | 
| 782 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 783 | 
            +
            		<input type="text" readonly value="&#xe032;" />
         | 
| 784 | 
            +
            	</div>
         | 
| 785 | 
            +
            	<div class="glyph">
         | 
| 786 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 787 | 
            +
            		<input type="text" readonly value="&#xe033;" />
         | 
| 788 | 
            +
            	</div>
         | 
| 789 | 
            +
            	<div class="glyph">
         | 
| 790 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 791 | 
            +
            		<input type="text" readonly value="&#xe034;" />
         | 
| 792 | 
            +
            	</div>
         | 
| 793 | 
            +
            	<div class="glyph">
         | 
| 794 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 795 | 
            +
            		<input type="text" readonly value="&#xe035;" />
         | 
| 796 | 
            +
            	</div>
         | 
| 797 | 
            +
            	<div class="glyph">
         | 
| 798 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 799 | 
            +
            		<input type="text" readonly value="&#xe036;" />
         | 
| 800 | 
            +
            	</div>
         | 
| 801 | 
            +
            	<div class="glyph">
         | 
| 802 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 803 | 
            +
            		<input type="text" readonly value="&#xe037;" />
         | 
| 804 | 
            +
            	</div>
         | 
| 805 | 
            +
            	<div class="glyph">
         | 
| 806 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 807 | 
            +
            		<input type="text" readonly value="&#xe038;" />
         | 
| 808 | 
            +
            	</div>
         | 
| 809 | 
            +
            	<div class="glyph">
         | 
| 810 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 811 | 
            +
            		<input type="text" readonly value="&#xe039;" />
         | 
| 812 | 
            +
            	</div>
         | 
| 813 | 
            +
            	<div class="glyph">
         | 
| 814 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 815 | 
            +
            		<input type="text" readonly value="&#xe03a;" />
         | 
| 816 | 
            +
            	</div>
         | 
| 817 | 
            +
            	<div class="glyph">
         | 
| 818 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 819 | 
            +
            		<input type="text" readonly value="&#xe03b;" />
         | 
| 820 | 
            +
            	</div>
         | 
| 821 | 
            +
            	<div class="glyph">
         | 
| 822 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 823 | 
            +
            		<input type="text" readonly value="&#xe03c;" />
         | 
| 824 | 
            +
            	</div>
         | 
| 825 | 
            +
            	<div class="glyph">
         | 
| 826 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 827 | 
            +
            		<input type="text" readonly value="&#xe03d;" />
         | 
| 828 | 
            +
            	</div>
         | 
| 829 | 
            +
            	<div class="glyph">
         | 
| 830 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 831 | 
            +
            		<input type="text" readonly value="&#xe03e;" />
         | 
| 832 | 
            +
            	</div>
         | 
| 833 | 
            +
            	<div class="glyph">
         | 
| 834 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 835 | 
            +
            		<input type="text" readonly value="&#xe03f;" />
         | 
| 836 | 
            +
            	</div>
         | 
| 837 | 
            +
            	<div class="glyph">
         | 
| 838 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 839 | 
            +
            		<input type="text" readonly value="&#xe040;" />
         | 
| 840 | 
            +
            	</div>
         | 
| 841 | 
            +
            	<div class="glyph">
         | 
| 842 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 843 | 
            +
            		<input type="text" readonly value="&#xe041;" />
         | 
| 844 | 
            +
            	</div>
         | 
| 845 | 
            +
            	<div class="glyph">
         | 
| 846 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 847 | 
            +
            		<input type="text" readonly value="&#xe042;" />
         | 
| 848 | 
            +
            	</div>
         | 
| 849 | 
            +
            	<div class="glyph">
         | 
| 850 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 851 | 
            +
            		<input type="text" readonly value="&#xe043;" />
         | 
| 852 | 
            +
            	</div>
         | 
| 853 | 
            +
            	<div class="glyph">
         | 
| 854 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 855 | 
            +
            		<input type="text" readonly value="&#xe044;" />
         | 
| 856 | 
            +
            	</div>
         | 
| 857 | 
            +
            	<div class="glyph">
         | 
| 858 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 859 | 
            +
            		<input type="text" readonly value="&#xe045;" />
         | 
| 860 | 
            +
            	</div>
         | 
| 861 | 
            +
            	<div class="glyph">
         | 
| 862 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 863 | 
            +
            		<input type="text" readonly value="&#xe046;" />
         | 
| 864 | 
            +
            	</div>
         | 
| 865 | 
            +
            	<div class="glyph">
         | 
| 866 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 867 | 
            +
            		<input type="text" readonly value="&#xe047;" />
         | 
| 868 | 
            +
            	</div>
         | 
| 869 | 
            +
            	<div class="glyph">
         | 
| 870 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 871 | 
            +
            		<input type="text" readonly value="&#xe048;" />
         | 
| 872 | 
            +
            	</div>
         | 
| 873 | 
            +
            	<div class="glyph">
         | 
| 874 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 875 | 
            +
            		<input type="text" readonly value="&#xe049;" />
         | 
| 876 | 
            +
            	</div>
         | 
| 877 | 
            +
            	<div class="glyph">
         | 
| 878 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 879 | 
            +
            		<input type="text" readonly value="&#xe04a;" />
         | 
| 880 | 
            +
            	</div>
         | 
| 881 | 
            +
            	<div class="glyph">
         | 
| 882 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 883 | 
            +
            		<input type="text" readonly value="&#xe04b;" />
         | 
| 884 | 
            +
            	</div>
         | 
| 885 | 
            +
            	<div class="glyph">
         | 
| 886 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 887 | 
            +
            		<input type="text" readonly value="&#xe04c;" />
         | 
| 888 | 
            +
            	</div>
         | 
| 889 | 
            +
            	<div class="glyph">
         | 
| 890 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 891 | 
            +
            		<input type="text" readonly value="&#xe04d;" />
         | 
| 892 | 
            +
            	</div>
         | 
| 893 | 
            +
            	<div class="glyph">
         | 
| 894 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 895 | 
            +
            		<input type="text" readonly value="&#xe04e;" />
         | 
| 896 | 
            +
            	</div>
         | 
| 897 | 
            +
            	<div class="glyph">
         | 
| 898 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 899 | 
            +
            		<input type="text" readonly value="&#xe04f;" />
         | 
| 900 | 
            +
            	</div>
         | 
| 901 | 
            +
            	<div class="glyph">
         | 
| 902 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 903 | 
            +
            		<input type="text" readonly value="&#xe050;" />
         | 
| 904 | 
            +
            	</div>
         | 
| 905 | 
            +
            	<div class="glyph">
         | 
| 906 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 907 | 
            +
            		<input type="text" readonly value="&#xe051;" />
         | 
| 908 | 
            +
            	</div>
         | 
| 909 | 
            +
            	<div class="glyph">
         | 
| 910 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 911 | 
            +
            		<input type="text" readonly value="&#xe052;" />
         | 
| 912 | 
            +
            	</div>
         | 
| 913 | 
            +
            	<div class="glyph">
         | 
| 914 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 915 | 
            +
            		<input type="text" readonly value="&#xe053;" />
         | 
| 916 | 
            +
            	</div>
         | 
| 917 | 
            +
            	<div class="glyph">
         | 
| 918 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 919 | 
            +
            		<input type="text" readonly value="&#xe054;" />
         | 
| 920 | 
            +
            	</div>
         | 
| 921 | 
            +
            	<div class="glyph">
         | 
| 922 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 923 | 
            +
            		<input type="text" readonly value="&#xe055;" />
         | 
| 924 | 
            +
            	</div>
         | 
| 925 | 
            +
            	<div class="glyph">
         | 
| 926 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 927 | 
            +
            		<input type="text" readonly value="&#xe056;" />
         | 
| 928 | 
            +
            	</div>
         | 
| 929 | 
            +
            	<div class="glyph">
         | 
| 930 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 931 | 
            +
            		<input type="text" readonly value="&#xe057;" />
         | 
| 932 | 
            +
            	</div>
         | 
| 933 | 
            +
            	<div class="glyph">
         | 
| 934 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 935 | 
            +
            		<input type="text" readonly value="&#xe058;" />
         | 
| 936 | 
            +
            	</div>
         | 
| 937 | 
            +
            	<div class="glyph">
         | 
| 938 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 939 | 
            +
            		<input type="text" readonly value="&#xe059;" />
         | 
| 940 | 
            +
            	</div>
         | 
| 941 | 
            +
            	<div class="glyph">
         | 
| 942 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 943 | 
            +
            		<input type="text" readonly value="&#xe05a;" />
         | 
| 944 | 
            +
            	</div>
         | 
| 945 | 
            +
            	<div class="glyph">
         | 
| 946 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 947 | 
            +
            		<input type="text" readonly value="&#xe05b;" />
         | 
| 948 | 
            +
            	</div>
         | 
| 949 | 
            +
            	<div class="glyph">
         | 
| 950 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 951 | 
            +
            		<input type="text" readonly value="&#xe05c;" />
         | 
| 952 | 
            +
            	</div>
         | 
| 953 | 
            +
            	<div class="glyph">
         | 
| 954 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 955 | 
            +
            		<input type="text" readonly value="&#xe05d;" />
         | 
| 956 | 
            +
            	</div>
         | 
| 957 | 
            +
            	<div class="glyph">
         | 
| 958 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 959 | 
            +
            		<input type="text" readonly value="&#xe05e;" />
         | 
| 960 | 
            +
            	</div>
         | 
| 961 | 
            +
            	<div class="glyph">
         | 
| 962 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 963 | 
            +
            		<input type="text" readonly value="&#xe05f;" />
         | 
| 964 | 
            +
            	</div>
         | 
| 965 | 
            +
            	<div class="glyph">
         | 
| 966 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 967 | 
            +
            		<input type="text" readonly value="&#xe060;" />
         | 
| 968 | 
            +
            	</div>
         | 
| 969 | 
            +
            	<div class="glyph">
         | 
| 970 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 971 | 
            +
            		<input type="text" readonly value="&#xe061;" />
         | 
| 972 | 
            +
            	</div>
         | 
| 973 | 
            +
            	<div class="glyph">
         | 
| 974 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 975 | 
            +
            		<input type="text" readonly value="&#xe062;" />
         | 
| 976 | 
            +
            	</div>
         | 
| 977 | 
            +
            	<div class="glyph">
         | 
| 978 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 979 | 
            +
            		<input type="text" readonly value="&#xe063;" />
         | 
| 980 | 
            +
            	</div>
         | 
| 981 | 
            +
            	<div class="glyph">
         | 
| 982 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 983 | 
            +
            		<input type="text" readonly value="&#xe064;" />
         | 
| 984 | 
            +
            	</div>
         | 
| 985 | 
            +
            	<div class="glyph">
         | 
| 986 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 987 | 
            +
            		<input type="text" readonly value="&#xe065;" />
         | 
| 988 | 
            +
            	</div>
         | 
| 989 | 
            +
            	<div class="glyph">
         | 
| 990 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 991 | 
            +
            		<input type="text" readonly value="&#xe066;" />
         | 
| 992 | 
            +
            	</div>
         | 
| 993 | 
            +
            	<div class="glyph">
         | 
| 994 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 995 | 
            +
            		<input type="text" readonly value="&#xe067;" />
         | 
| 996 | 
            +
            	</div>
         | 
| 997 | 
            +
            	<div class="glyph">
         | 
| 998 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 999 | 
            +
            		<input type="text" readonly value="&#xe068;" />
         | 
| 1000 | 
            +
            	</div>
         | 
| 1001 | 
            +
            	<div class="glyph">
         | 
| 1002 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1003 | 
            +
            		<input type="text" readonly value="&#xe069;" />
         | 
| 1004 | 
            +
            	</div>
         | 
| 1005 | 
            +
            	<div class="glyph">
         | 
| 1006 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1007 | 
            +
            		<input type="text" readonly value="&#xe06a;" />
         | 
| 1008 | 
            +
            	</div>
         | 
| 1009 | 
            +
            	<div class="glyph">
         | 
| 1010 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1011 | 
            +
            		<input type="text" readonly value="&#xe06b;" />
         | 
| 1012 | 
            +
            	</div>
         | 
| 1013 | 
            +
            	<div class="glyph">
         | 
| 1014 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1015 | 
            +
            		<input type="text" readonly value="&#xe06c;" />
         | 
| 1016 | 
            +
            	</div>
         | 
| 1017 | 
            +
            	<div class="glyph">
         | 
| 1018 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1019 | 
            +
            		<input type="text" readonly value="&#xe06d;" />
         | 
| 1020 | 
            +
            	</div>
         | 
| 1021 | 
            +
            	<div class="glyph">
         | 
| 1022 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1023 | 
            +
            		<input type="text" readonly value="&#xe06e;" />
         | 
| 1024 | 
            +
            	</div>
         | 
| 1025 | 
            +
            	<div class="glyph">
         | 
| 1026 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1027 | 
            +
            		<input type="text" readonly value="&#xe06f;" />
         | 
| 1028 | 
            +
            	</div>
         | 
| 1029 | 
            +
            	<div class="glyph">
         | 
| 1030 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1031 | 
            +
            		<input type="text" readonly value="&#xe070;" />
         | 
| 1032 | 
            +
            	</div>
         | 
| 1033 | 
            +
            	<div class="glyph">
         | 
| 1034 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1035 | 
            +
            		<input type="text" readonly value="&#xe071;" />
         | 
| 1036 | 
            +
            	</div>
         | 
| 1037 | 
            +
            	<div class="glyph">
         | 
| 1038 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1039 | 
            +
            		<input type="text" readonly value="&#xe072;" />
         | 
| 1040 | 
            +
            	</div>
         | 
| 1041 | 
            +
            	<div class="glyph">
         | 
| 1042 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1043 | 
            +
            		<input type="text" readonly value="&#xe073;" />
         | 
| 1044 | 
            +
            	</div>
         | 
| 1045 | 
            +
            	<div class="glyph">
         | 
| 1046 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1047 | 
            +
            		<input type="text" readonly value="&#xe074;" />
         | 
| 1048 | 
            +
            	</div>
         | 
| 1049 | 
            +
            	<div class="glyph">
         | 
| 1050 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1051 | 
            +
            		<input type="text" readonly value="&#xe075;" />
         | 
| 1052 | 
            +
            	</div>
         | 
| 1053 | 
            +
            	<div class="glyph">
         | 
| 1054 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1055 | 
            +
            		<input type="text" readonly value="&#xe076;" />
         | 
| 1056 | 
            +
            	</div>
         | 
| 1057 | 
            +
            	<div class="glyph">
         | 
| 1058 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1059 | 
            +
            		<input type="text" readonly value="&#xe077;" />
         | 
| 1060 | 
            +
            	</div>
         | 
| 1061 | 
            +
            	<div class="glyph">
         | 
| 1062 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1063 | 
            +
            		<input type="text" readonly value="&#xe078;" />
         | 
| 1064 | 
            +
            	</div>
         | 
| 1065 | 
            +
            	<div class="glyph">
         | 
| 1066 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1067 | 
            +
            		<input type="text" readonly value="&#xe079;" />
         | 
| 1068 | 
            +
            	</div>
         | 
| 1069 | 
            +
            	<div class="glyph">
         | 
| 1070 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1071 | 
            +
            		<input type="text" readonly value="&#xe07a;" />
         | 
| 1072 | 
            +
            	</div>
         | 
| 1073 | 
            +
            	<div class="glyph">
         | 
| 1074 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1075 | 
            +
            		<input type="text" readonly value="&#xe07b;" />
         | 
| 1076 | 
            +
            	</div>
         | 
| 1077 | 
            +
            	<div class="glyph">
         | 
| 1078 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1079 | 
            +
            		<input type="text" readonly value="&#xe07c;" />
         | 
| 1080 | 
            +
            	</div>
         | 
| 1081 | 
            +
            	<div class="glyph">
         | 
| 1082 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1083 | 
            +
            		<input type="text" readonly value="&#xe07d;" />
         | 
| 1084 | 
            +
            	</div>
         | 
| 1085 | 
            +
            	<div class="glyph">
         | 
| 1086 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1087 | 
            +
            		<input type="text" readonly value="&#xe07e;" />
         | 
| 1088 | 
            +
            	</div>
         | 
| 1089 | 
            +
            	<div class="glyph">
         | 
| 1090 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1091 | 
            +
            		<input type="text" readonly value="&#xe07f;" />
         | 
| 1092 | 
            +
            	</div>
         | 
| 1093 | 
            +
            	<div class="glyph">
         | 
| 1094 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1095 | 
            +
            		<input type="text" readonly value="&#xe080;" />
         | 
| 1096 | 
            +
            	</div>
         | 
| 1097 | 
            +
            	<div class="glyph">
         | 
| 1098 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1099 | 
            +
            		<input type="text" readonly value="&#xe081;" />
         | 
| 1100 | 
            +
            	</div>
         | 
| 1101 | 
            +
            	<div class="glyph">
         | 
| 1102 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1103 | 
            +
            		<input type="text" readonly value="&#xe082;" />
         | 
| 1104 | 
            +
            	</div>
         | 
| 1105 | 
            +
            	<div class="glyph">
         | 
| 1106 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1107 | 
            +
            		<input type="text" readonly value="&#xe083;" />
         | 
| 1108 | 
            +
            	</div>
         | 
| 1109 | 
            +
            	<div class="glyph">
         | 
| 1110 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1111 | 
            +
            		<input type="text" readonly value="&#xe084;" />
         | 
| 1112 | 
            +
            	</div>
         | 
| 1113 | 
            +
            	<div class="glyph">
         | 
| 1114 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1115 | 
            +
            		<input type="text" readonly value="&#xe085;" />
         | 
| 1116 | 
            +
            	</div>
         | 
| 1117 | 
            +
            	<div class="glyph">
         | 
| 1118 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1119 | 
            +
            		<input type="text" readonly value="&#xe086;" />
         | 
| 1120 | 
            +
            	</div>
         | 
| 1121 | 
            +
            	<div class="glyph">
         | 
| 1122 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1123 | 
            +
            		<input type="text" readonly value="&#xe087;" />
         | 
| 1124 | 
            +
            	</div>
         | 
| 1125 | 
            +
            	<div class="glyph">
         | 
| 1126 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1127 | 
            +
            		<input type="text" readonly value="&#xe088;" />
         | 
| 1128 | 
            +
            	</div>
         | 
| 1129 | 
            +
            	<div class="glyph">
         | 
| 1130 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1131 | 
            +
            		<input type="text" readonly value="&#xe089;" />
         | 
| 1132 | 
            +
            	</div>
         | 
| 1133 | 
            +
            	<div class="glyph">
         | 
| 1134 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1135 | 
            +
            		<input type="text" readonly value="&#xe08a;" />
         | 
| 1136 | 
            +
            	</div>
         | 
| 1137 | 
            +
            	<div class="glyph">
         | 
| 1138 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1139 | 
            +
            		<input type="text" readonly value="&#xe08b;" />
         | 
| 1140 | 
            +
            	</div>
         | 
| 1141 | 
            +
            	<div class="glyph">
         | 
| 1142 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1143 | 
            +
            		<input type="text" readonly value="&#xe08c;" />
         | 
| 1144 | 
            +
            	</div>
         | 
| 1145 | 
            +
            	<div class="glyph">
         | 
| 1146 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1147 | 
            +
            		<input type="text" readonly value="&#xe08d;" />
         | 
| 1148 | 
            +
            	</div>
         | 
| 1149 | 
            +
            	<div class="glyph">
         | 
| 1150 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1151 | 
            +
            		<input type="text" readonly value="&#xe08e;" />
         | 
| 1152 | 
            +
            	</div>
         | 
| 1153 | 
            +
            	<div class="glyph">
         | 
| 1154 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1155 | 
            +
            		<input type="text" readonly value="&#xe08f;" />
         | 
| 1156 | 
            +
            	</div>
         | 
| 1157 | 
            +
            	<div class="glyph">
         | 
| 1158 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1159 | 
            +
            		<input type="text" readonly value="&#xe090;" />
         | 
| 1160 | 
            +
            	</div>
         | 
| 1161 | 
            +
            	<div class="glyph">
         | 
| 1162 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1163 | 
            +
            		<input type="text" readonly value="&#xe091;" />
         | 
| 1164 | 
            +
            	</div>
         | 
| 1165 | 
            +
            	<div class="glyph">
         | 
| 1166 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1167 | 
            +
            		<input type="text" readonly value="&#xe092;" />
         | 
| 1168 | 
            +
            	</div>
         | 
| 1169 | 
            +
                
         | 
| 1170 | 
            +
                <div class="new">
         | 
| 1171 | 
            +
                
         | 
| 1172 | 
            +
                <div class="glyph">
         | 
| 1173 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1174 | 
            +
            		<input type="text" readonly value="&#xe0f8;" />
         | 
| 1175 | 
            +
            	</div>
         | 
| 1176 | 
            +
            	<div class="glyph">
         | 
| 1177 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1178 | 
            +
            		<input type="text" readonly value="&#xe0fa;" />
         | 
| 1179 | 
            +
            	</div>
         | 
| 1180 | 
            +
            	<div class="glyph">
         | 
| 1181 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1182 | 
            +
            		<input type="text" readonly value="&#xe0e7;" />
         | 
| 1183 | 
            +
            	</div>
         | 
| 1184 | 
            +
            	<div class="glyph">
         | 
| 1185 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1186 | 
            +
            		<input type="text" readonly value="&#xe0fd;" />
         | 
| 1187 | 
            +
            	</div>
         | 
| 1188 | 
            +
            	<div class="glyph">
         | 
| 1189 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1190 | 
            +
            		<input type="text" readonly value="&#xe0e4;" />
         | 
| 1191 | 
            +
            	</div>
         | 
| 1192 | 
            +
            	<div class="glyph">
         | 
| 1193 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1194 | 
            +
            		<input type="text" readonly value="&#xe0e5;" />
         | 
| 1195 | 
            +
            	</div>
         | 
| 1196 | 
            +
            	<div class="glyph">
         | 
| 1197 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1198 | 
            +
            		<input type="text" readonly value="&#xe0f7;" />
         | 
| 1199 | 
            +
            	</div>
         | 
| 1200 | 
            +
            	<div class="glyph">
         | 
| 1201 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1202 | 
            +
            		<input type="text" readonly value="&#xe0e0;" />
         | 
| 1203 | 
            +
            	</div>
         | 
| 1204 | 
            +
            	<div class="glyph">
         | 
| 1205 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1206 | 
            +
            		<input type="text" readonly value="&#xe0fc;" />
         | 
| 1207 | 
            +
            	</div>
         | 
| 1208 | 
            +
            	<div class="glyph">
         | 
| 1209 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1210 | 
            +
            		<input type="text" readonly value="&#xe0f9;" />
         | 
| 1211 | 
            +
            	</div>
         | 
| 1212 | 
            +
            	<div class="glyph">
         | 
| 1213 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1214 | 
            +
            		<input type="text" readonly value="&#xe0dd;" />
         | 
| 1215 | 
            +
            	</div>
         | 
| 1216 | 
            +
            	<div class="glyph">
         | 
| 1217 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1218 | 
            +
            		<input type="text" readonly value="&#xe0f1;" />
         | 
| 1219 | 
            +
            	</div>
         | 
| 1220 | 
            +
            	<div class="glyph">
         | 
| 1221 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1222 | 
            +
            		<input type="text" readonly value="&#xe0dc;" />
         | 
| 1223 | 
            +
            	</div>
         | 
| 1224 | 
            +
            	<div class="glyph">
         | 
| 1225 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1226 | 
            +
            		<input type="text" readonly value="&#xe0f3;" />
         | 
| 1227 | 
            +
            	</div>
         | 
| 1228 | 
            +
            	<div class="glyph">
         | 
| 1229 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1230 | 
            +
            		<input type="text" readonly value="&#xe0d8;" />
         | 
| 1231 | 
            +
            	</div>
         | 
| 1232 | 
            +
            	<div class="glyph">
         | 
| 1233 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1234 | 
            +
            		<input type="text" readonly value="&#xe0db;" />
         | 
| 1235 | 
            +
            	</div>
         | 
| 1236 | 
            +
            	<div class="glyph">
         | 
| 1237 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1238 | 
            +
            		<input type="text" readonly value="&#xe0f0;" />
         | 
| 1239 | 
            +
            	</div>
         | 
| 1240 | 
            +
            	<div class="glyph">
         | 
| 1241 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1242 | 
            +
            		<input type="text" readonly value="&#xe0df;" />
         | 
| 1243 | 
            +
            	</div>
         | 
| 1244 | 
            +
            	<div class="glyph">
         | 
| 1245 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1246 | 
            +
            		<input type="text" readonly value="&#xe0f2;" />
         | 
| 1247 | 
            +
            	</div>
         | 
| 1248 | 
            +
            	<div class="glyph">
         | 
| 1249 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1250 | 
            +
            		<input type="text" readonly value="&#xe0f4;" />
         | 
| 1251 | 
            +
            	</div>
         | 
| 1252 | 
            +
            	<div class="glyph">
         | 
| 1253 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1254 | 
            +
            		<input type="text" readonly value="&#xe0d9;" />
         | 
| 1255 | 
            +
            	</div>
         | 
| 1256 | 
            +
            	<div class="glyph">
         | 
| 1257 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1258 | 
            +
            		<input type="text" readonly value="&#xe0da;" />
         | 
| 1259 | 
            +
            	</div>
         | 
| 1260 | 
            +
            	<div class="glyph">
         | 
| 1261 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1262 | 
            +
            		<input type="text" readonly value="&#xe0de;" />
         | 
| 1263 | 
            +
            	</div>
         | 
| 1264 | 
            +
            	<div class="glyph">
         | 
| 1265 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1266 | 
            +
            		<input type="text" readonly value="&#xe0e6;" />
         | 
| 1267 | 
            +
            	</div>
         | 
| 1268 | 
            +
                
         | 
| 1269 | 
            +
                </div>
         | 
| 1270 | 
            +
                
         | 
| 1271 | 
            +
            	<div class="glyph">
         | 
| 1272 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1273 | 
            +
            		<input type="text" readonly value="&#xe093;" />
         | 
| 1274 | 
            +
            	</div>
         | 
| 1275 | 
            +
            	<div class="glyph">
         | 
| 1276 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1277 | 
            +
            		<input type="text" readonly value="&#xe094;" />
         | 
| 1278 | 
            +
            	</div>
         | 
| 1279 | 
            +
            	<div class="glyph">
         | 
| 1280 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1281 | 
            +
            		<input type="text" readonly value="&#xe095;" />
         | 
| 1282 | 
            +
            	</div>
         | 
| 1283 | 
            +
            	<div class="glyph">
         | 
| 1284 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1285 | 
            +
            		<input type="text" readonly value="&#xe096;" />
         | 
| 1286 | 
            +
            	</div>
         | 
| 1287 | 
            +
            	<div class="glyph">
         | 
| 1288 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1289 | 
            +
            		<input type="text" readonly value="&#xe097;" />
         | 
| 1290 | 
            +
            	</div>
         | 
| 1291 | 
            +
            	<div class="glyph">
         | 
| 1292 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1293 | 
            +
            		<input type="text" readonly value="&#xe098;" />
         | 
| 1294 | 
            +
            	</div>
         | 
| 1295 | 
            +
            	<div class="glyph">
         | 
| 1296 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1297 | 
            +
            		<input type="text" readonly value="&#xe099;" />
         | 
| 1298 | 
            +
            	</div>
         | 
| 1299 | 
            +
            	<div class="glyph">
         | 
| 1300 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1301 | 
            +
            		<input type="text" readonly value="&#xe09a;" />
         | 
| 1302 | 
            +
            	</div>
         | 
| 1303 | 
            +
            	<div class="glyph">
         | 
| 1304 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1305 | 
            +
            		<input type="text" readonly value="&#xe09b;" />
         | 
| 1306 | 
            +
            	</div>
         | 
| 1307 | 
            +
            	<div class="glyph">
         | 
| 1308 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1309 | 
            +
            		<input type="text" readonly value="&#xe09c;" />
         | 
| 1310 | 
            +
            	</div>
         | 
| 1311 | 
            +
            	<div class="glyph">
         | 
| 1312 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1313 | 
            +
            		<input type="text" readonly value="&#xe09d;" />
         | 
| 1314 | 
            +
            	</div>
         | 
| 1315 | 
            +
            	<div class="glyph">
         | 
| 1316 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1317 | 
            +
            		<input type="text" readonly value="&#xe09e;" />
         | 
| 1318 | 
            +
            	</div>
         | 
| 1319 | 
            +
            	<div class="glyph">
         | 
| 1320 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1321 | 
            +
            		<input type="text" readonly value="&#xe09f;" />
         | 
| 1322 | 
            +
            	</div>
         | 
| 1323 | 
            +
            	<div class="glyph">
         | 
| 1324 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1325 | 
            +
            		<input type="text" readonly value="&#xe0a0;" />
         | 
| 1326 | 
            +
            	</div>
         | 
| 1327 | 
            +
            	<div class="glyph">
         | 
| 1328 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1329 | 
            +
            		<input type="text" readonly value="&#xe0a1;" />
         | 
| 1330 | 
            +
            	</div>
         | 
| 1331 | 
            +
            	<div class="glyph">
         | 
| 1332 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1333 | 
            +
            		<input type="text" readonly value="&#xe0a2;" />
         | 
| 1334 | 
            +
            	</div>
         | 
| 1335 | 
            +
            	<div class="glyph">
         | 
| 1336 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1337 | 
            +
            		<input type="text" readonly value="&#xe0a3;" />
         | 
| 1338 | 
            +
            	</div>
         | 
| 1339 | 
            +
            	<div class="glyph">
         | 
| 1340 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1341 | 
            +
            		<input type="text" readonly value="&#xe0a4;" />
         | 
| 1342 | 
            +
            	</div>
         | 
| 1343 | 
            +
            	<div class="glyph">
         | 
| 1344 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1345 | 
            +
            		<input type="text" readonly value="&#xe0a5;" />
         | 
| 1346 | 
            +
            	</div>
         | 
| 1347 | 
            +
            	<div class="glyph">
         | 
| 1348 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1349 | 
            +
            		<input type="text" readonly value="&#xe0a6;" />
         | 
| 1350 | 
            +
            	</div>
         | 
| 1351 | 
            +
            	<div class="glyph">
         | 
| 1352 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1353 | 
            +
            		<input type="text" readonly value="&#xe0a7;" />
         | 
| 1354 | 
            +
            	</div>
         | 
| 1355 | 
            +
            	<div class="glyph">
         | 
| 1356 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1357 | 
            +
            		<input type="text" readonly value="&#xe0a8;" />
         | 
| 1358 | 
            +
            	</div>
         | 
| 1359 | 
            +
            	<div class="glyph">
         | 
| 1360 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1361 | 
            +
            		<input type="text" readonly value="&#xe0a9;" />
         | 
| 1362 | 
            +
            	</div>
         | 
| 1363 | 
            +
            	<div class="glyph">
         | 
| 1364 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1365 | 
            +
            		<input type="text" readonly value="&#xe0aa;" />
         | 
| 1366 | 
            +
            	</div>
         | 
| 1367 | 
            +
            	<div class="glyph">
         | 
| 1368 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1369 | 
            +
            		<input type="text" readonly value="&#xe0ab;" />
         | 
| 1370 | 
            +
            	</div>
         | 
| 1371 | 
            +
            	<div class="glyph">
         | 
| 1372 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1373 | 
            +
            		<input type="text" readonly value="&#xe0ac;" />
         | 
| 1374 | 
            +
            	</div>
         | 
| 1375 | 
            +
            	<div class="glyph">
         | 
| 1376 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1377 | 
            +
            		<input type="text" readonly value="&#xe0ad;" />
         | 
| 1378 | 
            +
            	</div>
         | 
| 1379 | 
            +
            	<div class="glyph">
         | 
| 1380 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1381 | 
            +
            		<input type="text" readonly value="&#xe0ae;" />
         | 
| 1382 | 
            +
            	</div>
         | 
| 1383 | 
            +
            	<div class="glyph">
         | 
| 1384 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1385 | 
            +
            		<input type="text" readonly value="&#xe0af;" />
         | 
| 1386 | 
            +
            	</div>
         | 
| 1387 | 
            +
            	<div class="glyph">
         | 
| 1388 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1389 | 
            +
            		<input type="text" readonly value="&#xe0b0;" />
         | 
| 1390 | 
            +
            	</div>
         | 
| 1391 | 
            +
            	<div class="glyph">
         | 
| 1392 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1393 | 
            +
            		<input type="text" readonly value="&#xe0b1;" />
         | 
| 1394 | 
            +
            	</div>
         | 
| 1395 | 
            +
            	<div class="glyph">
         | 
| 1396 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1397 | 
            +
            		<input type="text" readonly value="&#xe0b2;" />
         | 
| 1398 | 
            +
            	</div>
         | 
| 1399 | 
            +
            	<div class="glyph">
         | 
| 1400 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1401 | 
            +
            		<input type="text" readonly value="&#xe0b3;" />
         | 
| 1402 | 
            +
            	</div>
         | 
| 1403 | 
            +
            	<div class="glyph">
         | 
| 1404 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1405 | 
            +
            		<input type="text" readonly value="&#xe0b4;" />
         | 
| 1406 | 
            +
            	</div>
         | 
| 1407 | 
            +
            	<div class="glyph">
         | 
| 1408 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1409 | 
            +
            		<input type="text" readonly value="&#xe0b5;" />
         | 
| 1410 | 
            +
            	</div>
         | 
| 1411 | 
            +
            	<div class="glyph">
         | 
| 1412 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1413 | 
            +
            		<input type="text" readonly value="&#xe0b6;" />
         | 
| 1414 | 
            +
            	</div>
         | 
| 1415 | 
            +
            	<div class="glyph">
         | 
| 1416 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1417 | 
            +
            		<input type="text" readonly value="&#xe0b7;" />
         | 
| 1418 | 
            +
            	</div>
         | 
| 1419 | 
            +
            	<div class="glyph">
         | 
| 1420 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1421 | 
            +
            		<input type="text" readonly value="&#xe0b8;" />
         | 
| 1422 | 
            +
            	</div>
         | 
| 1423 | 
            +
            	<div class="glyph">
         | 
| 1424 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1425 | 
            +
            		<input type="text" readonly value="&#xe0b9;" />
         | 
| 1426 | 
            +
            	</div>
         | 
| 1427 | 
            +
            	<div class="glyph">
         | 
| 1428 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1429 | 
            +
            		<input type="text" readonly value="&#xe0ba;" />
         | 
| 1430 | 
            +
            	</div>
         | 
| 1431 | 
            +
            	<div class="glyph">
         | 
| 1432 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1433 | 
            +
            		<input type="text" readonly value="&#xe0bb;" />
         | 
| 1434 | 
            +
            	</div>
         | 
| 1435 | 
            +
            	<div class="glyph">
         | 
| 1436 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1437 | 
            +
            		<input type="text" readonly value="&#xe0bc;" />
         | 
| 1438 | 
            +
            	</div>
         | 
| 1439 | 
            +
            	<div class="glyph">
         | 
| 1440 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1441 | 
            +
            		<input type="text" readonly value="&#xe0bd;" />
         | 
| 1442 | 
            +
            	</div>
         | 
| 1443 | 
            +
            	<div class="glyph">
         | 
| 1444 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1445 | 
            +
            		<input type="text" readonly value="&#xe0be;" />
         | 
| 1446 | 
            +
            	</div>
         | 
| 1447 | 
            +
            	<div class="glyph">
         | 
| 1448 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1449 | 
            +
            		<input type="text" readonly value="&#xe0bf;" />
         | 
| 1450 | 
            +
            	</div>
         | 
| 1451 | 
            +
            	<div class="glyph">
         | 
| 1452 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1453 | 
            +
            		<input type="text" readonly value="&#xe0c0;" />
         | 
| 1454 | 
            +
            	</div>
         | 
| 1455 | 
            +
            	<div class="glyph">
         | 
| 1456 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1457 | 
            +
            		<input type="text" readonly value="&#xe0c1;" />
         | 
| 1458 | 
            +
            	</div>
         | 
| 1459 | 
            +
            	<div class="glyph">
         | 
| 1460 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1461 | 
            +
            		<input type="text" readonly value="&#xe0c2;" />
         | 
| 1462 | 
            +
            	</div>
         | 
| 1463 | 
            +
            	<div class="glyph">
         | 
| 1464 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1465 | 
            +
            		<input type="text" readonly value="&#xe0c3;" />
         | 
| 1466 | 
            +
            	</div>
         | 
| 1467 | 
            +
            	<div class="glyph">
         | 
| 1468 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1469 | 
            +
            		<input type="text" readonly value="&#xe0c4;" />
         | 
| 1470 | 
            +
            	</div>
         | 
| 1471 | 
            +
            	<div class="glyph">
         | 
| 1472 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1473 | 
            +
            		<input type="text" readonly value="&#xe0c5;" />
         | 
| 1474 | 
            +
            	</div>
         | 
| 1475 | 
            +
            	<div class="glyph">
         | 
| 1476 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1477 | 
            +
            		<input type="text" readonly value="&#xe0c6;" />
         | 
| 1478 | 
            +
            	</div>
         | 
| 1479 | 
            +
            	<div class="glyph">
         | 
| 1480 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1481 | 
            +
            		<input type="text" readonly value="&#xe0c7;" />
         | 
| 1482 | 
            +
            	</div>
         | 
| 1483 | 
            +
            	<div class="glyph">
         | 
| 1484 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1485 | 
            +
            		<input type="text" readonly value="&#xe0c8;" />
         | 
| 1486 | 
            +
            	</div>
         | 
| 1487 | 
            +
            	<div class="glyph">
         | 
| 1488 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1489 | 
            +
            		<input type="text" readonly value="&#xe0c9;" />
         | 
| 1490 | 
            +
            	</div>
         | 
| 1491 | 
            +
            	<div class="glyph">
         | 
| 1492 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1493 | 
            +
            		<input type="text" readonly value="&#xe0ca;" />
         | 
| 1494 | 
            +
            	</div>
         | 
| 1495 | 
            +
            	<div class="glyph">
         | 
| 1496 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1497 | 
            +
            		<input type="text" readonly value="&#xe0cb;" />
         | 
| 1498 | 
            +
            	</div>
         | 
| 1499 | 
            +
            	<div class="glyph">
         | 
| 1500 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1501 | 
            +
            		<input type="text" readonly value="&#xe0cc;" />
         | 
| 1502 | 
            +
            	</div>
         | 
| 1503 | 
            +
            	<div class="glyph">
         | 
| 1504 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1505 | 
            +
            		<input type="text" readonly value="&#xe0cd;" />
         | 
| 1506 | 
            +
            	</div>
         | 
| 1507 | 
            +
            	<div class="glyph">
         | 
| 1508 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1509 | 
            +
            		<input type="text" readonly value="&#xe0ce;" />
         | 
| 1510 | 
            +
            	</div>
         | 
| 1511 | 
            +
            	<div class="glyph">
         | 
| 1512 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1513 | 
            +
            		<input type="text" readonly value="&#xe0cf;" />
         | 
| 1514 | 
            +
            	</div>
         | 
| 1515 | 
            +
            	<div class="glyph">
         | 
| 1516 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1517 | 
            +
            		<input type="text" readonly value="&#xe0d0;" />
         | 
| 1518 | 
            +
            	</div>
         | 
| 1519 | 
            +
            	<div class="glyph">
         | 
| 1520 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1521 | 
            +
            		<input type="text" readonly value="&#xe0d1;" />
         | 
| 1522 | 
            +
            	</div>
         | 
| 1523 | 
            +
            	<div class="glyph">
         | 
| 1524 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1525 | 
            +
            		<input type="text" readonly value="&#xe0d2;" />
         | 
| 1526 | 
            +
            	</div>
         | 
| 1527 | 
            +
            	<div class="glyph">
         | 
| 1528 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1529 | 
            +
            		<input type="text" readonly value="&#xe0d3;" />
         | 
| 1530 | 
            +
            	</div>    
         | 
| 1531 | 
            +
            	<div class="glyph">
         | 
| 1532 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1533 | 
            +
            		<input type="text" readonly value="&#xe0d4;" />
         | 
| 1534 | 
            +
            	</div>
         | 
| 1535 | 
            +
            	<div class="glyph">
         | 
| 1536 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1537 | 
            +
            		<input type="text" readonly value="&#xe0d5;" />
         | 
| 1538 | 
            +
            	</div>
         | 
| 1539 | 
            +
            	<div class="glyph">
         | 
| 1540 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1541 | 
            +
            		<input type="text" readonly value="&#xe0d6;" />
         | 
| 1542 | 
            +
            	</div>
         | 
| 1543 | 
            +
            	<div class="glyph">
         | 
| 1544 | 
            +
            		<div class="fs1" aria-hidden="true" data-icon=""></div>
         | 
| 1545 | 
            +
            		<input type="text" readonly value="&#xe0d7;" />
         | 
| 1546 | 
            +
            	</div>    
         | 
| 1547 | 
            +
            	</section>
         | 
| 1548 | 
            +
            	<div class="clear"></div>
         | 
| 1549 | 
            +
            	<section class="mtm clearfix" id="glyphs">
         | 
| 1550 | 
            +
            	<header>
         | 
| 1551 | 
            +
            		<h1>Class Names</h1>
         | 
| 1552 | 
            +
            	</header>
         | 
| 1553 | 
            +
            	<span class="box1">
         | 
| 1554 | 
            +
            		<span aria-hidden="true" class="arrow_up"></span>
         | 
| 1555 | 
            +
            		 arrow_up
         | 
| 1556 | 
            +
            	</span>
         | 
| 1557 | 
            +
            	<span class="box1">
         | 
| 1558 | 
            +
            		<span aria-hidden="true" class="arrow_down"></span>
         | 
| 1559 | 
            +
            		 arrow_down
         | 
| 1560 | 
            +
            	</span>
         | 
| 1561 | 
            +
            	<span class="box1">
         | 
| 1562 | 
            +
            		<span aria-hidden="true" class="arrow_left"></span>
         | 
| 1563 | 
            +
            		 arrow_left
         | 
| 1564 | 
            +
            	</span>
         | 
| 1565 | 
            +
            	<span class="box1">
         | 
| 1566 | 
            +
            		<span aria-hidden="true" class="arrow_right"></span>
         | 
| 1567 | 
            +
            		 arrow_right
         | 
| 1568 | 
            +
            	</span>
         | 
| 1569 | 
            +
            	<span class="box1">
         | 
| 1570 | 
            +
            		<span aria-hidden="true" class="arrow_left-up"></span>
         | 
| 1571 | 
            +
            		 arrow_left-up
         | 
| 1572 | 
            +
            	</span>
         | 
| 1573 | 
            +
            	<span class="box1">
         | 
| 1574 | 
            +
            		<span aria-hidden="true" class="arrow_right-up"></span>
         | 
| 1575 | 
            +
            		 arrow_right-up
         | 
| 1576 | 
            +
            	</span>
         | 
| 1577 | 
            +
            	<span class="box1">
         | 
| 1578 | 
            +
            		<span aria-hidden="true" class="arrow_right-down"></span>
         | 
| 1579 | 
            +
            		 arrow_right-down
         | 
| 1580 | 
            +
            	</span>
         | 
| 1581 | 
            +
            	<span class="box1">
         | 
| 1582 | 
            +
            		<span aria-hidden="true" class="arrow_left-down"></span>
         | 
| 1583 | 
            +
            		 arrow_left-down
         | 
| 1584 | 
            +
            	</span>
         | 
| 1585 | 
            +
            	<span class="box1">
         | 
| 1586 | 
            +
            		<span aria-hidden="true" class="arrow-up-down"></span>
         | 
| 1587 | 
            +
            		 arrow-up-down
         | 
| 1588 | 
            +
            	</span>
         | 
| 1589 | 
            +
            	<span class="box1">
         | 
| 1590 | 
            +
            		<span aria-hidden="true" class="arrow_up-down_alt"></span>
         | 
| 1591 | 
            +
            		 arrow_up-down_alt
         | 
| 1592 | 
            +
            	</span>
         | 
| 1593 | 
            +
            	<span class="box1">
         | 
| 1594 | 
            +
            		<span aria-hidden="true" class="arrow_left-right_alt"></span>
         | 
| 1595 | 
            +
            		 arrow_left-right_alt
         | 
| 1596 | 
            +
            	</span>
         | 
| 1597 | 
            +
            	<span class="box1">
         | 
| 1598 | 
            +
            		<span aria-hidden="true" class="arrow_left-right"></span>
         | 
| 1599 | 
            +
            		 arrow_left-right
         | 
| 1600 | 
            +
            	</span>
         | 
| 1601 | 
            +
            	<span class="box1">
         | 
| 1602 | 
            +
            		<span aria-hidden="true" class="arrow_expand_alt2"></span>
         | 
| 1603 | 
            +
            		 arrow_expand_alt2
         | 
| 1604 | 
            +
            	</span>
         | 
| 1605 | 
            +
            	<span class="box1">
         | 
| 1606 | 
            +
            		<span aria-hidden="true" class="arrow_expand_alt"></span>
         | 
| 1607 | 
            +
            		 arrow_expand_alt
         | 
| 1608 | 
            +
            	</span>
         | 
| 1609 | 
            +
            	<span class="box1">
         | 
| 1610 | 
            +
            		<span aria-hidden="true" class="arrow_condense"></span>
         | 
| 1611 | 
            +
            		 arrow_condense
         | 
| 1612 | 
            +
            	</span>
         | 
| 1613 | 
            +
            	<span class="box1">
         | 
| 1614 | 
            +
            		<span aria-hidden="true" class="arrow_expand"></span>
         | 
| 1615 | 
            +
            		 arrow_expand
         | 
| 1616 | 
            +
            	</span>
         | 
| 1617 | 
            +
            	<span class="box1">
         | 
| 1618 | 
            +
            		<span aria-hidden="true" class="arrow_move"></span>
         | 
| 1619 | 
            +
            		 arrow_move
         | 
| 1620 | 
            +
            	</span>
         | 
| 1621 | 
            +
            	<span class="box1">
         | 
| 1622 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-up"></span>
         | 
| 1623 | 
            +
            		 arrow_carrot-up
         | 
| 1624 | 
            +
            	</span>
         | 
| 1625 | 
            +
            	<span class="box1">
         | 
| 1626 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-down"></span>
         | 
| 1627 | 
            +
            		 arrow_carrot-down
         | 
| 1628 | 
            +
            	</span>
         | 
| 1629 | 
            +
            	<span class="box1">
         | 
| 1630 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-left"></span>
         | 
| 1631 | 
            +
            		 arrow_carrot-left
         | 
| 1632 | 
            +
            	</span>
         | 
| 1633 | 
            +
            	<span class="box1">
         | 
| 1634 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-right"></span>
         | 
| 1635 | 
            +
            		 arrow_carrot-right
         | 
| 1636 | 
            +
            	</span>
         | 
| 1637 | 
            +
            	<span class="box1">
         | 
| 1638 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2up"></span>
         | 
| 1639 | 
            +
            		 arrow_carrot-2up
         | 
| 1640 | 
            +
            	</span>
         | 
| 1641 | 
            +
            	<span class="box1">
         | 
| 1642 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2down"></span>
         | 
| 1643 | 
            +
            		 arrow_carrot-2down
         | 
| 1644 | 
            +
            	</span>
         | 
| 1645 | 
            +
            	<span class="box1">
         | 
| 1646 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2left"></span>
         | 
| 1647 | 
            +
            		 arrow_carrot-2left
         | 
| 1648 | 
            +
            	</span>
         | 
| 1649 | 
            +
            	<span class="box1">
         | 
| 1650 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2right"></span>
         | 
| 1651 | 
            +
            		 arrow_carrot-2right
         | 
| 1652 | 
            +
            	</span>
         | 
| 1653 | 
            +
            	<span class="box1">
         | 
| 1654 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-up_alt2"></span>
         | 
| 1655 | 
            +
            		 arrow_carrot-up_alt2
         | 
| 1656 | 
            +
            	</span>
         | 
| 1657 | 
            +
            	<span class="box1">
         | 
| 1658 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-down_alt2"></span>
         | 
| 1659 | 
            +
            		 arrow_carrot-down_alt2
         | 
| 1660 | 
            +
            	</span>
         | 
| 1661 | 
            +
            	<span class="box1">
         | 
| 1662 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-left_alt2"></span>
         | 
| 1663 | 
            +
            		 arrow_carrot-left_alt2
         | 
| 1664 | 
            +
            	</span>
         | 
| 1665 | 
            +
            	<span class="box1">
         | 
| 1666 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-right_alt2"></span>
         | 
| 1667 | 
            +
            		 arrow_carrot-right_alt2
         | 
| 1668 | 
            +
            	</span>
         | 
| 1669 | 
            +
            	<span class="box1">
         | 
| 1670 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2up_alt2"></span>
         | 
| 1671 | 
            +
            		 arrow_carrot-2up_alt2
         | 
| 1672 | 
            +
            	</span>
         | 
| 1673 | 
            +
            	<span class="box1">
         | 
| 1674 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2down_alt2"></span>
         | 
| 1675 | 
            +
            		 arrow_carrot-2down_alt2
         | 
| 1676 | 
            +
            	</span>
         | 
| 1677 | 
            +
            	<span class="box1">
         | 
| 1678 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2left_alt2"></span>
         | 
| 1679 | 
            +
            		 arrow_carrot-2left_alt2
         | 
| 1680 | 
            +
            	</span>
         | 
| 1681 | 
            +
            	<span class="box1">
         | 
| 1682 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2right_alt2"></span>
         | 
| 1683 | 
            +
            		 arrow_carrot-2right_alt2
         | 
| 1684 | 
            +
            	</span>
         | 
| 1685 | 
            +
            	<span class="box1">
         | 
| 1686 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-up"></span>
         | 
| 1687 | 
            +
            		 arrow_triangle-up
         | 
| 1688 | 
            +
            	</span>
         | 
| 1689 | 
            +
            	<span class="box1">
         | 
| 1690 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-down"></span>
         | 
| 1691 | 
            +
            		 arrow_triangle-down
         | 
| 1692 | 
            +
            	</span>
         | 
| 1693 | 
            +
            	<span class="box1">
         | 
| 1694 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-left"></span>
         | 
| 1695 | 
            +
            		 arrow_triangle-left
         | 
| 1696 | 
            +
            	</span>
         | 
| 1697 | 
            +
            	<span class="box1">
         | 
| 1698 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-right"></span>
         | 
| 1699 | 
            +
            		 arrow_triangle-right
         | 
| 1700 | 
            +
            	</span>
         | 
| 1701 | 
            +
            	<span class="box1">
         | 
| 1702 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-up_alt2"></span>
         | 
| 1703 | 
            +
            		 arrow_triangle-up_alt2
         | 
| 1704 | 
            +
            	</span>
         | 
| 1705 | 
            +
            	<span class="box1">
         | 
| 1706 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-down_alt2"></span>
         | 
| 1707 | 
            +
            		 arrow_triangle-down_alt2
         | 
| 1708 | 
            +
            	</span>
         | 
| 1709 | 
            +
            	<span class="box1">
         | 
| 1710 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-left_alt2"></span>
         | 
| 1711 | 
            +
            		 arrow_triangle-left_alt2
         | 
| 1712 | 
            +
            	</span>
         | 
| 1713 | 
            +
            	<span class="box1">
         | 
| 1714 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-right_alt2"></span>
         | 
| 1715 | 
            +
            		 arrow_triangle-right_alt2
         | 
| 1716 | 
            +
            	</span>
         | 
| 1717 | 
            +
            	<span class="box1">
         | 
| 1718 | 
            +
            		<span aria-hidden="true" class="arrow_back"></span>
         | 
| 1719 | 
            +
            		 arrow_back
         | 
| 1720 | 
            +
            	</span>
         | 
| 1721 | 
            +
            	<span class="box1">
         | 
| 1722 | 
            +
            		<span aria-hidden="true" class="icon_minus-06"></span>
         | 
| 1723 | 
            +
            		 icon_minus-06
         | 
| 1724 | 
            +
            	</span>
         | 
| 1725 | 
            +
            	<span class="box1">
         | 
| 1726 | 
            +
            		<span aria-hidden="true" class="icon_plus"></span>
         | 
| 1727 | 
            +
            		 icon_plus
         | 
| 1728 | 
            +
            	</span>
         | 
| 1729 | 
            +
            	<span class="box1">
         | 
| 1730 | 
            +
            		<span aria-hidden="true" class="icon_close"></span>
         | 
| 1731 | 
            +
            		 icon_close
         | 
| 1732 | 
            +
            	</span>
         | 
| 1733 | 
            +
            	<span class="box1">
         | 
| 1734 | 
            +
            		<span aria-hidden="true" class="icon_check"></span>
         | 
| 1735 | 
            +
            		 icon_check
         | 
| 1736 | 
            +
            	</span>
         | 
| 1737 | 
            +
            	<span class="box1">
         | 
| 1738 | 
            +
            		<span aria-hidden="true" class="icon_minus_alt2"></span>
         | 
| 1739 | 
            +
            		 icon_minus_alt2
         | 
| 1740 | 
            +
            	</span>
         | 
| 1741 | 
            +
            	<span class="box1">
         | 
| 1742 | 
            +
            		<span aria-hidden="true" class="icon_plus_alt2"></span>
         | 
| 1743 | 
            +
            		 icon_plus_alt2
         | 
| 1744 | 
            +
            	</span>
         | 
| 1745 | 
            +
            	<span class="box1">
         | 
| 1746 | 
            +
            		<span aria-hidden="true" class="icon_close_alt2"></span>
         | 
| 1747 | 
            +
            		 icon_close_alt2
         | 
| 1748 | 
            +
            	</span>
         | 
| 1749 | 
            +
            	<span class="box1">
         | 
| 1750 | 
            +
            		<span aria-hidden="true" class="icon_check_alt2"></span>
         | 
| 1751 | 
            +
            		 icon_check_alt2
         | 
| 1752 | 
            +
            	</span>
         | 
| 1753 | 
            +
            	<span class="box1">
         | 
| 1754 | 
            +
            		<span aria-hidden="true" class="icon_zoom-out_alt"></span>
         | 
| 1755 | 
            +
            		 icon_zoom-out_alt
         | 
| 1756 | 
            +
            	</span>
         | 
| 1757 | 
            +
            	<span class="box1">
         | 
| 1758 | 
            +
            		<span aria-hidden="true" class="icon_zoom-in_alt"></span>
         | 
| 1759 | 
            +
            		 icon_zoom-in_alt
         | 
| 1760 | 
            +
            	</span>
         | 
| 1761 | 
            +
            	<span class="box1">
         | 
| 1762 | 
            +
            		<span aria-hidden="true" class="icon_search"></span>
         | 
| 1763 | 
            +
            		 icon_search
         | 
| 1764 | 
            +
            	</span>
         | 
| 1765 | 
            +
            	<span class="box1">
         | 
| 1766 | 
            +
            		<span aria-hidden="true" class="icon_box-empty"></span>
         | 
| 1767 | 
            +
            		 icon_box-empty
         | 
| 1768 | 
            +
            	</span>
         | 
| 1769 | 
            +
            	<span class="box1">
         | 
| 1770 | 
            +
            		<span aria-hidden="true" class="icon_box-selected"></span>
         | 
| 1771 | 
            +
            		 icon_box-selected
         | 
| 1772 | 
            +
            	</span>
         | 
| 1773 | 
            +
            	<span class="box1">
         | 
| 1774 | 
            +
            		<span aria-hidden="true" class="icon_minus-box"></span>
         | 
| 1775 | 
            +
            		 icon_minus-box
         | 
| 1776 | 
            +
            	</span>
         | 
| 1777 | 
            +
            	<span class="box1">
         | 
| 1778 | 
            +
            		<span aria-hidden="true" class="icon_plus-box"></span>
         | 
| 1779 | 
            +
            		 icon_plus-box
         | 
| 1780 | 
            +
            	</span>
         | 
| 1781 | 
            +
            	<span class="box1">
         | 
| 1782 | 
            +
            		<span aria-hidden="true" class="icon_box-checked"></span>
         | 
| 1783 | 
            +
            		 icon_box-checked
         | 
| 1784 | 
            +
            	</span>
         | 
| 1785 | 
            +
            	<span class="box1">
         | 
| 1786 | 
            +
            		<span aria-hidden="true" class="icon_circle-empty"></span>
         | 
| 1787 | 
            +
            		 icon_circle-empty
         | 
| 1788 | 
            +
            	</span>
         | 
| 1789 | 
            +
            	<span class="box1">
         | 
| 1790 | 
            +
            		<span aria-hidden="true" class="icon_circle-slelected"></span>
         | 
| 1791 | 
            +
            		 icon_circle-slelected
         | 
| 1792 | 
            +
            	</span>
         | 
| 1793 | 
            +
            	<span class="box1">
         | 
| 1794 | 
            +
            		<span aria-hidden="true" class="icon_stop_alt2"></span>
         | 
| 1795 | 
            +
            		 icon_stop_alt2
         | 
| 1796 | 
            +
            	</span>
         | 
| 1797 | 
            +
            	<span class="box1">
         | 
| 1798 | 
            +
            		<span aria-hidden="true" class="icon_stop"></span>
         | 
| 1799 | 
            +
            		 icon_stop
         | 
| 1800 | 
            +
            	</span>
         | 
| 1801 | 
            +
            	<span class="box1">
         | 
| 1802 | 
            +
            		<span aria-hidden="true" class="icon_pause_alt2"></span>
         | 
| 1803 | 
            +
            		 icon_pause_alt2
         | 
| 1804 | 
            +
            	</span>
         | 
| 1805 | 
            +
            	<span class="box1">
         | 
| 1806 | 
            +
            		<span aria-hidden="true" class="icon_pause"></span>
         | 
| 1807 | 
            +
            		 icon_pause
         | 
| 1808 | 
            +
            	</span>
         | 
| 1809 | 
            +
            	<span class="box1">
         | 
| 1810 | 
            +
            		<span aria-hidden="true" class="icon_menu"></span>
         | 
| 1811 | 
            +
            		 icon_menu
         | 
| 1812 | 
            +
            	</span>
         | 
| 1813 | 
            +
            	<span class="box1">
         | 
| 1814 | 
            +
            		<span aria-hidden="true" class="icon_menu-square_alt2"></span>
         | 
| 1815 | 
            +
            		 icon_menu-square_alt2
         | 
| 1816 | 
            +
            	</span>
         | 
| 1817 | 
            +
            	<span class="box1">
         | 
| 1818 | 
            +
            		<span aria-hidden="true" class="icon_menu-circle_alt2"></span>
         | 
| 1819 | 
            +
            		 icon_menu-circle_alt2
         | 
| 1820 | 
            +
            	</span>
         | 
| 1821 | 
            +
            	<span class="box1">
         | 
| 1822 | 
            +
            		<span aria-hidden="true" class="icon_ul"></span>
         | 
| 1823 | 
            +
            		 icon_ul
         | 
| 1824 | 
            +
            	</span>
         | 
| 1825 | 
            +
            	<span class="box1">
         | 
| 1826 | 
            +
            		<span aria-hidden="true" class="icon_ol"></span>
         | 
| 1827 | 
            +
            		 icon_ol
         | 
| 1828 | 
            +
            	</span>
         | 
| 1829 | 
            +
            	<span class="box1">
         | 
| 1830 | 
            +
            		<span aria-hidden="true" class="icon_adjust-horiz"></span>
         | 
| 1831 | 
            +
            		 icon_adjust-horiz
         | 
| 1832 | 
            +
            	</span>
         | 
| 1833 | 
            +
            	<span class="box1">
         | 
| 1834 | 
            +
            		<span aria-hidden="true" class="icon_adjust-vert"></span>
         | 
| 1835 | 
            +
            		 icon_adjust-vert
         | 
| 1836 | 
            +
            	</span>
         | 
| 1837 | 
            +
            	<span class="box1">
         | 
| 1838 | 
            +
            		<span aria-hidden="true" class="icon_document_alt"></span>
         | 
| 1839 | 
            +
            		 icon_document_alt
         | 
| 1840 | 
            +
            	</span>
         | 
| 1841 | 
            +
            	<span class="box1">
         | 
| 1842 | 
            +
            		<span aria-hidden="true" class="icon_documents_alt"></span>
         | 
| 1843 | 
            +
            		 icon_documents_alt
         | 
| 1844 | 
            +
            	</span>
         | 
| 1845 | 
            +
            	<span class="box1">
         | 
| 1846 | 
            +
            		<span aria-hidden="true" class="icon_pencil"></span>
         | 
| 1847 | 
            +
            		 icon_pencil
         | 
| 1848 | 
            +
            	</span>
         | 
| 1849 | 
            +
            	<span class="box1">
         | 
| 1850 | 
            +
            		<span aria-hidden="true" class="icon_pencil-edit_alt"></span>
         | 
| 1851 | 
            +
            		 icon_pencil-edit_alt
         | 
| 1852 | 
            +
            	</span>
         | 
| 1853 | 
            +
            	<span class="box1">
         | 
| 1854 | 
            +
            		<span aria-hidden="true" class="icon_pencil-edit"></span>
         | 
| 1855 | 
            +
            		 icon_pencil-edit
         | 
| 1856 | 
            +
            	</span>
         | 
| 1857 | 
            +
            	<span class="box1">
         | 
| 1858 | 
            +
            		<span aria-hidden="true" class="icon_folder-alt"></span>
         | 
| 1859 | 
            +
            		 icon_folder-alt
         | 
| 1860 | 
            +
            	</span>
         | 
| 1861 | 
            +
            	<span class="box1">
         | 
| 1862 | 
            +
            		<span aria-hidden="true" class="icon_folder-open_alt"></span>
         | 
| 1863 | 
            +
            		 icon_folder-open_alt
         | 
| 1864 | 
            +
            	</span>
         | 
| 1865 | 
            +
            	<span class="box1">
         | 
| 1866 | 
            +
            		<span aria-hidden="true" class="icon_folder-add_alt"></span>
         | 
| 1867 | 
            +
            		 icon_folder-add_alt
         | 
| 1868 | 
            +
            	</span>
         | 
| 1869 | 
            +
            	<span class="box1">
         | 
| 1870 | 
            +
            		<span aria-hidden="true" class="icon_info_alt"></span>
         | 
| 1871 | 
            +
            		 icon_info_alt
         | 
| 1872 | 
            +
            	</span>
         | 
| 1873 | 
            +
            	<span class="box1">
         | 
| 1874 | 
            +
            		<span aria-hidden="true" class="icon_error-oct_alt"></span>
         | 
| 1875 | 
            +
            		 icon_error-oct_alt
         | 
| 1876 | 
            +
            	</span>
         | 
| 1877 | 
            +
            	<span class="box1">
         | 
| 1878 | 
            +
            		<span aria-hidden="true" class="icon_error-circle_alt"></span>
         | 
| 1879 | 
            +
            		 icon_error-circle_alt
         | 
| 1880 | 
            +
            	</span>
         | 
| 1881 | 
            +
            	<span class="box1">
         | 
| 1882 | 
            +
            		<span aria-hidden="true" class="icon_error-triangle_alt"></span>
         | 
| 1883 | 
            +
            		 icon_error-triangle_alt
         | 
| 1884 | 
            +
            	</span>
         | 
| 1885 | 
            +
            	<span class="box1">
         | 
| 1886 | 
            +
            		<span aria-hidden="true" class="icon_question_alt2"></span>
         | 
| 1887 | 
            +
            		 icon_question_alt2
         | 
| 1888 | 
            +
            	</span>
         | 
| 1889 | 
            +
            	<span class="box1">
         | 
| 1890 | 
            +
            		<span aria-hidden="true" class="icon_question"></span>
         | 
| 1891 | 
            +
            		 icon_question
         | 
| 1892 | 
            +
            	</span>
         | 
| 1893 | 
            +
            	<span class="box1">
         | 
| 1894 | 
            +
            		<span aria-hidden="true" class="icon_comment_alt"></span>
         | 
| 1895 | 
            +
            		 icon_comment_alt
         | 
| 1896 | 
            +
            	</span>
         | 
| 1897 | 
            +
            	<span class="box1">
         | 
| 1898 | 
            +
            		<span aria-hidden="true" class="icon_chat_alt"></span>
         | 
| 1899 | 
            +
            		 icon_chat_alt
         | 
| 1900 | 
            +
            	</span>
         | 
| 1901 | 
            +
            	<span class="box1">
         | 
| 1902 | 
            +
            		<span aria-hidden="true" class="icon_vol-mute_alt"></span>
         | 
| 1903 | 
            +
            		 icon_vol-mute_alt
         | 
| 1904 | 
            +
            	</span>
         | 
| 1905 | 
            +
            	<span class="box1">
         | 
| 1906 | 
            +
            		<span aria-hidden="true" class="icon_volume-low_alt"></span>
         | 
| 1907 | 
            +
            		 icon_volume-low_alt
         | 
| 1908 | 
            +
            	</span>
         | 
| 1909 | 
            +
            	<span class="box1">
         | 
| 1910 | 
            +
            		<span aria-hidden="true" class="icon_volume-high_alt"></span>
         | 
| 1911 | 
            +
            		 icon_volume-high_alt
         | 
| 1912 | 
            +
            	</span>
         | 
| 1913 | 
            +
            	<span class="box1">
         | 
| 1914 | 
            +
            		<span aria-hidden="true" class="icon_quotations"></span>
         | 
| 1915 | 
            +
            		 icon_quotations
         | 
| 1916 | 
            +
            	</span>
         | 
| 1917 | 
            +
            	<span class="box1">
         | 
| 1918 | 
            +
            		<span aria-hidden="true" class="icon_quotations_alt2"></span>
         | 
| 1919 | 
            +
            		 icon_quotations_alt2
         | 
| 1920 | 
            +
            	</span>
         | 
| 1921 | 
            +
            	<span class="box1">
         | 
| 1922 | 
            +
            		<span aria-hidden="true" class="icon_clock_alt"></span>
         | 
| 1923 | 
            +
            		 icon_clock_alt
         | 
| 1924 | 
            +
            	</span>
         | 
| 1925 | 
            +
            	<span class="box1">
         | 
| 1926 | 
            +
            		<span aria-hidden="true" class="icon_lock_alt"></span>
         | 
| 1927 | 
            +
            		 icon_lock_alt
         | 
| 1928 | 
            +
            	</span>
         | 
| 1929 | 
            +
            	<span class="box1">
         | 
| 1930 | 
            +
            		<span aria-hidden="true" class="icon_lock-open_alt"></span>
         | 
| 1931 | 
            +
            		 icon_lock-open_alt
         | 
| 1932 | 
            +
            	</span>
         | 
| 1933 | 
            +
            	<span class="box1">
         | 
| 1934 | 
            +
            		<span aria-hidden="true" class="icon_key_alt"></span>
         | 
| 1935 | 
            +
            		 icon_key_alt
         | 
| 1936 | 
            +
            	</span>
         | 
| 1937 | 
            +
            	<span class="box1">
         | 
| 1938 | 
            +
            		<span aria-hidden="true" class="icon_cloud_alt"></span>
         | 
| 1939 | 
            +
            		 icon_cloud_alt
         | 
| 1940 | 
            +
            	</span>
         | 
| 1941 | 
            +
            	<span class="box1">
         | 
| 1942 | 
            +
            		<span aria-hidden="true" class="icon_cloud-upload_alt"></span>
         | 
| 1943 | 
            +
            		 icon_cloud-upload_alt
         | 
| 1944 | 
            +
            	</span>
         | 
| 1945 | 
            +
            	<span class="box1">
         | 
| 1946 | 
            +
            		<span aria-hidden="true" class="icon_cloud-download_alt"></span>
         | 
| 1947 | 
            +
            		 icon_cloud-download_alt
         | 
| 1948 | 
            +
            	</span>
         | 
| 1949 | 
            +
            	<span class="box1">
         | 
| 1950 | 
            +
            		<span aria-hidden="true" class="icon_image"></span>
         | 
| 1951 | 
            +
            		 icon_image
         | 
| 1952 | 
            +
            	</span>
         | 
| 1953 | 
            +
            	<span class="box1">
         | 
| 1954 | 
            +
            		<span aria-hidden="true" class="icon_images"></span>
         | 
| 1955 | 
            +
            		 icon_images
         | 
| 1956 | 
            +
            	</span>
         | 
| 1957 | 
            +
            	<span class="box1">
         | 
| 1958 | 
            +
            		<span aria-hidden="true" class="icon_lightbulb_alt"></span>
         | 
| 1959 | 
            +
            		 icon_lightbulb_alt
         | 
| 1960 | 
            +
            	</span>
         | 
| 1961 | 
            +
            	<span class="box1">
         | 
| 1962 | 
            +
            		<span aria-hidden="true" class="icon_gift_alt"></span>
         | 
| 1963 | 
            +
            		 icon_gift_alt
         | 
| 1964 | 
            +
            	</span>
         | 
| 1965 | 
            +
            	<span class="box1">
         | 
| 1966 | 
            +
            		<span aria-hidden="true" class="icon_house_alt"></span>
         | 
| 1967 | 
            +
            		 icon_house_alt
         | 
| 1968 | 
            +
            	</span>
         | 
| 1969 | 
            +
            	<span class="box1">
         | 
| 1970 | 
            +
            		<span aria-hidden="true" class="icon_genius"></span>
         | 
| 1971 | 
            +
            		 icon_genius
         | 
| 1972 | 
            +
            	</span>
         | 
| 1973 | 
            +
            	<span class="box1">
         | 
| 1974 | 
            +
            		<span aria-hidden="true" class="icon_mobile"></span>
         | 
| 1975 | 
            +
            		 icon_mobile
         | 
| 1976 | 
            +
            	</span>
         | 
| 1977 | 
            +
            	<span class="box1">
         | 
| 1978 | 
            +
            		<span aria-hidden="true" class="icon_tablet"></span>
         | 
| 1979 | 
            +
            		 icon_tablet
         | 
| 1980 | 
            +
            	</span>
         | 
| 1981 | 
            +
            	<span class="box1">
         | 
| 1982 | 
            +
            		<span aria-hidden="true" class="icon_laptop"></span>
         | 
| 1983 | 
            +
            		 icon_laptop
         | 
| 1984 | 
            +
            	</span>
         | 
| 1985 | 
            +
            	<span class="box1">
         | 
| 1986 | 
            +
            		<span aria-hidden="true" class="icon_desktop"></span>
         | 
| 1987 | 
            +
            		 icon_desktop
         | 
| 1988 | 
            +
            	</span>
         | 
| 1989 | 
            +
            	<span class="box1">
         | 
| 1990 | 
            +
            		<span aria-hidden="true" class="icon_camera_alt"></span>
         | 
| 1991 | 
            +
            		 icon_camera_alt
         | 
| 1992 | 
            +
            	</span>
         | 
| 1993 | 
            +
            	<span class="box1">
         | 
| 1994 | 
            +
            		<span aria-hidden="true" class="icon_mail_alt"></span>
         | 
| 1995 | 
            +
            		 icon_mail_alt
         | 
| 1996 | 
            +
            	</span>
         | 
| 1997 | 
            +
            	<span class="box1">
         | 
| 1998 | 
            +
            		<span aria-hidden="true" class="icon_cone_alt"></span>
         | 
| 1999 | 
            +
            		 icon_cone_alt
         | 
| 2000 | 
            +
            	</span>
         | 
| 2001 | 
            +
            	<span class="box1">
         | 
| 2002 | 
            +
            		<span aria-hidden="true" class="icon_ribbon_alt"></span>
         | 
| 2003 | 
            +
            		 icon_ribbon_alt
         | 
| 2004 | 
            +
            	</span>
         | 
| 2005 | 
            +
            	<span class="box1">
         | 
| 2006 | 
            +
            		<span aria-hidden="true" class="icon_bag_alt"></span>
         | 
| 2007 | 
            +
            		 icon_bag_alt
         | 
| 2008 | 
            +
            	</span>
         | 
| 2009 | 
            +
            	<span class="box1">
         | 
| 2010 | 
            +
            		<span aria-hidden="true" class="icon_creditcard"></span>
         | 
| 2011 | 
            +
            		 icon_creditcard
         | 
| 2012 | 
            +
            	</span>
         | 
| 2013 | 
            +
            	<span class="box1">
         | 
| 2014 | 
            +
            		<span aria-hidden="true" class="icon_cart_alt"></span>
         | 
| 2015 | 
            +
            		 icon_cart_alt
         | 
| 2016 | 
            +
            	</span>
         | 
| 2017 | 
            +
            	<span class="box1">
         | 
| 2018 | 
            +
            		<span aria-hidden="true" class="icon_paperclip"></span>
         | 
| 2019 | 
            +
            		 icon_paperclip
         | 
| 2020 | 
            +
            	</span>
         | 
| 2021 | 
            +
            	<span class="box1">
         | 
| 2022 | 
            +
            		<span aria-hidden="true" class="icon_tag_alt"></span>
         | 
| 2023 | 
            +
            		 icon_tag_alt
         | 
| 2024 | 
            +
            	</span>
         | 
| 2025 | 
            +
            	<span class="box1">
         | 
| 2026 | 
            +
            		<span aria-hidden="true" class="icon_tags_alt"></span>
         | 
| 2027 | 
            +
            		 icon_tags_alt
         | 
| 2028 | 
            +
            	</span>
         | 
| 2029 | 
            +
            	<span class="box1">
         | 
| 2030 | 
            +
            		<span aria-hidden="true" class="icon_trash_alt"></span>
         | 
| 2031 | 
            +
            		 icon_trash_alt
         | 
| 2032 | 
            +
            	</span>
         | 
| 2033 | 
            +
            	<span class="box1">
         | 
| 2034 | 
            +
            		<span aria-hidden="true" class="icon_cursor_alt"></span>
         | 
| 2035 | 
            +
            		 icon_cursor_alt
         | 
| 2036 | 
            +
            	</span>
         | 
| 2037 | 
            +
            	<span class="box1">
         | 
| 2038 | 
            +
            		<span aria-hidden="true" class="icon_mic_alt"></span>
         | 
| 2039 | 
            +
            		 icon_mic_alt
         | 
| 2040 | 
            +
            	</span>
         | 
| 2041 | 
            +
            	<span class="box1">
         | 
| 2042 | 
            +
            		<span aria-hidden="true" class="icon_compass_alt"></span>
         | 
| 2043 | 
            +
            		 icon_compass_alt
         | 
| 2044 | 
            +
            	</span>
         | 
| 2045 | 
            +
            	<span class="box1">
         | 
| 2046 | 
            +
            		<span aria-hidden="true" class="icon_pin_alt"></span>
         | 
| 2047 | 
            +
            		 icon_pin_alt
         | 
| 2048 | 
            +
            	</span>
         | 
| 2049 | 
            +
            	<span class="box1">
         | 
| 2050 | 
            +
            		<span aria-hidden="true" class="icon_pushpin_alt"></span>
         | 
| 2051 | 
            +
            		 icon_pushpin_alt
         | 
| 2052 | 
            +
            	</span>
         | 
| 2053 | 
            +
            	<span class="box1">
         | 
| 2054 | 
            +
            		<span aria-hidden="true" class="icon_map_alt"></span>
         | 
| 2055 | 
            +
            		 icon_map_alt
         | 
| 2056 | 
            +
            	</span>
         | 
| 2057 | 
            +
            	<span class="box1">
         | 
| 2058 | 
            +
            		<span aria-hidden="true" class="icon_drawer_alt"></span>
         | 
| 2059 | 
            +
            		 icon_drawer_alt
         | 
| 2060 | 
            +
            	</span>
         | 
| 2061 | 
            +
            	<span class="box1">
         | 
| 2062 | 
            +
            		<span aria-hidden="true" class="icon_toolbox_alt"></span>
         | 
| 2063 | 
            +
            		 icon_toolbox_alt
         | 
| 2064 | 
            +
            	</span>
         | 
| 2065 | 
            +
            	<span class="box1">
         | 
| 2066 | 
            +
            		<span aria-hidden="true" class="icon_book_alt"></span>
         | 
| 2067 | 
            +
            		 icon_book_alt
         | 
| 2068 | 
            +
            	</span>
         | 
| 2069 | 
            +
            	<span class="box1">
         | 
| 2070 | 
            +
            		<span aria-hidden="true" class="icon_calendar"></span>
         | 
| 2071 | 
            +
            		 icon_calendar
         | 
| 2072 | 
            +
            	</span>
         | 
| 2073 | 
            +
            	<span class="box1">
         | 
| 2074 | 
            +
            		<span aria-hidden="true" class="icon_film"></span>
         | 
| 2075 | 
            +
            		 icon_film
         | 
| 2076 | 
            +
            	</span>
         | 
| 2077 | 
            +
            	<span class="box1">
         | 
| 2078 | 
            +
            		<span aria-hidden="true" class="icon_table"></span>
         | 
| 2079 | 
            +
            		 icon_table
         | 
| 2080 | 
            +
            	</span>
         | 
| 2081 | 
            +
            	<span class="box1">
         | 
| 2082 | 
            +
            		<span aria-hidden="true" class="icon_contacts_alt"></span>
         | 
| 2083 | 
            +
            		 icon_contacts_alt
         | 
| 2084 | 
            +
            	</span>
         | 
| 2085 | 
            +
            	<span class="box1">
         | 
| 2086 | 
            +
            		<span aria-hidden="true" class="icon_headphones"></span>
         | 
| 2087 | 
            +
            		 icon_headphones
         | 
| 2088 | 
            +
            	</span>
         | 
| 2089 | 
            +
            	<span class="box1">
         | 
| 2090 | 
            +
            		<span aria-hidden="true" class="icon_lifesaver"></span>
         | 
| 2091 | 
            +
            		 icon_lifesaver
         | 
| 2092 | 
            +
            	</span>
         | 
| 2093 | 
            +
            	<span class="box1">
         | 
| 2094 | 
            +
            		<span aria-hidden="true" class="icon_piechart"></span>
         | 
| 2095 | 
            +
            		 icon_piechart
         | 
| 2096 | 
            +
            	</span>
         | 
| 2097 | 
            +
            	<span class="box1">
         | 
| 2098 | 
            +
            		<span aria-hidden="true" class="icon_refresh"></span>
         | 
| 2099 | 
            +
            		 icon_refresh
         | 
| 2100 | 
            +
            	</span>
         | 
| 2101 | 
            +
            	<span class="box1">
         | 
| 2102 | 
            +
            		<span aria-hidden="true" class="icon_link_alt"></span>
         | 
| 2103 | 
            +
            		 icon_link_alt
         | 
| 2104 | 
            +
            	</span>
         | 
| 2105 | 
            +
            	<span class="box1">
         | 
| 2106 | 
            +
            		<span aria-hidden="true" class="icon_link"></span>
         | 
| 2107 | 
            +
            		 icon_link
         | 
| 2108 | 
            +
            	</span>
         | 
| 2109 | 
            +
            	<span class="box1">
         | 
| 2110 | 
            +
            		<span aria-hidden="true" class="icon_loading"></span>
         | 
| 2111 | 
            +
            		 icon_loading
         | 
| 2112 | 
            +
            	</span>
         | 
| 2113 | 
            +
            	<span class="box1">
         | 
| 2114 | 
            +
            		<span aria-hidden="true" class="icon_blocked"></span>
         | 
| 2115 | 
            +
            		 icon_blocked
         | 
| 2116 | 
            +
            	</span>
         | 
| 2117 | 
            +
            	<span class="box1">
         | 
| 2118 | 
            +
            		<span aria-hidden="true" class="icon_archive_alt"></span>
         | 
| 2119 | 
            +
            		 icon_archive_alt
         | 
| 2120 | 
            +
            	</span>
         | 
| 2121 | 
            +
            	<span class="box1">
         | 
| 2122 | 
            +
            		<span aria-hidden="true" class="icon_heart_alt"></span>
         | 
| 2123 | 
            +
            		 icon_heart_alt
         | 
| 2124 | 
            +
            	</span>
         | 
| 2125 | 
            +
                
         | 
| 2126 | 
            +
                <div class="new">
         | 
| 2127 | 
            +
                
         | 
| 2128 | 
            +
                <span class="box1">
         | 
| 2129 | 
            +
            		<span aria-hidden="true" class="icon_printer"></span>
         | 
| 2130 | 
            +
            		 icon_printer
         | 
| 2131 | 
            +
            	</span>
         | 
| 2132 | 
            +
            	<span class="box1">
         | 
| 2133 | 
            +
            		<span aria-hidden="true" class="icon_calulator"></span>
         | 
| 2134 | 
            +
            		 icon_calulator
         | 
| 2135 | 
            +
            	</span>
         | 
| 2136 | 
            +
            	<span class="box1">
         | 
| 2137 | 
            +
            		<span aria-hidden="true" class="icon_building"></span>
         | 
| 2138 | 
            +
            		 icon_building
         | 
| 2139 | 
            +
            	</span>
         | 
| 2140 | 
            +
            	<span class="box1">
         | 
| 2141 | 
            +
            		<span aria-hidden="true" class="icon_floppy"></span>
         | 
| 2142 | 
            +
            		 icon_floppy
         | 
| 2143 | 
            +
            	</span>
         | 
| 2144 | 
            +
            	<span class="box1">
         | 
| 2145 | 
            +
            		<span aria-hidden="true" class="icon_drive"></span>
         | 
| 2146 | 
            +
            		 icon_drive
         | 
| 2147 | 
            +
            	</span>
         | 
| 2148 | 
            +
            	<span class="box1">
         | 
| 2149 | 
            +
            		<span aria-hidden="true" class="icon_search-2"></span>
         | 
| 2150 | 
            +
            		 icon_search-2
         | 
| 2151 | 
            +
            	</span>
         | 
| 2152 | 
            +
            	<span class="box1">
         | 
| 2153 | 
            +
            		<span aria-hidden="true" class="icon_id"></span>
         | 
| 2154 | 
            +
            		 icon_id
         | 
| 2155 | 
            +
            	</span>
         | 
| 2156 | 
            +
            	<span class="box1">
         | 
| 2157 | 
            +
            		<span aria-hidden="true" class="icon_id-2"></span>
         | 
| 2158 | 
            +
            		 icon_id-2
         | 
| 2159 | 
            +
            	</span>
         | 
| 2160 | 
            +
            	<span class="box1">
         | 
| 2161 | 
            +
            		<span aria-hidden="true" class="icon_puzzle"></span>
         | 
| 2162 | 
            +
            		 icon_puzzle
         | 
| 2163 | 
            +
            	</span>
         | 
| 2164 | 
            +
            	<span class="box1">
         | 
| 2165 | 
            +
            		<span aria-hidden="true" class="icon_like"></span>
         | 
| 2166 | 
            +
            		 icon_like
         | 
| 2167 | 
            +
            	</span>
         | 
| 2168 | 
            +
            	<span class="box1">
         | 
| 2169 | 
            +
            		<span aria-hidden="true" class="icon_dislike"></span>
         | 
| 2170 | 
            +
            		 icon_dislike
         | 
| 2171 | 
            +
            	</span>
         | 
| 2172 | 
            +
            	<span class="box1">
         | 
| 2173 | 
            +
            		<span aria-hidden="true" class="icon_mug"></span>
         | 
| 2174 | 
            +
            		 icon_mug
         | 
| 2175 | 
            +
            	</span>
         | 
| 2176 | 
            +
            	<span class="box1">
         | 
| 2177 | 
            +
            		<span aria-hidden="true" class="icon_currency"></span>
         | 
| 2178 | 
            +
            		 icon_currency
         | 
| 2179 | 
            +
            	</span>
         | 
| 2180 | 
            +
            	<span class="box1">
         | 
| 2181 | 
            +
            		<span aria-hidden="true" class="icon_wallet"></span>
         | 
| 2182 | 
            +
            		 icon_wallet
         | 
| 2183 | 
            +
            	</span>
         | 
| 2184 | 
            +
            	<span class="box1">
         | 
| 2185 | 
            +
            		<span aria-hidden="true" class="icon_pens"></span>
         | 
| 2186 | 
            +
            		 icon_pens
         | 
| 2187 | 
            +
            	</span>
         | 
| 2188 | 
            +
            	<span class="box1">
         | 
| 2189 | 
            +
            		<span aria-hidden="true" class="icon_easel"></span>
         | 
| 2190 | 
            +
            		 icon_easel
         | 
| 2191 | 
            +
            	</span>
         | 
| 2192 | 
            +
            	<span class="box1">
         | 
| 2193 | 
            +
            		<span aria-hidden="true" class="icon_flowchart"></span>
         | 
| 2194 | 
            +
            		 icon_flowchart
         | 
| 2195 | 
            +
            	</span>
         | 
| 2196 | 
            +
            	<span class="box1">
         | 
| 2197 | 
            +
            		<span aria-hidden="true" class="icon_datareport"></span>
         | 
| 2198 | 
            +
            		 icon_datareport
         | 
| 2199 | 
            +
            	</span>
         | 
| 2200 | 
            +
            	<span class="box1">
         | 
| 2201 | 
            +
            		<span aria-hidden="true" class="icon_briefcase"></span>
         | 
| 2202 | 
            +
            		 icon_briefcase
         | 
| 2203 | 
            +
            	</span>
         | 
| 2204 | 
            +
            	<span class="box1">
         | 
| 2205 | 
            +
            		<span aria-hidden="true" class="icon_shield"></span>
         | 
| 2206 | 
            +
            		 icon_shield
         | 
| 2207 | 
            +
            	</span>
         | 
| 2208 | 
            +
            	<span class="box1">
         | 
| 2209 | 
            +
            		<span aria-hidden="true" class="icon_percent"></span>
         | 
| 2210 | 
            +
            		 icon_percent
         | 
| 2211 | 
            +
            	</span>
         | 
| 2212 | 
            +
            	<span class="box1">
         | 
| 2213 | 
            +
            		<span aria-hidden="true" class="icon_globe"></span>
         | 
| 2214 | 
            +
            		 icon_globe
         | 
| 2215 | 
            +
            	</span>
         | 
| 2216 | 
            +
            	<span class="box1">
         | 
| 2217 | 
            +
            		<span aria-hidden="true" class="icon_globe-2"></span>
         | 
| 2218 | 
            +
            		 icon_globe-2
         | 
| 2219 | 
            +
            	</span>
         | 
| 2220 | 
            +
            	<span class="box1">
         | 
| 2221 | 
            +
            		<span aria-hidden="true" class="icon_target"></span>
         | 
| 2222 | 
            +
            		 icon_target
         | 
| 2223 | 
            +
            	</span>
         | 
| 2224 | 
            +
            	<span class="box1">
         | 
| 2225 | 
            +
            		<span aria-hidden="true" class="icon_hourglass"></span>
         | 
| 2226 | 
            +
            		 icon_hourglass
         | 
| 2227 | 
            +
            	</span>
         | 
| 2228 | 
            +
            	<span class="box1">
         | 
| 2229 | 
            +
            		<span aria-hidden="true" class="icon_balance"></span>
         | 
| 2230 | 
            +
            		 icon_balance
         | 
| 2231 | 
            +
            	</span>
         | 
| 2232 | 
            +
                
         | 
| 2233 | 
            +
                </div>
         | 
| 2234 | 
            +
                
         | 
| 2235 | 
            +
            	<span class="box1">
         | 
| 2236 | 
            +
            		<span aria-hidden="true" class="icon_star_alt"></span>
         | 
| 2237 | 
            +
            		 icon_star_alt
         | 
| 2238 | 
            +
            	</span>
         | 
| 2239 | 
            +
            	<span class="box1">
         | 
| 2240 | 
            +
            		<span aria-hidden="true" class="icon_star-half_alt"></span>
         | 
| 2241 | 
            +
            		 icon_star-half_alt
         | 
| 2242 | 
            +
            	</span>
         | 
| 2243 | 
            +
            	<span class="box1">
         | 
| 2244 | 
            +
            		<span aria-hidden="true" class="icon_star"></span>
         | 
| 2245 | 
            +
            		 icon_star
         | 
| 2246 | 
            +
            	</span>
         | 
| 2247 | 
            +
            	<span class="box1">
         | 
| 2248 | 
            +
            		<span aria-hidden="true" class="icon_star-half"></span>
         | 
| 2249 | 
            +
            		 icon_star-half
         | 
| 2250 | 
            +
            	</span>
         | 
| 2251 | 
            +
            	<span class="box1">
         | 
| 2252 | 
            +
            		<span aria-hidden="true" class="icon_tools"></span>
         | 
| 2253 | 
            +
            		 icon_tools
         | 
| 2254 | 
            +
            	</span>
         | 
| 2255 | 
            +
            	<span class="box1">
         | 
| 2256 | 
            +
            		<span aria-hidden="true" class="icon_tool"></span>
         | 
| 2257 | 
            +
            		 icon_tool
         | 
| 2258 | 
            +
            	</span>
         | 
| 2259 | 
            +
            	<span class="box1">
         | 
| 2260 | 
            +
            		<span aria-hidden="true" class="icon_cog"></span>
         | 
| 2261 | 
            +
            		 icon_cog
         | 
| 2262 | 
            +
            	</span>
         | 
| 2263 | 
            +
            	<span class="box1">
         | 
| 2264 | 
            +
            		<span aria-hidden="true" class="icon_cogs"></span>
         | 
| 2265 | 
            +
            		 icon_cogs
         | 
| 2266 | 
            +
            	</span>
         | 
| 2267 | 
            +
            	<span class="box1">
         | 
| 2268 | 
            +
            		<span aria-hidden="true" class="arrow_up_alt"></span>
         | 
| 2269 | 
            +
            		 arrow_up_alt
         | 
| 2270 | 
            +
            	</span>
         | 
| 2271 | 
            +
            	<span class="box1">
         | 
| 2272 | 
            +
            		<span aria-hidden="true" class="arrow_down_alt"></span>
         | 
| 2273 | 
            +
            		 arrow_down_alt
         | 
| 2274 | 
            +
            	</span>
         | 
| 2275 | 
            +
            	<span class="box1">
         | 
| 2276 | 
            +
            		<span aria-hidden="true" class="arrow_left_alt"></span>
         | 
| 2277 | 
            +
            		 arrow_left_alt
         | 
| 2278 | 
            +
            	</span>
         | 
| 2279 | 
            +
            	<span class="box1">
         | 
| 2280 | 
            +
            		<span aria-hidden="true" class="arrow_right_alt"></span>
         | 
| 2281 | 
            +
            		 arrow_right_alt
         | 
| 2282 | 
            +
            	</span>
         | 
| 2283 | 
            +
            	<span class="box1">
         | 
| 2284 | 
            +
            		<span aria-hidden="true" class="arrow_left-up_alt"></span>
         | 
| 2285 | 
            +
            		 arrow_left-up_alt
         | 
| 2286 | 
            +
            	</span>
         | 
| 2287 | 
            +
            	<span class="box1">
         | 
| 2288 | 
            +
            		<span aria-hidden="true" class="arrow_right-up_alt"></span>
         | 
| 2289 | 
            +
            		 arrow_right-up_alt
         | 
| 2290 | 
            +
            	</span>
         | 
| 2291 | 
            +
            	<span class="box1">
         | 
| 2292 | 
            +
            		<span aria-hidden="true" class="arrow_right-down_alt"></span>
         | 
| 2293 | 
            +
            		 arrow_right-down_alt
         | 
| 2294 | 
            +
            	</span>
         | 
| 2295 | 
            +
            	<span class="box1">
         | 
| 2296 | 
            +
            		<span aria-hidden="true" class="arrow_left-down_alt"></span>
         | 
| 2297 | 
            +
            		 arrow_left-down_alt
         | 
| 2298 | 
            +
            	</span>
         | 
| 2299 | 
            +
            	<span class="box1">
         | 
| 2300 | 
            +
            		<span aria-hidden="true" class="arrow_condense_alt"></span>
         | 
| 2301 | 
            +
            		 arrow_condense_alt
         | 
| 2302 | 
            +
            	</span>
         | 
| 2303 | 
            +
            	<span class="box1">
         | 
| 2304 | 
            +
            		<span aria-hidden="true" class="arrow_expand_alt3"></span>
         | 
| 2305 | 
            +
            		 arrow_expand_alt3
         | 
| 2306 | 
            +
            	</span>
         | 
| 2307 | 
            +
            	<span class="box1">
         | 
| 2308 | 
            +
            		<span aria-hidden="true" class="arrow_carrot_up_alt"></span>
         | 
| 2309 | 
            +
            		 arrow_carrot_up_alt
         | 
| 2310 | 
            +
            	</span>
         | 
| 2311 | 
            +
            	<span class="box1">
         | 
| 2312 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-down_alt"></span>
         | 
| 2313 | 
            +
            		 arrow_carrot-down_alt
         | 
| 2314 | 
            +
            	</span>
         | 
| 2315 | 
            +
            	<span class="box1">
         | 
| 2316 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-left_alt"></span>
         | 
| 2317 | 
            +
            		 arrow_carrot-left_alt
         | 
| 2318 | 
            +
            	</span>
         | 
| 2319 | 
            +
            	<span class="box1">
         | 
| 2320 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-right_alt"></span>
         | 
| 2321 | 
            +
            		 arrow_carrot-right_alt
         | 
| 2322 | 
            +
            	</span>
         | 
| 2323 | 
            +
            	<span class="box1">
         | 
| 2324 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2up_alt"></span>
         | 
| 2325 | 
            +
            		 arrow_carrot-2up_alt
         | 
| 2326 | 
            +
            	</span>
         | 
| 2327 | 
            +
            	<span class="box1">
         | 
| 2328 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2dwnn_alt"></span>
         | 
| 2329 | 
            +
            		 arrow_carrot-2dwnn_alt
         | 
| 2330 | 
            +
            	</span>
         | 
| 2331 | 
            +
            	<span class="box1">
         | 
| 2332 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2left_alt"></span>
         | 
| 2333 | 
            +
            		 arrow_carrot-2left_alt
         | 
| 2334 | 
            +
            	</span>
         | 
| 2335 | 
            +
            	<span class="box1">
         | 
| 2336 | 
            +
            		<span aria-hidden="true" class="arrow_carrot-2right_alt"></span>
         | 
| 2337 | 
            +
            		 arrow_carrot-2right_alt
         | 
| 2338 | 
            +
            	</span>
         | 
| 2339 | 
            +
            	<span class="box1">
         | 
| 2340 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-up_alt"></span>
         | 
| 2341 | 
            +
            		 arrow_triangle-up_alt
         | 
| 2342 | 
            +
            	</span>
         | 
| 2343 | 
            +
            	<span class="box1">
         | 
| 2344 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-down_alt"></span>
         | 
| 2345 | 
            +
            		 arrow_triangle-down_alt
         | 
| 2346 | 
            +
            	</span>
         | 
| 2347 | 
            +
            	<span class="box1">
         | 
| 2348 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-left_alt"></span>
         | 
| 2349 | 
            +
            		 arrow_triangle-left_alt
         | 
| 2350 | 
            +
            	</span>
         | 
| 2351 | 
            +
            	<span class="box1">
         | 
| 2352 | 
            +
            		<span aria-hidden="true" class="arrow_triangle-right_alt"></span>
         | 
| 2353 | 
            +
            		 arrow_triangle-right_alt
         | 
| 2354 | 
            +
            	</span>
         | 
| 2355 | 
            +
            	<span class="box1">
         | 
| 2356 | 
            +
            		<span aria-hidden="true" class="icon_minus_alt"></span>
         | 
| 2357 | 
            +
            		 icon_minus_alt
         | 
| 2358 | 
            +
            	</span>
         | 
| 2359 | 
            +
            	<span class="box1">
         | 
| 2360 | 
            +
            		<span aria-hidden="true" class="icon_plus_alt"></span>
         | 
| 2361 | 
            +
            		 icon_plus_alt
         | 
| 2362 | 
            +
            	</span>
         | 
| 2363 | 
            +
            	<span class="box1">
         | 
| 2364 | 
            +
            		<span aria-hidden="true" class="icon_close_alt"></span>
         | 
| 2365 | 
            +
            		 icon_close_alt
         | 
| 2366 | 
            +
            	</span>
         | 
| 2367 | 
            +
            	<span class="box1">
         | 
| 2368 | 
            +
            		<span aria-hidden="true" class="icon_check_alt"></span>
         | 
| 2369 | 
            +
            		 icon_check_alt
         | 
| 2370 | 
            +
            	</span>
         | 
| 2371 | 
            +
            	<span class="box1">
         | 
| 2372 | 
            +
            		<span aria-hidden="true" class="icon_zoom-out"></span>
         | 
| 2373 | 
            +
            		 icon_zoom-out
         | 
| 2374 | 
            +
            	</span>
         | 
| 2375 | 
            +
            	<span class="box1">
         | 
| 2376 | 
            +
            		<span aria-hidden="true" class="icon_zoom-in"></span>
         | 
| 2377 | 
            +
            		 icon_zoom-in
         | 
| 2378 | 
            +
            	</span>
         | 
| 2379 | 
            +
            	<span class="box1">
         | 
| 2380 | 
            +
            		<span aria-hidden="true" class="icon_stop_alt"></span>
         | 
| 2381 | 
            +
            		 icon_stop_alt
         | 
| 2382 | 
            +
            	</span>
         | 
| 2383 | 
            +
            	<span class="box1">
         | 
| 2384 | 
            +
            		<span aria-hidden="true" class="icon_menu-square_alt"></span>
         | 
| 2385 | 
            +
            		 icon_menu-square_alt
         | 
| 2386 | 
            +
            	</span>
         | 
| 2387 | 
            +
            	<span class="box1">
         | 
| 2388 | 
            +
            		<span aria-hidden="true" class="icon_menu-circle_alt"></span>
         | 
| 2389 | 
            +
            		 icon_menu-circle_alt
         | 
| 2390 | 
            +
            	</span>
         | 
| 2391 | 
            +
            	<span class="box1">
         | 
| 2392 | 
            +
            		<span aria-hidden="true" class="icon_document"></span>
         | 
| 2393 | 
            +
            		 icon_document
         | 
| 2394 | 
            +
            	</span>
         | 
| 2395 | 
            +
            	<span class="box1">
         | 
| 2396 | 
            +
            		<span aria-hidden="true" class="icon_documents"></span>
         | 
| 2397 | 
            +
            		 icon_documents
         | 
| 2398 | 
            +
            	</span>
         | 
| 2399 | 
            +
            	<span class="box1">
         | 
| 2400 | 
            +
            		<span aria-hidden="true" class="icon_pencil_alt"></span>
         | 
| 2401 | 
            +
            		 icon_pencil_alt
         | 
| 2402 | 
            +
            	</span>
         | 
| 2403 | 
            +
            	<span class="box1">
         | 
| 2404 | 
            +
            		<span aria-hidden="true" class="icon_folder"></span>
         | 
| 2405 | 
            +
            		 icon_folder
         | 
| 2406 | 
            +
            	</span>
         | 
| 2407 | 
            +
            	<span class="box1">
         | 
| 2408 | 
            +
            		<span aria-hidden="true" class="icon_folder-open"></span>
         | 
| 2409 | 
            +
            		 icon_folder-open
         | 
| 2410 | 
            +
            	</span>
         | 
| 2411 | 
            +
            	<span class="box1">
         | 
| 2412 | 
            +
            		<span aria-hidden="true" class="icon_folder-add"></span>
         | 
| 2413 | 
            +
            		 icon_folder-add
         | 
| 2414 | 
            +
            	</span>
         | 
| 2415 | 
            +
            	<span class="box1">
         | 
| 2416 | 
            +
            		<span aria-hidden="true" class="icon_folder_upload"></span>
         | 
| 2417 | 
            +
            		 icon_folder_upload
         | 
| 2418 | 
            +
            	</span>
         | 
| 2419 | 
            +
            	<span class="box1">
         | 
| 2420 | 
            +
            		<span aria-hidden="true" class="icon_folder_download"></span>
         | 
| 2421 | 
            +
            		 icon_folder_download
         | 
| 2422 | 
            +
            	</span>
         | 
| 2423 | 
            +
            	<span class="box1">
         | 
| 2424 | 
            +
            		<span aria-hidden="true" class="icon_info"></span>
         | 
| 2425 | 
            +
            		 icon_info
         | 
| 2426 | 
            +
            	</span>
         | 
| 2427 | 
            +
            	<span class="box1">
         | 
| 2428 | 
            +
            		<span aria-hidden="true" class="icon_error-circle"></span>
         | 
| 2429 | 
            +
            		 icon_error-circle
         | 
| 2430 | 
            +
            	</span>
         | 
| 2431 | 
            +
            	<span class="box1">
         | 
| 2432 | 
            +
            		<span aria-hidden="true" class="icon_error-oct"></span>
         | 
| 2433 | 
            +
            		 icon_error-oct
         | 
| 2434 | 
            +
            	</span>
         | 
| 2435 | 
            +
            	<span class="box1">
         | 
| 2436 | 
            +
            		<span aria-hidden="true" class="icon_error-triangle"></span>
         | 
| 2437 | 
            +
            		 icon_error-triangle
         | 
| 2438 | 
            +
            	</span>
         | 
| 2439 | 
            +
            	<span class="box1">
         | 
| 2440 | 
            +
            		<span aria-hidden="true" class="icon_question_alt"></span>
         | 
| 2441 | 
            +
            		 icon_question_alt
         | 
| 2442 | 
            +
            	</span>
         | 
| 2443 | 
            +
            	<span class="box1">
         | 
| 2444 | 
            +
            		<span aria-hidden="true" class="icon_comment"></span>
         | 
| 2445 | 
            +
            		 icon_comment
         | 
| 2446 | 
            +
            	</span>
         | 
| 2447 | 
            +
            	<span class="box1">
         | 
| 2448 | 
            +
            		<span aria-hidden="true" class="icon_chat"></span>
         | 
| 2449 | 
            +
            		 icon_chat
         | 
| 2450 | 
            +
            	</span>
         | 
| 2451 | 
            +
            	<span class="box1">
         | 
| 2452 | 
            +
            		<span aria-hidden="true" class="icon_vol-mute"></span>
         | 
| 2453 | 
            +
            		 icon_vol-mute
         | 
| 2454 | 
            +
            	</span>
         | 
| 2455 | 
            +
            	<span class="box1">
         | 
| 2456 | 
            +
            		<span aria-hidden="true" class="icon_volume-low"></span>
         | 
| 2457 | 
            +
            		 icon_volume-low
         | 
| 2458 | 
            +
            	</span>
         | 
| 2459 | 
            +
            	<span class="box1">
         | 
| 2460 | 
            +
            		<span aria-hidden="true" class="icon_volume-high"></span>
         | 
| 2461 | 
            +
            		 icon_volume-high
         | 
| 2462 | 
            +
            	</span>
         | 
| 2463 | 
            +
            	<span class="box1">
         | 
| 2464 | 
            +
            		<span aria-hidden="true" class="icon_quotations_alt"></span>
         | 
| 2465 | 
            +
            		 icon_quotations_alt
         | 
| 2466 | 
            +
            	</span>
         | 
| 2467 | 
            +
            	<span class="box1">
         | 
| 2468 | 
            +
            		<span aria-hidden="true" class="icon_clock"></span>
         | 
| 2469 | 
            +
            		 icon_clock
         | 
| 2470 | 
            +
            	</span>
         | 
| 2471 | 
            +
            	<span class="box1">
         | 
| 2472 | 
            +
            		<span aria-hidden="true" class="icon_lock"></span>
         | 
| 2473 | 
            +
            		 icon_lock
         | 
| 2474 | 
            +
            	</span>
         | 
| 2475 | 
            +
            	<span class="box1">
         | 
| 2476 | 
            +
            		<span aria-hidden="true" class="icon_lock-open"></span>
         | 
| 2477 | 
            +
            		 icon_lock-open
         | 
| 2478 | 
            +
            	</span>
         | 
| 2479 | 
            +
            	<span class="box1">
         | 
| 2480 | 
            +
            		<span aria-hidden="true" class="icon_key"></span>
         | 
| 2481 | 
            +
            		 icon_key
         | 
| 2482 | 
            +
            	</span>
         | 
| 2483 | 
            +
            	<span class="box1">
         | 
| 2484 | 
            +
            		<span aria-hidden="true" class="icon_cloud"></span>
         | 
| 2485 | 
            +
            		 icon_cloud
         | 
| 2486 | 
            +
            	</span>
         | 
| 2487 | 
            +
            	<span class="box1">
         | 
| 2488 | 
            +
            		<span aria-hidden="true" class="icon_cloud-upload"></span>
         | 
| 2489 | 
            +
            		 icon_cloud-upload
         | 
| 2490 | 
            +
            	</span>
         | 
| 2491 | 
            +
            	<span class="box1">
         | 
| 2492 | 
            +
            		<span aria-hidden="true" class="icon_cloud-download"></span>
         | 
| 2493 | 
            +
            		 icon_cloud-download
         | 
| 2494 | 
            +
            	</span>
         | 
| 2495 | 
            +
            	<span class="box1">
         | 
| 2496 | 
            +
            		<span aria-hidden="true" class="icon_lightbulb"></span>
         | 
| 2497 | 
            +
            		 icon_lightbulb
         | 
| 2498 | 
            +
            	</span>
         | 
| 2499 | 
            +
            	<span class="box1">
         | 
| 2500 | 
            +
            		<span aria-hidden="true" class="icon_gift"></span>
         | 
| 2501 | 
            +
            		 icon_gift
         | 
| 2502 | 
            +
            	</span>
         | 
| 2503 | 
            +
            	<span class="box1">
         | 
| 2504 | 
            +
            		<span aria-hidden="true" class="icon_house"></span>
         | 
| 2505 | 
            +
            		 icon_house
         | 
| 2506 | 
            +
            	</span>
         | 
| 2507 | 
            +
            	<span class="box1">
         | 
| 2508 | 
            +
            		<span aria-hidden="true" class="icon_camera"></span>
         | 
| 2509 | 
            +
            		 icon_camera
         | 
| 2510 | 
            +
            	</span>
         | 
| 2511 | 
            +
            	<span class="box1">
         | 
| 2512 | 
            +
            		<span aria-hidden="true" class="icon_mail"></span>
         | 
| 2513 | 
            +
            		 icon_mail
         | 
| 2514 | 
            +
            	</span>
         | 
| 2515 | 
            +
            	<span class="box1">
         | 
| 2516 | 
            +
            		<span aria-hidden="true" class="icon_cone"></span>
         | 
| 2517 | 
            +
            		 icon_cone
         | 
| 2518 | 
            +
            	</span>
         | 
| 2519 | 
            +
            	<span class="box1">
         | 
| 2520 | 
            +
            		<span aria-hidden="true" class="icon_ribbon"></span>
         | 
| 2521 | 
            +
            		 icon_ribbon
         | 
| 2522 | 
            +
            	</span>
         | 
| 2523 | 
            +
            	<span class="box1">
         | 
| 2524 | 
            +
            		<span aria-hidden="true" class="icon_bag"></span>
         | 
| 2525 | 
            +
            		 icon_bag
         | 
| 2526 | 
            +
            	</span>
         | 
| 2527 | 
            +
            	<span class="box1">
         | 
| 2528 | 
            +
            		<span aria-hidden="true" class="icon_cart"></span>
         | 
| 2529 | 
            +
            		 icon_cart
         | 
| 2530 | 
            +
            	</span>
         | 
| 2531 | 
            +
            	<span class="box1">
         | 
| 2532 | 
            +
            		<span aria-hidden="true" class="icon_tag"></span>
         | 
| 2533 | 
            +
            		 icon_tag
         | 
| 2534 | 
            +
            	</span>
         | 
| 2535 | 
            +
            	<span class="box1">
         | 
| 2536 | 
            +
            		<span aria-hidden="true" class="icon_tags"></span>
         | 
| 2537 | 
            +
            		 icon_tags
         | 
| 2538 | 
            +
            	</span>
         | 
| 2539 | 
            +
            	<span class="box1">
         | 
| 2540 | 
            +
            		<span aria-hidden="true" class="icon_trash"></span>
         | 
| 2541 | 
            +
            		 icon_trash
         | 
| 2542 | 
            +
            	</span>
         | 
| 2543 | 
            +
            	<span class="box1">
         | 
| 2544 | 
            +
            		<span aria-hidden="true" class="icon_cursor"></span>
         | 
| 2545 | 
            +
            		 icon_cursor
         | 
| 2546 | 
            +
            	</span>
         | 
| 2547 | 
            +
            	<span class="box1">
         | 
| 2548 | 
            +
            		<span aria-hidden="true" class="icon_mic"></span>
         | 
| 2549 | 
            +
            		 icon_mic
         | 
| 2550 | 
            +
            	</span>
         | 
| 2551 | 
            +
            	<span class="box1">
         | 
| 2552 | 
            +
            		<span aria-hidden="true" class="icon_compass"></span>
         | 
| 2553 | 
            +
            		 icon_compass
         | 
| 2554 | 
            +
            	</span>
         | 
| 2555 | 
            +
            	<span class="box1">
         | 
| 2556 | 
            +
            		<span aria-hidden="true" class="icon_pin"></span>
         | 
| 2557 | 
            +
            		 icon_pin
         | 
| 2558 | 
            +
            	</span>
         | 
| 2559 | 
            +
            	<span class="box1">
         | 
| 2560 | 
            +
            		<span aria-hidden="true" class="icon_pushpin"></span>
         | 
| 2561 | 
            +
            		 icon_pushpin
         | 
| 2562 | 
            +
            	</span>
         | 
| 2563 | 
            +
            	<span class="box1">
         | 
| 2564 | 
            +
            		<span aria-hidden="true" class="icon_map"></span>
         | 
| 2565 | 
            +
            		 icon_map
         | 
| 2566 | 
            +
            	</span>
         | 
| 2567 | 
            +
            	<span class="box1">
         | 
| 2568 | 
            +
            		<span aria-hidden="true" class="icon_drawer"></span>
         | 
| 2569 | 
            +
            		 icon_drawer
         | 
| 2570 | 
            +
            	</span>
         | 
| 2571 | 
            +
            	<span class="box1">
         | 
| 2572 | 
            +
            		<span aria-hidden="true" class="icon_toolbox"></span>
         | 
| 2573 | 
            +
            		 icon_toolbox
         | 
| 2574 | 
            +
            	</span>
         | 
| 2575 | 
            +
            	<span class="box1">
         | 
| 2576 | 
            +
            		<span aria-hidden="true" class="icon_book"></span>
         | 
| 2577 | 
            +
            		 icon_book
         | 
| 2578 | 
            +
            	</span>
         | 
| 2579 | 
            +
            	<span class="box1">
         | 
| 2580 | 
            +
            		<span aria-hidden="true" class="icon_contacts"></span>
         | 
| 2581 | 
            +
            		 icon_contacts
         | 
| 2582 | 
            +
            	</span>
         | 
| 2583 | 
            +
            	<span class="box1">
         | 
| 2584 | 
            +
            		<span aria-hidden="true" class="icon_archive"></span>
         | 
| 2585 | 
            +
            		 icon_archive
         | 
| 2586 | 
            +
            	</span>
         | 
| 2587 | 
            +
            	<span class="box1">
         | 
| 2588 | 
            +
            		<span aria-hidden="true" class="icon_heart"></span>
         | 
| 2589 | 
            +
            		 icon_heart
         | 
| 2590 | 
            +
            	</span>
         | 
| 2591 | 
            +
            	<span class="box1">
         | 
| 2592 | 
            +
            		<span aria-hidden="true" class="icon_profile"></span>
         | 
| 2593 | 
            +
            		 icon_profile
         | 
| 2594 | 
            +
            	</span>
         | 
| 2595 | 
            +
            	<span class="box1">
         | 
| 2596 | 
            +
            		<span aria-hidden="true" class="icon_group"></span>
         | 
| 2597 | 
            +
            		 icon_group
         | 
| 2598 | 
            +
            	</span>
         | 
| 2599 | 
            +
            	<span class="box1">
         | 
| 2600 | 
            +
            		<span aria-hidden="true" class="icon_grid-2x2"></span>
         | 
| 2601 | 
            +
            		 icon_grid-2x2
         | 
| 2602 | 
            +
            	</span>
         | 
| 2603 | 
            +
            	<span class="box1">
         | 
| 2604 | 
            +
            		<span aria-hidden="true" class="icon_grid-3x3"></span>
         | 
| 2605 | 
            +
            		 icon_grid-3x3
         | 
| 2606 | 
            +
            	</span>
         | 
| 2607 | 
            +
            	<span class="box1">
         | 
| 2608 | 
            +
            		<span aria-hidden="true" class="icon_music"></span>
         | 
| 2609 | 
            +
            		 icon_music
         | 
| 2610 | 
            +
            	</span>
         | 
| 2611 | 
            +
            	<span class="box1">
         | 
| 2612 | 
            +
            		<span aria-hidden="true" class="icon_pause_alt"></span>
         | 
| 2613 | 
            +
            		 icon_pause_alt
         | 
| 2614 | 
            +
            	</span>
         | 
| 2615 | 
            +
            	<span class="box1">
         | 
| 2616 | 
            +
            		<span aria-hidden="true" class="icon_phone"></span>
         | 
| 2617 | 
            +
            		 icon_phone
         | 
| 2618 | 
            +
            	</span>
         | 
| 2619 | 
            +
            	<span class="box1">
         | 
| 2620 | 
            +
            		<span aria-hidden="true" class="icon_upload"></span>
         | 
| 2621 | 
            +
            		 icon_upload
         | 
| 2622 | 
            +
            	</span>
         | 
| 2623 | 
            +
            	<span class="box1">
         | 
| 2624 | 
            +
            		<span aria-hidden="true" class="icon_download"></span>
         | 
| 2625 | 
            +
            		 icon_download
         | 
| 2626 | 
            +
            	</span>
         | 
| 2627 | 
            +
                <span class="box1">
         | 
| 2628 | 
            +
            		<span aria-hidden="true" class="icon_rook"></span>
         | 
| 2629 | 
            +
            		 icon_rook
         | 
| 2630 | 
            +
            	</span>
         | 
| 2631 | 
            +
                
         | 
| 2632 | 
            +
                <div class="new">
         | 
| 2633 | 
            +
                
         | 
| 2634 | 
            +
            	<span class="box1">
         | 
| 2635 | 
            +
            		<span aria-hidden="true" class="icon_printer-alt"></span>
         | 
| 2636 | 
            +
            		 icon_printer-alt
         | 
| 2637 | 
            +
            	</span>
         | 
| 2638 | 
            +
            	<span class="box1">
         | 
| 2639 | 
            +
            		<span aria-hidden="true" class="icon_calculator_alt"></span>
         | 
| 2640 | 
            +
            		 icon_calculator_alt
         | 
| 2641 | 
            +
            	</span>
         | 
| 2642 | 
            +
            	<span class="box1">
         | 
| 2643 | 
            +
            		<span aria-hidden="true" class="icon_building_alt"></span>
         | 
| 2644 | 
            +
            		 icon_building_alt
         | 
| 2645 | 
            +
            	</span>
         | 
| 2646 | 
            +
            	<span class="box1">
         | 
| 2647 | 
            +
            		<span aria-hidden="true" class="icon_floppy_alt"></span>
         | 
| 2648 | 
            +
            		 icon_floppy_alt
         | 
| 2649 | 
            +
            	</span>
         | 
| 2650 | 
            +
            	<span class="box1">
         | 
| 2651 | 
            +
            		<span aria-hidden="true" class="icon_drive_alt"></span>
         | 
| 2652 | 
            +
            		 icon_drive_alt
         | 
| 2653 | 
            +
            	</span>
         | 
| 2654 | 
            +
            	<span class="box1">
         | 
| 2655 | 
            +
            		<span aria-hidden="true" class="icon_search_alt"></span>
         | 
| 2656 | 
            +
            		 icon_search_alt
         | 
| 2657 | 
            +
            	</span>
         | 
| 2658 | 
            +
            	<span class="box1">
         | 
| 2659 | 
            +
            		<span aria-hidden="true" class="icon_id_alt"></span>
         | 
| 2660 | 
            +
            		 icon_id_alt
         | 
| 2661 | 
            +
            	</span>
         | 
| 2662 | 
            +
            	<span class="box1">
         | 
| 2663 | 
            +
            		<span aria-hidden="true" class="icon_id-2_alt"></span>
         | 
| 2664 | 
            +
            		 icon_id-2_alt
         | 
| 2665 | 
            +
            	</span>
         | 
| 2666 | 
            +
            	<span class="box1">
         | 
| 2667 | 
            +
            		<span aria-hidden="true" class="icon_puzzle_alt"></span>
         | 
| 2668 | 
            +
            		 icon_puzzle_alt
         | 
| 2669 | 
            +
            	</span>
         | 
| 2670 | 
            +
            	<span class="box1">
         | 
| 2671 | 
            +
            		<span aria-hidden="true" class="icon_like_alt"></span>
         | 
| 2672 | 
            +
            		 icon_like_alt
         | 
| 2673 | 
            +
            	</span>
         | 
| 2674 | 
            +
            	<span class="box1">
         | 
| 2675 | 
            +
            		<span aria-hidden="true" class="icon_dislike_alt"></span>
         | 
| 2676 | 
            +
            		 icon_dislike_alt
         | 
| 2677 | 
            +
            	</span>
         | 
| 2678 | 
            +
            	<span class="box1">
         | 
| 2679 | 
            +
            		<span aria-hidden="true" class="icon_mug_alt"></span>
         | 
| 2680 | 
            +
            		 icon_mug_alt
         | 
| 2681 | 
            +
            	</span>
         | 
| 2682 | 
            +
            	<span class="box1">
         | 
| 2683 | 
            +
            		<span aria-hidden="true" class="icon_currency_alt"></span>
         | 
| 2684 | 
            +
            		 icon_currency_alt
         | 
| 2685 | 
            +
            	</span>
         | 
| 2686 | 
            +
            	<span class="box1">
         | 
| 2687 | 
            +
            		<span aria-hidden="true" class="icon_wallet_alt"></span>
         | 
| 2688 | 
            +
            		 icon_wallet_alt
         | 
| 2689 | 
            +
            	</span>
         | 
| 2690 | 
            +
            	<span class="box1">
         | 
| 2691 | 
            +
            		<span aria-hidden="true" class="icon_pens_alt"></span>
         | 
| 2692 | 
            +
            		 icon_pens_alt
         | 
| 2693 | 
            +
            	</span>
         | 
| 2694 | 
            +
            	<span class="box1">
         | 
| 2695 | 
            +
            		<span aria-hidden="true" class="icon_easel_alt"></span>
         | 
| 2696 | 
            +
            		 icon_easel_alt
         | 
| 2697 | 
            +
            	</span>
         | 
| 2698 | 
            +
            	<span class="box1">
         | 
| 2699 | 
            +
            		<span aria-hidden="true" class="icon_flowchart_alt"></span>
         | 
| 2700 | 
            +
            		 icon_flowchart_alt
         | 
| 2701 | 
            +
            	</span>
         | 
| 2702 | 
            +
            	<span class="box1">
         | 
| 2703 | 
            +
            		<span aria-hidden="true" class="icon_datareport_alt"></span>
         | 
| 2704 | 
            +
            		 icon_datareport_alt
         | 
| 2705 | 
            +
            	</span>
         | 
| 2706 | 
            +
            	<span class="box1">
         | 
| 2707 | 
            +
            		<span aria-hidden="true" class="icon_briefcase_alt"></span>
         | 
| 2708 | 
            +
            		 icon_briefcase_alt
         | 
| 2709 | 
            +
            	</span>
         | 
| 2710 | 
            +
            	<span class="box1">
         | 
| 2711 | 
            +
            		<span aria-hidden="true" class="icon_shield_alt"></span>
         | 
| 2712 | 
            +
            		 icon_shield_alt
         | 
| 2713 | 
            +
            	</span>
         | 
| 2714 | 
            +
            	<span class="box1">
         | 
| 2715 | 
            +
            		<span aria-hidden="true" class="icon_percent_alt"></span>
         | 
| 2716 | 
            +
            		 icon_percent_alt
         | 
| 2717 | 
            +
            	</span>
         | 
| 2718 | 
            +
            	<span class="box1">
         | 
| 2719 | 
            +
            		<span aria-hidden="true" class="icon_globe_alt"></span>
         | 
| 2720 | 
            +
            		 icon_globe_alt
         | 
| 2721 | 
            +
            	</span>
         | 
| 2722 | 
            +
            	<span class="box1">
         | 
| 2723 | 
            +
            		<span aria-hidden="true" class="icon_clipboard"></span>
         | 
| 2724 | 
            +
            		 icon_clipboard
         | 
| 2725 | 
            +
            	</span>
         | 
| 2726 | 
            +
                
         | 
| 2727 | 
            +
                </div>
         | 
| 2728 | 
            +
                
         | 
| 2729 | 
            +
            	<span class="box1">
         | 
| 2730 | 
            +
            		<span aria-hidden="true" class="social_facebook"></span>
         | 
| 2731 | 
            +
            		 social_facebook
         | 
| 2732 | 
            +
            	</span>
         | 
| 2733 | 
            +
            	<span class="box1">
         | 
| 2734 | 
            +
            		<span aria-hidden="true" class="social_twitter"></span>
         | 
| 2735 | 
            +
            		 social_twitter
         | 
| 2736 | 
            +
            	</span>
         | 
| 2737 | 
            +
            	<span class="box1">
         | 
| 2738 | 
            +
            		<span aria-hidden="true" class="social_pinterest"></span>
         | 
| 2739 | 
            +
            		 social_pinterest
         | 
| 2740 | 
            +
            	</span>
         | 
| 2741 | 
            +
            	<span class="box1">
         | 
| 2742 | 
            +
            		<span aria-hidden="true" class="social_googleplus"></span>
         | 
| 2743 | 
            +
            		 social_googleplus
         | 
| 2744 | 
            +
            	</span>
         | 
| 2745 | 
            +
            	<span class="box1">
         | 
| 2746 | 
            +
            		<span aria-hidden="true" class="social_tumblr"></span>
         | 
| 2747 | 
            +
            		 social_tumblr
         | 
| 2748 | 
            +
            	</span>
         | 
| 2749 | 
            +
            	<span class="box1">
         | 
| 2750 | 
            +
            		<span aria-hidden="true" class="social_tumbleupon"></span>
         | 
| 2751 | 
            +
            		 social_tumbleupon
         | 
| 2752 | 
            +
            	</span>
         | 
| 2753 | 
            +
            	<span class="box1">
         | 
| 2754 | 
            +
            		<span aria-hidden="true" class="social_wordpress"></span>
         | 
| 2755 | 
            +
            		 social_wordpress
         | 
| 2756 | 
            +
            	</span>
         | 
| 2757 | 
            +
            	<span class="box1">
         | 
| 2758 | 
            +
            		<span aria-hidden="true" class="social_instagram"></span>
         | 
| 2759 | 
            +
            		 social_instagram
         | 
| 2760 | 
            +
            	</span>
         | 
| 2761 | 
            +
            	<span class="box1">
         | 
| 2762 | 
            +
            		<span aria-hidden="true" class="social_dribbble"></span>
         | 
| 2763 | 
            +
            		 social_dribbble
         | 
| 2764 | 
            +
            	</span>
         | 
| 2765 | 
            +
            	<span class="box1">
         | 
| 2766 | 
            +
            		<span aria-hidden="true" class="social_vimeo"></span>
         | 
| 2767 | 
            +
            		 social_vimeo
         | 
| 2768 | 
            +
            	</span>
         | 
| 2769 | 
            +
            	<span class="box1">
         | 
| 2770 | 
            +
            		<span aria-hidden="true" class="social_linkedin"></span>
         | 
| 2771 | 
            +
            		 social_linkedin
         | 
| 2772 | 
            +
            	</span>
         | 
| 2773 | 
            +
            	<span class="box1">
         | 
| 2774 | 
            +
            		<span aria-hidden="true" class="social_rss"></span>
         | 
| 2775 | 
            +
            		 social_rss
         | 
| 2776 | 
            +
            	</span>
         | 
| 2777 | 
            +
            	<span class="box1">
         | 
| 2778 | 
            +
            		<span aria-hidden="true" class="social_deviantart"></span>
         | 
| 2779 | 
            +
            		 social_deviantart
         | 
| 2780 | 
            +
            	</span>
         | 
| 2781 | 
            +
            	<span class="box1">
         | 
| 2782 | 
            +
            		<span aria-hidden="true" class="social_share"></span>
         | 
| 2783 | 
            +
            		 social_share
         | 
| 2784 | 
            +
            	</span>
         | 
| 2785 | 
            +
            	<span class="box1">
         | 
| 2786 | 
            +
            		<span aria-hidden="true" class="social_myspace"></span>
         | 
| 2787 | 
            +
            		 social_myspace
         | 
| 2788 | 
            +
            	</span>
         | 
| 2789 | 
            +
            	<span class="box1">
         | 
| 2790 | 
            +
            		<span aria-hidden="true" class="social_skype"></span>
         | 
| 2791 | 
            +
            		 social_skype
         | 
| 2792 | 
            +
            	</span>
         | 
| 2793 | 
            +
            	<span class="box1">
         | 
| 2794 | 
            +
            		<span aria-hidden="true" class="social_youtube"></span>
         | 
| 2795 | 
            +
            		 social_youtube
         | 
| 2796 | 
            +
            	</span>
         | 
| 2797 | 
            +
            	<span class="box1">
         | 
| 2798 | 
            +
            		<span aria-hidden="true" class="social_picassa"></span>
         | 
| 2799 | 
            +
            		 social_picassa
         | 
| 2800 | 
            +
            	</span>
         | 
| 2801 | 
            +
            	<span class="box1">
         | 
| 2802 | 
            +
            		<span aria-hidden="true" class="social_googledrive"></span>
         | 
| 2803 | 
            +
            		 social_googledrive
         | 
| 2804 | 
            +
            	</span>
         | 
| 2805 | 
            +
            	<span class="box1">
         | 
| 2806 | 
            +
            		<span aria-hidden="true" class="social_flickr"></span>
         | 
| 2807 | 
            +
            		 social_flickr
         | 
| 2808 | 
            +
            	</span>
         | 
| 2809 | 
            +
            	<span class="box1">
         | 
| 2810 | 
            +
            		<span aria-hidden="true" class="social_blogger"></span>
         | 
| 2811 | 
            +
            		 social_blogger
         | 
| 2812 | 
            +
            	</span>
         | 
| 2813 | 
            +
            	<span class="box1">
         | 
| 2814 | 
            +
            		<span aria-hidden="true" class="social_spotify"></span>
         | 
| 2815 | 
            +
            		 social_spotify
         | 
| 2816 | 
            +
            	</span>
         | 
| 2817 | 
            +
            	<span class="box1">
         | 
| 2818 | 
            +
            		<span aria-hidden="true" class="social_delicious"></span>
         | 
| 2819 | 
            +
            		 social_delicious
         | 
| 2820 | 
            +
            	</span>
         | 
| 2821 | 
            +
            	<span class="box1">
         | 
| 2822 | 
            +
            		<span aria-hidden="true" class="social_facebook_circle"></span>
         | 
| 2823 | 
            +
            		 social_facebook_circle
         | 
| 2824 | 
            +
            	</span>
         | 
| 2825 | 
            +
            	<span class="box1">
         | 
| 2826 | 
            +
            		<span aria-hidden="true" class="social_twitter_circle"></span>
         | 
| 2827 | 
            +
            		 social_twitter_circle
         | 
| 2828 | 
            +
            	</span>
         | 
| 2829 | 
            +
            	<span class="box1">
         | 
| 2830 | 
            +
            		<span aria-hidden="true" class="social_pinterest_circle"></span>
         | 
| 2831 | 
            +
            		 social_pinterest_circle
         | 
| 2832 | 
            +
            	</span>
         | 
| 2833 | 
            +
            	<span class="box1">
         | 
| 2834 | 
            +
            		<span aria-hidden="true" class="social_googleplus_circle"></span>
         | 
| 2835 | 
            +
            		 social_googleplus_circle
         | 
| 2836 | 
            +
            	</span>
         | 
| 2837 | 
            +
            	<span class="box1">
         | 
| 2838 | 
            +
            		<span aria-hidden="true" class="social_tumblr_circle"></span>
         | 
| 2839 | 
            +
            		 social_tumblr_circle
         | 
| 2840 | 
            +
            	</span>
         | 
| 2841 | 
            +
            	<span class="box1">
         | 
| 2842 | 
            +
            		<span aria-hidden="true" class="social_stumbleupon_circle"></span>
         | 
| 2843 | 
            +
            		 social_stumbleupon_circle
         | 
| 2844 | 
            +
            	</span>
         | 
| 2845 | 
            +
            	<span class="box1">
         | 
| 2846 | 
            +
            		<span aria-hidden="true" class="social_wordpress_circle"></span>
         | 
| 2847 | 
            +
            		 social_wordpress_circle
         | 
| 2848 | 
            +
            	</span>
         | 
| 2849 | 
            +
            	<span class="box1">
         | 
| 2850 | 
            +
            		<span aria-hidden="true" class="social_instagram_circle"></span>
         | 
| 2851 | 
            +
            		 social_instagram_circle
         | 
| 2852 | 
            +
            	</span>
         | 
| 2853 | 
            +
            	<span class="box1">
         | 
| 2854 | 
            +
            		<span aria-hidden="true" class="social_dribbble_circle"></span>
         | 
| 2855 | 
            +
            		 social_dribbble_circle
         | 
| 2856 | 
            +
            	</span>
         | 
| 2857 | 
            +
            	<span class="box1">
         | 
| 2858 | 
            +
            		<span aria-hidden="true" class="social_vimeo_circle"></span>
         | 
| 2859 | 
            +
            		 social_vimeo_circle
         | 
| 2860 | 
            +
            	</span>
         | 
| 2861 | 
            +
            	<span class="box1">
         | 
| 2862 | 
            +
            		<span aria-hidden="true" class="social_linkedin_circle"></span>
         | 
| 2863 | 
            +
            		 social_linkedin_circle
         | 
| 2864 | 
            +
            	</span>
         | 
| 2865 | 
            +
            	<span class="box1">
         | 
| 2866 | 
            +
            		<span aria-hidden="true" class="social_rss_circle"></span>
         | 
| 2867 | 
            +
            		 social_rss_circle
         | 
| 2868 | 
            +
            	</span>
         | 
| 2869 | 
            +
            	<span class="box1">
         | 
| 2870 | 
            +
            		<span aria-hidden="true" class="social_deviantart_circle"></span>
         | 
| 2871 | 
            +
            		 social_deviantart_circle
         | 
| 2872 | 
            +
            	</span>
         | 
| 2873 | 
            +
            	<span class="box1">
         | 
| 2874 | 
            +
            		<span aria-hidden="true" class="social_share_circle"></span>
         | 
| 2875 | 
            +
            		 social_share_circle
         | 
| 2876 | 
            +
            	</span>
         | 
| 2877 | 
            +
            	<span class="box1">
         | 
| 2878 | 
            +
            		<span aria-hidden="true" class="social_myspace_circle"></span>
         | 
| 2879 | 
            +
            		 social_myspace_circle
         | 
| 2880 | 
            +
            	</span>
         | 
| 2881 | 
            +
            	<span class="box1">
         | 
| 2882 | 
            +
            		<span aria-hidden="true" class="social_skype_circle"></span>
         | 
| 2883 | 
            +
            		 social_skype_circle
         | 
| 2884 | 
            +
            	</span>
         | 
| 2885 | 
            +
            	<span class="box1">
         | 
| 2886 | 
            +
            		<span aria-hidden="true" class="social_youtube_circle"></span>
         | 
| 2887 | 
            +
            		 social_youtube_circle
         | 
| 2888 | 
            +
            	</span>
         | 
| 2889 | 
            +
            	<span class="box1">
         | 
| 2890 | 
            +
            		<span aria-hidden="true" class="social_picassa_circle"></span>
         | 
| 2891 | 
            +
            		 social_picassa_circle
         | 
| 2892 | 
            +
            	</span>
         | 
| 2893 | 
            +
            	<span class="box1">
         | 
| 2894 | 
            +
            		<span aria-hidden="true" class="social_googledrive_alt2"></span>
         | 
| 2895 | 
            +
            		 social_googledrive_alt2
         | 
| 2896 | 
            +
            	</span>
         | 
| 2897 | 
            +
            	<span class="box1">
         | 
| 2898 | 
            +
            		<span aria-hidden="true" class="social_flickr_circle"></span>
         | 
| 2899 | 
            +
            		 social_flickr_circle
         | 
| 2900 | 
            +
            	</span>
         | 
| 2901 | 
            +
            	<span class="box1">
         | 
| 2902 | 
            +
            		<span aria-hidden="true" class="social_blogger_circle"></span>
         | 
| 2903 | 
            +
            		 social_blogger_circle
         | 
| 2904 | 
            +
            	</span>
         | 
| 2905 | 
            +
            	<span class="box1">
         | 
| 2906 | 
            +
            		<span aria-hidden="true" class="social_spotify_circle"></span>
         | 
| 2907 | 
            +
            		 social_spotify_circle
         | 
| 2908 | 
            +
            	</span>
         | 
| 2909 | 
            +
            	<span class="box1">
         | 
| 2910 | 
            +
            		<span aria-hidden="true" class="social_delicious_circle"></span>
         | 
| 2911 | 
            +
            		 social_delicious_circle
         | 
| 2912 | 
            +
            	</span>
         | 
| 2913 | 
            +
            	<span class="box1">
         | 
| 2914 | 
            +
            		<span aria-hidden="true" class="social_facebook_square"></span>
         | 
| 2915 | 
            +
            		 social_facebook_square
         | 
| 2916 | 
            +
            	</span>
         | 
| 2917 | 
            +
            	<span class="box1">
         | 
| 2918 | 
            +
            		<span aria-hidden="true" class="social_twitter_square"></span>
         | 
| 2919 | 
            +
            		 social_twitter_square
         | 
| 2920 | 
            +
            	</span>
         | 
| 2921 | 
            +
            	<span class="box1">
         | 
| 2922 | 
            +
            		<span aria-hidden="true" class="social_pinterest_square"></span>
         | 
| 2923 | 
            +
            		 social_pinterest_square
         | 
| 2924 | 
            +
            	</span>
         | 
| 2925 | 
            +
            	<span class="box1">
         | 
| 2926 | 
            +
            		<span aria-hidden="true" class="social_googleplus_square"></span>
         | 
| 2927 | 
            +
            		 social_googleplus_square
         | 
| 2928 | 
            +
            	</span>
         | 
| 2929 | 
            +
            	<span class="box1">
         | 
| 2930 | 
            +
            		<span aria-hidden="true" class="social_tumblr_square"></span>
         | 
| 2931 | 
            +
            		 social_tumblr_square
         | 
| 2932 | 
            +
            	</span>
         | 
| 2933 | 
            +
            	<span class="box1">
         | 
| 2934 | 
            +
            		<span aria-hidden="true" class="social_stumbleupon_square"></span>
         | 
| 2935 | 
            +
            		 social_stumbleupon_square
         | 
| 2936 | 
            +
            	</span>
         | 
| 2937 | 
            +
            	<span class="box1">
         | 
| 2938 | 
            +
            		<span aria-hidden="true" class="social_wordpress_square"></span>
         | 
| 2939 | 
            +
            		 social_wordpress_square
         | 
| 2940 | 
            +
            	</span>
         | 
| 2941 | 
            +
            	<span class="box1">
         | 
| 2942 | 
            +
            		<span aria-hidden="true" class="social_instagram_square"></span>
         | 
| 2943 | 
            +
            		 social_instagram_square
         | 
| 2944 | 
            +
            	</span>
         | 
| 2945 | 
            +
            	<span class="box1">
         | 
| 2946 | 
            +
            		<span aria-hidden="true" class="social_dribbble_square"></span>
         | 
| 2947 | 
            +
            		 social_dribbble_square
         | 
| 2948 | 
            +
            	</span>
         | 
| 2949 | 
            +
            	<span class="box1">
         | 
| 2950 | 
            +
            		<span aria-hidden="true" class="social_vimeo_square"></span>
         | 
| 2951 | 
            +
            		 social_vimeo_square
         | 
| 2952 | 
            +
            	</span>
         | 
| 2953 | 
            +
            	<span class="box1">
         | 
| 2954 | 
            +
            		<span aria-hidden="true" class="social_linkedin_square"></span>
         | 
| 2955 | 
            +
            		 social_linkedin_square
         | 
| 2956 | 
            +
            	</span>
         | 
| 2957 | 
            +
            	<span class="box1">
         | 
| 2958 | 
            +
            		<span aria-hidden="true" class="social_rss_square"></span>
         | 
| 2959 | 
            +
            		 social_rss_square
         | 
| 2960 | 
            +
            	</span>
         | 
| 2961 | 
            +
            	<span class="box1">
         | 
| 2962 | 
            +
            		<span aria-hidden="true" class="social_deviantart_square"></span>
         | 
| 2963 | 
            +
            		 social_deviantart_square
         | 
| 2964 | 
            +
            	</span>
         | 
| 2965 | 
            +
            	<span class="box1">
         | 
| 2966 | 
            +
            		<span aria-hidden="true" class="social_share_square"></span>
         | 
| 2967 | 
            +
            		 social_share_square
         | 
| 2968 | 
            +
            	</span>
         | 
| 2969 | 
            +
            	<span class="box1">
         | 
| 2970 | 
            +
            		<span aria-hidden="true" class="social_myspace_square"></span>
         | 
| 2971 | 
            +
            		 social_myspace_square
         | 
| 2972 | 
            +
            	</span>
         | 
| 2973 | 
            +
            	<span class="box1">
         | 
| 2974 | 
            +
            		<span aria-hidden="true" class="social_skype_square"></span>
         | 
| 2975 | 
            +
            		 social_skype_square
         | 
| 2976 | 
            +
            	</span>
         | 
| 2977 | 
            +
            	<span class="box1">
         | 
| 2978 | 
            +
            		<span aria-hidden="true" class="social_youtube_square"></span>
         | 
| 2979 | 
            +
            		 social_youtube_square
         | 
| 2980 | 
            +
            	</span>
         | 
| 2981 | 
            +
            	<span class="box1">
         | 
| 2982 | 
            +
            		<span aria-hidden="true" class="social_picassa_square"></span>
         | 
| 2983 | 
            +
            		 social_picassa_square
         | 
| 2984 | 
            +
            	</span>
         | 
| 2985 | 
            +
            	<span class="box1">
         | 
| 2986 | 
            +
            		<span aria-hidden="true" class="social_googledrive_square"></span>
         | 
| 2987 | 
            +
            		 social_googledrive_square
         | 
| 2988 | 
            +
            	</span>
         | 
| 2989 | 
            +
            	<span class="box1">
         | 
| 2990 | 
            +
            		<span aria-hidden="true" class="social_flickr_square"></span>
         | 
| 2991 | 
            +
            		 social_flickr_square
         | 
| 2992 | 
            +
            	</span>
         | 
| 2993 | 
            +
            	<span class="box1">
         | 
| 2994 | 
            +
            		<span aria-hidden="true" class="social_blogger_square"></span>
         | 
| 2995 | 
            +
            		 social_blogger_square
         | 
| 2996 | 
            +
            	</span>
         | 
| 2997 | 
            +
            	<span class="box1">
         | 
| 2998 | 
            +
            		<span aria-hidden="true" class="social_spotify_square"></span>
         | 
| 2999 | 
            +
            		 social_spotify_square
         | 
| 3000 | 
            +
            	</span>
         | 
| 3001 | 
            +
            	<span class="box1">
         | 
| 3002 | 
            +
            		<span aria-hidden="true" class="social_delicious_square"></span>
         | 
| 3003 | 
            +
            		 social_delicious_square
         | 
| 3004 | 
            +
            	</span>
         | 
| 3005 | 
            +
            	</section>
         | 
| 3006 | 
            +
            	<footer>
         | 
| 3007 | 
            +
            		<p>Generated by <a href="http://icomoon.io">IcoMoon.io</a></p>
         | 
| 3008 | 
            +
            	</footer>
         | 
| 3009 | 
            +
            	</div>
         | 
| 3010 | 
            +
            	<script>
         | 
| 3011 | 
            +
            	document.getElementById("glyphs").addEventListener("click", function(e) {
         | 
| 3012 | 
            +
            		var target = e.target;
         | 
| 3013 | 
            +
            		if (target.tagName === "INPUT") {
         | 
| 3014 | 
            +
            			target.select();
         | 
| 3015 | 
            +
            		}
         | 
| 3016 | 
            +
            	});
         | 
| 3017 | 
            +
            	</script>
         | 
| 3018 | 
            +
            </body>
         | 
| 3019 | 
            +
            </html>
         |