ruby-clean-css 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. data/.gitmodules +3 -0
  2. data/EXAMPLE.md +25 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +30 -0
  5. data/LICENSE +19 -0
  6. data/README.md +106 -0
  7. data/lib/javascript/clean-css/.gitignore +4 -0
  8. data/lib/javascript/clean-css/.jshintignore +3 -0
  9. data/lib/javascript/clean-css/.jshintrc +14 -0
  10. data/lib/javascript/clean-css/.travis.yml +11 -0
  11. data/lib/javascript/clean-css/History.md +556 -0
  12. data/lib/javascript/clean-css/LICENSE +19 -0
  13. data/lib/javascript/clean-css/README.md +218 -0
  14. data/lib/javascript/clean-css/bin/cleancss +157 -0
  15. data/lib/javascript/clean-css/index.js +1 -0
  16. data/lib/javascript/clean-css/lib/clean.js +426 -0
  17. data/lib/javascript/clean-css/lib/colors/hsl-to-hex.js +64 -0
  18. data/lib/javascript/clean-css/lib/colors/long-to-short-hex.js +12 -0
  19. data/lib/javascript/clean-css/lib/colors/rgb-to-hex.js +14 -0
  20. data/lib/javascript/clean-css/lib/colors/shortener.js +174 -0
  21. data/lib/javascript/clean-css/lib/images/url-rebase.js +32 -0
  22. data/lib/javascript/clean-css/lib/images/url-rewriter.js +60 -0
  23. data/lib/javascript/clean-css/lib/imports/inliner.js +319 -0
  24. data/lib/javascript/clean-css/lib/properties/optimizer.js +276 -0
  25. data/lib/javascript/clean-css/lib/properties/override-compactor.js +116 -0
  26. data/lib/javascript/clean-css/lib/properties/processable.js +859 -0
  27. data/lib/javascript/clean-css/lib/properties/scanner.js +20 -0
  28. data/lib/javascript/clean-css/lib/properties/shorthand-compactor.js +244 -0
  29. data/lib/javascript/clean-css/lib/properties/token.js +184 -0
  30. data/lib/javascript/clean-css/lib/properties/validator.js +140 -0
  31. data/lib/javascript/clean-css/lib/selectors/empty-removal.js +30 -0
  32. data/lib/javascript/clean-css/lib/selectors/optimizer.js +341 -0
  33. data/lib/javascript/clean-css/lib/selectors/tokenizer.js +168 -0
  34. data/lib/javascript/clean-css/lib/text/comments.js +83 -0
  35. data/lib/javascript/clean-css/lib/text/escape-store.js +32 -0
  36. data/lib/javascript/clean-css/lib/text/expressions.js +73 -0
  37. data/lib/javascript/clean-css/lib/text/free.js +26 -0
  38. data/lib/javascript/clean-css/lib/text/name-quotes.js +37 -0
  39. data/lib/javascript/clean-css/lib/text/quote-scanner.js +91 -0
  40. data/lib/javascript/clean-css/lib/text/splitter.js +35 -0
  41. data/lib/javascript/clean-css/lib/text/urls.js +41 -0
  42. data/lib/javascript/clean-css/package.json +50 -0
  43. data/lib/javascript/clean-css/test/batch-test.js +56 -0
  44. data/lib/javascript/clean-css/test/bench.js +11 -0
  45. data/lib/javascript/clean-css/test/binary-test.js +323 -0
  46. data/lib/javascript/clean-css/test/data-bench/_partial.css +1 -0
  47. data/lib/javascript/clean-css/test/data-bench/complex.css +4 -0
  48. data/lib/javascript/clean-css/test/data/129-assets/assets/ui.css +2 -0
  49. data/lib/javascript/clean-css/test/data/129-assets/components/bootstrap/css/bootstrap.css +3 -0
  50. data/lib/javascript/clean-css/test/data/129-assets/components/bootstrap/images/glyphs.gif +0 -0
  51. data/lib/javascript/clean-css/test/data/129-assets/components/jquery-ui/css/style.css +6 -0
  52. data/lib/javascript/clean-css/test/data/129-assets/components/jquery-ui/images/next.gif +0 -0
  53. data/lib/javascript/clean-css/test/data/129-assets/components/jquery-ui/images/prev.gif +0 -0
  54. data/lib/javascript/clean-css/test/data/960-min.css +125 -0
  55. data/lib/javascript/clean-css/test/data/960.css +602 -0
  56. data/lib/javascript/clean-css/test/data/big-min.css +2984 -0
  57. data/lib/javascript/clean-css/test/data/big.css +13794 -0
  58. data/lib/javascript/clean-css/test/data/blueprint-min.css +245 -0
  59. data/lib/javascript/clean-css/test/data/blueprint.css +556 -0
  60. data/lib/javascript/clean-css/test/data/charset-mixed-with-fonts-min.css +3 -0
  61. data/lib/javascript/clean-css/test/data/charset-mixed-with-fonts.css +14 -0
  62. data/lib/javascript/clean-css/test/data/font-awesome-ie7-min.css +392 -0
  63. data/lib/javascript/clean-css/test/data/font-awesome-ie7.css +1203 -0
  64. data/lib/javascript/clean-css/test/data/font-awesome-min.css +319 -0
  65. data/lib/javascript/clean-css/test/data/font-awesome.css +540 -0
  66. data/lib/javascript/clean-css/test/data/imports-min.css +5 -0
  67. data/lib/javascript/clean-css/test/data/imports.css +4 -0
  68. data/lib/javascript/clean-css/test/data/issue-117-snippet-min.css +3 -0
  69. data/lib/javascript/clean-css/test/data/issue-117-snippet.css +19 -0
  70. data/lib/javascript/clean-css/test/data/issue-159-snippet-min.css +7 -0
  71. data/lib/javascript/clean-css/test/data/issue-159-snippet.css +7 -0
  72. data/lib/javascript/clean-css/test/data/issue-192-min.css +1 -0
  73. data/lib/javascript/clean-css/test/data/issue-192.css +8 -0
  74. data/lib/javascript/clean-css/test/data/issue-198-min.css +3 -0
  75. data/lib/javascript/clean-css/test/data/issue-198.css +4 -0
  76. data/lib/javascript/clean-css/test/data/issue-232-min.css +2 -0
  77. data/lib/javascript/clean-css/test/data/issue-232.css +17 -0
  78. data/lib/javascript/clean-css/test/data/issue-241-min.css +2 -0
  79. data/lib/javascript/clean-css/test/data/issue-241.css +2 -0
  80. data/lib/javascript/clean-css/test/data/issue-304-min.css +1 -0
  81. data/lib/javascript/clean-css/test/data/issue-304.css +4 -0
  82. data/lib/javascript/clean-css/test/data/issue-305-min.css +1 -0
  83. data/lib/javascript/clean-css/test/data/issue-305.css +3 -0
  84. data/lib/javascript/clean-css/test/data/issue-308-min.css +1 -0
  85. data/lib/javascript/clean-css/test/data/issue-308.css +5 -0
  86. data/lib/javascript/clean-css/test/data/issue-312-min.css +1 -0
  87. data/lib/javascript/clean-css/test/data/issue-312.css +7 -0
  88. data/lib/javascript/clean-css/test/data/issue-337-min.css +1 -0
  89. data/lib/javascript/clean-css/test/data/issue-337.css +4 -0
  90. data/lib/javascript/clean-css/test/data/line-breaks-in-attributes-min.css +2 -0
  91. data/lib/javascript/clean-css/test/data/line-breaks-in-attributes.css +8 -0
  92. data/lib/javascript/clean-css/test/data/partials-absolute/base.css +3 -0
  93. data/lib/javascript/clean-css/test/data/partials-absolute/base2.css +1 -0
  94. data/lib/javascript/clean-css/test/data/partials-absolute/extra/sub.css +3 -0
  95. data/lib/javascript/clean-css/test/data/partials-relative/base.css +3 -0
  96. data/lib/javascript/clean-css/test/data/partials-relative/extra/included.css +1 -0
  97. data/lib/javascript/clean-css/test/data/partials/comment.css +2 -0
  98. data/lib/javascript/clean-css/test/data/partials/extra/down.gif +0 -0
  99. data/lib/javascript/clean-css/test/data/partials/extra/four.css +3 -0
  100. data/lib/javascript/clean-css/test/data/partials/extra/three.css +1 -0
  101. data/lib/javascript/clean-css/test/data/partials/five.css +1 -0
  102. data/lib/javascript/clean-css/test/data/partials/four.css +1 -0
  103. data/lib/javascript/clean-css/test/data/partials/one.css +1 -0
  104. data/lib/javascript/clean-css/test/data/partials/three.css +1 -0
  105. data/lib/javascript/clean-css/test/data/partials/two.css +5 -0
  106. data/lib/javascript/clean-css/test/data/reset-min.css +12 -0
  107. data/lib/javascript/clean-css/test/data/reset.css +64 -0
  108. data/lib/javascript/clean-css/test/data/sample1-min.css +4 -0
  109. data/lib/javascript/clean-css/test/data/sample1.css +12 -0
  110. data/lib/javascript/clean-css/test/data/unsupported/selectors-ie7.css +20 -0
  111. data/lib/javascript/clean-css/test/data/unsupported/selectors-ie8.css +17 -0
  112. data/lib/javascript/clean-css/test/module-test.js +185 -0
  113. data/lib/javascript/clean-css/test/protocol-imports-test.js +409 -0
  114. data/lib/javascript/clean-css/test/text/splitter-test.js +20 -0
  115. data/lib/javascript/clean-css/test/unit-test.js +2071 -0
  116. data/lib/ruby-clean-css.rb +6 -0
  117. data/lib/ruby-clean-css/compressor.rb +142 -0
  118. data/lib/ruby-clean-css/exports.rb +258 -0
  119. data/lib/ruby-clean-css/railtie.rb +27 -0
  120. data/lib/ruby-clean-css/sprockets.rb +19 -0
  121. data/lib/ruby-clean-css/version.rb +5 -0
  122. data/ruby-clean-css.gemspec +30 -0
  123. data/test/test_compressor.rb +84 -0
  124. metadata +203 -0
@@ -0,0 +1,3 @@
1
+ @charset "UTF-8";
2
+ @font-face{font-family:ProximaNova-Regular;src:url(/assets/thirdParty/css/1415F2_1.eot);src:url(/assets/thirdParty/css/1415F2_1IE.eot) format('embedded-opentype'),url(/assets/thirdParty/css/1415F2_1.woff) format('woff'),url(/assets/thirdParty/css/1415F2_1.ttf) format('truetype'),url(/assets/thirdParty/css/1415F2_1.svg) format('svg')}
3
+ blockquote small:before{content:'\2014 \00A0'}
@@ -0,0 +1,14 @@
1
+ @font-face {
2
+ font-family: 'ProximaNova-Regular';
3
+ src: url('/assets/thirdParty/css/1415F2_1.eot');
4
+ src: url('/assets/thirdParty/css/1415F2_1IE.eot') format('embedded-opentype'),
5
+ url('/assets/thirdParty/css/1415F2_1.woff') format('woff'),
6
+ url('/assets/thirdParty/css/1415F2_1.ttf') format('truetype'),
7
+ url('/assets/thirdParty/css/1415F2_1.svg') format('svg');
8
+ }
9
+
10
+ @charset "UTF-8";
11
+ /* (c) 2012 Instagram, Inc, */
12
+ blockquote small:before {
13
+ content: '\2014 \00A0';
14
+ }
@@ -0,0 +1,392 @@
1
+ /*!
2
+ * Font Awesome 3.2.1
3
+ * the iconic font designed for Bootstrap
4
+ * ------------------------------------------------------------------------------
5
+ * The full suite of pictographic icons, examples, and documentation can be
6
+ * found at http://fontawesome.io. Stay up to date on Twitter at
7
+ * http://twitter.com/fontawesome.
8
+ *
9
+ * License
10
+ * ------------------------------------------------------------------------------
11
+ * - The Font Awesome font is licensed under SIL OFL 1.1 -
12
+ * http://scripts.sil.org/OFL
13
+ * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
14
+ * http://opensource.org/licenses/mit-license.html
15
+ * - Font Awesome documentation licensed under CC BY 3.0 -
16
+ * http://creativecommons.org/licenses/by/3.0/
17
+ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
18
+ * "Font Awesome by Dave Gandy - http://fontawesome.io"
19
+ *
20
+ * Author - Dave Gandy
21
+ * ------------------------------------------------------------------------------
22
+ * Email: dave@fontawesome.io
23
+ * Twitter: http://twitter.com/davegandy
24
+ * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
+ */
26
+ .icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle}
27
+ .nav [class*=" icon-"],.nav [class^=icon-]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px}
28
+ .nav [class*=" icon-"].icon-large,.nav [class^=icon-].icon-large{vertical-align:-25%}
29
+ .nav-pills [class*=" icon-"].icon-large,.nav-pills [class^=icon-].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-tabs [class^=icon-].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px}
30
+ .btn [class*=" icon-"].pull-left,.btn [class*=" icon-"].pull-right,.btn [class^=icon-].pull-left,.btn [class^=icon-].pull-right{vertical-align:inherit}
31
+ .btn [class*=" icon-"].icon-large,.btn [class^=icon-].icon-large{margin-top:-.5em}
32
+ a [class*=" icon-"],a [class^=icon-]{cursor:pointer}
33
+ .icon-glass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
34
+ .icon-music{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
35
+ .icon-search{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
36
+ .icon-envelope-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
37
+ .icon-heart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
38
+ .icon-star{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
39
+ .icon-star-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
40
+ .icon-user{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
41
+ .icon-film{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
42
+ .icon-th-large{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
43
+ .icon-th{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
44
+ .icon-th-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
45
+ .icon-ok{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
46
+ .icon-remove{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
47
+ .icon-zoom-in{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
48
+ .icon-zoom-out{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
49
+ .icon-off,.icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
50
+ .icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
51
+ .icon-cog,.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
52
+ .icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
53
+ .icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
54
+ .icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
55
+ .icon-time{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
56
+ .icon-road{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
57
+ .icon-download-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
58
+ .icon-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
59
+ .icon-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
60
+ .icon-inbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
61
+ .icon-play-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
62
+ .icon-repeat,.icon-rotate-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
63
+ .icon-refresh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
64
+ .icon-list-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
65
+ .icon-lock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
66
+ .icon-flag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
67
+ .icon-headphones{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
68
+ .icon-volume-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
69
+ .icon-volume-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
70
+ .icon-volume-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
71
+ .icon-qrcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
72
+ .icon-barcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
73
+ .icon-tag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
74
+ .icon-tags{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
75
+ .icon-book{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
76
+ .icon-bookmark{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
77
+ .icon-print{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
78
+ .icon-camera{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
79
+ .icon-font{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
80
+ .icon-bold{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
81
+ .icon-italic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
82
+ .icon-text-height{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
83
+ .icon-text-width{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
84
+ .icon-align-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
85
+ .icon-align-center{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
86
+ .icon-align-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
87
+ .icon-align-justify{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
88
+ .icon-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
89
+ .icon-indent-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
90
+ .icon-indent-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
91
+ .icon-facetime-video{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
92
+ .icon-picture{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
93
+ .icon-pencil{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
94
+ .icon-map-marker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
95
+ .icon-adjust{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
96
+ .icon-tint{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
97
+ .icon-edit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
98
+ .icon-share{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
99
+ .icon-check{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
100
+ .icon-move{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
101
+ .icon-step-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
102
+ .icon-fast-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
103
+ .icon-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
104
+ .icon-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
105
+ .icon-pause{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
106
+ .icon-stop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
107
+ .icon-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
108
+ .icon-fast-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
109
+ .icon-step-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
110
+ .icon-eject{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
111
+ .icon-chevron-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
112
+ .icon-chevron-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
113
+ .icon-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
114
+ .icon-minus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
115
+ .icon-remove-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
116
+ .icon-ok-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
117
+ .icon-question-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
118
+ .icon-info-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
119
+ .icon-screenshot{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
120
+ .icon-remove-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
121
+ .icon-ok-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
122
+ .icon-ban-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
123
+ .icon-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
124
+ .icon-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
125
+ .icon-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
126
+ .icon-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
127
+ .icon-mail-forward,.icon-share-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
128
+ .icon-resize-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
129
+ .icon-resize-small{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
130
+ .icon-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
131
+ .icon-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
132
+ .icon-asterisk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
133
+ .icon-exclamation-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
134
+ .icon-gift{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
135
+ .icon-leaf{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
136
+ .icon-fire{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
137
+ .icon-eye-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
138
+ .icon-eye-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
139
+ .icon-warning-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
140
+ .icon-plane{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
141
+ .icon-calendar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
142
+ .icon-random{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
143
+ .icon-comment{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
144
+ .icon-magnet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
145
+ .icon-chevron-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
146
+ .icon-chevron-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
147
+ .icon-retweet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
148
+ .icon-shopping-cart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
149
+ .icon-folder-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
150
+ .icon-folder-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
151
+ .icon-resize-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
152
+ .icon-resize-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
153
+ .icon-bar-chart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
154
+ .icon-twitter-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
155
+ .icon-facebook-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
156
+ .icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
157
+ .icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
158
+ .icon-cogs,.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
159
+ .icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
160
+ .icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
161
+ .icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
162
+ .icon-star-half{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
163
+ .icon-heart-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
164
+ .icon-signout{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
165
+ .icon-linkedin-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
166
+ .icon-pushpin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
167
+ .icon-external-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
168
+ .icon-signin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
169
+ .icon-trophy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
170
+ .icon-github-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
171
+ .icon-upload-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
172
+ .icon-lemon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
173
+ .icon-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
174
+ .icon-check-empty,.icon-unchecked{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
175
+ .icon-bookmark-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
176
+ .icon-phone-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
177
+ .icon-twitter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
178
+ .icon-facebook{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
179
+ .icon-github{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
180
+ .icon-unlock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
181
+ .icon-credit-card{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
182
+ .icon-rss{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
183
+ .icon-hdd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
184
+ .icon-bullhorn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
185
+ .icon-bell{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
186
+ .icon-certificate{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
187
+ .icon-hand-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
188
+ .icon-hand-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
189
+ .icon-hand-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
190
+ .icon-hand-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
191
+ .icon-circle-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
192
+ .icon-circle-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
193
+ .icon-circle-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
194
+ .icon-circle-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
195
+ .icon-globe{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
196
+ .icon-wrench{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
197
+ .icon-tasks{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
198
+ .icon-filter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
199
+ .icon-briefcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
200
+ .icon-fullscreen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
201
+ .icon-group{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
202
+ .icon-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
203
+ .icon-cloud{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
204
+ .icon-beaker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
205
+ .icon-cut{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
206
+ .icon-copy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
207
+ .icon-paper-clip,.icon-paperclip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
208
+ .icon-save{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
209
+ .icon-sign-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
210
+ .icon-reorder{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
211
+ .icon-list-ul{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
212
+ .icon-list-ol{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
213
+ .icon-strikethrough{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
214
+ .icon-underline{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
215
+ .icon-table{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
216
+ .icon-magic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
217
+ .icon-truck{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
218
+ .icon-pinterest{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
219
+ .icon-pinterest-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
220
+ .icon-google-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
221
+ .icon-google-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
222
+ .icon-money{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
223
+ .icon-caret-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
224
+ .icon-caret-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
225
+ .icon-caret-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
226
+ .icon-caret-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
227
+ .icon-columns{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
228
+ .icon-sort{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
229
+ .icon-sort-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
230
+ .icon-sort-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
231
+ .icon-envelope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
232
+ .icon-linkedin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
233
+ .icon-rotate-left,.icon-undo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
234
+ .icon-legal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
235
+ .icon-dashboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
236
+ .icon-comment-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
237
+ .icon-comments-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
238
+ .icon-bolt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
239
+ .icon-sitemap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
240
+ .icon-umbrella{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
241
+ .icon-paste{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
242
+ .icon-lightbulb{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
243
+ .icon-exchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
244
+ .icon-cloud-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
245
+ .icon-cloud-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
246
+ .icon-user-md{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
247
+ .icon-stethoscope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
248
+ .icon-suitcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
249
+ .icon-bell-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
250
+ .icon-coffee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
251
+ .icon-food{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
252
+ .icon-file-text-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
253
+ .icon-building{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
254
+ .icon-hospital{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
255
+ .icon-ambulance{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
256
+ .icon-medkit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
257
+ .icon-fighter-jet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
258
+ .icon-beer{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
259
+ .icon-h-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
260
+ .icon-plus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
261
+ .icon-double-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
262
+ .icon-double-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
263
+ .icon-double-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
264
+ .icon-double-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
265
+ .icon-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
266
+ .icon-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
267
+ .icon-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
268
+ .icon-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
269
+ .icon-desktop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
270
+ .icon-laptop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
271
+ .icon-tablet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
272
+ .icon-mobile-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
273
+ .icon-circle-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
274
+ .icon-quote-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
275
+ .icon-quote-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
276
+ .icon-spinner{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
277
+ .icon-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
278
+ .icon-mail-reply,.icon-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
279
+ .icon-github-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
280
+ .icon-folder-close-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
281
+ .icon-folder-open-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
282
+ .icon-expand-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
283
+ .icon-collapse-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
284
+ .icon-smile{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
285
+ .icon-frown{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
286
+ .icon-meh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
287
+ .icon-gamepad{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
288
+ .icon-keyboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
289
+ .icon-flag-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
290
+ .icon-flag-checkered{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
291
+ .icon-terminal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
292
+ .icon-code{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
293
+ .icon-mail-reply-all,.icon-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
294
+ .icon-star-half-empty,.icon-star-half-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
295
+ .icon-location-arrow{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
296
+ .icon-crop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
297
+ .icon-code-fork{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
298
+ .icon-unlink{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
299
+ .icon-question{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
300
+ .icon-info{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
301
+ .icon-exclamation{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
302
+ .icon-superscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
303
+ .icon-subscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
304
+ .icon-eraser{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
305
+ .icon-puzzle-piece{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
306
+ .icon-microphone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
307
+ .icon-microphone-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
308
+ .icon-shield{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
309
+ .icon-calendar-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
310
+ .icon-fire-extinguisher{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
311
+ .icon-rocket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
312
+ .icon-maxcdn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
313
+ .icon-chevron-sign-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
314
+ .icon-chevron-sign-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
315
+ .icon-chevron-sign-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
316
+ .icon-chevron-sign-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
317
+ .icon-html5{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
318
+ .icon-css3{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
319
+ .icon-anchor{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
320
+ .icon-unlock-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
321
+ .icon-bullseye{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
322
+ .icon-ellipsis-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
323
+ .icon-ellipsis-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
324
+ .icon-rss-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
325
+ .icon-play-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
326
+ .icon-ticket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
327
+ .icon-minus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
328
+ .icon-check-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
329
+ .icon-level-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
330
+ .icon-level-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
331
+ .icon-check-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
332
+ .icon-edit-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
333
+ .icon-external-link-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
334
+ .icon-share-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
335
+ .icon-compass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
336
+ .icon-collapse{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
337
+ .icon-collapse-top{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
338
+ .icon-expand{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
339
+ .icon-eur,.icon-euro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
340
+ .icon-gbp{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
341
+ .icon-dollar,.icon-usd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
342
+ .icon-inr,.icon-rupee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
343
+ .icon-jpy,.icon-yen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
344
+ .icon-cny,.icon-renminbi{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
345
+ .icon-krw,.icon-won{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
346
+ .icon-bitcoin,.icon-btc{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
347
+ .icon-file{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
348
+ .icon-file-text{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
349
+ .icon-sort-by-alphabet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
350
+ .icon-sort-by-alphabet-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
351
+ .icon-sort-by-attributes{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
352
+ .icon-sort-by-attributes-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
353
+ .icon-sort-by-order{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
354
+ .icon-sort-by-order-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
355
+ .icon-thumbs-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
356
+ .icon-thumbs-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
357
+ .icon-youtube-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
358
+ .icon-youtube{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
359
+ .icon-xing{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
360
+ .icon-xing-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
361
+ .icon-youtube-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
362
+ .icon-dropbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
363
+ .icon-stackexchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
364
+ .icon-instagram{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
365
+ .icon-flickr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
366
+ .icon-adn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
367
+ .icon-bitbucket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
368
+ .icon-bitbucket-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
369
+ .icon-tumblr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
370
+ .icon-tumblr-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
371
+ .icon-long-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
372
+ .icon-long-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
373
+ .icon-long-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
374
+ .icon-long-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
375
+ .icon-apple{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
376
+ .icon-windows{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
377
+ .icon-android{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
378
+ .icon-linux{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
379
+ .icon-dribbble{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
380
+ .icon-skype{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
381
+ .icon-foursquare{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
382
+ .icon-trello{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
383
+ .icon-female{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
384
+ .icon-male{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
385
+ .icon-gittip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
386
+ .icon-sun{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
387
+ .icon-moon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
388
+ .icon-archive{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
389
+ .icon-bug{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
390
+ .icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
391
+ .icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
392
+ .icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '')}
@@ -0,0 +1,1203 @@
1
+ /*!
2
+ * Font Awesome 3.2.1
3
+ * the iconic font designed for Bootstrap
4
+ * ------------------------------------------------------------------------------
5
+ * The full suite of pictographic icons, examples, and documentation can be
6
+ * found at http://fontawesome.io. Stay up to date on Twitter at
7
+ * http://twitter.com/fontawesome.
8
+ *
9
+ * License
10
+ * ------------------------------------------------------------------------------
11
+ * - The Font Awesome font is licensed under SIL OFL 1.1 -
12
+ * http://scripts.sil.org/OFL
13
+ * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
14
+ * http://opensource.org/licenses/mit-license.html
15
+ * - Font Awesome documentation licensed under CC BY 3.0 -
16
+ * http://creativecommons.org/licenses/by/3.0/
17
+ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
18
+ * "Font Awesome by Dave Gandy - http://fontawesome.io"
19
+ *
20
+ * Author - Dave Gandy
21
+ * ------------------------------------------------------------------------------
22
+ * Email: dave@fontawesome.io
23
+ * Twitter: http://twitter.com/davegandy
24
+ * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
+ */
26
+ .icon-large {
27
+ font-size: 1.3333333333333333em;
28
+ margin-top: -4px;
29
+ padding-top: 3px;
30
+ margin-bottom: -4px;
31
+ padding-bottom: 3px;
32
+ vertical-align: middle;
33
+ }
34
+ .nav [class^="icon-"],
35
+ .nav [class*=" icon-"] {
36
+ vertical-align: inherit;
37
+ margin-top: -4px;
38
+ padding-top: 3px;
39
+ margin-bottom: -4px;
40
+ padding-bottom: 3px;
41
+ }
42
+ .nav [class^="icon-"].icon-large,
43
+ .nav [class*=" icon-"].icon-large {
44
+ vertical-align: -25%;
45
+ }
46
+ .nav-pills [class^="icon-"].icon-large,
47
+ .nav-tabs [class^="icon-"].icon-large,
48
+ .nav-pills [class*=" icon-"].icon-large,
49
+ .nav-tabs [class*=" icon-"].icon-large {
50
+ line-height: .75em;
51
+ margin-top: -7px;
52
+ padding-top: 5px;
53
+ margin-bottom: -5px;
54
+ padding-bottom: 4px;
55
+ }
56
+ .btn [class^="icon-"].pull-left,
57
+ .btn [class*=" icon-"].pull-left,
58
+ .btn [class^="icon-"].pull-right,
59
+ .btn [class*=" icon-"].pull-right {
60
+ vertical-align: inherit;
61
+ }
62
+ .btn [class^="icon-"].icon-large,
63
+ .btn [class*=" icon-"].icon-large {
64
+ margin-top: -0.5em;
65
+ }
66
+ a [class^="icon-"],
67
+ a [class*=" icon-"] {
68
+ cursor: pointer;
69
+ }
70
+ .icon-glass {
71
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
72
+ }
73
+ .icon-music {
74
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
75
+ }
76
+ .icon-search {
77
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
78
+ }
79
+ .icon-envelope-alt {
80
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
81
+ }
82
+ .icon-heart {
83
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
84
+ }
85
+ .icon-star {
86
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
87
+ }
88
+ .icon-star-empty {
89
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
90
+ }
91
+ .icon-user {
92
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
93
+ }
94
+ .icon-film {
95
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
96
+ }
97
+ .icon-th-large {
98
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
99
+ }
100
+ .icon-th {
101
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
102
+ }
103
+ .icon-th-list {
104
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
105
+ }
106
+ .icon-ok {
107
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
108
+ }
109
+ .icon-remove {
110
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
111
+ }
112
+ .icon-zoom-in {
113
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
114
+ }
115
+ .icon-zoom-out {
116
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
117
+ }
118
+ .icon-off {
119
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
120
+ }
121
+ .icon-power-off {
122
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
123
+ }
124
+ .icon-signal {
125
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
126
+ }
127
+ .icon-cog {
128
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
129
+ }
130
+ .icon-gear {
131
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
132
+ }
133
+ .icon-trash {
134
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
135
+ }
136
+ .icon-home {
137
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
138
+ }
139
+ .icon-file-alt {
140
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
141
+ }
142
+ .icon-time {
143
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
144
+ }
145
+ .icon-road {
146
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
147
+ }
148
+ .icon-download-alt {
149
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
150
+ }
151
+ .icon-download {
152
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
153
+ }
154
+ .icon-upload {
155
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
156
+ }
157
+ .icon-inbox {
158
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
159
+ }
160
+ .icon-play-circle {
161
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
162
+ }
163
+ .icon-repeat {
164
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
165
+ }
166
+ .icon-rotate-right {
167
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
168
+ }
169
+ .icon-refresh {
170
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
171
+ }
172
+ .icon-list-alt {
173
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
174
+ }
175
+ .icon-lock {
176
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
177
+ }
178
+ .icon-flag {
179
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
180
+ }
181
+ .icon-headphones {
182
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
183
+ }
184
+ .icon-volume-off {
185
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
186
+ }
187
+ .icon-volume-down {
188
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
189
+ }
190
+ .icon-volume-up {
191
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
192
+ }
193
+ .icon-qrcode {
194
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
195
+ }
196
+ .icon-barcode {
197
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
198
+ }
199
+ .icon-tag {
200
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
201
+ }
202
+ .icon-tags {
203
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
204
+ }
205
+ .icon-book {
206
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
207
+ }
208
+ .icon-bookmark {
209
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
210
+ }
211
+ .icon-print {
212
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
213
+ }
214
+ .icon-camera {
215
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
216
+ }
217
+ .icon-font {
218
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
219
+ }
220
+ .icon-bold {
221
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
222
+ }
223
+ .icon-italic {
224
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
225
+ }
226
+ .icon-text-height {
227
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
228
+ }
229
+ .icon-text-width {
230
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
231
+ }
232
+ .icon-align-left {
233
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
234
+ }
235
+ .icon-align-center {
236
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
237
+ }
238
+ .icon-align-right {
239
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
240
+ }
241
+ .icon-align-justify {
242
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
243
+ }
244
+ .icon-list {
245
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
246
+ }
247
+ .icon-indent-left {
248
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
249
+ }
250
+ .icon-indent-right {
251
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
252
+ }
253
+ .icon-facetime-video {
254
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
255
+ }
256
+ .icon-picture {
257
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
258
+ }
259
+ .icon-pencil {
260
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
261
+ }
262
+ .icon-map-marker {
263
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
264
+ }
265
+ .icon-adjust {
266
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
267
+ }
268
+ .icon-tint {
269
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
270
+ }
271
+ .icon-edit {
272
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
273
+ }
274
+ .icon-share {
275
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
276
+ }
277
+ .icon-check {
278
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
279
+ }
280
+ .icon-move {
281
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
282
+ }
283
+ .icon-step-backward {
284
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
285
+ }
286
+ .icon-fast-backward {
287
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
288
+ }
289
+ .icon-backward {
290
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
291
+ }
292
+ .icon-play {
293
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
294
+ }
295
+ .icon-pause {
296
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
297
+ }
298
+ .icon-stop {
299
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
300
+ }
301
+ .icon-forward {
302
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
303
+ }
304
+ .icon-fast-forward {
305
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
306
+ }
307
+ .icon-step-forward {
308
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
309
+ }
310
+ .icon-eject {
311
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
312
+ }
313
+ .icon-chevron-left {
314
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
315
+ }
316
+ .icon-chevron-right {
317
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
318
+ }
319
+ .icon-plus-sign {
320
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
321
+ }
322
+ .icon-minus-sign {
323
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
324
+ }
325
+ .icon-remove-sign {
326
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
327
+ }
328
+ .icon-ok-sign {
329
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
330
+ }
331
+ .icon-question-sign {
332
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
333
+ }
334
+ .icon-info-sign {
335
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
336
+ }
337
+ .icon-screenshot {
338
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
339
+ }
340
+ .icon-remove-circle {
341
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
342
+ }
343
+ .icon-ok-circle {
344
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
345
+ }
346
+ .icon-ban-circle {
347
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
348
+ }
349
+ .icon-arrow-left {
350
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
351
+ }
352
+ .icon-arrow-right {
353
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
354
+ }
355
+ .icon-arrow-up {
356
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
357
+ }
358
+ .icon-arrow-down {
359
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
360
+ }
361
+ .icon-share-alt {
362
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
363
+ }
364
+ .icon-mail-forward {
365
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
366
+ }
367
+ .icon-resize-full {
368
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
369
+ }
370
+ .icon-resize-small {
371
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
372
+ }
373
+ .icon-plus {
374
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
375
+ }
376
+ .icon-minus {
377
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
378
+ }
379
+ .icon-asterisk {
380
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
381
+ }
382
+ .icon-exclamation-sign {
383
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
384
+ }
385
+ .icon-gift {
386
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
387
+ }
388
+ .icon-leaf {
389
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
390
+ }
391
+ .icon-fire {
392
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
393
+ }
394
+ .icon-eye-open {
395
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
396
+ }
397
+ .icon-eye-close {
398
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
399
+ }
400
+ .icon-warning-sign {
401
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
402
+ }
403
+ .icon-plane {
404
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
405
+ }
406
+ .icon-calendar {
407
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
408
+ }
409
+ .icon-random {
410
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
411
+ }
412
+ .icon-comment {
413
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
414
+ }
415
+ .icon-magnet {
416
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
417
+ }
418
+ .icon-chevron-up {
419
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
420
+ }
421
+ .icon-chevron-down {
422
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
423
+ }
424
+ .icon-retweet {
425
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
426
+ }
427
+ .icon-shopping-cart {
428
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
429
+ }
430
+ .icon-folder-close {
431
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
432
+ }
433
+ .icon-folder-open {
434
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
435
+ }
436
+ .icon-resize-vertical {
437
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
438
+ }
439
+ .icon-resize-horizontal {
440
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
441
+ }
442
+ .icon-bar-chart {
443
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
444
+ }
445
+ .icon-twitter-sign {
446
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
447
+ }
448
+ .icon-facebook-sign {
449
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
450
+ }
451
+ .icon-camera-retro {
452
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
453
+ }
454
+ .icon-key {
455
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
456
+ }
457
+ .icon-cogs {
458
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
459
+ }
460
+ .icon-gears {
461
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
462
+ }
463
+ .icon-comments {
464
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
465
+ }
466
+ .icon-thumbs-up-alt {
467
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
468
+ }
469
+ .icon-thumbs-down-alt {
470
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
471
+ }
472
+ .icon-star-half {
473
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
474
+ }
475
+ .icon-heart-empty {
476
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
477
+ }
478
+ .icon-signout {
479
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
480
+ }
481
+ .icon-linkedin-sign {
482
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
483
+ }
484
+ .icon-pushpin {
485
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
486
+ }
487
+ .icon-external-link {
488
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
489
+ }
490
+ .icon-signin {
491
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
492
+ }
493
+ .icon-trophy {
494
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
495
+ }
496
+ .icon-github-sign {
497
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
498
+ }
499
+ .icon-upload-alt {
500
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
501
+ }
502
+ .icon-lemon {
503
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
504
+ }
505
+ .icon-phone {
506
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
507
+ }
508
+ .icon-check-empty {
509
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
510
+ }
511
+ .icon-unchecked {
512
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
513
+ }
514
+ .icon-bookmark-empty {
515
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
516
+ }
517
+ .icon-phone-sign {
518
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
519
+ }
520
+ .icon-twitter {
521
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
522
+ }
523
+ .icon-facebook {
524
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
525
+ }
526
+ .icon-github {
527
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
528
+ }
529
+ .icon-unlock {
530
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
531
+ }
532
+ .icon-credit-card {
533
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
534
+ }
535
+ .icon-rss {
536
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
537
+ }
538
+ .icon-hdd {
539
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
540
+ }
541
+ .icon-bullhorn {
542
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
543
+ }
544
+ .icon-bell {
545
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
546
+ }
547
+ .icon-certificate {
548
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
549
+ }
550
+ .icon-hand-right {
551
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
552
+ }
553
+ .icon-hand-left {
554
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
555
+ }
556
+ .icon-hand-up {
557
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
558
+ }
559
+ .icon-hand-down {
560
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
561
+ }
562
+ .icon-circle-arrow-left {
563
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
564
+ }
565
+ .icon-circle-arrow-right {
566
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
567
+ }
568
+ .icon-circle-arrow-up {
569
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
570
+ }
571
+ .icon-circle-arrow-down {
572
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
573
+ }
574
+ .icon-globe {
575
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
576
+ }
577
+ .icon-wrench {
578
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
579
+ }
580
+ .icon-tasks {
581
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
582
+ }
583
+ .icon-filter {
584
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
585
+ }
586
+ .icon-briefcase {
587
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
588
+ }
589
+ .icon-fullscreen {
590
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
591
+ }
592
+ .icon-group {
593
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
594
+ }
595
+ .icon-link {
596
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
597
+ }
598
+ .icon-cloud {
599
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
600
+ }
601
+ .icon-beaker {
602
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
603
+ }
604
+ .icon-cut {
605
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
606
+ }
607
+ .icon-copy {
608
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
609
+ }
610
+ .icon-paper-clip {
611
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
612
+ }
613
+ .icon-paperclip {
614
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
615
+ }
616
+ .icon-save {
617
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
618
+ }
619
+ .icon-sign-blank {
620
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
621
+ }
622
+ .icon-reorder {
623
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
624
+ }
625
+ .icon-list-ul {
626
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
627
+ }
628
+ .icon-list-ol {
629
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
630
+ }
631
+ .icon-strikethrough {
632
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
633
+ }
634
+ .icon-underline {
635
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
636
+ }
637
+ .icon-table {
638
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
639
+ }
640
+ .icon-magic {
641
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
642
+ }
643
+ .icon-truck {
644
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
645
+ }
646
+ .icon-pinterest {
647
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
648
+ }
649
+ .icon-pinterest-sign {
650
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
651
+ }
652
+ .icon-google-plus-sign {
653
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
654
+ }
655
+ .icon-google-plus {
656
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
657
+ }
658
+ .icon-money {
659
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
660
+ }
661
+ .icon-caret-down {
662
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
663
+ }
664
+ .icon-caret-up {
665
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
666
+ }
667
+ .icon-caret-left {
668
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
669
+ }
670
+ .icon-caret-right {
671
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
672
+ }
673
+ .icon-columns {
674
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
675
+ }
676
+ .icon-sort {
677
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
678
+ }
679
+ .icon-sort-down {
680
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
681
+ }
682
+ .icon-sort-up {
683
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
684
+ }
685
+ .icon-envelope {
686
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
687
+ }
688
+ .icon-linkedin {
689
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
690
+ }
691
+ .icon-undo {
692
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
693
+ }
694
+ .icon-rotate-left {
695
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
696
+ }
697
+ .icon-legal {
698
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
699
+ }
700
+ .icon-dashboard {
701
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
702
+ }
703
+ .icon-comment-alt {
704
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
705
+ }
706
+ .icon-comments-alt {
707
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
708
+ }
709
+ .icon-bolt {
710
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
711
+ }
712
+ .icon-sitemap {
713
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
714
+ }
715
+ .icon-umbrella {
716
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
717
+ }
718
+ .icon-paste {
719
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
720
+ }
721
+ .icon-lightbulb {
722
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
723
+ }
724
+ .icon-exchange {
725
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
726
+ }
727
+ .icon-cloud-download {
728
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
729
+ }
730
+ .icon-cloud-upload {
731
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
732
+ }
733
+ .icon-user-md {
734
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
735
+ }
736
+ .icon-stethoscope {
737
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
738
+ }
739
+ .icon-suitcase {
740
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
741
+ }
742
+ .icon-bell-alt {
743
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
744
+ }
745
+ .icon-coffee {
746
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
747
+ }
748
+ .icon-food {
749
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
750
+ }
751
+ .icon-file-text-alt {
752
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
753
+ }
754
+ .icon-building {
755
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
756
+ }
757
+ .icon-hospital {
758
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
759
+ }
760
+ .icon-ambulance {
761
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
762
+ }
763
+ .icon-medkit {
764
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
765
+ }
766
+ .icon-fighter-jet {
767
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
768
+ }
769
+ .icon-beer {
770
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
771
+ }
772
+ .icon-h-sign {
773
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
774
+ }
775
+ .icon-plus-sign-alt {
776
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
777
+ }
778
+ .icon-double-angle-left {
779
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
780
+ }
781
+ .icon-double-angle-right {
782
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
783
+ }
784
+ .icon-double-angle-up {
785
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
786
+ }
787
+ .icon-double-angle-down {
788
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
789
+ }
790
+ .icon-angle-left {
791
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
792
+ }
793
+ .icon-angle-right {
794
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
795
+ }
796
+ .icon-angle-up {
797
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
798
+ }
799
+ .icon-angle-down {
800
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
801
+ }
802
+ .icon-desktop {
803
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
804
+ }
805
+ .icon-laptop {
806
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
807
+ }
808
+ .icon-tablet {
809
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
810
+ }
811
+ .icon-mobile-phone {
812
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
813
+ }
814
+ .icon-circle-blank {
815
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
816
+ }
817
+ .icon-quote-left {
818
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
819
+ }
820
+ .icon-quote-right {
821
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
822
+ }
823
+ .icon-spinner {
824
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
825
+ }
826
+ .icon-circle {
827
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
828
+ }
829
+ .icon-reply {
830
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
831
+ }
832
+ .icon-mail-reply {
833
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
834
+ }
835
+ .icon-github-alt {
836
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
837
+ }
838
+ .icon-folder-close-alt {
839
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
840
+ }
841
+ .icon-folder-open-alt {
842
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
843
+ }
844
+ .icon-expand-alt {
845
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
846
+ }
847
+ .icon-collapse-alt {
848
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
849
+ }
850
+ .icon-smile {
851
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
852
+ }
853
+ .icon-frown {
854
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
855
+ }
856
+ .icon-meh {
857
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
858
+ }
859
+ .icon-gamepad {
860
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
861
+ }
862
+ .icon-keyboard {
863
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
864
+ }
865
+ .icon-flag-alt {
866
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
867
+ }
868
+ .icon-flag-checkered {
869
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
870
+ }
871
+ .icon-terminal {
872
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
873
+ }
874
+ .icon-code {
875
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
876
+ }
877
+ .icon-reply-all {
878
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
879
+ }
880
+ .icon-mail-reply-all {
881
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
882
+ }
883
+ .icon-star-half-empty {
884
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
885
+ }
886
+ .icon-star-half-full {
887
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
888
+ }
889
+ .icon-location-arrow {
890
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
891
+ }
892
+ .icon-crop {
893
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
894
+ }
895
+ .icon-code-fork {
896
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
897
+ }
898
+ .icon-unlink {
899
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
900
+ }
901
+ .icon-question {
902
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
903
+ }
904
+ .icon-info {
905
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
906
+ }
907
+ .icon-exclamation {
908
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
909
+ }
910
+ .icon-superscript {
911
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
912
+ }
913
+ .icon-subscript {
914
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
915
+ }
916
+ .icon-eraser {
917
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
918
+ }
919
+ .icon-puzzle-piece {
920
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
921
+ }
922
+ .icon-microphone {
923
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
924
+ }
925
+ .icon-microphone-off {
926
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
927
+ }
928
+ .icon-shield {
929
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
930
+ }
931
+ .icon-calendar-empty {
932
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
933
+ }
934
+ .icon-fire-extinguisher {
935
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
936
+ }
937
+ .icon-rocket {
938
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
939
+ }
940
+ .icon-maxcdn {
941
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
942
+ }
943
+ .icon-chevron-sign-left {
944
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
945
+ }
946
+ .icon-chevron-sign-right {
947
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
948
+ }
949
+ .icon-chevron-sign-up {
950
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
951
+ }
952
+ .icon-chevron-sign-down {
953
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
954
+ }
955
+ .icon-html5 {
956
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
957
+ }
958
+ .icon-css3 {
959
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
960
+ }
961
+ .icon-anchor {
962
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
963
+ }
964
+ .icon-unlock-alt {
965
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
966
+ }
967
+ .icon-bullseye {
968
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
969
+ }
970
+ .icon-ellipsis-horizontal {
971
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
972
+ }
973
+ .icon-ellipsis-vertical {
974
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
975
+ }
976
+ .icon-rss-sign {
977
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
978
+ }
979
+ .icon-play-sign {
980
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
981
+ }
982
+ .icon-ticket {
983
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
984
+ }
985
+ .icon-minus-sign-alt {
986
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
987
+ }
988
+ .icon-check-minus {
989
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
990
+ }
991
+ .icon-level-up {
992
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
993
+ }
994
+ .icon-level-down {
995
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
996
+ }
997
+ .icon-check-sign {
998
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
999
+ }
1000
+ .icon-edit-sign {
1001
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1002
+ }
1003
+ .icon-external-link-sign {
1004
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1005
+ }
1006
+ .icon-share-sign {
1007
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1008
+ }
1009
+ .icon-compass {
1010
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1011
+ }
1012
+ .icon-collapse {
1013
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1014
+ }
1015
+ .icon-collapse-top {
1016
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1017
+ }
1018
+ .icon-expand {
1019
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1020
+ }
1021
+ .icon-eur {
1022
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1023
+ }
1024
+ .icon-euro {
1025
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1026
+ }
1027
+ .icon-gbp {
1028
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1029
+ }
1030
+ .icon-usd {
1031
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1032
+ }
1033
+ .icon-dollar {
1034
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1035
+ }
1036
+ .icon-inr {
1037
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1038
+ }
1039
+ .icon-rupee {
1040
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1041
+ }
1042
+ .icon-jpy {
1043
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1044
+ }
1045
+ .icon-yen {
1046
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1047
+ }
1048
+ .icon-cny {
1049
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1050
+ }
1051
+ .icon-renminbi {
1052
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1053
+ }
1054
+ .icon-krw {
1055
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1056
+ }
1057
+ .icon-won {
1058
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1059
+ }
1060
+ .icon-btc {
1061
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1062
+ }
1063
+ .icon-bitcoin {
1064
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1065
+ }
1066
+ .icon-file {
1067
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1068
+ }
1069
+ .icon-file-text {
1070
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1071
+ }
1072
+ .icon-sort-by-alphabet {
1073
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1074
+ }
1075
+ .icon-sort-by-alphabet-alt {
1076
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1077
+ }
1078
+ .icon-sort-by-attributes {
1079
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1080
+ }
1081
+ .icon-sort-by-attributes-alt {
1082
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1083
+ }
1084
+ .icon-sort-by-order {
1085
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1086
+ }
1087
+ .icon-sort-by-order-alt {
1088
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1089
+ }
1090
+ .icon-thumbs-up {
1091
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1092
+ }
1093
+ .icon-thumbs-down {
1094
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1095
+ }
1096
+ .icon-youtube-sign {
1097
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1098
+ }
1099
+ .icon-youtube {
1100
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1101
+ }
1102
+ .icon-xing {
1103
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1104
+ }
1105
+ .icon-xing-sign {
1106
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1107
+ }
1108
+ .icon-youtube-play {
1109
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1110
+ }
1111
+ .icon-dropbox {
1112
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1113
+ }
1114
+ .icon-stackexchange {
1115
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1116
+ }
1117
+ .icon-instagram {
1118
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1119
+ }
1120
+ .icon-flickr {
1121
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1122
+ }
1123
+ .icon-adn {
1124
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1125
+ }
1126
+ .icon-bitbucket {
1127
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1128
+ }
1129
+ .icon-bitbucket-sign {
1130
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1131
+ }
1132
+ .icon-tumblr {
1133
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1134
+ }
1135
+ .icon-tumblr-sign {
1136
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1137
+ }
1138
+ .icon-long-arrow-down {
1139
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1140
+ }
1141
+ .icon-long-arrow-up {
1142
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1143
+ }
1144
+ .icon-long-arrow-left {
1145
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1146
+ }
1147
+ .icon-long-arrow-right {
1148
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1149
+ }
1150
+ .icon-apple {
1151
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1152
+ }
1153
+ .icon-windows {
1154
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1155
+ }
1156
+ .icon-android {
1157
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1158
+ }
1159
+ .icon-linux {
1160
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1161
+ }
1162
+ .icon-dribbble {
1163
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1164
+ }
1165
+ .icon-skype {
1166
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1167
+ }
1168
+ .icon-foursquare {
1169
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1170
+ }
1171
+ .icon-trello {
1172
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1173
+ }
1174
+ .icon-female {
1175
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1176
+ }
1177
+ .icon-male {
1178
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1179
+ }
1180
+ .icon-gittip {
1181
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1182
+ }
1183
+ .icon-sun {
1184
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1185
+ }
1186
+ .icon-moon {
1187
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1188
+ }
1189
+ .icon-archive {
1190
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1191
+ }
1192
+ .icon-bug {
1193
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1194
+ }
1195
+ .icon-vk {
1196
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1197
+ }
1198
+ .icon-weibo {
1199
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1200
+ }
1201
+ .icon-renren {
1202
+ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1203
+ }