You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by bu...@apache.org on 2013/05/07 21:46:01 UTC

svn commit: r861229 [12/19] - in /websites/staging/pdfbox/trunk/content: ./ FontAwesome/ FontAwesome/css/ FontAwesome/docs/ FontAwesome/docs/assets/ FontAwesome/docs/assets/css/ FontAwesome/docs/assets/font/ FontAwesome/docs/assets/ico/ FontAwesome/doc...

Added: websites/staging/pdfbox/trunk/content/FontAwesome/sass/font-awesome.scss
==============================================================================
--- websites/staging/pdfbox/trunk/content/FontAwesome/sass/font-awesome.scss (added)
+++ websites/staging/pdfbox/trunk/content/FontAwesome/sass/font-awesome.scss Tue May  7 19:45:58 2013
@@ -0,0 +1,534 @@
+/*!
+ *  Font Awesome 3.0.2
+ *  the iconic font designed for use with Twitter Bootstrap
+ *  -------------------------------------------------------
+ *  The full suite of pictographic icons, examples, and documentation
+ *  can be found at: http://fortawesome.github.com/Font-Awesome/
+ *
+ *  License
+ *  -------------------------------------------------------
+ *  - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
+ *  - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
+ *    http://opensource.org/licenses/mit-license.html
+ *  - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
+ *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
+ *    "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
+ *
+ *  Contact
+ *  -------------------------------------------------------
+ *  Email: dave@davegandy.com
+ *  Twitter: http://twitter.com/fortaweso_me
+ *  Work: Lead Product Designer @ http://kyruus.com
+ */
+
+$fontAwesomePath:   "../font" !default;
+$borderColor:       #eee;
+$iconMuted:         #eee;
+@mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; border-radius: $radius; }
+
+
+@font-face {
+  font-family: 'FontAwesome';
+  src: url('#{$fontAwesomePath}/fontawesome-webfont.eot?v=3.0.1');
+  src: url('#{$fontAwesomePath}/fontawesome-webfont.eot?#iefix&v=3.0.1') format("embedded-opentype"),
+    url('#{$fontAwesomePath}/fontawesome-webfont.woff?v=3.0.1') format("woff"),
+    url('#{$fontAwesomePath}/fontawesome-webfont.ttf?v=3.0.1') format("truetype");
+  font-weight: normal;
+  font-style: normal;
+}
+
+/*  Font Awesome styles
+    ------------------------------------------------------- */
+[class^="icon-"],
+[class*=" icon-"] {
+  font-family: FontAwesome;
+  font-weight: normal;
+  font-style: normal;
+  text-decoration: inherit;
+  -webkit-font-smoothing: antialiased;
+
+  /* sprites.less reset */
+  display: inline;
+  width: auto;
+  height: auto;
+  line-height: normal;
+  vertical-align: baseline;
+  background-image: none;
+  background-position: 0% 0%;
+  background-repeat: repeat;
+  margin-top: 0;
+}
+
+/* more sprites.less reset */
+.icon-white,
+.nav-pills > .active > a > [class^="icon-"],
+.nav-pills > .active > a > [class*=" icon-"],
+.nav-list > .active > a > [class^="icon-"],
+.nav-list > .active > a > [class*=" icon-"],
+.navbar-inverse .nav > .active > a > [class^="icon-"],
+.navbar-inverse .nav > .active > a > [class*=" icon-"],
+.dropdown-menu > li > a:hover > [class^="icon-"],
+.dropdown-menu > li > a:hover > [class*=" icon-"],
+.dropdown-menu > .active > a > [class^="icon-"],
+.dropdown-menu > .active > a > [class*=" icon-"],
+.dropdown-submenu:hover > a > [class^="icon-"],
+.dropdown-submenu:hover > a > [class*=" icon-"] {
+  background-image: none;
+}
+
+[class^="icon-"]:before,
+[class*=" icon-"]:before {
+  text-decoration: inherit;
+  display: inline-block;
+  speak: none;
+}
+
+/* makes sure icons active on rollover in links */
+a {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    display: inline-block;
+  }
+}
+
+/* makes the font 33% larger relative to the icon container */
+.icon-large:before {
+  vertical-align: -10%;
+  font-size: 1.3333333333333333em;
+}
+
+.btn, .nav {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    display: inline;
+    /* keeps button heights with and without icons the same */
+    &.icon-large { line-height: .9em; }
+    &.icon-spin { display: inline-block; }
+  }
+}
+
+.nav-tabs, .nav-pills {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    /* keeps button heights with and without icons the same */
+    &, &.icon-large { line-height: .9em; }
+  }
+}
+
+li, .nav li {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    display: inline-block;
+    width: 1.25em;
+    text-align: center;
+    &.icon-large {
+      /* increased font size for icon-large */
+      width: 1.5625em;
+    }
+  }
+}
+
+ul.icons {
+  list-style-type: none;
+  text-indent: -.75em;
+
+  li {
+    [class^="icon-"],
+    [class*=" icon-"] {
+      width: .75em;
+    }
+  }
+}
+
+.icon-muted {
+  color: $iconMuted;
+}
+
+// Icon Borders
+// -------------------------
+
+.icon-border {
+  border: solid 1px $borderColor;
+  padding: .2em .25em .15em;
+  @include border-radius(3px);
+}
+
+// Icon Sizes
+// -------------------------
+
+.icon-2x {
+  font-size: 2em;
+  &.icon-border {
+    border-width: 2px;
+    @include border-radius(4px);
+  }
+}
+.icon-3x {
+  font-size: 3em;
+  &.icon-border {
+    border-width: 3px;
+    @include border-radius(5px);
+  }
+}
+.icon-4x {
+  font-size: 4em;
+  &.icon-border {
+    border-width: 4px;
+    @include border-radius(6px);
+  }
+}
+
+// Floats
+// -------------------------
+
+// Quick floats
+.pull-right { float: right; }
+.pull-left { float: left; }
+
+[class^="icon-"],
+[class*=" icon-"] {
+  &.pull-left {
+    margin-right: .3em;
+  }
+  &.pull-right {
+    margin-left: .3em;
+  }
+}
+
+.btn {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    &.pull-left, &.pull-right {
+      &.icon-2x { margin-top: .18em; }
+    }
+    &.icon-spin.icon-large { line-height: .8em; }
+  }
+}
+
+.btn.btn-small {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    &.pull-left, &.pull-right {
+      &.icon-2x { margin-top: .25em; }
+    }
+  }
+}
+
+.btn.btn-large {
+  [class^="icon-"],
+  [class*=" icon-"] {
+    margin-top: 0; // overrides bootstrap default
+    &.pull-left, &.pull-right {
+      &.icon-2x { margin-top: .05em; }
+    }
+    &.pull-left.icon-2x { margin-right: .2em; }
+    &.pull-right.icon-2x { margin-left: .2em; }
+  }
+}
+
+
+.icon-spin {
+  display: inline-block;
+  -moz-animation: spin 2s infinite linear;
+  -o-animation: spin 2s infinite linear;
+  -webkit-animation: spin 2s infinite linear;
+  animation: spin 2s infinite linear;
+}
+
+@-moz-keyframes spin {
+  0% { -moz-transform: rotate(0deg); }
+  100% { -moz-transform: rotate(359deg); }
+}
+@-webkit-keyframes spin {
+  0% { -webkit-transform: rotate(0deg); }
+  100% { -webkit-transform: rotate(359deg); }
+}
+@-o-keyframes spin {
+  0% { -o-transform: rotate(0deg); }
+  100% { -o-transform: rotate(359deg); }
+}
+@-ms-keyframes spin {
+  0% { -ms-transform: rotate(0deg); }
+  100% { -ms-transform: rotate(359deg); }
+}
+@keyframes spin {
+  0% { transform: rotate(0deg); }
+  100% { transform: rotate(359deg); }
+}
+
+@-moz-document url-prefix() {
+  .icon-spin { height: .9em; }
+  .btn .icon-spin { height: auto; }
+  .icon-spin.icon-large { height: 1.25em; }
+  .btn .icon-spin.icon-large { height: .75em; }
+}
+
+/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+    readers do not read off random characters that represent icons */
+.icon-glass:before                { content: "\f000"; }
+.icon-music:before                { content: "\f001"; }
+.icon-search:before               { content: "\f002"; }
+.icon-envelope:before             { content: "\f003"; }
+.icon-heart:before                { content: "\f004"; }
+.icon-star:before                 { content: "\f005"; }
+.icon-star-empty:before           { content: "\f006"; }
+.icon-user:before                 { content: "\f007"; }
+.icon-film:before                 { content: "\f008"; }
+.icon-th-large:before             { content: "\f009"; }
+.icon-th:before                   { content: "\f00a"; }
+.icon-th-list:before              { content: "\f00b"; }
+.icon-ok:before                   { content: "\f00c"; }
+.icon-remove:before               { content: "\f00d"; }
+.icon-zoom-in:before              { content: "\f00e"; }
+
+.icon-zoom-out:before             { content: "\f010"; }
+.icon-off:before                  { content: "\f011"; }
+.icon-signal:before               { content: "\f012"; }
+.icon-cog:before                  { content: "\f013"; }
+.icon-trash:before                { content: "\f014"; }
+.icon-home:before                 { content: "\f015"; }
+.icon-file:before                 { content: "\f016"; }
+.icon-time:before                 { content: "\f017"; }
+.icon-road:before                 { content: "\f018"; }
+.icon-download-alt:before         { content: "\f019"; }
+.icon-download:before             { content: "\f01a"; }
+.icon-upload:before               { content: "\f01b"; }
+.icon-inbox:before                { content: "\f01c"; }
+.icon-play-circle:before          { content: "\f01d"; }
+.icon-repeat:before               { content: "\f01e"; }
+
+/* \f020 doesn't work in Safari. all shifted one down */
+.icon-refresh:before              { content: "\f021"; }
+.icon-list-alt:before             { content: "\f022"; }
+.icon-lock:before                 { content: "\f023"; }
+.icon-flag:before                 { content: "\f024"; }
+.icon-headphones:before           { content: "\f025"; }
+.icon-volume-off:before           { content: "\f026"; }
+.icon-volume-down:before          { content: "\f027"; }
+.icon-volume-up:before            { content: "\f028"; }
+.icon-qrcode:before               { content: "\f029"; }
+.icon-barcode:before              { content: "\f02a"; }
+.icon-tag:before                  { content: "\f02b"; }
+.icon-tags:before                 { content: "\f02c"; }
+.icon-book:before                 { content: "\f02d"; }
+.icon-bookmark:before             { content: "\f02e"; }
+.icon-print:before                { content: "\f02f"; }
+
+.icon-camera:before               { content: "\f030"; }
+.icon-font:before                 { content: "\f031"; }
+.icon-bold:before                 { content: "\f032"; }
+.icon-italic:before               { content: "\f033"; }
+.icon-text-height:before          { content: "\f034"; }
+.icon-text-width:before           { content: "\f035"; }
+.icon-align-left:before           { content: "\f036"; }
+.icon-align-center:before         { content: "\f037"; }
+.icon-align-right:before          { content: "\f038"; }
+.icon-align-justify:before        { content: "\f039"; }
+.icon-list:before                 { content: "\f03a"; }
+.icon-indent-left:before          { content: "\f03b"; }
+.icon-indent-right:before         { content: "\f03c"; }
+.icon-facetime-video:before       { content: "\f03d"; }
+.icon-picture:before              { content: "\f03e"; }
+
+.icon-pencil:before               { content: "\f040"; }
+.icon-map-marker:before           { content: "\f041"; }
+.icon-adjust:before               { content: "\f042"; }
+.icon-tint:before                 { content: "\f043"; }
+.icon-edit:before                 { content: "\f044"; }
+.icon-share:before                { content: "\f045"; }
+.icon-check:before                { content: "\f046"; }
+.icon-move:before                 { content: "\f047"; }
+.icon-step-backward:before        { content: "\f048"; }
+.icon-fast-backward:before        { content: "\f049"; }
+.icon-backward:before             { content: "\f04a"; }
+.icon-play:before                 { content: "\f04b"; }
+.icon-pause:before                { content: "\f04c"; }
+.icon-stop:before                 { content: "\f04d"; }
+.icon-forward:before              { content: "\f04e"; }
+
+.icon-fast-forward:before         { content: "\f050"; }
+.icon-step-forward:before         { content: "\f051"; }
+.icon-eject:before                { content: "\f052"; }
+.icon-chevron-left:before         { content: "\f053"; }
+.icon-chevron-right:before        { content: "\f054"; }
+.icon-plus-sign:before            { content: "\f055"; }
+.icon-minus-sign:before           { content: "\f056"; }
+.icon-remove-sign:before          { content: "\f057"; }
+.icon-ok-sign:before              { content: "\f058"; }
+.icon-question-sign:before        { content: "\f059"; }
+.icon-info-sign:before            { content: "\f05a"; }
+.icon-screenshot:before           { content: "\f05b"; }
+.icon-remove-circle:before        { content: "\f05c"; }
+.icon-ok-circle:before            { content: "\f05d"; }
+.icon-ban-circle:before           { content: "\f05e"; }
+
+.icon-arrow-left:before           { content: "\f060"; }
+.icon-arrow-right:before          { content: "\f061"; }
+.icon-arrow-up:before             { content: "\f062"; }
+.icon-arrow-down:before           { content: "\f063"; }
+.icon-share-alt:before            { content: "\f064"; }
+.icon-resize-full:before          { content: "\f065"; }
+.icon-resize-small:before         { content: "\f066"; }
+.icon-plus:before                 { content: "\f067"; }
+.icon-minus:before                { content: "\f068"; }
+.icon-asterisk:before             { content: "\f069"; }
+.icon-exclamation-sign:before     { content: "\f06a"; }
+.icon-gift:before                 { content: "\f06b"; }
+.icon-leaf:before                 { content: "\f06c"; }
+.icon-fire:before                 { content: "\f06d"; }
+.icon-eye-open:before             { content: "\f06e"; }
+
+.icon-eye-close:before            { content: "\f070"; }
+.icon-warning-sign:before         { content: "\f071"; }
+.icon-plane:before                { content: "\f072"; }
+.icon-calendar:before             { content: "\f073"; }
+.icon-random:before               { content: "\f074"; }
+.icon-comment:before              { content: "\f075"; }
+.icon-magnet:before               { content: "\f076"; }
+.icon-chevron-up:before           { content: "\f077"; }
+.icon-chevron-down:before         { content: "\f078"; }
+.icon-retweet:before              { content: "\f079"; }
+.icon-shopping-cart:before        { content: "\f07a"; }
+.icon-folder-close:before         { content: "\f07b"; }
+.icon-folder-open:before          { content: "\f07c"; }
+.icon-resize-vertical:before      { content: "\f07d"; }
+.icon-resize-horizontal:before    { content: "\f07e"; }
+
+.icon-bar-chart:before            { content: "\f080"; }
+.icon-twitter-sign:before         { content: "\f081"; }
+.icon-facebook-sign:before        { content: "\f082"; }
+.icon-camera-retro:before         { content: "\f083"; }
+.icon-key:before                  { content: "\f084"; }
+.icon-cogs:before                 { content: "\f085"; }
+.icon-comments:before             { content: "\f086"; }
+.icon-thumbs-up:before            { content: "\f087"; }
+.icon-thumbs-down:before          { content: "\f088"; }
+.icon-star-half:before            { content: "\f089"; }
+.icon-heart-empty:before          { content: "\f08a"; }
+.icon-signout:before              { content: "\f08b"; }
+.icon-linkedin-sign:before        { content: "\f08c"; }
+.icon-pushpin:before              { content: "\f08d"; }
+.icon-external-link:before        { content: "\f08e"; }
+
+.icon-signin:before               { content: "\f090"; }
+.icon-trophy:before               { content: "\f091"; }
+.icon-github-sign:before          { content: "\f092"; }
+.icon-upload-alt:before           { content: "\f093"; }
+.icon-lemon:before                { content: "\f094"; }
+.icon-phone:before                { content: "\f095"; }
+.icon-check-empty:before          { content: "\f096"; }
+.icon-bookmark-empty:before       { content: "\f097"; }
+.icon-phone-sign:before           { content: "\f098"; }
+.icon-twitter:before              { content: "\f099"; }
+.icon-facebook:before             { content: "\f09a"; }
+.icon-github:before               { content: "\f09b"; }
+.icon-unlock:before               { content: "\f09c"; }
+.icon-credit-card:before          { content: "\f09d"; }
+.icon-rss:before                  { content: "\f09e"; }
+
+.icon-hdd:before                  { content: "\f0a0"; }
+.icon-bullhorn:before             { content: "\f0a1"; }
+.icon-bell:before                 { content: "\f0a2"; }
+.icon-certificate:before          { content: "\f0a3"; }
+.icon-hand-right:before           { content: "\f0a4"; }
+.icon-hand-left:before            { content: "\f0a5"; }
+.icon-hand-up:before              { content: "\f0a6"; }
+.icon-hand-down:before            { content: "\f0a7"; }
+.icon-circle-arrow-left:before    { content: "\f0a8"; }
+.icon-circle-arrow-right:before   { content: "\f0a9"; }
+.icon-circle-arrow-up:before      { content: "\f0aa"; }
+.icon-circle-arrow-down:before    { content: "\f0ab"; }
+.icon-globe:before                { content: "\f0ac"; }
+.icon-wrench:before               { content: "\f0ad"; }
+.icon-tasks:before                { content: "\f0ae"; }
+
+.icon-filter:before               { content: "\f0b0"; }
+.icon-briefcase:before            { content: "\f0b1"; }
+.icon-fullscreen:before           { content: "\f0b2"; }
+
+.icon-group:before                { content: "\f0c0"; }
+.icon-link:before                 { content: "\f0c1"; }
+.icon-cloud:before                { content: "\f0c2"; }
+.icon-beaker:before               { content: "\f0c3"; }
+.icon-cut:before                  { content: "\f0c4"; }
+.icon-copy:before                 { content: "\f0c5"; }
+.icon-paper-clip:before           { content: "\f0c6"; }
+.icon-save:before                 { content: "\f0c7"; }
+.icon-sign-blank:before           { content: "\f0c8"; }
+.icon-reorder:before              { content: "\f0c9"; }
+.icon-list-ul:before              { content: "\f0ca"; }
+.icon-list-ol:before              { content: "\f0cb"; }
+.icon-strikethrough:before        { content: "\f0cc"; }
+.icon-underline:before            { content: "\f0cd"; }
+.icon-table:before                { content: "\f0ce"; }
+
+.icon-magic:before                { content: "\f0d0"; }
+.icon-truck:before                { content: "\f0d1"; }
+.icon-pinterest:before            { content: "\f0d2"; }
+.icon-pinterest-sign:before       { content: "\f0d3"; }
+.icon-google-plus-sign:before     { content: "\f0d4"; }
+.icon-google-plus:before          { content: "\f0d5"; }
+.icon-money:before                { content: "\f0d6"; }
+.icon-caret-down:before           { content: "\f0d7"; }
+.icon-caret-up:before             { content: "\f0d8"; }
+.icon-caret-left:before           { content: "\f0d9"; }
+.icon-caret-right:before          { content: "\f0da"; }
+.icon-columns:before              { content: "\f0db"; }
+.icon-sort:before                 { content: "\f0dc"; }
+.icon-sort-down:before            { content: "\f0dd"; }
+.icon-sort-up:before              { content: "\f0de"; }
+
+.icon-envelope-alt:before         { content: "\f0e0"; }
+.icon-linkedin:before             { content: "\f0e1"; }
+.icon-undo:before                 { content: "\f0e2"; }
+.icon-legal:before                { content: "\f0e3"; }
+.icon-dashboard:before            { content: "\f0e4"; }
+.icon-comment-alt:before          { content: "\f0e5"; }
+.icon-comments-alt:before         { content: "\f0e6"; }
+.icon-bolt:before                 { content: "\f0e7"; }
+.icon-sitemap:before              { content: "\f0e8"; }
+.icon-umbrella:before             { content: "\f0e9"; }
+.icon-paste:before                { content: "\f0ea"; }
+.icon-lightbulb:before            { content: "\f0eb"; }
+.icon-exchange:before             { content: "\f0ec"; }
+.icon-cloud-download:before       { content: "\f0ed"; }
+.icon-cloud-upload:before         { content: "\f0ee"; }
+
+.icon-user-md:before              { content: "\f0f0"; }
+.icon-stethoscope:before          { content: "\f0f1"; }
+.icon-suitcase:before             { content: "\f0f2"; }
+.icon-bell-alt:before             { content: "\f0f3"; }
+.icon-coffee:before               { content: "\f0f4"; }
+.icon-food:before                 { content: "\f0f5"; }
+.icon-file-alt:before             { content: "\f0f6"; }
+.icon-building:before             { content: "\f0f7"; }
+.icon-hospital:before             { content: "\f0f8"; }
+.icon-ambulance:before            { content: "\f0f9"; }
+.icon-medkit:before               { content: "\f0fa"; }
+.icon-fighter-jet:before          { content: "\f0fb"; }
+.icon-beer:before                 { content: "\f0fc"; }
+.icon-h-sign:before               { content: "\f0fd"; }
+.icon-plus-sign-alt:before        { content: "\f0fe"; }
+
+.icon-double-angle-left:before    { content: "\f100"; }
+.icon-double-angle-right:before   { content: "\f101"; }
+.icon-double-angle-up:before      { content: "\f102"; }
+.icon-double-angle-down:before    { content: "\f103"; }
+.icon-angle-left:before           { content: "\f104"; }
+.icon-angle-right:before          { content: "\f105"; }
+.icon-angle-up:before             { content: "\f106"; }
+.icon-angle-down:before           { content: "\f107"; }
+.icon-desktop:before              { content: "\f108"; }
+.icon-laptop:before               { content: "\f109"; }
+.icon-tablet:before               { content: "\f10a"; }
+.icon-mobile-phone:before         { content: "\f10b"; }
+.icon-circle-blank:before         { content: "\f10c"; }
+.icon-quote-left:before           { content: "\f10d"; }
+.icon-quote-right:before          { content: "\f10e"; }
+
+.icon-spinner:before              { content: "\f110"; }
+.icon-circle:before               { content: "\f111"; }
+.icon-reply:before                { content: "\f112"; }
+.icon-github-alt:before           { content: "\f113"; }
+.icon-folder-close-alt:before     { content: "\f114"; }
+.icon-folder-open-alt:before      { content: "\f115"; }

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.afm
==============================================================================
--- websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.afm (added)
+++ websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.afm Tue May  7 19:45:58 2013
@@ -0,0 +1,170 @@
+StartFontMetrics 2.0
+Comment Generated by FontForge 20110222
+Comment Creation Date: Sun Apr  1 19:42:26 2012
+FontName IconicFill
+FullName Iconic Fill
+FamilyName Iconic
+Weight Medium
+Notice (Icons by PJ Onori, font creation script by Yann)
+ItalicAngle 0
+IsFixedPitch false
+UnderlinePosition -100
+UnderlineThickness 50
+Version 001.000
+EncodingScheme ISOLatin1Encoding
+FontBBox 14 -14 760 731
+Descender -2147483648
+StartCharMetrics 151
+C 35 ; WX 681 ; N numbersign ; B 15 -14 667 731 ;
+C 63 ; WX 402 ; N question ; B 15 -14 388 731 ;
+C 64 ; WX 774 ; N at ; B 15 -14 760 731 ;
+C 182 ; WX 588 ; N paragraph ; B 15 -14 574 731 ;
+C -1 ; WX 495 ; N glyph0 ; B 15 -14 481 731 ;
+C -1 ; WX 774 ; N glyph1 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph2 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph3 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph4 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph5 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph6 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph7 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph8 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph9 ; B 15 -14 760 731 ;
+C -1 ; WX 728 ; N glyph10 ; B 14 -14 713 731 ;
+C -1 ; WX 774 ; N glyph11 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph12 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph13 ; B 15 -14 667 730 ;
+C -1 ; WX 774 ; N glyph14 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph15 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph16 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph17 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph18 ; B 15 172 760 545 ;
+C -1 ; WX 588 ; N glyph19 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph20 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph21 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph22 ; B 15 218 760 498 ;
+C -1 ; WX 774 ; N glyph23 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph24 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph25 ; B 15 172 760 545 ;
+C -1 ; WX 774 ; N glyph26 ; B 15 32 760 684 ;
+C -1 ; WX 402 ; N glyph27 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph29 ; B 15 32 760 684 ;
+C -1 ; WX 588 ; N glyph30 ; B 15 -14 574 731 ;
+C -1 ; WX 588 ; N glyph31 ; B 15 32 574 684 ;
+C -1 ; WX 774 ; N glyph32 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph33 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph34 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph35 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph36 ; B 15 79 760 638 ;
+C -1 ; WX 681 ; N glyph37 ; B 15 32 667 684 ;
+C -1 ; WX 774 ; N glyph38 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph39 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph40 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph41 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph42 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph43 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph44 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph45 ; B 15 79 760 638 ;
+C -1 ; WX 588 ; N glyph46 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph47 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph48 ; B 15 -12 760 729 ;
+C -1 ; WX 774 ; N glyph49 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph50 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph51 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph52 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph53 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph54 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph55 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph56 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph57 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph58 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph59 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph60 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph61 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph62 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph63 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph64 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph65 ; B 15 -14 760 731 ;
+C -1 ; WX 402 ; N glyph66 ; B 15 -14 388 731 ;
+C -1 ; WX 402 ; N glyph67 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph68 ; B 15 172 760 545 ;
+C -1 ; WX 774 ; N glyph69 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph70 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph71 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph72 ; B 15 -14 760 731 ;
+C -1 ; WX 402 ; N glyph73 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph74 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph75 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph76 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph77 ; B 14 79 760 638 ;
+C -1 ; WX 774 ; N glyph78 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph79 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph80 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph81 ; B 15 125 760 591 ;
+C -1 ; WX 774 ; N glyph82 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph83 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph84 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph85 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph86 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph87 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph88 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph89 ; B 15 218 760 498 ;
+C -1 ; WX 774 ; N glyph90 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph91 ; B 15 32 574 684 ;
+C -1 ; WX 774 ; N glyph92 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph93 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph94 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph95 ; B 15 -14 760 731 ;
+C -1 ; WX 495 ; N glyph96 ; B 15 -14 481 731 ;
+C -1 ; WX 681 ; N glyph97 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph98 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph99 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph100 ; B 14 -14 760 731 ;
+C -1 ; WX 309 ; N glyph101 ; B 15 -14 295 731 ;
+C -1 ; WX 774 ; N glyph102 ; B 15 -14 759 731 ;
+C -1 ; WX 681 ; N glyph103 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph104 ; B 15 -14 760 731 ;
+C -1 ; WX 402 ; N glyph105 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph106 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph107 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph108 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph109 ; B 15 265 760 452 ;
+C -1 ; WX 774 ; N glyph110 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph111 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph113 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph114 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph115 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph116 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph117 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph118 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph119 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph121 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph122 ; B 15 -14 760 731 ;
+C -1 ; WX 309 ; N glyph123 ; B 15 -14 295 731 ;
+C -1 ; WX 774 ; N glyph124 ; B 15 58 760 658 ;
+C -1 ; WX 588 ; N glyph125 ; B 15 -14 574 731 ;
+C -1 ; WX 681 ; N glyph126 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph127 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph128 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph129 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph130 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph131 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph132 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph133 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph134 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph135 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph136 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph137 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph138 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph139 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph140 ; B 15 172 760 545 ;
+C -1 ; WX 774 ; N glyph141 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph142 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph143 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph145 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph146 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph147 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph148 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph149 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph150 ; B 15 -14 760 731 ;
+EndCharMetrics
+EndFontMetrics

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.css
==============================================================================
--- websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.css (added)
+++ websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.css Tue May  7 19:45:58 2013
@@ -0,0 +1 @@
+@font-face { font-family: 'IconicFill'; src: url('iconic_fill.eot'); src: url('iconic_fill.eot?#iefix') format('embedded-opentype'), url('iconic_fill.ttf') format('truetype'), url('iconic_fill.svg#iconic') format('svg'); font-weight: normal; font-style: normal; }.iconic { display:inline-block; font-family: 'IconicFill'; }.lightbulb:before {content:'\e063';}.equalizer:before {content:'\e052';}.brush_alt:before {content:'\e01c';}.move:before {content:'\e03e';}.tag_fill:before {content:'\e02b';}.book_alt2:before {content:'\e06a';}.layers:before {content:'\e01f';}.chat_alt_fill:before {content:'\e007';}.layers_alt:before {content:'\e020';}.cloud_upload:before {content:'\e045';}.chart_alt:before {content:'\e029';}.fullscreen_exit_alt:before {content:'\e051';}.cloud_download:before {content:'\e044';}.paperclip:before {content:'\e08a';}.heart_fill:before {content:'\2764';}.mail:before {content:'\2709';}.pen_alt_fill:before {content:'\e005';}.check_alt:before {content:'\2718';}.batt
 ery_charging:before {content:'\e05d';}.lock_fill:before {content:'\e075';}.stop:before {content:'\e04a';}.arrow_up:before {content:'\2191';}.move_horizontal:before {content:'\e038';}.compass:before {content:'\e021';}.minus_alt:before {content:'\e009';}.battery_empty:before {content:'\e05c';}.comment_fill:before {content:'\e06d';}.map_pin_alt:before {content:'\e002';}.question_mark:before {content:'\003f';}.list:before {content:'\e055';}.upload:before {content:'\e043';}.reload:before {content:'\e030';}.loop_alt4:before {content:'\e035';}.loop_alt3:before {content:'\e034';}.loop_alt2:before {content:'\e033';}.loop_alt1:before {content:'\e032';}.left_quote:before {content:'\275d';}.x:before {content:'\2713';}.last:before {content:'\e04d';}.bars:before {content:'\e06f';}.arrow_left:before {content:'\2190';}.arrow_down:before {content:'\2193';}.download:before {content:'\e042';}.home:before {content:'\2302';}.calendar:before {content:'\e001';}.right_quote_alt:before {content:'\e0
 12';}.unlock_fill:before {content:'\e076';}.fullscreen:before {content:'\e04e';}.dial:before {content:'\e058';}.plus_alt:before {content:'\e008';}.clock:before {content:'\e079';}.movie:before {content:'\e060';}.steering_wheel:before {content:'\e024';}.pen:before {content:'\270e';}.pin:before {content:'\e067';}.denied:before {content:'\26d4';}.left_quote_alt:before {content:'\e011';}.volume_mute:before {content:'\e071';}.umbrella:before {content:'\2602';}.list_nested:before {content:'\e056';}.arrow_up_alt1:before {content:'\e014';}.undo:before {content:'\e02f';}.pause:before {content:'\e049';}.bolt:before {content:'\26a1';}.article:before {content:'\e053';}.read_more:before {content:'\e054';}.beaker:before {content:'\e023';}.beaker_alt:before {content:'\e010';}.battery_full:before {content:'\e073';}.arrow_right:before {content:'\2192';}.iphone:before {content:'\e06e';}.arrow_up_alt2:before {content:'\e018';}.cog:before {content:'\2699';}.award_fill:before {content:'\e022';}.f
 irst:before {content:'\e04c';}.trash_fill:before {content:'\e05a';}.image:before {content:'\e027';}.comment_alt1_fill:before {content:'\e003';}.cd:before {content:'\e064';}.right_quote:before {content:'\275e';}.brush:before {content:'\e01b';}.cloud:before {content:'\2601';}.eye:before {content:'\e025';}.play_alt:before {content:'\e048';}.transfer:before {content:'\e041';}.pen_alt2:before {content:'\e006';}.camera:before {content:'\e070';}.move_horizontal_alt2:before {content:'\e03a';}.curved_arrow:before {content:'\2935';}.move_horizontal_alt1:before {content:'\e039';}.aperture:before {content:'\e026';}.reload_alt:before {content:'\e031';}.magnifying_glass:before {content:'\e074';}.calendar_alt_fill:before {content:'\e06c';}.fork:before {content:'\e046';}.box:before {content:'\e06b';}.map_pin_fill:before {content:'\e068';}.bars_alt:before {content:'\e00a';}.volume:before {content:'\e072';}.x_alt:before {content:'\2714';}.link:before {content:'\e077';}.move_vertical:before {c
 ontent:'\e03b';}.eyedropper:before {content:'\e01e';}.spin:before {content:'\e036';}.rss:before {content:'\e02c';}.info:before {content:'\2139';}.target:before {content:'\e02a';}.cursor:before {content:'\e057';}.key_fill:before {content:'\26bf';}.minus:before {content:'\2796';}.book_alt:before {content:'\e00b';}.headphones:before {content:'\e061';}.hash:before {content:'\0023';}.arrow_left_alt1:before {content:'\e013';}.arrow_left_alt2:before {content:'\e017';}.fullscreen_exit:before {content:'\e050';}.share:before {content:'\e02e';}.fullscreen_alt:before {content:'\e04f';}.comment_alt2_fill:before {content:'\e004';}.moon_fill:before {content:'\263e';}.at:before {content:'\0040';}.chat:before {content:'\e05e';}.move_vertical_alt2:before {content:'\e03d';}.move_vertical_alt1:before {content:'\e03c';}.check:before {content:'\2717';}.mic:before {content:'\e05f';}.book:before {content:'\e069';}.move_alt1:before {content:'\e03f';}.move_alt2:before {content:'\e040';}.document_fill
 :before {content:'\e066';}.plus:before {content:'\2795';}.wrench:before {content:'\e078';}.play:before {content:'\e047';}.star:before {content:'\2605';}.document_alt_fill:before {content:'\e000';}.chart:before {content:'\e028';}.rain:before {content:'\26c6';}.folder_fill:before {content:'\e065';}.new_window:before {content:'\e059';}.user:before {content:'\e062';}.battery_half:before {content:'\e05b';}.aperture_alt:before {content:'\e00c';}.eject:before {content:'\e04b';}.arrow_down_alt1:before {content:'\e016';}.pilcrow:before {content:'\00b6';}.arrow_down_alt2:before {content:'\e01a';}.arrow_right_alt1:before {content:'\e015';}.arrow_right_alt2:before {content:'\e019';}.rss_alt:before {content:'\e02d';}.spin_alt:before {content:'\e037';}.sun_fill:before {content:'\2600';}
\ No newline at end of file

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.eot
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.eot
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.otf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.otf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.svg
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.svg
------------------------------------------------------------------------------
    svn:mime-type = image/svg+xml

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.ttf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.ttf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.woff
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill.woff
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill_demo.html
==============================================================================
--- websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill_demo.html (added)
+++ websites/staging/pdfbox/trunk/content/Iconic/iconic fill/iconic_fill_demo.html Tue May  7 19:45:58 2013
@@ -0,0 +1 @@
+<html><head><title>Iconic Font-embedding demo</title><link rel='stylesheet' href='iconic_fill.css' type='text/css' media='screen' /><style> body {font-family:'Helvetica', arial, sans-serif;} span { font-size:36px; }</style><body><table><tr><th>Name</th><th>Iconic Icon</th><th>Unicode Icon</th><th>Hexidecimal Code</th><tr><td>lightbulb</td><td><span class='iconic lightbulb'></span></td><td><span class='lightbulb'></span></td><td>e063</td></tr><tr><td>equalizer</td><td><span class='iconic equalizer'></span></td><td><span class='equalizer'></span></td><td>e052</td></tr><tr><td>brush_alt</td><td><span class='iconic brush_alt'></span></td><td><span class='brush_alt'></span></td><td>e01c</td></tr><tr><td>move</td><td><span class='iconic move'></span></td><td><span class='move'></span></td><td>e03e</td></tr><tr><td>tag_fill</td><td><span class='iconic tag_fill'></span></td><td><span class='tag_fill'></span></td><td>e02b</td></tr><tr><td>book_alt2</td><td><span class='iconic book_al
 t2'></span></td><td><span class='book_alt2'></span></td><td>e06a</td></tr><tr><td>layers</td><td><span class='iconic layers'></span></td><td><span class='layers'></span></td><td>e01f</td></tr><tr><td>chat_alt_fill</td><td><span class='iconic chat_alt_fill'></span></td><td><span class='chat_alt_fill'></span></td><td>e007</td></tr><tr><td>layers_alt</td><td><span class='iconic layers_alt'></span></td><td><span class='layers_alt'></span></td><td>e020</td></tr><tr><td>cloud_upload</td><td><span class='iconic cloud_upload'></span></td><td><span class='cloud_upload'></span></td><td>e045</td></tr><tr><td>chart_alt</td><td><span class='iconic chart_alt'></span></td><td><span class='chart_alt'></span></td><td>e029</td></tr><tr><td>fullscreen_exit_alt</td><td><span class='iconic fullscreen_exit_alt'></span></td><td><span class='fullscreen_exit_alt'></span></td><td>e051</td></tr><tr><td>cloud_download</td><td><span class='iconic cloud_download'></span></td><td><span class='cloud_downlo
 ad'></span></td><td>e044</td></tr><tr><td>paperclip</td><td><span class='iconic paperclip'></span></td><td><span class='paperclip'></span></td><td>e08a</td></tr><tr><td>heart_fill</td><td><span class='iconic heart_fill'></span></td><td><span class='heart_fill'></span></td><td>2764</td></tr><tr><td>mail</td><td><span class='iconic mail'></span></td><td><span class='mail'></span></td><td>2709</td></tr><tr><td>pen_alt_fill</td><td><span class='iconic pen_alt_fill'></span></td><td><span class='pen_alt_fill'></span></td><td>e005</td></tr><tr><td>check_alt</td><td><span class='iconic check_alt'></span></td><td><span class='check_alt'></span></td><td>2718</td></tr><tr><td>battery_charging</td><td><span class='iconic battery_charging'></span></td><td><span class='battery_charging'></span></td><td>e05d</td></tr><tr><td>lock_fill</td><td><span class='iconic lock_fill'></span></td><td><span class='lock_fill'></span></td><td>e075</td></tr><tr><td>stop</td><td><span class='iconic stop'><
 /span></td><td><span class='stop'></span></td><td>e04a</td></tr><tr><td>arrow_up</td><td><span class='iconic arrow_up'></span></td><td><span class='arrow_up'></span></td><td>2191</td></tr><tr><td>move_horizontal</td><td><span class='iconic move_horizontal'></span></td><td><span class='move_horizontal'></span></td><td>e038</td></tr><tr><td>compass</td><td><span class='iconic compass'></span></td><td><span class='compass'></span></td><td>e021</td></tr><tr><td>minus_alt</td><td><span class='iconic minus_alt'></span></td><td><span class='minus_alt'></span></td><td>e009</td></tr><tr><td>battery_empty</td><td><span class='iconic battery_empty'></span></td><td><span class='battery_empty'></span></td><td>e05c</td></tr><tr><td>comment_fill</td><td><span class='iconic comment_fill'></span></td><td><span class='comment_fill'></span></td><td>e06d</td></tr><tr><td>map_pin_alt</td><td><span class='iconic map_pin_alt'></span></td><td><span class='map_pin_alt'></span></td><td>e002</td></tr>
 <tr><td>question_mark</td><td><span class='iconic question_mark'></span></td><td><span class='question_mark'></span></td><td>003f</td></tr><tr><td>list</td><td><span class='iconic list'></span></td><td><span class='list'></span></td><td>e055</td></tr><tr><td>upload</td><td><span class='iconic upload'></span></td><td><span class='upload'></span></td><td>e043</td></tr><tr><td>reload</td><td><span class='iconic reload'></span></td><td><span class='reload'></span></td><td>e030</td></tr><tr><td>loop_alt4</td><td><span class='iconic loop_alt4'></span></td><td><span class='loop_alt4'></span></td><td>e035</td></tr><tr><td>loop_alt3</td><td><span class='iconic loop_alt3'></span></td><td><span class='loop_alt3'></span></td><td>e034</td></tr><tr><td>loop_alt2</td><td><span class='iconic loop_alt2'></span></td><td><span class='loop_alt2'></span></td><td>e033</td></tr><tr><td>loop_alt1</td><td><span class='iconic loop_alt1'></span></td><td><span class='loop_alt1'></span></td><td>e032</td
 ></tr><tr><td>left_quote</td><td><span class='iconic left_quote'></span></td><td><span class='left_quote'></span></td><td>275d</td></tr><tr><td>x</td><td><span class='iconic x'></span></td><td><span class='x'></span></td><td>2713</td></tr><tr><td>last</td><td><span class='iconic last'></span></td><td><span class='last'></span></td><td>e04d</td></tr><tr><td>bars</td><td><span class='iconic bars'></span></td><td><span class='bars'></span></td><td>e06f</td></tr><tr><td>arrow_left</td><td><span class='iconic arrow_left'></span></td><td><span class='arrow_left'></span></td><td>2190</td></tr><tr><td>arrow_down</td><td><span class='iconic arrow_down'></span></td><td><span class='arrow_down'></span></td><td>2193</td></tr><tr><td>download</td><td><span class='iconic download'></span></td><td><span class='download'></span></td><td>e042</td></tr><tr><td>home</td><td><span class='iconic home'></span></td><td><span class='home'></span></td><td>2302</td></tr><tr><td>calendar</td><td><span
  class='iconic calendar'></span></td><td><span class='calendar'></span></td><td>e001</td></tr><tr><td>right_quote_alt</td><td><span class='iconic right_quote_alt'></span></td><td><span class='right_quote_alt'></span></td><td>e012</td></tr><tr><td>unlock_fill</td><td><span class='iconic unlock_fill'></span></td><td><span class='unlock_fill'></span></td><td>e076</td></tr><tr><td>fullscreen</td><td><span class='iconic fullscreen'></span></td><td><span class='fullscreen'></span></td><td>e04e</td></tr><tr><td>dial</td><td><span class='iconic dial'></span></td><td><span class='dial'></span></td><td>e058</td></tr><tr><td>plus_alt</td><td><span class='iconic plus_alt'></span></td><td><span class='plus_alt'></span></td><td>e008</td></tr><tr><td>clock</td><td><span class='iconic clock'></span></td><td><span class='clock'></span></td><td>e079</td></tr><tr><td>movie</td><td><span class='iconic movie'></span></td><td><span class='movie'></span></td><td>e060</td></tr><tr><td>steering_whee
 l</td><td><span class='iconic steering_wheel'></span></td><td><span class='steering_wheel'></span></td><td>e024</td></tr><tr><td>pen</td><td><span class='iconic pen'></span></td><td><span class='pen'></span></td><td>270e</td></tr><tr><td>pin</td><td><span class='iconic pin'></span></td><td><span class='pin'></span></td><td>e067</td></tr><tr><td>denied</td><td><span class='iconic denied'></span></td><td><span class='denied'></span></td><td>26d4</td></tr><tr><td>left_quote_alt</td><td><span class='iconic left_quote_alt'></span></td><td><span class='left_quote_alt'></span></td><td>e011</td></tr><tr><td>volume_mute</td><td><span class='iconic volume_mute'></span></td><td><span class='volume_mute'></span></td><td>e071</td></tr><tr><td>umbrella</td><td><span class='iconic umbrella'></span></td><td><span class='umbrella'></span></td><td>2602</td></tr><tr><td>list_nested</td><td><span class='iconic list_nested'></span></td><td><span class='list_nested'></span></td><td>e056</td></tr>
 <tr><td>arrow_up_alt1</td><td><span class='iconic arrow_up_alt1'></span></td><td><span class='arrow_up_alt1'></span></td><td>e014</td></tr><tr><td>undo</td><td><span class='iconic undo'></span></td><td><span class='undo'></span></td><td>e02f</td></tr><tr><td>pause</td><td><span class='iconic pause'></span></td><td><span class='pause'></span></td><td>e049</td></tr><tr><td>bolt</td><td><span class='iconic bolt'></span></td><td><span class='bolt'></span></td><td>26a1</td></tr><tr><td>article</td><td><span class='iconic article'></span></td><td><span class='article'></span></td><td>e053</td></tr><tr><td>read_more</td><td><span class='iconic read_more'></span></td><td><span class='read_more'></span></td><td>e054</td></tr><tr><td>beaker</td><td><span class='iconic beaker'></span></td><td><span class='beaker'></span></td><td>e023</td></tr><tr><td>beaker_alt</td><td><span class='iconic beaker_alt'></span></td><td><span class='beaker_alt'></span></td><td>e010</td></tr><tr><td>battery
 _full</td><td><span class='iconic battery_full'></span></td><td><span class='battery_full'></span></td><td>e073</td></tr><tr><td>arrow_right</td><td><span class='iconic arrow_right'></span></td><td><span class='arrow_right'></span></td><td>2192</td></tr><tr><td>iphone</td><td><span class='iconic iphone'></span></td><td><span class='iphone'></span></td><td>e06e</td></tr><tr><td>arrow_up_alt2</td><td><span class='iconic arrow_up_alt2'></span></td><td><span class='arrow_up_alt2'></span></td><td>e018</td></tr><tr><td>cog</td><td><span class='iconic cog'></span></td><td><span class='cog'></span></td><td>2699</td></tr><tr><td>award_fill</td><td><span class='iconic award_fill'></span></td><td><span class='award_fill'></span></td><td>e022</td></tr><tr><td>first</td><td><span class='iconic first'></span></td><td><span class='first'></span></td><td>e04c</td></tr><tr><td>trash_fill</td><td><span class='iconic trash_fill'></span></td><td><span class='trash_fill'></span></td><td>e05a</td
 ></tr><tr><td>image</td><td><span class='iconic image'></span></td><td><span class='image'></span></td><td>e027</td></tr><tr><td>comment_alt1_fill</td><td><span class='iconic comment_alt1_fill'></span></td><td><span class='comment_alt1_fill'></span></td><td>e003</td></tr><tr><td>cd</td><td><span class='iconic cd'></span></td><td><span class='cd'></span></td><td>e064</td></tr><tr><td>right_quote</td><td><span class='iconic right_quote'></span></td><td><span class='right_quote'></span></td><td>275e</td></tr><tr><td>brush</td><td><span class='iconic brush'></span></td><td><span class='brush'></span></td><td>e01b</td></tr><tr><td>cloud</td><td><span class='iconic cloud'></span></td><td><span class='cloud'></span></td><td>2601</td></tr><tr><td>eye</td><td><span class='iconic eye'></span></td><td><span class='eye'></span></td><td>e025</td></tr><tr><td>play_alt</td><td><span class='iconic play_alt'></span></td><td><span class='play_alt'></span></td><td>e048</td></tr><tr><td>transfe
 r</td><td><span class='iconic transfer'></span></td><td><span class='transfer'></span></td><td>e041</td></tr><tr><td>pen_alt2</td><td><span class='iconic pen_alt2'></span></td><td><span class='pen_alt2'></span></td><td>e006</td></tr><tr><td>camera</td><td><span class='iconic camera'></span></td><td><span class='camera'></span></td><td>e070</td></tr><tr><td>move_horizontal_alt2</td><td><span class='iconic move_horizontal_alt2'></span></td><td><span class='move_horizontal_alt2'></span></td><td>e03a</td></tr><tr><td>curved_arrow</td><td><span class='iconic curved_arrow'></span></td><td><span class='curved_arrow'></span></td><td>2935</td></tr><tr><td>move_horizontal_alt1</td><td><span class='iconic move_horizontal_alt1'></span></td><td><span class='move_horizontal_alt1'></span></td><td>e039</td></tr><tr><td>aperture</td><td><span class='iconic aperture'></span></td><td><span class='aperture'></span></td><td>e026</td></tr><tr><td>reload_alt</td><td><span class='iconic reload_alt'
 ></span></td><td><span class='reload_alt'></span></td><td>e031</td></tr><tr><td>magnifying_glass</td><td><span class='iconic magnifying_glass'></span></td><td><span class='magnifying_glass'></span></td><td>e074</td></tr><tr><td>calendar_alt_fill</td><td><span class='iconic calendar_alt_fill'></span></td><td><span class='calendar_alt_fill'></span></td><td>e06c</td></tr><tr><td>fork</td><td><span class='iconic fork'></span></td><td><span class='fork'></span></td><td>e046</td></tr><tr><td>box</td><td><span class='iconic box'></span></td><td><span class='box'></span></td><td>e06b</td></tr><tr><td>map_pin_fill</td><td><span class='iconic map_pin_fill'></span></td><td><span class='map_pin_fill'></span></td><td>e068</td></tr><tr><td>bars_alt</td><td><span class='iconic bars_alt'></span></td><td><span class='bars_alt'></span></td><td>e00a</td></tr><tr><td>volume</td><td><span class='iconic volume'></span></td><td><span class='volume'></span></td><td>e072</td></tr><tr><td>x_alt</td><
 td><span class='iconic x_alt'></span></td><td><span class='x_alt'></span></td><td>2714</td></tr><tr><td>link</td><td><span class='iconic link'></span></td><td><span class='link'></span></td><td>e077</td></tr><tr><td>move_vertical</td><td><span class='iconic move_vertical'></span></td><td><span class='move_vertical'></span></td><td>e03b</td></tr><tr><td>eyedropper</td><td><span class='iconic eyedropper'></span></td><td><span class='eyedropper'></span></td><td>e01e</td></tr><tr><td>spin</td><td><span class='iconic spin'></span></td><td><span class='spin'></span></td><td>e036</td></tr><tr><td>rss</td><td><span class='iconic rss'></span></td><td><span class='rss'></span></td><td>e02c</td></tr><tr><td>info</td><td><span class='iconic info'></span></td><td><span class='info'></span></td><td>2139</td></tr><tr><td>target</td><td><span class='iconic target'></span></td><td><span class='target'></span></td><td>e02a</td></tr><tr><td>cursor</td><td><span class='iconic cursor'></span></t
 d><td><span class='cursor'></span></td><td>e057</td></tr><tr><td>key_fill</td><td><span class='iconic key_fill'></span></td><td><span class='key_fill'></span></td><td>26bf</td></tr><tr><td>minus</td><td><span class='iconic minus'></span></td><td><span class='minus'></span></td><td>2796</td></tr><tr><td>book_alt</td><td><span class='iconic book_alt'></span></td><td><span class='book_alt'></span></td><td>e00b</td></tr><tr><td>headphones</td><td><span class='iconic headphones'></span></td><td><span class='headphones'></span></td><td>e061</td></tr><tr><td>hash</td><td><span class='iconic hash'></span></td><td><span class='hash'></span></td><td>0023</td></tr><tr><td>arrow_left_alt1</td><td><span class='iconic arrow_left_alt1'></span></td><td><span class='arrow_left_alt1'></span></td><td>e013</td></tr><tr><td>arrow_left_alt2</td><td><span class='iconic arrow_left_alt2'></span></td><td><span class='arrow_left_alt2'></span></td><td>e017</td></tr><tr><td>fullscreen_exit</td><td><span
  class='iconic fullscreen_exit'></span></td><td><span class='fullscreen_exit'></span></td><td>e050</td></tr><tr><td>share</td><td><span class='iconic share'></span></td><td><span class='share'></span></td><td>e02e</td></tr><tr><td>fullscreen_alt</td><td><span class='iconic fullscreen_alt'></span></td><td><span class='fullscreen_alt'></span></td><td>e04f</td></tr><tr><td>comment_alt2_fill</td><td><span class='iconic comment_alt2_fill'></span></td><td><span class='comment_alt2_fill'></span></td><td>e004</td></tr><tr><td>moon_fill</td><td><span class='iconic moon_fill'></span></td><td><span class='moon_fill'></span></td><td>263e</td></tr><tr><td>at</td><td><span class='iconic at'></span></td><td><span class='at'></span></td><td>0040</td></tr><tr><td>chat</td><td><span class='iconic chat'></span></td><td><span class='chat'></span></td><td>e05e</td></tr><tr><td>move_vertical_alt2</td><td><span class='iconic move_vertical_alt2'></span></td><td><span class='move_vertical_alt2'></sp
 an></td><td>e03d</td></tr><tr><td>move_vertical_alt1</td><td><span class='iconic move_vertical_alt1'></span></td><td><span class='move_vertical_alt1'></span></td><td>e03c</td></tr><tr><td>check</td><td><span class='iconic check'></span></td><td><span class='check'></span></td><td>2717</td></tr><tr><td>mic</td><td><span class='iconic mic'></span></td><td><span class='mic'></span></td><td>e05f</td></tr><tr><td>book</td><td><span class='iconic book'></span></td><td><span class='book'></span></td><td>e069</td></tr><tr><td>move_alt1</td><td><span class='iconic move_alt1'></span></td><td><span class='move_alt1'></span></td><td>e03f</td></tr><tr><td>move_alt2</td><td><span class='iconic move_alt2'></span></td><td><span class='move_alt2'></span></td><td>e040</td></tr><tr><td>document_fill</td><td><span class='iconic document_fill'></span></td><td><span class='document_fill'></span></td><td>e066</td></tr><tr><td>plus</td><td><span class='iconic plus'></span></td><td><span class='plus
 '></span></td><td>2795</td></tr><tr><td>wrench</td><td><span class='iconic wrench'></span></td><td><span class='wrench'></span></td><td>e078</td></tr><tr><td>play</td><td><span class='iconic play'></span></td><td><span class='play'></span></td><td>e047</td></tr><tr><td>star</td><td><span class='iconic star'></span></td><td><span class='star'></span></td><td>2605</td></tr><tr><td>document_alt_fill</td><td><span class='iconic document_alt_fill'></span></td><td><span class='document_alt_fill'></span></td><td>e000</td></tr><tr><td>chart</td><td><span class='iconic chart'></span></td><td><span class='chart'></span></td><td>e028</td></tr><tr><td>rain</td><td><span class='iconic rain'></span></td><td><span class='rain'></span></td><td>26c6</td></tr><tr><td>folder_fill</td><td><span class='iconic folder_fill'></span></td><td><span class='folder_fill'></span></td><td>e065</td></tr><tr><td>new_window</td><td><span class='iconic new_window'></span></td><td><span class='new_window'></sp
 an></td><td>e059</td></tr><tr><td>user</td><td><span class='iconic user'></span></td><td><span class='user'></span></td><td>e062</td></tr><tr><td>battery_half</td><td><span class='iconic battery_half'></span></td><td><span class='battery_half'></span></td><td>e05b</td></tr><tr><td>aperture_alt</td><td><span class='iconic aperture_alt'></span></td><td><span class='aperture_alt'></span></td><td>e00c</td></tr><tr><td>eject</td><td><span class='iconic eject'></span></td><td><span class='eject'></span></td><td>e04b</td></tr><tr><td>arrow_down_alt1</td><td><span class='iconic arrow_down_alt1'></span></td><td><span class='arrow_down_alt1'></span></td><td>e016</td></tr><tr><td>pilcrow</td><td><span class='iconic pilcrow'></span></td><td><span class='pilcrow'></span></td><td>00b6</td></tr><tr><td>arrow_down_alt2</td><td><span class='iconic arrow_down_alt2'></span></td><td><span class='arrow_down_alt2'></span></td><td>e01a</td></tr><tr><td>arrow_right_alt1</td><td><span class='iconic 
 arrow_right_alt1'></span></td><td><span class='arrow_right_alt1'></span></td><td>e015</td></tr><tr><td>arrow_right_alt2</td><td><span class='iconic arrow_right_alt2'></span></td><td><span class='arrow_right_alt2'></span></td><td>e019</td></tr><tr><td>rss_alt</td><td><span class='iconic rss_alt'></span></td><td><span class='rss_alt'></span></td><td>e02d</td></tr><tr><td>spin_alt</td><td><span class='iconic spin_alt'></span></td><td><span class='spin_alt'></span></td><td>e037</td></tr><tr><td>sun_fill</td><td><span class='iconic sun_fill'></span></td><td><span class='sun_fill'></span></td><td>2600</td></tr></table></body></html>
\ No newline at end of file

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.afm
==============================================================================
--- websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.afm (added)
+++ websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.afm Tue May  7 19:45:58 2013
@@ -0,0 +1,170 @@
+StartFontMetrics 2.0
+Comment Generated by FontForge 20110222
+Comment Creation Date: Sun Apr  1 19:42:24 2012
+FontName IconicStroke
+FullName Iconic Stroke
+FamilyName Iconic
+Weight Medium
+Notice (Icons by PJ Onori, font creation script by Yann)
+ItalicAngle 0
+IsFixedPitch false
+UnderlinePosition -100
+UnderlineThickness 50
+Version 001.000
+EncodingScheme ISOLatin1Encoding
+FontBBox 14 -14 760 731
+Descender -2147483648
+StartCharMetrics 151
+C 35 ; WX 681 ; N numbersign ; B 15 -14 667 731 ;
+C 63 ; WX 402 ; N question ; B 15 -14 388 731 ;
+C 64 ; WX 774 ; N at ; B 15 -14 760 731 ;
+C 182 ; WX 588 ; N paragraph ; B 15 -14 574 731 ;
+C -1 ; WX 495 ; N glyph0 ; B 15 -14 481 731 ;
+C -1 ; WX 774 ; N glyph1 ; B 15 -14 760 731 ;
+C -1 ; WX 495 ; N glyph2 ; B 15 -14 481 731 ;
+C -1 ; WX 774 ; N glyph3 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph4 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph5 ; B 15 -14 667 730 ;
+C -1 ; WX 774 ; N glyph6 ; B 15 -14 760 731 ;
+C -1 ; WX 309 ; N glyph7 ; B 15 -14 295 731 ;
+C -1 ; WX 774 ; N glyph8 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph9 ; B 15 32 760 684 ;
+C -1 ; WX 588 ; N glyph10 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph11 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph12 ; B 15 -14 760 731 ;
+C -1 ; WX 728 ; N glyph13 ; B 14 -14 713 731 ;
+C -1 ; WX 774 ; N glyph14 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph15 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph16 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph17 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph18 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph19 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph20 ; B 15 172 760 545 ;
+C -1 ; WX 774 ; N glyph21 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph22 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph23 ; B 15 218 760 498 ;
+C -1 ; WX 774 ; N glyph24 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph25 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph26 ; B 15 172 760 545 ;
+C -1 ; WX 402 ; N glyph27 ; B 15 -14 388 731 ;
+C -1 ; WX 588 ; N glyph28 ; B 15 -14 574 731 ;
+C -1 ; WX 588 ; N glyph29 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph31 ; B 15 32 760 684 ;
+C -1 ; WX 588 ; N glyph32 ; B 15 -14 574 731 ;
+C -1 ; WX 588 ; N glyph33 ; B 15 32 574 684 ;
+C -1 ; WX 774 ; N glyph34 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph35 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph36 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph37 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph38 ; B 15 79 760 638 ;
+C -1 ; WX 681 ; N glyph39 ; B 15 32 667 684 ;
+C -1 ; WX 774 ; N glyph40 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph41 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph42 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph43 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph44 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph45 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph46 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph47 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph48 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph49 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph50 ; B 15 -12 760 729 ;
+C -1 ; WX 774 ; N glyph51 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph52 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph53 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph54 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph55 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph56 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph57 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph58 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph59 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph60 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph61 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph62 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph63 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph64 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph65 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph66 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph67 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph68 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph69 ; B 15 -14 760 731 ;
+C -1 ; WX 402 ; N glyph70 ; B 15 -14 388 731 ;
+C -1 ; WX 402 ; N glyph71 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph72 ; B 15 172 760 545 ;
+C -1 ; WX 774 ; N glyph73 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph74 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph75 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph76 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph77 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph78 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph79 ; B 14 79 760 638 ;
+C -1 ; WX 774 ; N glyph80 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph81 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph82 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph83 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph84 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph85 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph86 ; B 15 125 760 591 ;
+C -1 ; WX 774 ; N glyph87 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph88 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph89 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph90 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph91 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph92 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph93 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph94 ; B 15 218 760 498 ;
+C -1 ; WX 774 ; N glyph95 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph96 ; B 15 32 574 684 ;
+C -1 ; WX 774 ; N glyph97 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph98 ; B 15 -14 574 731 ;
+C -1 ; WX 681 ; N glyph99 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph100 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph101 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph102 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph103 ; B 15 79 760 638 ;
+C -1 ; WX 774 ; N glyph104 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph105 ; B 14 -14 760 731 ;
+C -1 ; WX 774 ; N glyph106 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph107 ; B 15 -14 759 731 ;
+C -1 ; WX 681 ; N glyph108 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph109 ; B 15 -14 760 731 ;
+C -1 ; WX 402 ; N glyph110 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph111 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph112 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph113 ; B 15 265 760 452 ;
+C -1 ; WX 774 ; N glyph114 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph115 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph117 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph118 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph119 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph120 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph121 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph123 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph124 ; B 15 -14 760 731 ;
+C -1 ; WX 309 ; N glyph125 ; B 15 -14 295 731 ;
+C -1 ; WX 774 ; N glyph126 ; B 15 58 760 658 ;
+C -1 ; WX 588 ; N glyph127 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph128 ; B 15 -14 760 731 ;
+C -1 ; WX 681 ; N glyph129 ; B 15 -14 667 731 ;
+C -1 ; WX 774 ; N glyph130 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph131 ; B 15 -14 760 731 ;
+C -1 ; WX 402 ; N glyph132 ; B 15 -14 388 731 ;
+C -1 ; WX 774 ; N glyph133 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph134 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph135 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph136 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph137 ; B 15 32 760 684 ;
+C -1 ; WX 774 ; N glyph138 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph139 ; B 15 -14 760 731 ;
+C -1 ; WX 588 ; N glyph140 ; B 15 -14 574 731 ;
+C -1 ; WX 774 ; N glyph141 ; B 15 172 760 545 ;
+C -1 ; WX 774 ; N glyph142 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph143 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph144 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph146 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph147 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph148 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph149 ; B 15 -14 760 731 ;
+C -1 ; WX 774 ; N glyph150 ; B 15 -14 760 731 ;
+EndCharMetrics
+EndFontMetrics

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.css
==============================================================================
--- websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.css (added)
+++ websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.css Tue May  7 19:45:58 2013
@@ -0,0 +1 @@
+@font-face { font-family: 'IconicStroke'; src: url('iconic_stroke.eot'); src: url('iconic_stroke.eot?#iefix') format('embedded-opentype'), url('iconic_stroke.ttf') format('truetype'), url('iconic_stroke.svg#iconic') format('svg'); font-weight: normal; font-style: normal; }.iconic { display:inline-block; font-family: 'IconicStroke'; }.lightbulb:before {content:'\e063';}.equalizer:before {content:'\e052';}.map_pin_stroke:before {content:'\e068';}.brush_alt:before {content:'\e01c';}.move:before {content:'\e03e';}.paperclip:before {content:'\e08a';}.pen_alt_stroke:before {content:'\e005';}.move_vertical:before {content:'\e03b';}.book_alt2:before {content:'\e06a';}.layers:before {content:'\e01f';}.pause:before {content:'\e049';}.layers_alt:before {content:'\e020';}.cloud_upload:before {content:'\e045';}.chart_alt:before {content:'\e029';}.fullscreen_exit_alt:before {content:'\e051';}.cloud_download:before {content:'\e044';}.comment_alt2_stroke:before {content:'\e004';}.mail:befor
 e {content:'\2709';}.check_alt:before {content:'\2714';}.document_stroke:before {content:'\e066';}.battery_charging:before {content:'\e05d';}.stop:before {content:'\e04a';}.arrow_up:before {content:'\2191';}.move_horizontal:before {content:'\e038';}.compass:before {content:'\e021';}.minus_alt:before {content:'\e009';}.battery_empty:before {content:'\e05c';}.map_pin_alt:before {content:'\e002';}.unlock_stroke:before {content:'\e076';}.lock_stroke:before {content:'\e075';}.question_mark:before {content:'\003f';}.list:before {content:'\e055';}.upload:before {content:'\e043';}.reload:before {content:'\e030';}.loop_alt4:before {content:'\e035';}.loop_alt3:before {content:'\e034';}.loop_alt2:before {content:'\e033';}.loop_alt1:before {content:'\e032';}.left_quote:before {content:'\275d';}.x:before {content:'\2717';}.last:before {content:'\e04d';}.document_alt_stroke:before {content:'\e000';}.bars:before {content:'\e06f';}.arrow_left:before {content:'\2190';}.arrow_down:before {con
 tent:'\2193';}.download:before {content:'\e042';}.home:before {content:'\2302';}.calendar:before {content:'\e001';}.right_quote_alt:before {content:'\e012';}.fullscreen:before {content:'\e04e';}.dial:before {content:'\e058';}.plus_alt:before {content:'\e008';}.clock:before {content:'\e079';}.movie:before {content:'\e060';}.steering_wheel:before {content:'\e024';}.pen:before {content:'\270e';}.tag_stroke:before {content:'\e02b';}.pin:before {content:'\e067';}.denied:before {content:'\26d4';}.left_quote_alt:before {content:'\e011';}.volume_mute:before {content:'\e071';}.arrow_up_alt2:before {content:'\e018';}.list_nested:before {content:'\e056';}.arrow_up_alt1:before {content:'\e014';}.comment_stroke:before {content:'\e06d';}.undo:before {content:'\e02f';}.umbrella:before {content:'\2602';}.bolt:before {content:'\26a1';}.article:before {content:'\e053';}.read_more:before {content:'\e054';}.beaker:before {content:'\e023';}.beaker_alt:before {content:'\e010';}.battery_full:befor
 e {content:'\e073';}.arrow_right:before {content:'\2192';}.new_window:before {content:'\e059';}.plus:before {content:'\2795';}.cog:before {content:'\2699';}.key_stroke:before {content:'\26bf';}.first:before {content:'\e04c';}.comment_alt1_stroke:before {content:'\e003';}.trash_stroke:before {content:'\e05a';}.image:before {content:'\e027';}.chat_alt_stroke:before {content:'\e007';}.cd:before {content:'\e064';}.right_quote:before {content:'\275e';}.brush:before {content:'\e01b';}.cloud:before {content:'\2601';}.eye:before {content:'\e025';}.play_alt:before {content:'\e048';}.transfer:before {content:'\e041';}.pen_alt2:before {content:'\e006';}.camera:before {content:'\e070';}.move_horizontal_alt2:before {content:'\e03a';}.curved_arrow:before {content:'\2935';}.move_horizontal_alt1:before {content:'\e039';}.aperture:before {content:'\e026';}.reload_alt:before {content:'\e031';}.magnifying_glass:before {content:'\e074';}.iphone:before {content:'\e06e';}.fork:before {content:'\e
 046';}.box:before {content:'\e06b';}.bars_alt:before {content:'\e00a';}.heart_stroke:before {content:'\2764';}.volume:before {content:'\e072';}.x_alt:before {content:'\2718';}.link:before {content:'\e077';}.moon_stroke:before {content:'\263e';}.eyedropper:before {content:'\e01e';}.spin:before {content:'\e036';}.rss:before {content:'\e02c';}.info:before {content:'\2139';}.target:before {content:'\e02a';}.cursor:before {content:'\e057';}.minus:before {content:'\2796';}.book_alt:before {content:'\e00b';}.headphones:before {content:'\e061';}.hash:before {content:'\0023';}.arrow_left_alt1:before {content:'\e013';}.arrow_left_alt2:before {content:'\e017';}.fullscreen_exit:before {content:'\e050';}.share:before {content:'\e02e';}.fullscreen_alt:before {content:'\e04f';}.at:before {content:'\0040';}.chat:before {content:'\e05e';}.move_vertical_alt2:before {content:'\e03d';}.move_vertical_alt1:before {content:'\e03c';}.check:before {content:'\2713';}.mic:before {content:'\e05f';}.cal
 endar_alt_stroke:before {content:'\e06c';}.book:before {content:'\e069';}.move_alt1:before {content:'\e03f';}.move_alt2:before {content:'\e040';}.award_stroke:before {content:'\e022';}.wrench:before {content:'\e078';}.play:before {content:'\e047';}.star:before {content:'\2605';}.chart:before {content:'\e028';}.rain:before {content:'\26c6';}.folder_stroke:before {content:'\e065';}.sun_stroke:before {content:'\2600';}.user:before {content:'\e062';}.battery_half:before {content:'\e05b';}.aperture_alt:before {content:'\e00c';}.eject:before {content:'\e04b';}.arrow_down_alt1:before {content:'\e016';}.pilcrow:before {content:'\00b6';}.arrow_down_alt2:before {content:'\e01a';}.arrow_right_alt1:before {content:'\e015';}.arrow_right_alt2:before {content:'\e019';}.rss_alt:before {content:'\e02d';}.spin_alt:before {content:'\e037';}
\ No newline at end of file

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.eot
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.eot
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.otf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.otf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.svg
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.svg
------------------------------------------------------------------------------
    svn:mime-type = image/svg+xml

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.ttf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.ttf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.woff
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/pdfbox/trunk/content/Iconic/iconic stroke/iconic_stroke.woff
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream