font_awesome_rails_sass 0.0.1
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.
- data/.gitignore +17 -0
 - data/Gemfile +4 -0
 - data/LICENSE.txt +22 -0
 - data/README.md +29 -0
 - data/Rakefile +1 -0
 - data/app/assets/fonts/font-awesome/FontAwesome.otf +0 -0
 - data/app/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
 - data/app/assets/fonts/font-awesome/fontawesome-webfont.svg +399 -0
 - data/app/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
 - data/app/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
 - data/app/assets/stylesheets/font-awesome/_bootstrap.css.sass +84 -0
 - data/app/assets/stylesheets/font-awesome/_core.css.sass +115 -0
 - data/app/assets/stylesheets/font-awesome/_extras.css.sass +100 -0
 - data/app/assets/stylesheets/font-awesome/_icons.css.sass +1102 -0
 - data/app/assets/stylesheets/font-awesome/_mixins.css.sass +42 -0
 - data/app/assets/stylesheets/font-awesome/_path.css.sass +11 -0
 - data/app/assets/stylesheets/font-awesome/_variables.css.sass +732 -0
 - data/app/assets/stylesheets/font-awesome/font-awesome-ie7.scss +1953 -0
 - data/app/assets/stylesheets/font-awesome/font-awesome.css.sass +33 -0
 - data/font_awesome_rails_sass.gemspec +26 -0
 - data/lib/font_awesome_rails_sass/engine.rb +4 -0
 - data/lib/font_awesome_rails_sass/version.rb +3 -0
 - data/lib/font_awesome_rails_sass.rb +6 -0
 - metadata +133 -0
 
| 
         @@ -0,0 +1,1102 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
         
     | 
| 
      
 2 
     | 
    
         
            +
             * readers do not read off random characters that represent icons */
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            .icon-glass:before
         
     | 
| 
      
 5 
     | 
    
         
            +
              content: $glass
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            .icon-music:before
         
     | 
| 
      
 8 
     | 
    
         
            +
              content: $music
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            .icon-search:before
         
     | 
| 
      
 11 
     | 
    
         
            +
              content: $search
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            .icon-envelope-alt:before
         
     | 
| 
      
 14 
     | 
    
         
            +
              content: $envelope-alt
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            .icon-heart:before
         
     | 
| 
      
 17 
     | 
    
         
            +
              content: $heart
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            .icon-star:before
         
     | 
| 
      
 20 
     | 
    
         
            +
              content: $star
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            .icon-star-empty:before
         
     | 
| 
      
 23 
     | 
    
         
            +
              content: $star-empty
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            .icon-user:before
         
     | 
| 
      
 26 
     | 
    
         
            +
              content: $user
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            .icon-film:before
         
     | 
| 
      
 29 
     | 
    
         
            +
              content: $film
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            .icon-th-large:before
         
     | 
| 
      
 32 
     | 
    
         
            +
              content: $th-large
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            .icon-th:before
         
     | 
| 
      
 35 
     | 
    
         
            +
              content: $th
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            .icon-th-list:before
         
     | 
| 
      
 38 
     | 
    
         
            +
              content: $th-list
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            .icon-ok:before
         
     | 
| 
      
 41 
     | 
    
         
            +
              content: $ok
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            .icon-remove:before
         
     | 
| 
      
 44 
     | 
    
         
            +
              content: $remove
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            .icon-zoom-in:before
         
     | 
| 
      
 47 
     | 
    
         
            +
              content: $zoom-in
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            .icon-zoom-out:before
         
     | 
| 
      
 50 
     | 
    
         
            +
              content: $zoom-out
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
            .icon-power-off:before,
         
     | 
| 
      
 53 
     | 
    
         
            +
            .icon-off:before
         
     | 
| 
      
 54 
     | 
    
         
            +
              content: $off
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            .icon-signal:before
         
     | 
| 
      
 57 
     | 
    
         
            +
              content: $signal
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            .icon-gear:before,
         
     | 
| 
      
 60 
     | 
    
         
            +
            .icon-cog:before
         
     | 
| 
      
 61 
     | 
    
         
            +
              content: $cog
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            .icon-trash:before
         
     | 
| 
      
 64 
     | 
    
         
            +
              content: $trash
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            .icon-home:before
         
     | 
| 
      
 67 
     | 
    
         
            +
              content: $home
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            .icon-file-alt:before
         
     | 
| 
      
 70 
     | 
    
         
            +
              content: $file-alt
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            .icon-time:before
         
     | 
| 
      
 73 
     | 
    
         
            +
              content: $time
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            .icon-road:before
         
     | 
| 
      
 76 
     | 
    
         
            +
              content: $road
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
            .icon-download-alt:before
         
     | 
| 
      
 79 
     | 
    
         
            +
              content: $download-alt
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            .icon-download:before
         
     | 
| 
      
 82 
     | 
    
         
            +
              content: $download
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
            .icon-upload:before
         
     | 
| 
      
 85 
     | 
    
         
            +
              content: $upload
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
            .icon-inbox:before
         
     | 
| 
      
 88 
     | 
    
         
            +
              content: $inbox
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            .icon-play-circle:before
         
     | 
| 
      
 91 
     | 
    
         
            +
              content: $play-circle
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
            .icon-rotate-right:before,
         
     | 
| 
      
 94 
     | 
    
         
            +
            .icon-repeat:before
         
     | 
| 
      
 95 
     | 
    
         
            +
              content: $repeat
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
            .icon-refresh:before
         
     | 
| 
      
 98 
     | 
    
         
            +
              content: $refresh
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
            .icon-list-alt:before
         
     | 
| 
      
 101 
     | 
    
         
            +
              content: $list-alt
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
            .icon-lock:before
         
     | 
| 
      
 104 
     | 
    
         
            +
              content: $lock
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
            .icon-flag:before
         
     | 
| 
      
 107 
     | 
    
         
            +
              content: $flag
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            .icon-headphones:before
         
     | 
| 
      
 110 
     | 
    
         
            +
              content: $headphones
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            .icon-volume-off:before
         
     | 
| 
      
 113 
     | 
    
         
            +
              content: $volume-off
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
            .icon-volume-down:before
         
     | 
| 
      
 116 
     | 
    
         
            +
              content: $volume-down
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
            .icon-volume-up:before
         
     | 
| 
      
 119 
     | 
    
         
            +
              content: $volume-up
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            .icon-qrcode:before
         
     | 
| 
      
 122 
     | 
    
         
            +
              content: $qrcode
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
            .icon-barcode:before
         
     | 
| 
      
 125 
     | 
    
         
            +
              content: $barcode
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
            .icon-tag:before
         
     | 
| 
      
 128 
     | 
    
         
            +
              content: $tag
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
            .icon-tags:before
         
     | 
| 
      
 131 
     | 
    
         
            +
              content: $tags
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
      
 133 
     | 
    
         
            +
            .icon-book:before
         
     | 
| 
      
 134 
     | 
    
         
            +
              content: $book
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
            .icon-bookmark:before
         
     | 
| 
      
 137 
     | 
    
         
            +
              content: $bookmark
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
            .icon-print:before
         
     | 
| 
      
 140 
     | 
    
         
            +
              content: $print
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
            .icon-camera:before
         
     | 
| 
      
 143 
     | 
    
         
            +
              content: $camera
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
            .icon-font:before
         
     | 
| 
      
 146 
     | 
    
         
            +
              content: $font
         
     | 
| 
      
 147 
     | 
    
         
            +
             
     | 
| 
      
 148 
     | 
    
         
            +
            .icon-bold:before
         
     | 
| 
      
 149 
     | 
    
         
            +
              content: $bold
         
     | 
| 
      
 150 
     | 
    
         
            +
             
     | 
| 
      
 151 
     | 
    
         
            +
            .icon-italic:before
         
     | 
| 
      
 152 
     | 
    
         
            +
              content: $italic
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
            .icon-text-height:before
         
     | 
| 
      
 155 
     | 
    
         
            +
              content: $text-height
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
            .icon-text-width:before
         
     | 
| 
      
 158 
     | 
    
         
            +
              content: $text-width
         
     | 
| 
      
 159 
     | 
    
         
            +
             
     | 
| 
      
 160 
     | 
    
         
            +
            .icon-align-left:before
         
     | 
| 
      
 161 
     | 
    
         
            +
              content: $align-left
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
            .icon-align-center:before
         
     | 
| 
      
 164 
     | 
    
         
            +
              content: $align-center
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
            .icon-align-right:before
         
     | 
| 
      
 167 
     | 
    
         
            +
              content: $align-right
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
            .icon-align-justify:before
         
     | 
| 
      
 170 
     | 
    
         
            +
              content: $align-justify
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
            .icon-list:before
         
     | 
| 
      
 173 
     | 
    
         
            +
              content: $list
         
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
            .icon-indent-left:before
         
     | 
| 
      
 176 
     | 
    
         
            +
              content: $indent-left
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
            .icon-indent-right:before
         
     | 
| 
      
 179 
     | 
    
         
            +
              content: $indent-right
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
            .icon-facetime-video:before
         
     | 
| 
      
 182 
     | 
    
         
            +
              content: $facetime-video
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
            .icon-picture:before
         
     | 
| 
      
 185 
     | 
    
         
            +
              content: $picture
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
            .icon-pencil:before
         
     | 
| 
      
 188 
     | 
    
         
            +
              content: $pencil
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
      
 190 
     | 
    
         
            +
            .icon-map-marker:before
         
     | 
| 
      
 191 
     | 
    
         
            +
              content: $map-marker
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
      
 193 
     | 
    
         
            +
            .icon-adjust:before
         
     | 
| 
      
 194 
     | 
    
         
            +
              content: $adjust
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            .icon-tint:before
         
     | 
| 
      
 197 
     | 
    
         
            +
              content: $tint
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
            .icon-edit:before
         
     | 
| 
      
 200 
     | 
    
         
            +
              content: $edit
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
            .icon-share:before
         
     | 
| 
      
 203 
     | 
    
         
            +
              content: $share
         
     | 
| 
      
 204 
     | 
    
         
            +
             
     | 
| 
      
 205 
     | 
    
         
            +
            .icon-check:before
         
     | 
| 
      
 206 
     | 
    
         
            +
              content: $check
         
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
            .icon-move:before
         
     | 
| 
      
 209 
     | 
    
         
            +
              content: $move
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
            .icon-step-backward:before
         
     | 
| 
      
 212 
     | 
    
         
            +
              content: $step-backward
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
            .icon-fast-backward:before
         
     | 
| 
      
 215 
     | 
    
         
            +
              content: $fast-backward
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
            .icon-backward:before
         
     | 
| 
      
 218 
     | 
    
         
            +
              content: $backward
         
     | 
| 
      
 219 
     | 
    
         
            +
             
     | 
| 
      
 220 
     | 
    
         
            +
            .icon-play:before
         
     | 
| 
      
 221 
     | 
    
         
            +
              content: $play
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
            .icon-pause:before
         
     | 
| 
      
 224 
     | 
    
         
            +
              content: $pause
         
     | 
| 
      
 225 
     | 
    
         
            +
             
     | 
| 
      
 226 
     | 
    
         
            +
            .icon-stop:before
         
     | 
| 
      
 227 
     | 
    
         
            +
              content: $stop
         
     | 
| 
      
 228 
     | 
    
         
            +
             
     | 
| 
      
 229 
     | 
    
         
            +
            .icon-forward:before
         
     | 
| 
      
 230 
     | 
    
         
            +
              content: $forward
         
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
            .icon-fast-forward:before
         
     | 
| 
      
 233 
     | 
    
         
            +
              content: $fast-forward
         
     | 
| 
      
 234 
     | 
    
         
            +
             
     | 
| 
      
 235 
     | 
    
         
            +
            .icon-step-forward:before
         
     | 
| 
      
 236 
     | 
    
         
            +
              content: $step-forward
         
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
            .icon-eject:before
         
     | 
| 
      
 239 
     | 
    
         
            +
              content: $eject
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
            .icon-chevron-left:before
         
     | 
| 
      
 242 
     | 
    
         
            +
              content: $chevron-left
         
     | 
| 
      
 243 
     | 
    
         
            +
             
     | 
| 
      
 244 
     | 
    
         
            +
            .icon-chevron-right:before
         
     | 
| 
      
 245 
     | 
    
         
            +
              content: $chevron-right
         
     | 
| 
      
 246 
     | 
    
         
            +
             
     | 
| 
      
 247 
     | 
    
         
            +
            .icon-plus-sign:before
         
     | 
| 
      
 248 
     | 
    
         
            +
              content: $plus-sign
         
     | 
| 
      
 249 
     | 
    
         
            +
             
     | 
| 
      
 250 
     | 
    
         
            +
            .icon-minus-sign:before
         
     | 
| 
      
 251 
     | 
    
         
            +
              content: $minus-sign
         
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
            .icon-remove-sign:before
         
     | 
| 
      
 254 
     | 
    
         
            +
              content: $remove-sign
         
     | 
| 
      
 255 
     | 
    
         
            +
             
     | 
| 
      
 256 
     | 
    
         
            +
            .icon-ok-sign:before
         
     | 
| 
      
 257 
     | 
    
         
            +
              content: $ok-sign
         
     | 
| 
      
 258 
     | 
    
         
            +
             
     | 
| 
      
 259 
     | 
    
         
            +
            .icon-question-sign:before
         
     | 
| 
      
 260 
     | 
    
         
            +
              content: $question-sign
         
     | 
| 
      
 261 
     | 
    
         
            +
             
     | 
| 
      
 262 
     | 
    
         
            +
            .icon-info-sign:before
         
     | 
| 
      
 263 
     | 
    
         
            +
              content: $info-sign
         
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
            .icon-screenshot:before
         
     | 
| 
      
 266 
     | 
    
         
            +
              content: $screenshot
         
     | 
| 
      
 267 
     | 
    
         
            +
             
     | 
| 
      
 268 
     | 
    
         
            +
            .icon-remove-circle:before
         
     | 
| 
      
 269 
     | 
    
         
            +
              content: $remove-circle
         
     | 
| 
      
 270 
     | 
    
         
            +
             
     | 
| 
      
 271 
     | 
    
         
            +
            .icon-ok-circle:before
         
     | 
| 
      
 272 
     | 
    
         
            +
              content: $ok-circle
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
            .icon-ban-circle:before
         
     | 
| 
      
 275 
     | 
    
         
            +
              content: $ban-circle
         
     | 
| 
      
 276 
     | 
    
         
            +
             
     | 
| 
      
 277 
     | 
    
         
            +
            .icon-arrow-left:before
         
     | 
| 
      
 278 
     | 
    
         
            +
              content: $arrow-left
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
            .icon-arrow-right:before
         
     | 
| 
      
 281 
     | 
    
         
            +
              content: $arrow-right
         
     | 
| 
      
 282 
     | 
    
         
            +
             
     | 
| 
      
 283 
     | 
    
         
            +
            .icon-arrow-up:before
         
     | 
| 
      
 284 
     | 
    
         
            +
              content: $arrow-up
         
     | 
| 
      
 285 
     | 
    
         
            +
             
     | 
| 
      
 286 
     | 
    
         
            +
            .icon-arrow-down:before
         
     | 
| 
      
 287 
     | 
    
         
            +
              content: $arrow-down
         
     | 
| 
      
 288 
     | 
    
         
            +
             
     | 
| 
      
 289 
     | 
    
         
            +
            .icon-mail-forward:before,
         
     | 
| 
      
 290 
     | 
    
         
            +
            .icon-share-alt:before
         
     | 
| 
      
 291 
     | 
    
         
            +
              content: $share-alt
         
     | 
| 
      
 292 
     | 
    
         
            +
             
     | 
| 
      
 293 
     | 
    
         
            +
            .icon-resize-full:before
         
     | 
| 
      
 294 
     | 
    
         
            +
              content: $resize-full
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
            .icon-resize-small:before
         
     | 
| 
      
 297 
     | 
    
         
            +
              content: $resize-small
         
     | 
| 
      
 298 
     | 
    
         
            +
             
     | 
| 
      
 299 
     | 
    
         
            +
            .icon-plus:before
         
     | 
| 
      
 300 
     | 
    
         
            +
              content: $plus
         
     | 
| 
      
 301 
     | 
    
         
            +
             
     | 
| 
      
 302 
     | 
    
         
            +
            .icon-minus:before
         
     | 
| 
      
 303 
     | 
    
         
            +
              content: $minus
         
     | 
| 
      
 304 
     | 
    
         
            +
             
     | 
| 
      
 305 
     | 
    
         
            +
            .icon-asterisk:before
         
     | 
| 
      
 306 
     | 
    
         
            +
              content: $asterisk
         
     | 
| 
      
 307 
     | 
    
         
            +
             
     | 
| 
      
 308 
     | 
    
         
            +
            .icon-exclamation-sign:before
         
     | 
| 
      
 309 
     | 
    
         
            +
              content: $exclamation-sign
         
     | 
| 
      
 310 
     | 
    
         
            +
             
     | 
| 
      
 311 
     | 
    
         
            +
            .icon-gift:before
         
     | 
| 
      
 312 
     | 
    
         
            +
              content: $gift
         
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
      
 314 
     | 
    
         
            +
            .icon-leaf:before
         
     | 
| 
      
 315 
     | 
    
         
            +
              content: $leaf
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
            .icon-fire:before
         
     | 
| 
      
 318 
     | 
    
         
            +
              content: $fire
         
     | 
| 
      
 319 
     | 
    
         
            +
             
     | 
| 
      
 320 
     | 
    
         
            +
            .icon-eye-open:before
         
     | 
| 
      
 321 
     | 
    
         
            +
              content: $eye-open
         
     | 
| 
      
 322 
     | 
    
         
            +
             
     | 
| 
      
 323 
     | 
    
         
            +
            .icon-eye-close:before
         
     | 
| 
      
 324 
     | 
    
         
            +
              content: $eye-close
         
     | 
| 
      
 325 
     | 
    
         
            +
             
     | 
| 
      
 326 
     | 
    
         
            +
            .icon-warning-sign:before
         
     | 
| 
      
 327 
     | 
    
         
            +
              content: $warning-sign
         
     | 
| 
      
 328 
     | 
    
         
            +
             
     | 
| 
      
 329 
     | 
    
         
            +
            .icon-plane:before
         
     | 
| 
      
 330 
     | 
    
         
            +
              content: $plane
         
     | 
| 
      
 331 
     | 
    
         
            +
             
     | 
| 
      
 332 
     | 
    
         
            +
            .icon-calendar:before
         
     | 
| 
      
 333 
     | 
    
         
            +
              content: $calendar
         
     | 
| 
      
 334 
     | 
    
         
            +
             
     | 
| 
      
 335 
     | 
    
         
            +
            .icon-random:before
         
     | 
| 
      
 336 
     | 
    
         
            +
              content: $random
         
     | 
| 
      
 337 
     | 
    
         
            +
             
     | 
| 
      
 338 
     | 
    
         
            +
            .icon-comment:before
         
     | 
| 
      
 339 
     | 
    
         
            +
              content: $comment
         
     | 
| 
      
 340 
     | 
    
         
            +
             
     | 
| 
      
 341 
     | 
    
         
            +
            .icon-magnet:before
         
     | 
| 
      
 342 
     | 
    
         
            +
              content: $magnet
         
     | 
| 
      
 343 
     | 
    
         
            +
             
     | 
| 
      
 344 
     | 
    
         
            +
            .icon-chevron-up:before
         
     | 
| 
      
 345 
     | 
    
         
            +
              content: $chevron-up
         
     | 
| 
      
 346 
     | 
    
         
            +
             
     | 
| 
      
 347 
     | 
    
         
            +
            .icon-chevron-down:before
         
     | 
| 
      
 348 
     | 
    
         
            +
              content: $chevron-down
         
     | 
| 
      
 349 
     | 
    
         
            +
             
     | 
| 
      
 350 
     | 
    
         
            +
            .icon-retweet:before
         
     | 
| 
      
 351 
     | 
    
         
            +
              content: $retweet
         
     | 
| 
      
 352 
     | 
    
         
            +
             
     | 
| 
      
 353 
     | 
    
         
            +
            .icon-shopping-cart:before
         
     | 
| 
      
 354 
     | 
    
         
            +
              content: $shopping-cart
         
     | 
| 
      
 355 
     | 
    
         
            +
             
     | 
| 
      
 356 
     | 
    
         
            +
            .icon-folder-close:before
         
     | 
| 
      
 357 
     | 
    
         
            +
              content: $folder-close
         
     | 
| 
      
 358 
     | 
    
         
            +
             
     | 
| 
      
 359 
     | 
    
         
            +
            .icon-folder-open:before
         
     | 
| 
      
 360 
     | 
    
         
            +
              content: $folder-open
         
     | 
| 
      
 361 
     | 
    
         
            +
             
     | 
| 
      
 362 
     | 
    
         
            +
            .icon-resize-vertical:before
         
     | 
| 
      
 363 
     | 
    
         
            +
              content: $resize-vertical
         
     | 
| 
      
 364 
     | 
    
         
            +
             
     | 
| 
      
 365 
     | 
    
         
            +
            .icon-resize-horizontal:before
         
     | 
| 
      
 366 
     | 
    
         
            +
              content: $resize-horizontal
         
     | 
| 
      
 367 
     | 
    
         
            +
             
     | 
| 
      
 368 
     | 
    
         
            +
            .icon-bar-chart:before
         
     | 
| 
      
 369 
     | 
    
         
            +
              content: $bar-chart
         
     | 
| 
      
 370 
     | 
    
         
            +
             
     | 
| 
      
 371 
     | 
    
         
            +
            .icon-twitter-sign:before
         
     | 
| 
      
 372 
     | 
    
         
            +
              content: $twitter-sign
         
     | 
| 
      
 373 
     | 
    
         
            +
             
     | 
| 
      
 374 
     | 
    
         
            +
            .icon-facebook-sign:before
         
     | 
| 
      
 375 
     | 
    
         
            +
              content: $facebook-sign
         
     | 
| 
      
 376 
     | 
    
         
            +
             
     | 
| 
      
 377 
     | 
    
         
            +
            .icon-camera-retro:before
         
     | 
| 
      
 378 
     | 
    
         
            +
              content: $camera-retro
         
     | 
| 
      
 379 
     | 
    
         
            +
             
     | 
| 
      
 380 
     | 
    
         
            +
            .icon-key:before
         
     | 
| 
      
 381 
     | 
    
         
            +
              content: $key
         
     | 
| 
      
 382 
     | 
    
         
            +
             
     | 
| 
      
 383 
     | 
    
         
            +
            .icon-gears:before,
         
     | 
| 
      
 384 
     | 
    
         
            +
            .icon-cogs:before
         
     | 
| 
      
 385 
     | 
    
         
            +
              content: $cogs
         
     | 
| 
      
 386 
     | 
    
         
            +
             
     | 
| 
      
 387 
     | 
    
         
            +
            .icon-comments:before
         
     | 
| 
      
 388 
     | 
    
         
            +
              content: $comments
         
     | 
| 
      
 389 
     | 
    
         
            +
             
     | 
| 
      
 390 
     | 
    
         
            +
            .icon-thumbs-up-alt:before
         
     | 
| 
      
 391 
     | 
    
         
            +
              content: $thumbs-up-alt
         
     | 
| 
      
 392 
     | 
    
         
            +
             
     | 
| 
      
 393 
     | 
    
         
            +
            .icon-thumbs-down-alt:before
         
     | 
| 
      
 394 
     | 
    
         
            +
              content: $thumbs-down-alt
         
     | 
| 
      
 395 
     | 
    
         
            +
             
     | 
| 
      
 396 
     | 
    
         
            +
            .icon-star-half:before
         
     | 
| 
      
 397 
     | 
    
         
            +
              content: $star-half
         
     | 
| 
      
 398 
     | 
    
         
            +
             
     | 
| 
      
 399 
     | 
    
         
            +
            .icon-heart-empty:before
         
     | 
| 
      
 400 
     | 
    
         
            +
              content: $heart-empty
         
     | 
| 
      
 401 
     | 
    
         
            +
             
     | 
| 
      
 402 
     | 
    
         
            +
            .icon-signout:before
         
     | 
| 
      
 403 
     | 
    
         
            +
              content: $signout
         
     | 
| 
      
 404 
     | 
    
         
            +
             
     | 
| 
      
 405 
     | 
    
         
            +
            .icon-linkedin-sign:before
         
     | 
| 
      
 406 
     | 
    
         
            +
              content: $linkedin-sign
         
     | 
| 
      
 407 
     | 
    
         
            +
             
     | 
| 
      
 408 
     | 
    
         
            +
            .icon-pushpin:before
         
     | 
| 
      
 409 
     | 
    
         
            +
              content: $pushpin
         
     | 
| 
      
 410 
     | 
    
         
            +
             
     | 
| 
      
 411 
     | 
    
         
            +
            .icon-external-link:before
         
     | 
| 
      
 412 
     | 
    
         
            +
              content: $external-link
         
     | 
| 
      
 413 
     | 
    
         
            +
             
     | 
| 
      
 414 
     | 
    
         
            +
            .icon-signin:before
         
     | 
| 
      
 415 
     | 
    
         
            +
              content: $signin
         
     | 
| 
      
 416 
     | 
    
         
            +
             
     | 
| 
      
 417 
     | 
    
         
            +
            .icon-trophy:before
         
     | 
| 
      
 418 
     | 
    
         
            +
              content: $trophy
         
     | 
| 
      
 419 
     | 
    
         
            +
             
     | 
| 
      
 420 
     | 
    
         
            +
            .icon-github-sign:before
         
     | 
| 
      
 421 
     | 
    
         
            +
              content: $github-sign
         
     | 
| 
      
 422 
     | 
    
         
            +
             
     | 
| 
      
 423 
     | 
    
         
            +
            .icon-upload-alt:before
         
     | 
| 
      
 424 
     | 
    
         
            +
              content: $upload-alt
         
     | 
| 
      
 425 
     | 
    
         
            +
             
     | 
| 
      
 426 
     | 
    
         
            +
            .icon-lemon:before
         
     | 
| 
      
 427 
     | 
    
         
            +
              content: $lemon
         
     | 
| 
      
 428 
     | 
    
         
            +
             
     | 
| 
      
 429 
     | 
    
         
            +
            .icon-phone:before
         
     | 
| 
      
 430 
     | 
    
         
            +
              content: $phone
         
     | 
| 
      
 431 
     | 
    
         
            +
             
     | 
| 
      
 432 
     | 
    
         
            +
            .icon-unchecked:before,
         
     | 
| 
      
 433 
     | 
    
         
            +
            .icon-check-empty:before
         
     | 
| 
      
 434 
     | 
    
         
            +
              content: $check-empty
         
     | 
| 
      
 435 
     | 
    
         
            +
             
     | 
| 
      
 436 
     | 
    
         
            +
            .icon-bookmark-empty:before
         
     | 
| 
      
 437 
     | 
    
         
            +
              content: $bookmark-empty
         
     | 
| 
      
 438 
     | 
    
         
            +
             
     | 
| 
      
 439 
     | 
    
         
            +
            .icon-phone-sign:before
         
     | 
| 
      
 440 
     | 
    
         
            +
              content: $phone-sign
         
     | 
| 
      
 441 
     | 
    
         
            +
             
     | 
| 
      
 442 
     | 
    
         
            +
            .icon-twitter:before
         
     | 
| 
      
 443 
     | 
    
         
            +
              content: $twitter
         
     | 
| 
      
 444 
     | 
    
         
            +
             
     | 
| 
      
 445 
     | 
    
         
            +
            .icon-facebook:before
         
     | 
| 
      
 446 
     | 
    
         
            +
              content: $facebook
         
     | 
| 
      
 447 
     | 
    
         
            +
             
     | 
| 
      
 448 
     | 
    
         
            +
            .icon-github:before
         
     | 
| 
      
 449 
     | 
    
         
            +
              content: $github
         
     | 
| 
      
 450 
     | 
    
         
            +
             
     | 
| 
      
 451 
     | 
    
         
            +
            .icon-unlock:before
         
     | 
| 
      
 452 
     | 
    
         
            +
              content: $unlock
         
     | 
| 
      
 453 
     | 
    
         
            +
             
     | 
| 
      
 454 
     | 
    
         
            +
            .icon-credit-card:before
         
     | 
| 
      
 455 
     | 
    
         
            +
              content: $credit-card
         
     | 
| 
      
 456 
     | 
    
         
            +
             
     | 
| 
      
 457 
     | 
    
         
            +
            .icon-rss:before
         
     | 
| 
      
 458 
     | 
    
         
            +
              content: $rss
         
     | 
| 
      
 459 
     | 
    
         
            +
             
     | 
| 
      
 460 
     | 
    
         
            +
            .icon-hdd:before
         
     | 
| 
      
 461 
     | 
    
         
            +
              content: $hdd
         
     | 
| 
      
 462 
     | 
    
         
            +
             
     | 
| 
      
 463 
     | 
    
         
            +
            .icon-bullhorn:before
         
     | 
| 
      
 464 
     | 
    
         
            +
              content: $bullhorn
         
     | 
| 
      
 465 
     | 
    
         
            +
             
     | 
| 
      
 466 
     | 
    
         
            +
            .icon-bell:before
         
     | 
| 
      
 467 
     | 
    
         
            +
              content: $bell
         
     | 
| 
      
 468 
     | 
    
         
            +
             
     | 
| 
      
 469 
     | 
    
         
            +
            .icon-certificate:before
         
     | 
| 
      
 470 
     | 
    
         
            +
              content: $certificate
         
     | 
| 
      
 471 
     | 
    
         
            +
             
     | 
| 
      
 472 
     | 
    
         
            +
            .icon-hand-right:before
         
     | 
| 
      
 473 
     | 
    
         
            +
              content: $hand-right
         
     | 
| 
      
 474 
     | 
    
         
            +
             
     | 
| 
      
 475 
     | 
    
         
            +
            .icon-hand-left:before
         
     | 
| 
      
 476 
     | 
    
         
            +
              content: $hand-left
         
     | 
| 
      
 477 
     | 
    
         
            +
             
     | 
| 
      
 478 
     | 
    
         
            +
            .icon-hand-up:before
         
     | 
| 
      
 479 
     | 
    
         
            +
              content: $hand-up
         
     | 
| 
      
 480 
     | 
    
         
            +
             
     | 
| 
      
 481 
     | 
    
         
            +
            .icon-hand-down:before
         
     | 
| 
      
 482 
     | 
    
         
            +
              content: $hand-down
         
     | 
| 
      
 483 
     | 
    
         
            +
             
     | 
| 
      
 484 
     | 
    
         
            +
            .icon-circle-arrow-left:before
         
     | 
| 
      
 485 
     | 
    
         
            +
              content: $circle-arrow-left
         
     | 
| 
      
 486 
     | 
    
         
            +
             
     | 
| 
      
 487 
     | 
    
         
            +
            .icon-circle-arrow-right:before
         
     | 
| 
      
 488 
     | 
    
         
            +
              content: $circle-arrow-right
         
     | 
| 
      
 489 
     | 
    
         
            +
             
     | 
| 
      
 490 
     | 
    
         
            +
            .icon-circle-arrow-up:before
         
     | 
| 
      
 491 
     | 
    
         
            +
              content: $circle-arrow-up
         
     | 
| 
      
 492 
     | 
    
         
            +
             
     | 
| 
      
 493 
     | 
    
         
            +
            .icon-circle-arrow-down:before
         
     | 
| 
      
 494 
     | 
    
         
            +
              content: $circle-arrow-down
         
     | 
| 
      
 495 
     | 
    
         
            +
             
     | 
| 
      
 496 
     | 
    
         
            +
            .icon-globe:before
         
     | 
| 
      
 497 
     | 
    
         
            +
              content: $globe
         
     | 
| 
      
 498 
     | 
    
         
            +
             
     | 
| 
      
 499 
     | 
    
         
            +
            .icon-wrench:before
         
     | 
| 
      
 500 
     | 
    
         
            +
              content: $wrench
         
     | 
| 
      
 501 
     | 
    
         
            +
             
     | 
| 
      
 502 
     | 
    
         
            +
            .icon-tasks:before
         
     | 
| 
      
 503 
     | 
    
         
            +
              content: $tasks
         
     | 
| 
      
 504 
     | 
    
         
            +
             
     | 
| 
      
 505 
     | 
    
         
            +
            .icon-filter:before
         
     | 
| 
      
 506 
     | 
    
         
            +
              content: $filter
         
     | 
| 
      
 507 
     | 
    
         
            +
             
     | 
| 
      
 508 
     | 
    
         
            +
            .icon-briefcase:before
         
     | 
| 
      
 509 
     | 
    
         
            +
              content: $briefcase
         
     | 
| 
      
 510 
     | 
    
         
            +
             
     | 
| 
      
 511 
     | 
    
         
            +
            .icon-fullscreen:before
         
     | 
| 
      
 512 
     | 
    
         
            +
              content: $fullscreen
         
     | 
| 
      
 513 
     | 
    
         
            +
             
     | 
| 
      
 514 
     | 
    
         
            +
            .icon-group:before
         
     | 
| 
      
 515 
     | 
    
         
            +
              content: $group
         
     | 
| 
      
 516 
     | 
    
         
            +
             
     | 
| 
      
 517 
     | 
    
         
            +
            .icon-link:before
         
     | 
| 
      
 518 
     | 
    
         
            +
              content: $link
         
     | 
| 
      
 519 
     | 
    
         
            +
             
     | 
| 
      
 520 
     | 
    
         
            +
            .icon-cloud:before
         
     | 
| 
      
 521 
     | 
    
         
            +
              content: $cloud
         
     | 
| 
      
 522 
     | 
    
         
            +
             
     | 
| 
      
 523 
     | 
    
         
            +
            .icon-beaker:before
         
     | 
| 
      
 524 
     | 
    
         
            +
              content: $beaker
         
     | 
| 
      
 525 
     | 
    
         
            +
             
     | 
| 
      
 526 
     | 
    
         
            +
            .icon-cut:before
         
     | 
| 
      
 527 
     | 
    
         
            +
              content: $cut
         
     | 
| 
      
 528 
     | 
    
         
            +
             
     | 
| 
      
 529 
     | 
    
         
            +
            .icon-copy:before
         
     | 
| 
      
 530 
     | 
    
         
            +
              content: $copy
         
     | 
| 
      
 531 
     | 
    
         
            +
             
     | 
| 
      
 532 
     | 
    
         
            +
            .icon-paperclip:before,
         
     | 
| 
      
 533 
     | 
    
         
            +
            .icon-paper-clip:before
         
     | 
| 
      
 534 
     | 
    
         
            +
              content: $paper-clip
         
     | 
| 
      
 535 
     | 
    
         
            +
             
     | 
| 
      
 536 
     | 
    
         
            +
            .icon-save:before
         
     | 
| 
      
 537 
     | 
    
         
            +
              content: $save
         
     | 
| 
      
 538 
     | 
    
         
            +
             
     | 
| 
      
 539 
     | 
    
         
            +
            .icon-sign-blank:before
         
     | 
| 
      
 540 
     | 
    
         
            +
              content: $sign-blank
         
     | 
| 
      
 541 
     | 
    
         
            +
             
     | 
| 
      
 542 
     | 
    
         
            +
            .icon-reorder:before
         
     | 
| 
      
 543 
     | 
    
         
            +
              content: $reorder
         
     | 
| 
      
 544 
     | 
    
         
            +
             
     | 
| 
      
 545 
     | 
    
         
            +
            .icon-list-ul:before
         
     | 
| 
      
 546 
     | 
    
         
            +
              content: $list-ul
         
     | 
| 
      
 547 
     | 
    
         
            +
             
     | 
| 
      
 548 
     | 
    
         
            +
            .icon-list-ol:before
         
     | 
| 
      
 549 
     | 
    
         
            +
              content: $list-ol
         
     | 
| 
      
 550 
     | 
    
         
            +
             
     | 
| 
      
 551 
     | 
    
         
            +
            .icon-strikethrough:before
         
     | 
| 
      
 552 
     | 
    
         
            +
              content: $strikethrough
         
     | 
| 
      
 553 
     | 
    
         
            +
             
     | 
| 
      
 554 
     | 
    
         
            +
            .icon-underline:before
         
     | 
| 
      
 555 
     | 
    
         
            +
              content: $underline
         
     | 
| 
      
 556 
     | 
    
         
            +
             
     | 
| 
      
 557 
     | 
    
         
            +
            .icon-table:before
         
     | 
| 
      
 558 
     | 
    
         
            +
              content: $table
         
     | 
| 
      
 559 
     | 
    
         
            +
             
     | 
| 
      
 560 
     | 
    
         
            +
            .icon-magic:before
         
     | 
| 
      
 561 
     | 
    
         
            +
              content: $magic
         
     | 
| 
      
 562 
     | 
    
         
            +
             
     | 
| 
      
 563 
     | 
    
         
            +
            .icon-truck:before
         
     | 
| 
      
 564 
     | 
    
         
            +
              content: $truck
         
     | 
| 
      
 565 
     | 
    
         
            +
             
     | 
| 
      
 566 
     | 
    
         
            +
            .icon-pinterest:before
         
     | 
| 
      
 567 
     | 
    
         
            +
              content: $pinterest
         
     | 
| 
      
 568 
     | 
    
         
            +
             
     | 
| 
      
 569 
     | 
    
         
            +
            .icon-pinterest-sign:before
         
     | 
| 
      
 570 
     | 
    
         
            +
              content: $pinterest-sign
         
     | 
| 
      
 571 
     | 
    
         
            +
             
     | 
| 
      
 572 
     | 
    
         
            +
            .icon-google-plus-sign:before
         
     | 
| 
      
 573 
     | 
    
         
            +
              content: $google-plus-sign
         
     | 
| 
      
 574 
     | 
    
         
            +
             
     | 
| 
      
 575 
     | 
    
         
            +
            .icon-google-plus:before
         
     | 
| 
      
 576 
     | 
    
         
            +
              content: $google-plus
         
     | 
| 
      
 577 
     | 
    
         
            +
             
     | 
| 
      
 578 
     | 
    
         
            +
            .icon-money:before
         
     | 
| 
      
 579 
     | 
    
         
            +
              content: $money
         
     | 
| 
      
 580 
     | 
    
         
            +
             
     | 
| 
      
 581 
     | 
    
         
            +
            .icon-caret-down:before
         
     | 
| 
      
 582 
     | 
    
         
            +
              content: $caret-down
         
     | 
| 
      
 583 
     | 
    
         
            +
             
     | 
| 
      
 584 
     | 
    
         
            +
            .icon-caret-up:before
         
     | 
| 
      
 585 
     | 
    
         
            +
              content: $caret-up
         
     | 
| 
      
 586 
     | 
    
         
            +
             
     | 
| 
      
 587 
     | 
    
         
            +
            .icon-caret-left:before
         
     | 
| 
      
 588 
     | 
    
         
            +
              content: $caret-left
         
     | 
| 
      
 589 
     | 
    
         
            +
             
     | 
| 
      
 590 
     | 
    
         
            +
            .icon-caret-right:before
         
     | 
| 
      
 591 
     | 
    
         
            +
              content: $caret-right
         
     | 
| 
      
 592 
     | 
    
         
            +
             
     | 
| 
      
 593 
     | 
    
         
            +
            .icon-columns:before
         
     | 
| 
      
 594 
     | 
    
         
            +
              content: $columns
         
     | 
| 
      
 595 
     | 
    
         
            +
             
     | 
| 
      
 596 
     | 
    
         
            +
            .icon-sort:before
         
     | 
| 
      
 597 
     | 
    
         
            +
              content: $sort
         
     | 
| 
      
 598 
     | 
    
         
            +
             
     | 
| 
      
 599 
     | 
    
         
            +
            .icon-sort-down:before
         
     | 
| 
      
 600 
     | 
    
         
            +
              content: $sort-down
         
     | 
| 
      
 601 
     | 
    
         
            +
             
     | 
| 
      
 602 
     | 
    
         
            +
            .icon-sort-up:before
         
     | 
| 
      
 603 
     | 
    
         
            +
              content: $sort-up
         
     | 
| 
      
 604 
     | 
    
         
            +
             
     | 
| 
      
 605 
     | 
    
         
            +
            .icon-envelope:before
         
     | 
| 
      
 606 
     | 
    
         
            +
              content: $envelope
         
     | 
| 
      
 607 
     | 
    
         
            +
             
     | 
| 
      
 608 
     | 
    
         
            +
            .icon-linkedin:before
         
     | 
| 
      
 609 
     | 
    
         
            +
              content: $linkedin
         
     | 
| 
      
 610 
     | 
    
         
            +
             
     | 
| 
      
 611 
     | 
    
         
            +
            .icon-rotate-left:before,
         
     | 
| 
      
 612 
     | 
    
         
            +
            .icon-undo:before
         
     | 
| 
      
 613 
     | 
    
         
            +
              content: $undo
         
     | 
| 
      
 614 
     | 
    
         
            +
             
     | 
| 
      
 615 
     | 
    
         
            +
            .icon-legal:before
         
     | 
| 
      
 616 
     | 
    
         
            +
              content: $legal
         
     | 
| 
      
 617 
     | 
    
         
            +
             
     | 
| 
      
 618 
     | 
    
         
            +
            .icon-dashboard:before
         
     | 
| 
      
 619 
     | 
    
         
            +
              content: $dashboard
         
     | 
| 
      
 620 
     | 
    
         
            +
             
     | 
| 
      
 621 
     | 
    
         
            +
            .icon-comment-alt:before
         
     | 
| 
      
 622 
     | 
    
         
            +
              content: $comment-alt
         
     | 
| 
      
 623 
     | 
    
         
            +
             
     | 
| 
      
 624 
     | 
    
         
            +
            .icon-comments-alt:before
         
     | 
| 
      
 625 
     | 
    
         
            +
              content: $comments-alt
         
     | 
| 
      
 626 
     | 
    
         
            +
             
     | 
| 
      
 627 
     | 
    
         
            +
            .icon-bolt:before
         
     | 
| 
      
 628 
     | 
    
         
            +
              content: $bolt
         
     | 
| 
      
 629 
     | 
    
         
            +
             
     | 
| 
      
 630 
     | 
    
         
            +
            .icon-sitemap:before
         
     | 
| 
      
 631 
     | 
    
         
            +
              content: $sitemap
         
     | 
| 
      
 632 
     | 
    
         
            +
             
     | 
| 
      
 633 
     | 
    
         
            +
            .icon-umbrella:before
         
     | 
| 
      
 634 
     | 
    
         
            +
              content: $umbrella
         
     | 
| 
      
 635 
     | 
    
         
            +
             
     | 
| 
      
 636 
     | 
    
         
            +
            .icon-paste:before
         
     | 
| 
      
 637 
     | 
    
         
            +
              content: $paste
         
     | 
| 
      
 638 
     | 
    
         
            +
             
     | 
| 
      
 639 
     | 
    
         
            +
            .icon-lightbulb:before
         
     | 
| 
      
 640 
     | 
    
         
            +
              content: $lightbulb
         
     | 
| 
      
 641 
     | 
    
         
            +
             
     | 
| 
      
 642 
     | 
    
         
            +
            .icon-exchange:before
         
     | 
| 
      
 643 
     | 
    
         
            +
              content: $exchange
         
     | 
| 
      
 644 
     | 
    
         
            +
             
     | 
| 
      
 645 
     | 
    
         
            +
            .icon-cloud-download:before
         
     | 
| 
      
 646 
     | 
    
         
            +
              content: $cloud-download
         
     | 
| 
      
 647 
     | 
    
         
            +
             
     | 
| 
      
 648 
     | 
    
         
            +
            .icon-cloud-upload:before
         
     | 
| 
      
 649 
     | 
    
         
            +
              content: $cloud-upload
         
     | 
| 
      
 650 
     | 
    
         
            +
             
     | 
| 
      
 651 
     | 
    
         
            +
            .icon-user-md:before
         
     | 
| 
      
 652 
     | 
    
         
            +
              content: $user-md
         
     | 
| 
      
 653 
     | 
    
         
            +
             
     | 
| 
      
 654 
     | 
    
         
            +
            .icon-stethoscope:before
         
     | 
| 
      
 655 
     | 
    
         
            +
              content: $stethoscope
         
     | 
| 
      
 656 
     | 
    
         
            +
             
     | 
| 
      
 657 
     | 
    
         
            +
            .icon-suitcase:before
         
     | 
| 
      
 658 
     | 
    
         
            +
              content: $suitcase
         
     | 
| 
      
 659 
     | 
    
         
            +
             
     | 
| 
      
 660 
     | 
    
         
            +
            .icon-bell-alt:before
         
     | 
| 
      
 661 
     | 
    
         
            +
              content: $bell-alt
         
     | 
| 
      
 662 
     | 
    
         
            +
             
     | 
| 
      
 663 
     | 
    
         
            +
            .icon-coffee:before
         
     | 
| 
      
 664 
     | 
    
         
            +
              content: $coffee
         
     | 
| 
      
 665 
     | 
    
         
            +
             
     | 
| 
      
 666 
     | 
    
         
            +
            .icon-food:before
         
     | 
| 
      
 667 
     | 
    
         
            +
              content: $food
         
     | 
| 
      
 668 
     | 
    
         
            +
             
     | 
| 
      
 669 
     | 
    
         
            +
            .icon-file-text-alt:before
         
     | 
| 
      
 670 
     | 
    
         
            +
              content: $file-text-alt
         
     | 
| 
      
 671 
     | 
    
         
            +
             
     | 
| 
      
 672 
     | 
    
         
            +
            .icon-building:before
         
     | 
| 
      
 673 
     | 
    
         
            +
              content: $building
         
     | 
| 
      
 674 
     | 
    
         
            +
             
     | 
| 
      
 675 
     | 
    
         
            +
            .icon-hospital:before
         
     | 
| 
      
 676 
     | 
    
         
            +
              content: $hospital
         
     | 
| 
      
 677 
     | 
    
         
            +
             
     | 
| 
      
 678 
     | 
    
         
            +
            .icon-ambulance:before
         
     | 
| 
      
 679 
     | 
    
         
            +
              content: $ambulance
         
     | 
| 
      
 680 
     | 
    
         
            +
             
     | 
| 
      
 681 
     | 
    
         
            +
            .icon-medkit:before
         
     | 
| 
      
 682 
     | 
    
         
            +
              content: $medkit
         
     | 
| 
      
 683 
     | 
    
         
            +
             
     | 
| 
      
 684 
     | 
    
         
            +
            .icon-fighter-jet:before
         
     | 
| 
      
 685 
     | 
    
         
            +
              content: $fighter-jet
         
     | 
| 
      
 686 
     | 
    
         
            +
             
     | 
| 
      
 687 
     | 
    
         
            +
            .icon-beer:before
         
     | 
| 
      
 688 
     | 
    
         
            +
              content: $beer
         
     | 
| 
      
 689 
     | 
    
         
            +
             
     | 
| 
      
 690 
     | 
    
         
            +
            .icon-h-sign:before
         
     | 
| 
      
 691 
     | 
    
         
            +
              content: $h-sign
         
     | 
| 
      
 692 
     | 
    
         
            +
             
     | 
| 
      
 693 
     | 
    
         
            +
            .icon-plus-sign-alt:before
         
     | 
| 
      
 694 
     | 
    
         
            +
              content: $plus-sign-alt
         
     | 
| 
      
 695 
     | 
    
         
            +
             
     | 
| 
      
 696 
     | 
    
         
            +
            .icon-double-angle-left:before
         
     | 
| 
      
 697 
     | 
    
         
            +
              content: $double-angle-left
         
     | 
| 
      
 698 
     | 
    
         
            +
             
     | 
| 
      
 699 
     | 
    
         
            +
            .icon-double-angle-right:before
         
     | 
| 
      
 700 
     | 
    
         
            +
              content: $double-angle-right
         
     | 
| 
      
 701 
     | 
    
         
            +
             
     | 
| 
      
 702 
     | 
    
         
            +
            .icon-double-angle-up:before
         
     | 
| 
      
 703 
     | 
    
         
            +
              content: $double-angle-up
         
     | 
| 
      
 704 
     | 
    
         
            +
             
     | 
| 
      
 705 
     | 
    
         
            +
            .icon-double-angle-down:before
         
     | 
| 
      
 706 
     | 
    
         
            +
              content: $double-angle-down
         
     | 
| 
      
 707 
     | 
    
         
            +
             
     | 
| 
      
 708 
     | 
    
         
            +
            .icon-angle-left:before
         
     | 
| 
      
 709 
     | 
    
         
            +
              content: $angle-left
         
     | 
| 
      
 710 
     | 
    
         
            +
             
     | 
| 
      
 711 
     | 
    
         
            +
            .icon-angle-right:before
         
     | 
| 
      
 712 
     | 
    
         
            +
              content: $angle-right
         
     | 
| 
      
 713 
     | 
    
         
            +
             
     | 
| 
      
 714 
     | 
    
         
            +
            .icon-angle-up:before
         
     | 
| 
      
 715 
     | 
    
         
            +
              content: $angle-up
         
     | 
| 
      
 716 
     | 
    
         
            +
             
     | 
| 
      
 717 
     | 
    
         
            +
            .icon-angle-down:before
         
     | 
| 
      
 718 
     | 
    
         
            +
              content: $angle-down
         
     | 
| 
      
 719 
     | 
    
         
            +
             
     | 
| 
      
 720 
     | 
    
         
            +
            .icon-desktop:before
         
     | 
| 
      
 721 
     | 
    
         
            +
              content: $desktop
         
     | 
| 
      
 722 
     | 
    
         
            +
             
     | 
| 
      
 723 
     | 
    
         
            +
            .icon-laptop:before
         
     | 
| 
      
 724 
     | 
    
         
            +
              content: $laptop
         
     | 
| 
      
 725 
     | 
    
         
            +
             
     | 
| 
      
 726 
     | 
    
         
            +
            .icon-tablet:before
         
     | 
| 
      
 727 
     | 
    
         
            +
              content: $tablet
         
     | 
| 
      
 728 
     | 
    
         
            +
             
     | 
| 
      
 729 
     | 
    
         
            +
            .icon-mobile-phone:before
         
     | 
| 
      
 730 
     | 
    
         
            +
              content: $mobile-phone
         
     | 
| 
      
 731 
     | 
    
         
            +
             
     | 
| 
      
 732 
     | 
    
         
            +
            .icon-circle-blank:before
         
     | 
| 
      
 733 
     | 
    
         
            +
              content: $circle-blank
         
     | 
| 
      
 734 
     | 
    
         
            +
             
     | 
| 
      
 735 
     | 
    
         
            +
            .icon-quote-left:before
         
     | 
| 
      
 736 
     | 
    
         
            +
              content: $quote-left
         
     | 
| 
      
 737 
     | 
    
         
            +
             
     | 
| 
      
 738 
     | 
    
         
            +
            .icon-quote-right:before
         
     | 
| 
      
 739 
     | 
    
         
            +
              content: $quote-right
         
     | 
| 
      
 740 
     | 
    
         
            +
             
     | 
| 
      
 741 
     | 
    
         
            +
            .icon-spinner:before
         
     | 
| 
      
 742 
     | 
    
         
            +
              content: $spinner
         
     | 
| 
      
 743 
     | 
    
         
            +
             
     | 
| 
      
 744 
     | 
    
         
            +
            .icon-circle:before
         
     | 
| 
      
 745 
     | 
    
         
            +
              content: $circle
         
     | 
| 
      
 746 
     | 
    
         
            +
             
     | 
| 
      
 747 
     | 
    
         
            +
            .icon-mail-reply:before,
         
     | 
| 
      
 748 
     | 
    
         
            +
            .icon-reply:before
         
     | 
| 
      
 749 
     | 
    
         
            +
              content: $reply
         
     | 
| 
      
 750 
     | 
    
         
            +
             
     | 
| 
      
 751 
     | 
    
         
            +
            .icon-github-alt:before
         
     | 
| 
      
 752 
     | 
    
         
            +
              content: $github-alt
         
     | 
| 
      
 753 
     | 
    
         
            +
             
     | 
| 
      
 754 
     | 
    
         
            +
            .icon-folder-close-alt:before
         
     | 
| 
      
 755 
     | 
    
         
            +
              content: $folder-close-alt
         
     | 
| 
      
 756 
     | 
    
         
            +
             
     | 
| 
      
 757 
     | 
    
         
            +
            .icon-folder-open-alt:before
         
     | 
| 
      
 758 
     | 
    
         
            +
              content: $folder-open-alt
         
     | 
| 
      
 759 
     | 
    
         
            +
             
     | 
| 
      
 760 
     | 
    
         
            +
            .icon-expand-alt:before
         
     | 
| 
      
 761 
     | 
    
         
            +
              content: $expand-alt
         
     | 
| 
      
 762 
     | 
    
         
            +
             
     | 
| 
      
 763 
     | 
    
         
            +
            .icon-collapse-alt:before
         
     | 
| 
      
 764 
     | 
    
         
            +
              content: $collapse-alt
         
     | 
| 
      
 765 
     | 
    
         
            +
             
     | 
| 
      
 766 
     | 
    
         
            +
            .icon-smile:before
         
     | 
| 
      
 767 
     | 
    
         
            +
              content: $smile
         
     | 
| 
      
 768 
     | 
    
         
            +
             
     | 
| 
      
 769 
     | 
    
         
            +
            .icon-frown:before
         
     | 
| 
      
 770 
     | 
    
         
            +
              content: $frown
         
     | 
| 
      
 771 
     | 
    
         
            +
             
     | 
| 
      
 772 
     | 
    
         
            +
            .icon-meh:before
         
     | 
| 
      
 773 
     | 
    
         
            +
              content: $meh
         
     | 
| 
      
 774 
     | 
    
         
            +
             
     | 
| 
      
 775 
     | 
    
         
            +
            .icon-gamepad:before
         
     | 
| 
      
 776 
     | 
    
         
            +
              content: $gamepad
         
     | 
| 
      
 777 
     | 
    
         
            +
             
     | 
| 
      
 778 
     | 
    
         
            +
            .icon-keyboard:before
         
     | 
| 
      
 779 
     | 
    
         
            +
              content: $keyboard
         
     | 
| 
      
 780 
     | 
    
         
            +
             
     | 
| 
      
 781 
     | 
    
         
            +
            .icon-flag-alt:before
         
     | 
| 
      
 782 
     | 
    
         
            +
              content: $flag-alt
         
     | 
| 
      
 783 
     | 
    
         
            +
             
     | 
| 
      
 784 
     | 
    
         
            +
            .icon-flag-checkered:before
         
     | 
| 
      
 785 
     | 
    
         
            +
              content: $flag-checkered
         
     | 
| 
      
 786 
     | 
    
         
            +
             
     | 
| 
      
 787 
     | 
    
         
            +
            .icon-terminal:before
         
     | 
| 
      
 788 
     | 
    
         
            +
              content: $terminal
         
     | 
| 
      
 789 
     | 
    
         
            +
             
     | 
| 
      
 790 
     | 
    
         
            +
            .icon-code:before
         
     | 
| 
      
 791 
     | 
    
         
            +
              content: $code
         
     | 
| 
      
 792 
     | 
    
         
            +
             
     | 
| 
      
 793 
     | 
    
         
            +
            .icon-reply-all:before
         
     | 
| 
      
 794 
     | 
    
         
            +
              content: $reply-all
         
     | 
| 
      
 795 
     | 
    
         
            +
             
     | 
| 
      
 796 
     | 
    
         
            +
            .icon-mail-reply-all:before
         
     | 
| 
      
 797 
     | 
    
         
            +
              content: $mail-reply-all
         
     | 
| 
      
 798 
     | 
    
         
            +
             
     | 
| 
      
 799 
     | 
    
         
            +
            .icon-star-half-full:before,
         
     | 
| 
      
 800 
     | 
    
         
            +
            .icon-star-half-empty:before
         
     | 
| 
      
 801 
     | 
    
         
            +
              content: $star-half-empty
         
     | 
| 
      
 802 
     | 
    
         
            +
             
     | 
| 
      
 803 
     | 
    
         
            +
            .icon-location-arrow:before
         
     | 
| 
      
 804 
     | 
    
         
            +
              content: $location-arrow
         
     | 
| 
      
 805 
     | 
    
         
            +
             
     | 
| 
      
 806 
     | 
    
         
            +
            .icon-crop:before
         
     | 
| 
      
 807 
     | 
    
         
            +
              content: $crop
         
     | 
| 
      
 808 
     | 
    
         
            +
             
     | 
| 
      
 809 
     | 
    
         
            +
            .icon-code-fork:before
         
     | 
| 
      
 810 
     | 
    
         
            +
              content: $code-fork
         
     | 
| 
      
 811 
     | 
    
         
            +
             
     | 
| 
      
 812 
     | 
    
         
            +
            .icon-unlink:before
         
     | 
| 
      
 813 
     | 
    
         
            +
              content: $unlink
         
     | 
| 
      
 814 
     | 
    
         
            +
             
     | 
| 
      
 815 
     | 
    
         
            +
            .icon-question:before
         
     | 
| 
      
 816 
     | 
    
         
            +
              content: $question
         
     | 
| 
      
 817 
     | 
    
         
            +
             
     | 
| 
      
 818 
     | 
    
         
            +
            .icon-info:before
         
     | 
| 
      
 819 
     | 
    
         
            +
              content: $info
         
     | 
| 
      
 820 
     | 
    
         
            +
             
     | 
| 
      
 821 
     | 
    
         
            +
            .icon-exclamation:before
         
     | 
| 
      
 822 
     | 
    
         
            +
              content: $exclamation
         
     | 
| 
      
 823 
     | 
    
         
            +
             
     | 
| 
      
 824 
     | 
    
         
            +
            .icon-superscript:before
         
     | 
| 
      
 825 
     | 
    
         
            +
              content: $superscript
         
     | 
| 
      
 826 
     | 
    
         
            +
             
     | 
| 
      
 827 
     | 
    
         
            +
            .icon-subscript:before
         
     | 
| 
      
 828 
     | 
    
         
            +
              content: $subscript
         
     | 
| 
      
 829 
     | 
    
         
            +
             
     | 
| 
      
 830 
     | 
    
         
            +
            .icon-eraser:before
         
     | 
| 
      
 831 
     | 
    
         
            +
              content: $eraser
         
     | 
| 
      
 832 
     | 
    
         
            +
             
     | 
| 
      
 833 
     | 
    
         
            +
            .icon-puzzle-piece:before
         
     | 
| 
      
 834 
     | 
    
         
            +
              content: $puzzle-piece
         
     | 
| 
      
 835 
     | 
    
         
            +
             
     | 
| 
      
 836 
     | 
    
         
            +
            .icon-microphone:before
         
     | 
| 
      
 837 
     | 
    
         
            +
              content: $microphone
         
     | 
| 
      
 838 
     | 
    
         
            +
             
     | 
| 
      
 839 
     | 
    
         
            +
            .icon-microphone-off:before
         
     | 
| 
      
 840 
     | 
    
         
            +
              content: $microphone-off
         
     | 
| 
      
 841 
     | 
    
         
            +
             
     | 
| 
      
 842 
     | 
    
         
            +
            .icon-shield:before
         
     | 
| 
      
 843 
     | 
    
         
            +
              content: $shield
         
     | 
| 
      
 844 
     | 
    
         
            +
             
     | 
| 
      
 845 
     | 
    
         
            +
            .icon-calendar-empty:before
         
     | 
| 
      
 846 
     | 
    
         
            +
              content: $calendar-empty
         
     | 
| 
      
 847 
     | 
    
         
            +
             
     | 
| 
      
 848 
     | 
    
         
            +
            .icon-fire-extinguisher:before
         
     | 
| 
      
 849 
     | 
    
         
            +
              content: $fire-extinguisher
         
     | 
| 
      
 850 
     | 
    
         
            +
             
     | 
| 
      
 851 
     | 
    
         
            +
            .icon-rocket:before
         
     | 
| 
      
 852 
     | 
    
         
            +
              content: $rocket
         
     | 
| 
      
 853 
     | 
    
         
            +
             
     | 
| 
      
 854 
     | 
    
         
            +
            .icon-maxcdn:before
         
     | 
| 
      
 855 
     | 
    
         
            +
              content: $maxcdn
         
     | 
| 
      
 856 
     | 
    
         
            +
             
     | 
| 
      
 857 
     | 
    
         
            +
            .icon-chevron-sign-left:before
         
     | 
| 
      
 858 
     | 
    
         
            +
              content: $chevron-sign-left
         
     | 
| 
      
 859 
     | 
    
         
            +
             
     | 
| 
      
 860 
     | 
    
         
            +
            .icon-chevron-sign-right:before
         
     | 
| 
      
 861 
     | 
    
         
            +
              content: $chevron-sign-right
         
     | 
| 
      
 862 
     | 
    
         
            +
             
     | 
| 
      
 863 
     | 
    
         
            +
            .icon-chevron-sign-up:before
         
     | 
| 
      
 864 
     | 
    
         
            +
              content: $chevron-sign-up
         
     | 
| 
      
 865 
     | 
    
         
            +
             
     | 
| 
      
 866 
     | 
    
         
            +
            .icon-chevron-sign-down:before
         
     | 
| 
      
 867 
     | 
    
         
            +
              content: $chevron-sign-down
         
     | 
| 
      
 868 
     | 
    
         
            +
             
     | 
| 
      
 869 
     | 
    
         
            +
            .icon-html5:before
         
     | 
| 
      
 870 
     | 
    
         
            +
              content: $html5
         
     | 
| 
      
 871 
     | 
    
         
            +
             
     | 
| 
      
 872 
     | 
    
         
            +
            .icon-css3:before
         
     | 
| 
      
 873 
     | 
    
         
            +
              content: $css3
         
     | 
| 
      
 874 
     | 
    
         
            +
             
     | 
| 
      
 875 
     | 
    
         
            +
            .icon-anchor:before
         
     | 
| 
      
 876 
     | 
    
         
            +
              content: $anchor
         
     | 
| 
      
 877 
     | 
    
         
            +
             
     | 
| 
      
 878 
     | 
    
         
            +
            .icon-unlock-alt:before
         
     | 
| 
      
 879 
     | 
    
         
            +
              content: $unlock-alt
         
     | 
| 
      
 880 
     | 
    
         
            +
             
     | 
| 
      
 881 
     | 
    
         
            +
            .icon-bullseye:before
         
     | 
| 
      
 882 
     | 
    
         
            +
              content: $bullseye
         
     | 
| 
      
 883 
     | 
    
         
            +
             
     | 
| 
      
 884 
     | 
    
         
            +
            .icon-ellipsis-horizontal:before
         
     | 
| 
      
 885 
     | 
    
         
            +
              content: $ellipsis-horizontal
         
     | 
| 
      
 886 
     | 
    
         
            +
             
     | 
| 
      
 887 
     | 
    
         
            +
            .icon-ellipsis-vertical:before
         
     | 
| 
      
 888 
     | 
    
         
            +
              content: $ellipsis-vertical
         
     | 
| 
      
 889 
     | 
    
         
            +
             
     | 
| 
      
 890 
     | 
    
         
            +
            .icon-rss-sign:before
         
     | 
| 
      
 891 
     | 
    
         
            +
              content: $rss-sign
         
     | 
| 
      
 892 
     | 
    
         
            +
             
     | 
| 
      
 893 
     | 
    
         
            +
            .icon-play-sign:before
         
     | 
| 
      
 894 
     | 
    
         
            +
              content: $play-sign
         
     | 
| 
      
 895 
     | 
    
         
            +
             
     | 
| 
      
 896 
     | 
    
         
            +
            .icon-ticket:before
         
     | 
| 
      
 897 
     | 
    
         
            +
              content: $ticket
         
     | 
| 
      
 898 
     | 
    
         
            +
             
     | 
| 
      
 899 
     | 
    
         
            +
            .icon-minus-sign-alt:before
         
     | 
| 
      
 900 
     | 
    
         
            +
              content: $minus-sign-alt
         
     | 
| 
      
 901 
     | 
    
         
            +
             
     | 
| 
      
 902 
     | 
    
         
            +
            .icon-check-minus:before
         
     | 
| 
      
 903 
     | 
    
         
            +
              content: $check-minus
         
     | 
| 
      
 904 
     | 
    
         
            +
             
     | 
| 
      
 905 
     | 
    
         
            +
            .icon-level-up:before
         
     | 
| 
      
 906 
     | 
    
         
            +
              content: $level-up
         
     | 
| 
      
 907 
     | 
    
         
            +
             
     | 
| 
      
 908 
     | 
    
         
            +
            .icon-level-down:before
         
     | 
| 
      
 909 
     | 
    
         
            +
              content: $level-down
         
     | 
| 
      
 910 
     | 
    
         
            +
             
     | 
| 
      
 911 
     | 
    
         
            +
            .icon-check-sign:before
         
     | 
| 
      
 912 
     | 
    
         
            +
              content: $check-sign
         
     | 
| 
      
 913 
     | 
    
         
            +
             
     | 
| 
      
 914 
     | 
    
         
            +
            .icon-edit-sign:before
         
     | 
| 
      
 915 
     | 
    
         
            +
              content: $edit-sign
         
     | 
| 
      
 916 
     | 
    
         
            +
             
     | 
| 
      
 917 
     | 
    
         
            +
            .icon-external-link-sign:before
         
     | 
| 
      
 918 
     | 
    
         
            +
              content: $external-link-sign
         
     | 
| 
      
 919 
     | 
    
         
            +
             
     | 
| 
      
 920 
     | 
    
         
            +
            .icon-share-sign:before
         
     | 
| 
      
 921 
     | 
    
         
            +
              content: $share-sign
         
     | 
| 
      
 922 
     | 
    
         
            +
             
     | 
| 
      
 923 
     | 
    
         
            +
            .icon-compass:before
         
     | 
| 
      
 924 
     | 
    
         
            +
              content: $compass
         
     | 
| 
      
 925 
     | 
    
         
            +
             
     | 
| 
      
 926 
     | 
    
         
            +
            .icon-collapse:before
         
     | 
| 
      
 927 
     | 
    
         
            +
              content: $collapse
         
     | 
| 
      
 928 
     | 
    
         
            +
             
     | 
| 
      
 929 
     | 
    
         
            +
            .icon-collapse-top:before
         
     | 
| 
      
 930 
     | 
    
         
            +
              content: $collapse-top
         
     | 
| 
      
 931 
     | 
    
         
            +
             
     | 
| 
      
 932 
     | 
    
         
            +
            .icon-expand:before
         
     | 
| 
      
 933 
     | 
    
         
            +
              content: $expand
         
     | 
| 
      
 934 
     | 
    
         
            +
             
     | 
| 
      
 935 
     | 
    
         
            +
            .icon-euro:before,
         
     | 
| 
      
 936 
     | 
    
         
            +
            .icon-eur:before
         
     | 
| 
      
 937 
     | 
    
         
            +
              content: $eur
         
     | 
| 
      
 938 
     | 
    
         
            +
             
     | 
| 
      
 939 
     | 
    
         
            +
            .icon-gbp:before
         
     | 
| 
      
 940 
     | 
    
         
            +
              content: $gbp
         
     | 
| 
      
 941 
     | 
    
         
            +
             
     | 
| 
      
 942 
     | 
    
         
            +
            .icon-dollar:before,
         
     | 
| 
      
 943 
     | 
    
         
            +
            .icon-usd:before
         
     | 
| 
      
 944 
     | 
    
         
            +
              content: $usd
         
     | 
| 
      
 945 
     | 
    
         
            +
             
     | 
| 
      
 946 
     | 
    
         
            +
            .icon-rupee:before,
         
     | 
| 
      
 947 
     | 
    
         
            +
            .icon-inr:before
         
     | 
| 
      
 948 
     | 
    
         
            +
              content: $inr
         
     | 
| 
      
 949 
     | 
    
         
            +
             
     | 
| 
      
 950 
     | 
    
         
            +
            .icon-yen:before,
         
     | 
| 
      
 951 
     | 
    
         
            +
            .icon-jpy:before
         
     | 
| 
      
 952 
     | 
    
         
            +
              content: $jpy
         
     | 
| 
      
 953 
     | 
    
         
            +
             
     | 
| 
      
 954 
     | 
    
         
            +
            .icon-renminbi:before,
         
     | 
| 
      
 955 
     | 
    
         
            +
            .icon-cny:before
         
     | 
| 
      
 956 
     | 
    
         
            +
              content: $cny
         
     | 
| 
      
 957 
     | 
    
         
            +
             
     | 
| 
      
 958 
     | 
    
         
            +
            .icon-won:before,
         
     | 
| 
      
 959 
     | 
    
         
            +
            .icon-krw:before
         
     | 
| 
      
 960 
     | 
    
         
            +
              content: $krw
         
     | 
| 
      
 961 
     | 
    
         
            +
             
     | 
| 
      
 962 
     | 
    
         
            +
            .icon-bitcoin:before,
         
     | 
| 
      
 963 
     | 
    
         
            +
            .icon-btc:before
         
     | 
| 
      
 964 
     | 
    
         
            +
              content: $btc
         
     | 
| 
      
 965 
     | 
    
         
            +
             
     | 
| 
      
 966 
     | 
    
         
            +
            .icon-file:before
         
     | 
| 
      
 967 
     | 
    
         
            +
              content: $file
         
     | 
| 
      
 968 
     | 
    
         
            +
             
     | 
| 
      
 969 
     | 
    
         
            +
            .icon-file-text:before
         
     | 
| 
      
 970 
     | 
    
         
            +
              content: $file-text
         
     | 
| 
      
 971 
     | 
    
         
            +
             
     | 
| 
      
 972 
     | 
    
         
            +
            .icon-sort-by-alphabet:before
         
     | 
| 
      
 973 
     | 
    
         
            +
              content: $sort-by-alphabet
         
     | 
| 
      
 974 
     | 
    
         
            +
             
     | 
| 
      
 975 
     | 
    
         
            +
            .icon-sort-by-alphabet-alt:before
         
     | 
| 
      
 976 
     | 
    
         
            +
              content: $sort-by-alphabet-alt
         
     | 
| 
      
 977 
     | 
    
         
            +
             
     | 
| 
      
 978 
     | 
    
         
            +
            .icon-sort-by-attributes:before
         
     | 
| 
      
 979 
     | 
    
         
            +
              content: $sort-by-attributes
         
     | 
| 
      
 980 
     | 
    
         
            +
             
     | 
| 
      
 981 
     | 
    
         
            +
            .icon-sort-by-attributes-alt:before
         
     | 
| 
      
 982 
     | 
    
         
            +
              content: $sort-by-attributes-alt
         
     | 
| 
      
 983 
     | 
    
         
            +
             
     | 
| 
      
 984 
     | 
    
         
            +
            .icon-sort-by-order:before
         
     | 
| 
      
 985 
     | 
    
         
            +
              content: $sort-by-order
         
     | 
| 
      
 986 
     | 
    
         
            +
             
     | 
| 
      
 987 
     | 
    
         
            +
            .icon-sort-by-order-alt:before
         
     | 
| 
      
 988 
     | 
    
         
            +
              content: $sort-by-order-alt
         
     | 
| 
      
 989 
     | 
    
         
            +
             
     | 
| 
      
 990 
     | 
    
         
            +
            .icon-thumbs-up:before
         
     | 
| 
      
 991 
     | 
    
         
            +
              content: $thumbs-up
         
     | 
| 
      
 992 
     | 
    
         
            +
             
     | 
| 
      
 993 
     | 
    
         
            +
            .icon-thumbs-down:before
         
     | 
| 
      
 994 
     | 
    
         
            +
              content: $thumbs-down
         
     | 
| 
      
 995 
     | 
    
         
            +
             
     | 
| 
      
 996 
     | 
    
         
            +
            .icon-youtube-sign:before
         
     | 
| 
      
 997 
     | 
    
         
            +
              content: $youtube-sign
         
     | 
| 
      
 998 
     | 
    
         
            +
             
     | 
| 
      
 999 
     | 
    
         
            +
            .icon-youtube:before
         
     | 
| 
      
 1000 
     | 
    
         
            +
              content: $youtube
         
     | 
| 
      
 1001 
     | 
    
         
            +
             
     | 
| 
      
 1002 
     | 
    
         
            +
            .icon-xing:before
         
     | 
| 
      
 1003 
     | 
    
         
            +
              content: $xing
         
     | 
| 
      
 1004 
     | 
    
         
            +
             
     | 
| 
      
 1005 
     | 
    
         
            +
            .icon-xing-sign:before
         
     | 
| 
      
 1006 
     | 
    
         
            +
              content: $xing-sign
         
     | 
| 
      
 1007 
     | 
    
         
            +
             
     | 
| 
      
 1008 
     | 
    
         
            +
            .icon-youtube-play:before
         
     | 
| 
      
 1009 
     | 
    
         
            +
              content: $youtube-play
         
     | 
| 
      
 1010 
     | 
    
         
            +
             
     | 
| 
      
 1011 
     | 
    
         
            +
            .icon-dropbox:before
         
     | 
| 
      
 1012 
     | 
    
         
            +
              content: $dropbox
         
     | 
| 
      
 1013 
     | 
    
         
            +
             
     | 
| 
      
 1014 
     | 
    
         
            +
            .icon-stackexchange:before
         
     | 
| 
      
 1015 
     | 
    
         
            +
              content: $stackexchange
         
     | 
| 
      
 1016 
     | 
    
         
            +
             
     | 
| 
      
 1017 
     | 
    
         
            +
            .icon-instagram:before
         
     | 
| 
      
 1018 
     | 
    
         
            +
              content: $instagram
         
     | 
| 
      
 1019 
     | 
    
         
            +
             
     | 
| 
      
 1020 
     | 
    
         
            +
            .icon-flickr:before
         
     | 
| 
      
 1021 
     | 
    
         
            +
              content: $flickr
         
     | 
| 
      
 1022 
     | 
    
         
            +
             
     | 
| 
      
 1023 
     | 
    
         
            +
            .icon-adn:before
         
     | 
| 
      
 1024 
     | 
    
         
            +
              content: $adn
         
     | 
| 
      
 1025 
     | 
    
         
            +
             
     | 
| 
      
 1026 
     | 
    
         
            +
            .icon-bitbucket:before
         
     | 
| 
      
 1027 
     | 
    
         
            +
              content: $bitbucket
         
     | 
| 
      
 1028 
     | 
    
         
            +
             
     | 
| 
      
 1029 
     | 
    
         
            +
            .icon-bitbucket-sign:before
         
     | 
| 
      
 1030 
     | 
    
         
            +
              content: $bitbucket-sign
         
     | 
| 
      
 1031 
     | 
    
         
            +
             
     | 
| 
      
 1032 
     | 
    
         
            +
            .icon-tumblr:before
         
     | 
| 
      
 1033 
     | 
    
         
            +
              content: $tumblr
         
     | 
| 
      
 1034 
     | 
    
         
            +
             
     | 
| 
      
 1035 
     | 
    
         
            +
            .icon-tumblr-sign:before
         
     | 
| 
      
 1036 
     | 
    
         
            +
              content: $tumblr-sign
         
     | 
| 
      
 1037 
     | 
    
         
            +
             
     | 
| 
      
 1038 
     | 
    
         
            +
            .icon-long-arrow-down:before
         
     | 
| 
      
 1039 
     | 
    
         
            +
              content: $long-arrow-down
         
     | 
| 
      
 1040 
     | 
    
         
            +
             
     | 
| 
      
 1041 
     | 
    
         
            +
            .icon-long-arrow-up:before
         
     | 
| 
      
 1042 
     | 
    
         
            +
              content: $long-arrow-up
         
     | 
| 
      
 1043 
     | 
    
         
            +
             
     | 
| 
      
 1044 
     | 
    
         
            +
            .icon-long-arrow-left:before
         
     | 
| 
      
 1045 
     | 
    
         
            +
              content: $long-arrow-left
         
     | 
| 
      
 1046 
     | 
    
         
            +
             
     | 
| 
      
 1047 
     | 
    
         
            +
            .icon-long-arrow-right:before
         
     | 
| 
      
 1048 
     | 
    
         
            +
              content: $long-arrow-right
         
     | 
| 
      
 1049 
     | 
    
         
            +
             
     | 
| 
      
 1050 
     | 
    
         
            +
            .icon-apple:before
         
     | 
| 
      
 1051 
     | 
    
         
            +
              content: $apple
         
     | 
| 
      
 1052 
     | 
    
         
            +
             
     | 
| 
      
 1053 
     | 
    
         
            +
            .icon-windows:before
         
     | 
| 
      
 1054 
     | 
    
         
            +
              content: $windows
         
     | 
| 
      
 1055 
     | 
    
         
            +
             
     | 
| 
      
 1056 
     | 
    
         
            +
            .icon-android:before
         
     | 
| 
      
 1057 
     | 
    
         
            +
              content: $android
         
     | 
| 
      
 1058 
     | 
    
         
            +
             
     | 
| 
      
 1059 
     | 
    
         
            +
            .icon-linux:before
         
     | 
| 
      
 1060 
     | 
    
         
            +
              content: $linux
         
     | 
| 
      
 1061 
     | 
    
         
            +
             
     | 
| 
      
 1062 
     | 
    
         
            +
            .icon-dribbble:before
         
     | 
| 
      
 1063 
     | 
    
         
            +
              content: $dribbble
         
     | 
| 
      
 1064 
     | 
    
         
            +
             
     | 
| 
      
 1065 
     | 
    
         
            +
            .icon-skype:before
         
     | 
| 
      
 1066 
     | 
    
         
            +
              content: $skype
         
     | 
| 
      
 1067 
     | 
    
         
            +
             
     | 
| 
      
 1068 
     | 
    
         
            +
            .icon-foursquare:before
         
     | 
| 
      
 1069 
     | 
    
         
            +
              content: $foursquare
         
     | 
| 
      
 1070 
     | 
    
         
            +
             
     | 
| 
      
 1071 
     | 
    
         
            +
            .icon-trello:before
         
     | 
| 
      
 1072 
     | 
    
         
            +
              content: $trello
         
     | 
| 
      
 1073 
     | 
    
         
            +
             
     | 
| 
      
 1074 
     | 
    
         
            +
            .icon-female:before
         
     | 
| 
      
 1075 
     | 
    
         
            +
              content: $female
         
     | 
| 
      
 1076 
     | 
    
         
            +
             
     | 
| 
      
 1077 
     | 
    
         
            +
            .icon-male:before
         
     | 
| 
      
 1078 
     | 
    
         
            +
              content: $male
         
     | 
| 
      
 1079 
     | 
    
         
            +
             
     | 
| 
      
 1080 
     | 
    
         
            +
            .icon-gittip:before
         
     | 
| 
      
 1081 
     | 
    
         
            +
              content: $gittip
         
     | 
| 
      
 1082 
     | 
    
         
            +
             
     | 
| 
      
 1083 
     | 
    
         
            +
            .icon-sun:before
         
     | 
| 
      
 1084 
     | 
    
         
            +
              content: $sun
         
     | 
| 
      
 1085 
     | 
    
         
            +
             
     | 
| 
      
 1086 
     | 
    
         
            +
            .icon-moon:before
         
     | 
| 
      
 1087 
     | 
    
         
            +
              content: $moon
         
     | 
| 
      
 1088 
     | 
    
         
            +
             
     | 
| 
      
 1089 
     | 
    
         
            +
            .icon-archive:before
         
     | 
| 
      
 1090 
     | 
    
         
            +
              content: $archive
         
     | 
| 
      
 1091 
     | 
    
         
            +
             
     | 
| 
      
 1092 
     | 
    
         
            +
            .icon-bug:before
         
     | 
| 
      
 1093 
     | 
    
         
            +
              content: $bug
         
     | 
| 
      
 1094 
     | 
    
         
            +
             
     | 
| 
      
 1095 
     | 
    
         
            +
            .icon-vk:before
         
     | 
| 
      
 1096 
     | 
    
         
            +
              content: $vk
         
     | 
| 
      
 1097 
     | 
    
         
            +
             
     | 
| 
      
 1098 
     | 
    
         
            +
            .icon-weibo:before
         
     | 
| 
      
 1099 
     | 
    
         
            +
              content: $weibo
         
     | 
| 
      
 1100 
     | 
    
         
            +
             
     | 
| 
      
 1101 
     | 
    
         
            +
            .icon-renren:before
         
     | 
| 
      
 1102 
     | 
    
         
            +
              content: $renren
         
     |