Initial commit of V2.

This commit is contained in:
Michael Teeuw 2016-03-24 17:19:32 +01:00
parent c428d6a985
commit 4266c0b279
235 changed files with 31730 additions and 246 deletions

2034
config.codekit Normal file

File diff suppressed because it is too large Load Diff

35
config/config.js Normal file
View File

@ -0,0 +1,35 @@
/* exported config */
/* Magic Mirror Config
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
language: 'en',
modules: [
{
module: 'clock',
position: 'top_left'
},
{
module: 'compliments',
position: 'lower_third',
},
{
module: 'helloworld',
position: 'top_right'
},
{
module: 'helloworld',
position: 'bottom_bar',
config: {
text: 'Magic Mirror V2'
}
},
]
};

View File

@ -1,224 +1,116 @@
body,
html {
background: #000;
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
font-family: "HelveticaNeue-Light", sans-serif;
letter-spacing: -2px;
color: #fff;
font-size: 75px;
-webkit-font-smoothing: antialiased;
text-rendering: geometricprecision;
body {
margin: 60px;
position: relative;
background: #000;
color: #aaa;
font-family: 'roboto_condensedregular', arial;
font-size: 2em;
line-height: 1.5em;
-webkit-font-smoothing: antialiased;
}
.wi {
line-height: 75px;
/**
* Default styles.
*/
.dimmed {color: #555;}
.normal {color: #999;}
.bright {color: #fff;}
.xsmall {font-size: 15px; line-height: 20px;}
.small {font-size: 20px; line-height: 25px;}
.medium {font-size: 30px; line-height: 35px;}
.large {font-size: 60px; line-height: 60px;}
.xlarge {font-size: 70px; line-height: 70px; letter-spacing: -3px;}
.thin {font-family: 'robotothin'; }
.light {font-family: 'roboto_condensedlight'; }
.regular {font-family: 'roboto_condensedregular';}
.bold {font-family: 'roboto_condensedbold';}
header {
margin-top: 50px;
text-transform: uppercase;
font-size: 0.4em;
font-family: 'roboto_condensedregular';
border-bottom: 1px solid #333;
line-height: 0.35em;
padding-bottom: 10px;
margin-bottom: 10px;
color: #666;
}
.top {
position: absolute;
top: 50px;
sup {
font-size: 50%;
line-height: 50%;
}
/**
* Region Definitions.
*/
.left {
position: absolute;
left: 50px;
.region {
position: absolute;
}
.right {
position: absolute;
right: 50px;
text-align: right;
.region.right {
right: 0;
}
.center-ver {
position: absolute;
top: 50%;
height: 200px;
margin-top: -100px;
line-height: 100px;
.region.top {
top: 0;
}
.lower-third {
position: absolute;
top: 66.666%;
height: 200px;
margin-top: -100px;
line-height: 100px;
.region.top .container{
margin-bottom: 25px;
}
.center-hor {
position: absolute;
right: 50px;
left: 50px;
text-align: center;
.region.top .container:empty {
margin-bottom: 0px;
}
.bottom {
position: absolute;
bottom: 50px;
.region.top.center, .region.bottom.center {
left: 50%;
-moz-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.xxsmall,
.xsmall,
.small {
font-family: "HelveticaNeue-Medium", sans-serif;
letter-spacing: 0;
.region.top.right, .region.top.left, .region.top.center {
top: 100%;
}
.xxsmall {
font-size: 15px;
.region.bottom {
bottom: 0;
}
.xxsmall .wi {
line-height: 15px;
.region.bottom .container{
margin-top: 25px;
}
.xsmall {
font-size: 20px;
.region.bottom .container:empty {
margin-top: 0px;
}
.xsmall .wi {
line-height: 20px;
.region.bottom.right, .region.bottom.center, .region.bottom.left {
bottom: 100%;
}
.small {
font-size: 25px;
.region.bar {
width: 100%;
text-align: center;
}
.small .wi {
line-height: 25px;
.region.third, .region.middle.center {
width: 100%;
text-align: center;
-moz-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.medium {
font-size: 35px;
letter-spacing: -1px;
font-family: "HelveticaNeue-Light", sans-serif;
.region.upper.third {
top: 33%;
}
.medium .wi {
line-height: 35px;
.region.middle.center {
top: 50%;
}
.xdimmed {
color: #666;
.region.lower.third {
top: 66%;
}
.dimmed {
color: #aaa;
.region.left {
text-align: left;
}
.light {
font-family: "HelveticaNeue-UltraLight", sans-serif;
}
.icon {
position: relative;
top: -10px;
display: inline-block;
font-size: 45px;
padding-right: 5px;
font-weight: 100;
margin-right: 10px;
}
.icon-small {
position: relative;
display: inline-block;
font-size: 20px;
padding-left: 10px;
padding-right: -10px;
font-weight: 100;
}
.time .sec {
font-size: 25px;
color: #666;
padding-left: 5px;
position: relative;
top: -35px;
}
.forecast-table {
float: right;
text-align: right;
font-size: 20px;
line-height: 20px;
}
.forecast-table .day,
.forecast-table .temp-min,
.forecast-table .temp-max {
width: 50px;
text-align: right;
}
.forecast-table .temp-max {
width: 60px;
}
.forecast-table .day {
color: #999;
}
.calendar-table {
font-size: 14px;
line-height: 20px;
margin-top: 10px;
}
.calendar-table .days {
padding-left: 20px;
text-align: right;
}
.dishwasher {
background-color: white;
color: black;
margin: 0 200px;
font-size: 60px;
border-radius: 1000px;
border-radius: 1200px;
display: none;
}
@font-face {
font-family: 'HelveticaNeue-UltraLight';
src: url('font/HelveticaNeue-UltraLight.eot');
/* IE9 Compat Modes */
src: url('font/HelveticaNeue-UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('font/HelveticaNeue-UltraLight.woff') format('woff'), /* Modern Browsers */
url('font/HelveticaNeue-UltraLight.ttf') format('truetype'), /* Safari, Android, iOS */
url('font/HelveticaNeue-UltraLight.svg#9453ea8da727d260bcdbfa605bdbb5d2') format('svg');
/* Legacy iOS */
font-style: normal;
font-weight: 100;
}
@font-face {
font-family: 'HelveticaNeue-Medium';
src: url('font/HelveticaNeue-Medium.eot');
/* IE9 Compat Modes */
src: url('font/HelveticaNeue-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('font/HelveticaNeue-Medium.woff') format('woff'), /* Modern Browsers */
url('font/HelveticaNeue-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
url('font/HelveticaNeue-Medium.svg#d7af0fd9278f330eed98b60dddea7bd6') format('svg');
/* Legacy iOS */
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: 'HelveticaNeue-Light';
src: url('font/HelveticaNeue-Light.eot');
/* IE9 Compat Modes */
src: url('font/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('font/HelveticaNeue-Light.woff') format('woff'), /* Modern Browsers */
url('font/HelveticaNeue-Light.ttf') format('truetype'), /* Safari, Android, iOS */
url('font/HelveticaNeue-Light.svg#7384ecabcada72f0e077cd45d8e1c705') format('svg');
/* Legacy iOS */
font-style: normal;
font-weight: 200;
.region.right {
text-align: right;
}

203
fonts/Apache License.txt Executable file
View File

@ -0,0 +1,203 @@
Font data copyright Google 2012
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

48
fonts/robot.css Normal file
View File

@ -0,0 +1,48 @@
@font-face {
font-family: 'robotoregular';
src: url('roboto_regular/Roboto-Regular-webfont.eot');
src: url('roboto_regular/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_regular/Roboto-Regular-webfont.woff') format('woff'),
url('roboto_regular/Roboto-Regular-webfont.ttf') format('truetype'),
url('roboto_regular/Roboto-Regular-webfont.svg#robotoregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotomedium';
src: url('roboto_medium/Roboto-Medium-webfont.eot');
src: url('roboto_medium/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_medium/Roboto-Medium-webfont.woff') format('woff'),
url('roboto_medium/Roboto-Medium-webfont.ttf') format('truetype'),
url('roboto_medium/Roboto-Medium-webfont.svg#robotomedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotobold';
src: url('roboto_bold/Roboto-Bold-webfont.eot');
src: url('roboto_bold/Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_bold/Roboto-Bold-webfont.woff') format('woff'),
url('roboto_bold/Roboto-Bold-webfont.ttf') format('truetype'),
url('roboto_bold/Roboto-Bold-webfont.svg#robotobold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotolight';
src: url('roboto_light/Roboto-Light-webfont.eot');
src: url('roboto_light/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_light/Roboto-Light-webfont.woff') format('woff'),
url('roboto_light/Roboto-Light-webfont.ttf') format('truetype'),
url('roboto_light/Roboto-Light-webfont.svg#robotolight') format('svg');
font-weight: normal;
font-style: normal;
}

96
fonts/roboto.css Normal file
View File

@ -0,0 +1,96 @@
@font-face {
font-family: 'robotoregular';
src: url('roboto_regular/Roboto-Regular-webfont.eot');
src: url('roboto_regular/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_regular/Roboto-Regular-webfont.woff') format('woff'),
url('roboto_regular/Roboto-Regular-webfont.ttf') format('truetype'),
url('roboto_regular/Roboto-Regular-webfont.svg#robotoregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotomedium';
src: url('roboto_medium/Roboto-Medium-webfont.eot');
src: url('roboto_medium/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_medium/Roboto-Medium-webfont.woff') format('woff'),
url('roboto_medium/Roboto-Medium-webfont.ttf') format('truetype'),
url('roboto_medium/Roboto-Medium-webfont.svg#robotomedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotobold';
src: url('roboto_bold/Roboto-Bold-webfont.eot');
src: url('roboto_bold/Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_bold/Roboto-Bold-webfont.woff') format('woff'),
url('roboto_bold/Roboto-Bold-webfont.ttf') format('truetype'),
url('roboto_bold/Roboto-Bold-webfont.svg#robotobold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotolight';
src: url('roboto_light/Roboto-Light-webfont.eot');
src: url('roboto_light/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_light/Roboto-Light-webfont.woff') format('woff'),
url('roboto_light/Roboto-Light-webfont.ttf') format('truetype'),
url('roboto_light/Roboto-Light-webfont.svg#robotolight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotothin';
src: url('roboto_thin/Roboto-Thin-webfont.eot');
src: url('roboto_thin/Roboto-Thin-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_thin/Roboto-Thin-webfont.woff') format('woff'),
url('roboto_thin/Roboto-Thin-webfont.ttf') format('truetype'),
url('roboto_thin/Roboto-Thin-webfont.svg#robotolight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'roboto_condensedbold';
src: url('roboto_boldcondensed/RobotoCondensed-Bold-webfont.eot');
src: url('roboto_boldcondensed/RobotoCondensed-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_boldcondensed/RobotoCondensed-Bold-webfont.woff') format('woff'),
url('roboto_boldcondensed/RobotoCondensed-Bold-webfont.ttf') format('truetype'),
url('roboto_boldcondensed/RobotoCondensed-Bold-webfont.svg#roboto_condensedbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'roboto_condensedregular';
src: url('roboto_condensed/RobotoCondensed-Regular-webfont.eot');
src: url('roboto_condensed/RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_condensed/RobotoCondensed-Regular-webfont.woff') format('woff'),
url('roboto_condensed/RobotoCondensed-Regular-webfont.ttf') format('truetype'),
url('roboto_condensed/RobotoCondensed-Regular-webfont.svg#roboto_condensedregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'roboto_condensedlight';
src: url('roboto_lightcondensed/RobotoCondensed-Light-webfont.eot');
src: url('roboto_lightcondensed/RobotoCondensed-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('roboto_lightcondensed/RobotoCondensed-Light-webfont.woff') format('woff'),
url('roboto_lightcondensed/RobotoCondensed-Light-webfont.ttf') format('truetype'),
url('roboto_lightcondensed/RobotoCondensed-Light-webfont.svg#roboto_condensedlight') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'robotoblack';
}
</style>
<title>Roboto Black Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Black </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Black</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,642 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotoblack" horiz-adv-x="1151" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="510" />
<glyph unicode="&#xfb01;" horiz-adv-x="1302" d="M16 848v234h157v52q0 216 133 331.5t378 115.5q84 0 167 -15t185 -43l-46 -266q-86 22 -143.5 33t-142.5 11q-93 0 -143 -43.5t-50 -123.5v-52h212v-234h-212v-848h-338v848h-157zM852 0v1082h339v-1082h-339z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="510" />
<glyph unicode=" " horiz-adv-x="510" />
<glyph unicode="&#x09;" horiz-adv-x="510" />
<glyph unicode="&#xa0;" horiz-adv-x="510" />
<glyph unicode="!" horiz-adv-x="565" d="M115 0v283h339v-283h-339zM115 516v940h339v-940h-339z" />
<glyph unicode="&#x22;" horiz-adv-x="649" d="M43 1042v518h229v-269l-85 -249h-144zM378 1042v518h227v-269l-84 -249h-143z" />
<glyph unicode="#" horiz-adv-x="1190" d="M37 410v183h252l44 264h-221v183h251l69 416h198l-68 -416h161l69 416h199l-69 -416h231v-183h-261l-44 -264h229v-183h-259l-67 -410h-199l67 410h-161l-67 -410h-199l67 410h-222zM488 593h161l44 264h-161z" />
<glyph unicode="$" horiz-adv-x="1186" d="M88 461l3 6h329q0 -124 54 -178.5t140 -54.5q72 0 109 42t37 110q0 79 -38 122.5t-135 85.5q-236 94 -343.5 190.5t-107.5 283.5q0 169 114 278.5t304 127.5v211h159v-215q180 -26 285 -148t102 -311l-2 -5h-331q0 109 -42 162.5t-112 53.5q-71 0 -105 -44t-34 -112 q0 -69 36.5 -112t136.5 -87q232 -99 341 -197.5t109 -281.5q0 -174 -109.5 -280t-294.5 -125v-201h-159v202q-194 19 -322 135.5t-124 341.5z" />
<glyph unicode="%" horiz-adv-x="1521" d="M91 1099v77q0 130 84 215.5t239 85.5q157 0 241 -85.5t84 -215.5v-77q0 -130 -84 -214.5t-239 -84.5q-156 0 -240.5 85t-84.5 214zM307 1099q0 -50 28 -83.5t81 -33.5q51 0 78.5 33.5t27.5 83.5v77q0 50 -28 84.5t-80 34.5q-51 0 -79 -34.5t-28 -84.5v-77zM312 188 l711 1138l157 -79l-711 -1138zM782 280v77q0 129 85 214.5t240 85.5q157 0 240.5 -85t83.5 -215v-77q0 -131 -83.5 -215.5t-238.5 -84.5q-156 0 -241.5 85t-85.5 215zM999 280q0 -48 32 -83t78 -35q62 0 84 31t22 87v77q0 49 -28.5 83.5t-79.5 34.5q-52 0 -80 -34.5 t-28 -83.5v-77z" />
<glyph unicode="&#x26;" horiz-adv-x="1380" d="M60 391q0 116 61.5 197.5t190.5 176.5l3 2q-64 90 -95.5 165t-31.5 152q0 174 113 283.5t299 109.5q159 0 258.5 -102t99.5 -248q0 -98 -45.5 -182t-123.5 -140l-87 -61l244 -280q35 56 54 123t19 141h238q0 -142 -31.5 -260t-100.5 -210l220 -253l-2 -5h-369l-74 84 q-87 -54 -173.5 -79.5t-190.5 -25.5q-218 0 -347 114t-129 298zM399 414q0 -77 46.5 -126t113.5 -49q43 0 86.5 9t85.5 28l-267 302l-9 -6q-31 -38 -43.5 -75.5t-12.5 -82.5zM480 1088q0 -39 19 -79.5t57 -88.5l60 38q56 36 75 70t19 75q0 44 -30.5 79t-80.5 35 q-57 0 -88 -37t-31 -92z" />
<glyph unicode="'" horiz-adv-x="316" d="M43 985v575h218v-292l-74 -283h-144z" />
<glyph unicode="(" horiz-adv-x="727" d="M120 564v28q0 389 148 659.5t348 347.5h6l61 -159q-128 -94 -211 -304t-83 -542v-32q0 -333 83 -542.5t211 -303.5l-61 -159h-6q-200 77 -348 347t-148 660z" />
<glyph unicode=")" horiz-adv-x="726" d="M44 -284q126 95 210 304.5t84 541.5v32q0 332 -84 542t-210 304l61 159h6q205 -76 362 -355t157 -652v-28q0 -374 -157 -652.5t-362 -354.5h-6z" />
<glyph unicode="*" horiz-adv-x="919" d="M26 1048l61 188l298 -130l-22 350h200l-25 -357l291 127l60 -190l-309 -90l205 -264l-161 -117l-173 293l-171 -283l-162 112l214 271z" />
<glyph unicode="+" horiz-adv-x="1094" d="M45 537v289h342v380h315v-380h341v-289h-341v-391h-315v391h-342z" />
<glyph unicode="," horiz-adv-x="541" d="M56 -326l70 327v253h292v-262l-163 -318h-199z" />
<glyph unicode="-" horiz-adv-x="921" d="M152 497v261h601v-261h-601z" />
<glyph unicode="." horiz-adv-x="619" d="M136 0v284h337v-284h-337z" />
<glyph unicode="/" horiz-adv-x="719" d="M-29 -125l497 1581h240l-498 -1581h-239z" />
<glyph unicode="0" horiz-adv-x="1186" d="M86 575v306q0 295 136 445.5t370 150.5q233 0 370.5 -151t137.5 -445v-306q0 -295 -137 -445.5t-369 -150.5q-234 0 -371 150.5t-137 445.5zM423 554q0 -170 43 -242.5t128 -72.5q83 0 126 72.5t43 242.5v350q0 167 -44 240t-127 73q-84 0 -126.5 -73t-42.5 -240v-350z " />
<glyph unicode="1" horiz-adv-x="1186" d="M144 1117v238l662 102v-1457h-337v1117h-325z" />
<glyph unicode="2" horiz-adv-x="1186" d="M65 994q-5 202 132 342.5t363 140.5q240 0 374.5 -118t134.5 -323q0 -138 -71.5 -244t-263.5 -315l-197 -211l3 -6h568v-260h-1019v220l468 492q89 102 131 182t42 139q0 84 -42.5 134t-127.5 50q-76 0 -119.5 -64.5t-43.5 -164.5h-330z" />
<glyph unicode="3" horiz-adv-x="1186" d="M54 398l2 6h330q0 -70 54.5 -117.5t132.5 -47.5q89 0 142 50t53 126q0 106 -55.5 154.5t-156.5 48.5h-159v251h159q91 0 140 49t49 136q0 69 -44 116t-128 47q-66 0 -116 -38t-50 -98h-328l-2 6q-6 174 137 282t347 108q237 0 379 -108.5t142 -307.5q0 -99 -61.5 -182.5 t-164.5 -130.5q117 -43 183 -130.5t66 -209.5q0 -200 -153 -314.5t-391 -114.5q-205 0 -358.5 107.5t-148.5 311.5z" />
<glyph unicode="4" horiz-adv-x="1186" d="M58 515l584 938v3h338v-887h147v-262h-147v-307h-338v307h-564zM360 569h282v448l-6 2l-26 -41z" />
<glyph unicode="5" horiz-adv-x="1186" d="M87 398l2 6l330 20q0 -87 48.5 -136t128.5 -49q92 0 130.5 64.5t38.5 163.5q0 120 -43 189t-136 69q-68 0 -109.5 -29t-57.5 -73l-303 17l84 816h854v-262h-579l-37 -303q38 29 95 47t125 20q214 4 329 -124.5t115 -364.5q0 -205 -131 -347.5t-375 -142.5 q-208 0 -361 115t-148 304z" />
<glyph unicode="6" horiz-adv-x="1186" d="M83 566v293q0 288 169.5 453t435.5 165q86 0 153 -14.5t148 -46.5l-56 -246q-70 21 -122.5 31.5t-120.5 10.5q-120 0 -192.5 -84.5t-69.5 -246.5l3 -5q44 50 117 78t166 28q195 0 303.5 -140.5t108.5 -359.5q0 -216 -143.5 -359.5t-366.5 -143.5q-239 0 -386 157 t-147 430zM421 566q0 -158 51.5 -242.5t143.5 -84.5q76 0 124 72t48 171q0 111 -46.5 176.5t-120.5 65.5q-70 0 -120.5 -19t-79.5 -53v-86z" />
<glyph unicode="7" horiz-adv-x="1186" d="M52 1196v260h1050v-260q-218 -249 -301 -486t-117 -569l-14 -141h-338l13 141q30 312 137 579t296 476h-726z" />
<glyph unicode="8" horiz-adv-x="1186" d="M86 401q0 115 63 204t174 140q-99 48 -153.5 131.5t-54.5 190.5q0 195 131.5 302.5t345.5 107.5q216 0 347 -107.5t131 -302.5q0 -107 -55 -190.5t-152 -131.5q111 -51 174 -140t63 -204q0 -204 -140 -313t-366 -109t-367 109.5t-141 312.5zM424 428q0 -88 46 -138.5 t124 -50.5q76 0 122.5 50.5t46.5 138.5q0 87 -47 137t-124 50t-122.5 -50t-45.5 -137zM454 1049q0 -80 36 -127t104 -47t103.5 46.5t35.5 127.5q0 78 -36 123t-105 45q-67 0 -102.5 -44.5t-35.5 -123.5z" />
<glyph unicode="9" horiz-adv-x="1186" d="M81 957q0 217 142 368.5t366 151.5q220 0 362.5 -159t142.5 -437v-346q0 -252 -162 -404t-408 -152q-75 0 -155.5 16.5t-153.5 46.5l35 241q70 -23 132.5 -33.5t141.5 -10.5q101 0 167 72.5t66 200.5v64q-49 -60 -114 -90.5t-138 -30.5q-199 0 -311.5 134.5t-112.5 367.5 zM419 957q0 -120 40 -189.5t120 -69.5q57 0 102.5 20t75.5 55v150q0 143 -47.5 218.5t-121.5 75.5q-78 0 -123.5 -79t-45.5 -181z" />
<glyph unicode=":" horiz-adv-x="613" d="M136 0v284h337v-284h-337zM136 798v284h337v-284h-337z" />
<glyph unicode=";" horiz-adv-x="579" d="M98 -326l70 327v253h292v-262l-163 -318h-199zM123 798v284h337v-284h-337z" />
<glyph unicode="&#x3c;" horiz-adv-x="1044" d="M46 412v266l884 360v-306l-552 -186v-6l552 -181v-307z" />
<glyph unicode="=" horiz-adv-x="1195" d="M128 293v260h926v-260h-926zM128 732v260h926v-260h-926z" />
<glyph unicode="&#x3e;" horiz-adv-x="1044" d="M114 52v307l552 181v6l-552 186v306l884 -360v-266z" />
<glyph unicode="?" horiz-adv-x="1043" d="M18 1060q-3 208 132.5 312.5t357.5 104.5q238 0 374.5 -120t136.5 -324q0 -125 -74.5 -230t-189.5 -165q-64 -42 -86.5 -90.5t-22.5 -131.5h-338q1 139 50 209t179 161q67 42 105.5 104t38.5 143q0 84 -45 134t-128 50q-67 0 -112 -41t-47 -122h-329zM309 0v270h336v-270 h-336z" />
<glyph unicode="@" horiz-adv-x="1809" d="M43 478q18 429 258 680.5t638 251.5q391 0 598.5 -238t191.5 -652q-9 -220 -132 -380.5t-367 -160.5q-81 0 -140 45.5t-83 128.5q-41 -85 -103.5 -127.5t-146.5 -42.5q-149 0 -228 118.5t-58 314.5q26 251 146.5 402t292.5 151q121 0 194.5 -26t161.5 -80l-3 -4h5 l-51 -566q-5 -87 11.5 -119.5t44.5 -32.5q112 0 179.5 107.5t75.5 271.5q16 339 -133 528.5t-460 189.5q-302 0 -480 -204t-193 -556q-17 -343 144.5 -542t463.5 -199q84 0 174.5 18.5t156.5 46.5l38 -166q-67 -42 -170.5 -65.5t-202.5 -23.5q-404 0 -622 249t-201 682z M719 416q-9 -120 17.5 -181.5t86.5 -61.5q54 0 96.5 30t74.5 111l40 452q-22 5 -43 8.5t-42 3.5q-104 0 -158.5 -90.5t-71.5 -271.5z" />
<glyph unicode="A" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM504 543h309l-152 521h-6z" />
<glyph unicode="B" horiz-adv-x="1315" d="M114 0v1456h500q271 0 423 -100.5t152 -299.5q0 -104 -49 -185t-151 -122q128 -29 189 -116.5t61 -201.5q0 -213 -143 -322t-410 -109h-572zM453 260h233q108 0 162 42.5t54 130.5q0 95 -46.5 143.5t-150.5 48.5h-252v-365zM453 849h168q115 2 172 44.5t57 124.5 q0 93 -58 135.5t-178 42.5h-161v-347z" />
<glyph unicode="C" horiz-adv-x="1316" d="M80 576v304q0 264 162.5 430.5t422.5 166.5q276 0 422 -139t165 -395l-2 -6h-329q-7 142 -63.5 211t-192.5 69q-115 0 -181 -92.5t-66 -242.5v-306q0 -151 72 -244t198 -93q122 0 173 65t58 207h329l2 -6q-10 -256 -151.5 -391t-410.5 -135q-270 0 -439 166t-169 431z " />
<glyph unicode="D" horiz-adv-x="1338" d="M114 0v1456h526q257 0 430 -167.5t173 -429.5v-262q0 -263 -173 -430t-430 -167h-526zM453 260h164q135 0 211 92.5t76 244.5v264q0 151 -76 243t-211 92h-164v-936z" />
<glyph unicode="E" horiz-adv-x="1165" d="M114 0v1456h1014v-260h-675v-313h571v-260h-571v-363h673v-260h-1012z" />
<glyph unicode="F" horiz-adv-x="1177" d="M114 0v1456h1024v-260h-685v-350h583v-260h-583v-586h-339z" />
<glyph unicode="G" horiz-adv-x="1356" d="M88 576v304q0 263 164.5 430t423.5 167q281 0 421 -130t159 -355l-2 -6h-317q-17 115 -74.5 173t-175.5 58t-190 -93.5t-72 -241.5v-306q0 -152 71 -244.5t199 -92.5q93 0 146 15t84 40v230h-229v224h568v-547q-74 -88 -215 -155t-354 -67q-270 0 -438.5 166t-168.5 431z " />
<glyph unicode="H" horiz-adv-x="1444" d="M114 0v1456h339v-610h539v610h337v-1456h-337v586h-539v-586h-339z" />
<glyph unicode="I" horiz-adv-x="611" d="M137 0v1456h337v-1456h-337z" />
<glyph unicode="J" horiz-adv-x="1188" d="M61 430l2 6h330q0 -106 49 -151.5t126 -45.5q69 0 119 57t50 161v999h337v-999q0 -220 -144.5 -349t-361.5 -129q-237 0 -374 114q-133 110 -133 321v16z" />
<glyph unicode="K" horiz-adv-x="1325" d="M114 0v1456h339v-570h115l320 570h420l-451 -659l490 -797h-412l-326 584h-156v-584h-339z" />
<glyph unicode="L" horiz-adv-x="1109" d="M114 0v1456h339v-1196h627v-260h-966z" />
<glyph unicode="M" horiz-adv-x="1780" d="M114 0v1456h444l326 -1019h6l330 1019h446v-1456h-339v361l32 665l-6 1l-351 -1027h-228l-347 1018l-6 -1l32 -656v-361h-339z" />
<glyph unicode="N" horiz-adv-x="1444" d="M114 0v1456h339l533 -928l6 2v926h337v-1456h-337l-533 928l-6 -2v-926h-339z" />
<glyph unicode="O" horiz-adv-x="1400" d="M81 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-277 0 -449 174.5t-172 443.5zM418 597q0 -158 73.5 -258t210.5 -100q133 0 206 100t73 258v264q0 156 -73.5 256t-207.5 100q-137 0 -209.5 -99.5 t-72.5 -256.5v-264z" />
<glyph unicode="P" horiz-adv-x="1344" d="M114 0v1456h591q259 0 411 -132.5t152 -346.5q0 -215 -152 -346.5t-411 -131.5h-252v-499h-339zM453 759h252q110 0 167.5 60.5t57.5 155.5q0 97 -57.5 159t-167.5 62h-252v-437z" />
<glyph unicode="Q" horiz-adv-x="1451" d="M89 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -127 -40.5 -237t-115.5 -192l244 -236l-206 -167l-261 255q-55 -20 -114.5 -30.5t-122.5 -10.5q-277 0 -449 174.5t-172 443.5zM426 597q0 -158 73.5 -258t210.5 -100q133 0 206 100t73 258v264 q0 156 -73.5 256t-207.5 100q-137 0 -209.5 -99.5t-72.5 -256.5v-264z" />
<glyph unicode="R" horiz-adv-x="1352" d="M114 0v1456h560q253 0 401 -117t148 -320q0 -113 -59.5 -194t-175.5 -132q134 -38 192.5 -126.5t58.5 -220.5v-92q0 -57 17 -130t59 -104v-20h-348q-40 31 -52.5 110t-12.5 146v88q0 104 -55 159t-161 55h-233v-558h-339zM453 818h223q102 0 156 46.5t54 133.5 q0 89 -55.5 143.5t-156.5 54.5h-221v-378z" />
<glyph unicode="S" horiz-adv-x="1293" d="M74 462l2 6h329q0 -126 68 -180t206 -54q105 0 156.5 42t51.5 110q0 77 -51 119t-183 89q-276 87 -409 186.5t-133 287.5q0 183 158.5 296t402.5 113q242 -1 396 -125q150 -121 150 -308v-12l-2 -6h-328q0 87 -59 141.5t-163 54.5q-102 0 -160 -45t-58 -111 q0 -64 58.5 -102.5t219.5 -96.5q248 -74 373.5 -182t125.5 -297q0 -192 -149.5 -300.5t-396.5 -108.5q-248 1 -429 125q-176 121 -176 345v13z" />
<glyph unicode="T" horiz-adv-x="1153" d="M26 1196v260h1104v-260h-384v-1196h-339v1196h-381z" />
<glyph unicode="U" horiz-adv-x="1417" d="M107 502v954h339v-954q0 -134 69 -198.5t195 -64.5q125 0 192.5 64t67.5 199v954h339v-954q0 -249 -165.5 -386t-433.5 -137q-271 0 -437 137t-166 386z" />
<glyph unicode="V" horiz-adv-x="1305" d="M-1 1456h353l285 -1061l10 -53h6l10 49l289 1065h354l-472 -1456h-365z" />
<glyph unicode="W" horiz-adv-x="1819" d="M10 1456h328l191 -955h6l257 955h235l258 -955h6l191 955h327l-334 -1456h-318l-245 898h-6l-243 -898h-318z" />
<glyph unicode="X" horiz-adv-x="1307" d="M14 0l428 734l-417 722h387l236 -491l240 491h390l-417 -722l449 -734h-410l-248 501l-248 -501h-390z" />
<glyph unicode="Y" horiz-adv-x="1310" d="M-3 1456h365l289 -636h6l290 636h367l-495 -944v-512h-337v529z" />
<glyph unicode="Z" horiz-adv-x="1196" d="M64 1196v260h1073v-146l-654 -1050h663v-260h-1079v152l651 1044h-654z" />
<glyph unicode="[" horiz-adv-x="577" d="M108 -349v2055h456v-246h-118v-1564h118v-245h-456z" />
<glyph unicode="\" horiz-adv-x="871" d="M-16 1456h338l608 -1581h-339z" />
<glyph unicode="]" horiz-adv-x="577" d="M14 -104h119v1564h-119v246h456v-2055h-456v245z" />
<glyph unicode="^" horiz-adv-x="916" d="M36 729l299 727h249l300 -727h-254l-165 413l-4 18h-6l-4 -18l-162 -413h-253z" />
<glyph unicode="_" horiz-adv-x="904" d="M0 0h903v-251h-903v251z" />
<glyph unicode="`" horiz-adv-x="695" d="M74 1472l2 6h347l208 -266h-275z" />
<glyph unicode="a" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6v15q0 138 123 232q130 100 344 100q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66 q-48 -67 -116 -106.5t-165 -39.5q-154 0 -250.5 89t-96.5 237zM382 323q0 -46 31.5 -74.5t81.5 -28.5t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99z" />
<glyph unicode="b" d="M96 0v1560h338v-583q45 60 104.5 92.5t137.5 32.5q209 0 315.5 -153t106.5 -410v-21q0 -247 -106 -393t-314 -146q-89 0 -155 38.5t-112 110.5l-22 -128h-293zM434 308q24 -35 63 -52t96 -17q100 0 134 69.5t34 209.5v21q0 144 -36 223.5t-134 79.5q-55 0 -94.5 -20.5 t-62.5 -59.5v-454z" />
<glyph unicode="c" horiz-adv-x="1046" d="M45 529v23q0 243 133 396.5t377 153.5q206 0 329 -115q119 -111 119 -301v-12l-2 -6h-309q0 77 -34 125.5t-103 48.5q-96 0 -134.5 -79t-38.5 -211v-23q0 -136 38.5 -213t137.5 -77q68 0 101 37t33 109h309l2 -6v-11q-1 -170 -123 -278q-126 -112 -322 -111 q-246 0 -379.5 153t-133.5 397z" />
<glyph unicode="d" d="M51 518v21q0 253 110.5 408t311.5 155q75 0 135.5 -34.5t108.5 -98.5v591h338v-1560h-293l-24 133q-50 -75 -116.5 -114.5t-150.5 -39.5q-200 0 -310 148t-110 391zM389 518q0 -132 38.5 -205.5t129.5 -73.5q53 0 93.5 19.5t66.5 57.5v437q-26 43 -66 66t-92 23 q-90 0 -130 -83t-40 -220v-21z" />
<glyph unicode="e" horiz-adv-x="1083" d="M66 505v38q0 247 130 403q129 156 367 156h3q220 0 345 -132t125 -358v-177h-618l-2 -6q11 -83 68 -136.5t152 -53.5q96 0 153.5 15t145.5 52l80 -206q-71 -52 -183.5 -86.5t-241.5 -34.5q-239 0 -381.5 150t-142.5 376zM412 651l3 -5h291v26q0 82 -34 126t-106 44 q-73 0 -109.5 -52t-44.5 -139z" />
<glyph unicode="f" horiz-adv-x="743" d="M12 848v234h156v112q0 187 112 287t317 100q38 0 78 -5.5t89 -15.5l-25 -249q-27 5 -48.5 7.5t-52.5 2.5q-63 0 -97 -33t-34 -94v-112h210v-234h-210v-848h-339v848h-156z" />
<glyph unicode="g" d="M51 518v21q0 253 110 408t311 155q86 0 151 -40.5t112 -115.5l23 136h296v-1040q0 -217 -149 -348t-401 -131q-84 0 -176 23t-175 62l55 250q74 -32 141 -47.5t153 -15.5q104 0 159 56t55 153v55q-46 -59 -107 -89.5t-139 -30.5q-200 0 -309.5 148t-109.5 391zM388 518 q0 -132 38.5 -205.5t129.5 -73.5q55 0 94.5 17t65.5 52v454q-25 38 -64.5 59t-93.5 21q-90 0 -130 -83t-40 -220v-21z" />
<glyph unicode="h" d="M86 0v1560h338v-612q49 73 119.5 113.5t155.5 40.5q168 0 264 -117t96 -363v-622h-338v624q0 124 -37.5 171t-114.5 47q-49 0 -85 -14.5t-60 -40.5v-787h-338z" />
<glyph unicode="i" horiz-adv-x="561" d="M111 0v1082h339v-1082h-339zM111 1333v227h339v-227h-339z" />
<glyph unicode="j" horiz-adv-x="548" d="M-115 -420l14 255q29 -6 49.5 -9t51.5 -3q56 0 85.5 41t29.5 121v1097h339v-1097q0 -202 -108.5 -312t-301.5 -110q-44 0 -80.5 4t-78.5 13zM109 1334v226h339v-226h-339z" />
<glyph unicode="k" horiz-adv-x="1119" d="M96 0v1560h338v-875h45l231 397h387l-336 -489l389 -593h-385l-274 430h-57v-430h-338z" />
<glyph unicode="l" horiz-adv-x="561" d="M111 0v1560h339v-1560h-339z" />
<glyph unicode="m" horiz-adv-x="1764" d="M96 0v1082h318l12 -143q51 78 128.5 120.5t177.5 42.5q101 0 174 -44t110 -134q50 85 128.5 131.5t183.5 46.5q158 0 248.5 -108.5t90.5 -334.5v-659h-339v659q0 105 -32.5 144t-97.5 39q-49 0 -86.5 -17.5t-63.5 -48.5q0 -17 1 -29.5t1 -24.5v-722h-338v659 q0 105 -32 144t-99 39q-46 0 -83.5 -17.5t-63.5 -48.5v-776h-338z" />
<glyph unicode="n" d="M90 0v1082h317l13 -152q53 81 131 126.5t174 45.5q159 0 248.5 -103t89.5 -328v-671h-338v672q0 93 -38.5 131.5t-113.5 38.5q-47 0 -83.5 -17t-62.5 -47v-778h-337z" />
<glyph unicode="o" d="M51 530v21q0 244 138 397.5t385 153.5q248 0 386 -153.5t138 -397.5v-21q0 -245 -138 -398t-384 -153q-249 0 -387 153t-138 398zM389 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21q0 132 -43 211.5t-144 79.5q-100 0 -142.5 -80t-42.5 -211v-21z" />
<glyph unicode="p" d="M96 -416v1498h316l12 -119q46 67 108 103t144 36q201 0 311.5 -155t110.5 -408v-21q0 -244 -110 -391.5t-310 -147.5q-78 0 -138.5 30t-105.5 87v-512h-338zM434 308q24 -35 63.5 -52t97.5 -17q89 0 127.5 73.5t38.5 205.5v21q0 137 -40 220t-128 83q-57 0 -96.5 -21 t-62.5 -61v-452z" />
<glyph unicode="q" d="M51 518v21q0 253 110.5 408t311.5 155q85 0 150.5 -40.5t112.5 -115.5l27 136h293v-1498h-338v516q-46 -59 -107.5 -90t-139.5 -31q-200 0 -310 148t-110 391zM389 518q0 -132 38.5 -205.5t129.5 -73.5q56 0 96 17.5t65 52.5v450q-25 41 -64.5 62t-94.5 21 q-90 0 -130 -83t-40 -220v-21z" />
<glyph unicode="r" horiz-adv-x="757" d="M96 0v1082h318l12 -159q34 85 90 132t131 47q24 0 49 -3.5t44 -8.5l-33 -306l-123 1q-58 0 -95 -19.5t-55 -55.5v-710h-338z" />
<glyph unicode="s" horiz-adv-x="1048" d="M41 341l2 6h306q2 -77 46.5 -111t126.5 -34q68 0 103 26.5t35 75.5q0 40 -45.5 71.5t-165.5 56.5q-189 37 -285 115t-96 213q0 143 120 242.5t325 99.5q216 0 344 -96q122 -92 122 -236v-14l-2 -6h-328q0 64 -32.5 97t-104.5 33q-53 0 -89 -29t-36 -74q0 -43 41.5 -73 t167.5 -54q198 -39 293.5 -116.5t95.5 -219.5q0 -146 -129.5 -240.5t-342.5 -94.5q-221 0 -349 112q-123 107 -123 238v12z" />
<glyph unicode="t" horiz-adv-x="742" d="M7 848v234h152v269h337v-269h183v-234h-183v-496q0 -58 23.5 -83.5t63.5 -25.5q32 0 50.5 2t47.5 8l24 -250q-56 -13 -101 -18.5t-106 -5.5q-167 0 -253 89t-86 282v498h-152z" />
<glyph unicode="u" d="M88 422v660h337v-662q0 -91 34.5 -136t98.5 -45q54 0 95 15t70 45v783h338v-1082h-295l-21 128q-52 -72 -127.5 -110.5t-170.5 -38.5q-168 0 -263.5 108t-95.5 335z" />
<glyph unicode="v" horiz-adv-x="1053" d="M0 1082h356l145 -636l20 -115l6 -1l22 116l143 636h355l-352 -1082h-343z" />
<glyph unicode="w" horiz-adv-x="1485" d="M21 1082h312l119 -632h6l176 632h213l178 -627h6l117 627h312l-254 -1082h-286l-176 574h-6l-177 -574h-285z" />
<glyph unicode="x" horiz-adv-x="1053" d="M5 0l325 547l-315 535h377l132 -319h6l137 319h379l-314 -535l325 -547h-379l-144 329h-6l-144 -329h-379z" />
<glyph unicode="y" horiz-adv-x="1053" d="M-5 1082h359l161 -605l1 -8h6l179 613h360l-431 -1243q-50 -120 -129 -198t-251 -78q-44 0 -72 5.5t-88 20.5l41 241l21 -4.5t18 -1.5q80 0 117 23.5t55 70.5l27 70z" />
<glyph unicode="z" horiz-adv-x="1053" d="M65 0v188l481 634h-460v260h888v-182l-482 -640h492v-260h-919z" />
<glyph unicode="{" horiz-adv-x="665" d="M40 505v227q82 0 122 51.5t40 145.5v203q0 171 82.5 290.5t277.5 174.5l63 -176q-73 -29 -102 -103t-29 -186v-203q0 -104 -46 -184.5t-139 -125.5q93 -47 139 -127.5t46 -182.5v-203q0 -112 29 -186t102 -103l-63 -177q-195 55 -277.5 175t-82.5 291v203q0 92 -40 144 t-122 52z" />
<glyph unicode="|" horiz-adv-x="523" d="M172 -270v1726h184v-1726h-184z" />
<glyph unicode="}" horiz-adv-x="665" d="M41 -183q72 29 101.5 103t29.5 186v203q0 103 45.5 183.5t140.5 126.5q-95 45 -140.5 125.5t-45.5 184.5v203q0 112 -29.5 186t-101.5 103l63 176q194 -55 277 -174.5t83 -290.5v-203q0 -94 39.5 -145.5t122.5 -51.5v-227q-83 0 -122.5 -52t-39.5 -144v-203 q0 -171 -83 -291t-277 -175z" />
<glyph unicode="~" horiz-adv-x="1295" d="M94 435q0 175 87 288t226 113q81 0 156 -32.5t147 -96.5q43 -42 76.5 -60.5t72.5 -18.5q43 0 74.5 50t31.5 122l232 -31q0 -175 -88.5 -288.5t-226.5 -113.5q-83 0 -154 30.5t-146 99.5q-47 43 -79.5 61t-73.5 18q-43 0 -73.5 -50t-30.5 -121z" />
<glyph unicode="&#xa1;" horiz-adv-x="615" d="M141 -374v940h339v-940h-339zM141 799v283h339v-283h-339z" />
<glyph unicode="&#xa2;" horiz-adv-x="1210" d="M98 529v23q0 217 107 364t306 178v224h200v-225q162 -28 255.5 -138.5t91.5 -281.5l-3 -5h-310q0 77 -34 125.5t-103 48.5q-96 0 -134.5 -79t-38.5 -211v-23q0 -136 38.5 -213t137.5 -77q68 0 101 37t33 109h310l2 -5q3 -153 -93 -259.5t-253 -132.5v-233h-200v232 q-200 30 -306.5 177t-106.5 365z" />
<glyph unicode="&#xa3;" horiz-adv-x="1227" d="M103 575v261h154l-7 185q0 213 124.5 334.5t333.5 121.5q223 0 345 -115t118 -304l-2 -6h-330q0 85 -37.5 125t-94.5 40t-88 -51t-31 -145l9 -185h325v-261h-312l3 -51q0 -73 -34.5 -141t-98.5 -123h692v-260h-1006v260h10q47 12 70.5 86.5t23.5 156.5l-3 72h-164z" />
<glyph unicode="&#xa4;" horiz-adv-x="1397" d="M69 118l135 137q-49 76 -74.5 165.5t-25.5 187.5q0 101 28 194t81 171l-144 147l141 144l142 -145q74 55 162.5 85t185.5 30q96 0 185 -30.5t164 -86.5l144 148l142 -145l-148 -151q51 -78 79 -169.5t28 -191.5q0 -97 -25.5 -185.5t-72.5 -163.5l139 -141l-142 -145 l-132 134q-77 -62 -169 -94.5t-192 -32.5q-101 0 -193.5 32.5t-167.5 93.5l-129 -132zM290 608q0 -184 119 -309.5t291 -125.5q170 0 289.5 125.5t119.5 309.5q0 183 -119.5 308.5t-289.5 125.5q-172 0 -291 -125.5t-119 -308.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1258" d="M18 1456h367l243 -579h6l244 579h366l-366 -714h213v-210h-295v-100h295v-210h-295v-222h-337v222h-323v210h323v100h-323v210h249z" />
<glyph unicode="&#xa6;" horiz-adv-x="524" d="M119 -270v795h292v-795h-292zM119 698v758h292v-758h-292z" />
<glyph unicode="&#xa7;" horiz-adv-x="1301" d="M94 528q0 88 40 156.5t117 113.5q-71 52 -106 122.5t-35 169.5q0 175 145.5 281t388.5 106q249 0 389.5 -110.5t135.5 -309.5l-2 -6h-328q0 73 -51 119.5t-144 46.5q-99 0 -147 -35t-48 -90q0 -63 49.5 -96.5t209.5 -75.5q249 -62 368.5 -156.5t119.5 -263.5 q0 -90 -40 -157t-115 -111q69 -53 103.5 -123.5t34.5 -169.5q0 -180 -143.5 -281t-387.5 -101q-238 0 -395 98t-151 314l1 6h329q0 -87 60 -122t156 -35q94 0 143.5 32.5t49.5 87.5q0 56 -55 91.5t-207 79.5q-247 64 -366 157t-119 262zM431 568q0 -71 48.5 -107t210.5 -85 q33 -9 62 -17.5t56 -16.5q27 21 41.5 51.5t14.5 68.5q0 62 -56.5 102t-210.5 88q-31 8 -60.5 17t-56.5 19q-25 -21 -37 -51.5t-12 -68.5z" />
<glyph unicode="&#xa8;" horiz-adv-x="1123" d="M148 1252v204h290v-204h-290zM663 1252v204h290v-204h-290z" />
<glyph unicode="&#xa9;" horiz-adv-x="1608" d="M85 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -208 -533t-502 -217q-296 0 -503 217t-207 533zM207 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M432 669v119q0 173 94.5 280t254.5 107q157 0 245.5 -79.5t84.5 -228.5l-2 -6h-148q0 94 -45 136.5t-135 42.5q-94 0 -144 -69t-50 -182v-120q0 -115 50 -183.5t144 -68.5q90 0 134.5 41.5t44.5 137.5h148l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254.5 106t-94.5 281z " />
<glyph unicode="&#xaa;" horiz-adv-x="904" d="M108 920q0 111 84.5 171t246.5 60h137v51q0 62 -29.5 94.5t-86.5 32.5q-66 0 -102 -26t-36 -73l-165 13l-1 6q-6 98 79 163t225 65q134 0 212.5 -71t78.5 -205v-314q0 -51 6 -95t20 -86h-177q-8 21 -13 44.5t-8 49.5q-33 -47 -88.5 -77.5t-133.5 -30.5q-119 0 -184 61 t-65 167zM283 924q0 -43 29 -65.5t88 -22.5q51 0 105 30t71 65v103h-136q-74 0 -115.5 -32t-41.5 -78z" />
<glyph unicode="&#xab;" horiz-adv-x="1054" d="M55 541v19l272 390h206l-232 -400l232 -399h-206zM478 541v19l272 390h206l-232 -400l232 -399h-206z" />
<glyph unicode="&#xac;" horiz-adv-x="1124" d="M125 634v171h835v-431h-200v260h-635z" />
<glyph unicode="&#xad;" horiz-adv-x="921" d="M152 497v261h601v-261h-601z" />
<glyph unicode="&#xae;" horiz-adv-x="1608" d="M85 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -208 -533t-502 -217q-296 0 -503 217t-207 533zM207 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M500 316v850h281q151 0 238 -69t87 -195q0 -56 -27.5 -98.5t-79.5 -71.5q55 -31 79.5 -86.5t24.5 -130.5v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-155q-9 21 -11 61.5t-2 82.5v54q0 71 -33.5 105t-109.5 34h-158v-337h-151zM651 787h128q74 0 125.5 30t51.5 86q0 72 -39 101 t-136 29h-130v-246z" />
<glyph unicode="&#xaf;" horiz-adv-x="1065" d="M161 1285v173h734v-173h-734z" />
<glyph unicode="&#xb0;" horiz-adv-x="813" d="M125 1197q0 115 82.5 198t198.5 83q113 0 194 -83t81 -198q0 -116 -81 -196.5t-194 -80.5q-116 0 -198.5 80.5t-82.5 196.5zM280 1197q0 -53 37 -88.5t89 -35.5q51 0 86 35t35 89t-35 91t-86 37q-52 0 -89 -37t-37 -91z" />
<glyph unicode="&#xb1;" horiz-adv-x="1103" d="M84 723v271h311v339h293v-339h312v-271h-312v-368h-293v368h-311zM112 1v264h834v-264h-834z" />
<glyph unicode="&#xb2;" horiz-adv-x="856" d="M109 1215q-6 109 84.5 186.5t241.5 77.5q148 0 228.5 -65.5t80.5 -183.5q0 -84 -58.5 -150.5t-186.5 -166.5l-86 -73l2 -6h337v-167h-637v167l313 247q56 46 72 78t16 72q0 35 -21.5 58.5t-67.5 23.5q-49 0 -73 -28.5t-24 -75.5h-219z" />
<glyph unicode="&#xb3;" horiz-adv-x="846" d="M92 900l2 6h219q0 -41 28.5 -62.5t87.5 -21.5q48 0 78.5 21.5t30.5 63.5q0 45 -34.5 71.5t-98.5 26.5h-101v134h101q60 0 88.5 23t28.5 67q0 35 -24.5 59t-73.5 24t-74 -21t-25 -48h-218l-2 6q-6 105 83.5 167t227.5 62q154 0 245 -59.5t91 -169.5q0 -55 -35.5 -100.5 t-96.5 -70.5q71 -24 108.5 -71.5t37.5 -115.5q0 -113 -89 -174.5t-245 -61.5q-155 0 -250.5 65t-89.5 180z" />
<glyph unicode="&#xb4;" horiz-adv-x="762" d="M96 1212l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xb5;" horiz-adv-x="1313" d="M132 -416v1498h338v-620q0 -127 39.5 -173t123.5 -46q65 0 110 23t71 68v748h337v-1082h-317l-5 53q-43 -37 -96 -55.5t-114 -18.5q-43 0 -80 8.5t-69 25.5v-429h-338z" />
<glyph unicode="&#xb6;" horiz-adv-x="1113" d="M60 988q0 207 129.5 337.5t362.5 130.5h422v-1456h-339v520h-83q-233 0 -362.5 129.5t-129.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="657" d="M158 539v284h338v-284h-338z" />
<glyph unicode="&#xb8;" horiz-adv-x="569" d="M86 -136l31 146h256l-10 -61q64 -11 107 -52t43 -121q0 -114 -97 -181t-277 -67l-7 186q41 0 64.5 19t23.5 58q0 38 -30.5 53.5t-103.5 19.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="579" d="M112 1285v170l355 23v-812h-228v619h-127z" />
<glyph unicode="&#xba;" horiz-adv-x="938" d="M117 1026v116q0 148 94 241.5t252 93.5t252.5 -93.5t94.5 -241.5v-116q0 -149 -94 -241.5t-251 -92.5q-159 0 -253.5 92.5t-94.5 241.5zM292 1026q0 -85 44 -136.5t129 -51.5q82 0 126 51.5t44 136.5v116q0 83 -44.5 135t-127.5 52q-84 0 -127.5 -52t-43.5 -135v-116z " />
<glyph unicode="&#xbb;" horiz-adv-x="1054" d="M55 151l232 399l-232 400h207l272 -390v-19l-272 -390h-207zM490 151l232 399l-232 400h207l272 -390v-19l-272 -390h-207z" />
<glyph unicode="&#xbc;" horiz-adv-x="1441" d="M90 1283v170l355 23v-812h-228v619h-127zM204 196l711 1138l157 -79l-711 -1138zM673 271l423 527v3h230v-499h89v-168h-89v-134h-230v134h-407zM908 307l3 -5h185v234l-6 2l-14 -20z" />
<glyph unicode="&#xbd;" horiz-adv-x="1473" d="M69 1283v170l355 23v-812h-228v619h-127zM193 196l711 1138l157 -79l-711 -1138zM788 548q-6 109 84.5 186.5t241.5 77.5q148 0 228.5 -65.5t80.5 -183.5q0 -84 -58.5 -150.5t-186.5 -166.5l-86 -73l2 -6h337v-167h-637v167l313 247q56 46 72 78t16 72q0 35 -21.5 58.5 t-67.5 23.5q-49 0 -73 -28.5t-24 -75.5h-219z" />
<glyph unicode="&#xbe;" horiz-adv-x="1665" d="M71 901l2 6h219q0 -41 28.5 -62.5t87.5 -21.5q48 0 78.5 21.5t30.5 63.5q0 45 -34.5 71.5t-98.5 26.5h-101v134h101q60 0 88.5 23t28.5 67q0 35 -24.5 59t-73.5 24t-74 -21t-25 -48h-218l-2 6q-6 105 83.5 167t227.5 62q154 0 245 -59.5t91 -169.5q0 -55 -35.5 -100.5 t-96.5 -70.5q71 -24 108.5 -71.5t37.5 -115.5q0 -113 -89 -174.5t-245 -61.5q-155 0 -250.5 65t-89.5 180zM435 196l711 1138l157 -79l-711 -1138zM859 271l423 527v3h230v-499h89v-168h-89v-134h-230v134h-407zM1094 307l3 -5h185v234l-6 2l-14 -20z" />
<glyph unicode="&#xbf;" horiz-adv-x="1047" d="M55 49q0 124 74.5 229t189.5 166q63 41 86 89.5t23 132.5h338q-2 -140 -51 -210t-178 -160q-68 -43 -106 -105t-38 -142q0 -84 44.5 -134t129.5 -50q66 0 110.5 41t47.5 122h329l2 -6q2 -208 -133.5 -312.5t-355.5 -104.5q-240 0 -376 120t-136 324zM429 812v270h336 v-270h-336z" />
<glyph unicode="&#xc0;" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM270 1819l2 6h347l208 -266h-275zM504 543h309l-152 521h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM470 1561l206 266h348l2 -6l-280 -260h-276zM504 543h309l-152 521h-6z" />
<glyph unicode="&#xc2;" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM251 1587v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260zM504 543h309l-152 521h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM259 1652q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51q0 -96 -60 -164.5t-150 -68.5q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5zM504 543h309 l-152 521h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM245 1601v204h290v-204h-290zM504 543h309l-152 521h-6zM760 1601v204h290v-204h-290z" />
<glyph unicode="&#xc5;" horiz-adv-x="1300" d="M7 0l470 1456h363l471 -1456h-340l-83 283h-459l-82 -283h-340zM435 1741q0 81 62 137t153 56q89 0 150 -56t61 -137q0 -82 -61 -135.5t-150 -53.5q-92 0 -153.5 53.5t-61.5 135.5zM504 543h309l-152 521h-6zM556 1741q0 -42 26.5 -68t67.5 -26q40 0 64.5 25.5t24.5 68.5 t-24.5 69.5t-64.5 26.5q-41 0 -67.5 -26.5t-26.5 -69.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1926" d="M16 0l735 1456h1039v-264h-549l13 -316h455v-264h-444l15 -348h571v-264h-897l-14 329h-382l-152 -329h-390zM683 599h246l-20 473l-6 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1316" d="M80 576v304q0 264 162.5 430.5t422.5 166.5q276 0 422 -139t165 -395l-2 -6h-329q-7 142 -63.5 211t-192.5 69q-115 0 -181 -92.5t-66 -242.5v-306q0 -151 72 -244t198 -93q122 0 173 65t58 207h329l2 -6q-10 -256 -151.5 -391t-410.5 -135q-270 0 -439 166t-169 431z M497 -136l31 146h256l-10 -61q64 -11 107 -52t43 -121q0 -114 -97 -181t-277 -67l-7 186q41 0 64.5 19t23.5 58q0 38 -30.5 53.5t-103.5 19.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1165" d="M114 0v1456h1014v-260h-675v-313h571v-260h-571v-363h673v-260h-1012zM214 1819l2 6h347l208 -266h-275z" />
<glyph unicode="&#xc9;" horiz-adv-x="1165" d="M114 0v1456h1014v-260h-675v-313h571v-260h-571v-363h673v-260h-1012zM414 1561l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xca;" horiz-adv-x="1165" d="M114 0v1456h1014v-260h-675v-313h571v-260h-571v-363h673v-260h-1012zM195 1587v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260z" />
<glyph unicode="&#xcb;" horiz-adv-x="1165" d="M114 0v1456h1014v-260h-675v-313h571v-260h-571v-363h673v-260h-1012zM189 1601v204h290v-204h-290zM704 1601v204h290v-204h-290z" />
<glyph unicode="&#xcc;" horiz-adv-x="611" d="M-70 1819l2 6h347l208 -266h-275zM137 0v1456h337v-1456h-337z" />
<glyph unicode="&#xcd;" horiz-adv-x="611" d="M128 1561l206 266h348l2 -6l-280 -260h-276zM137 0v1456h337v-1456h-337z" />
<glyph unicode="&#xce;" horiz-adv-x="611" d="M-89 1587v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260zM137 0v1456h337v-1456h-337z" />
<glyph unicode="&#xcf;" horiz-adv-x="611" d="M-95 1601v204h290v-204h-290zM137 0v1456h337v-1456h-337zM420 1601v204h290v-204h-290z" />
<glyph unicode="&#xd0;" horiz-adv-x="1368" d="M25 647v191h119v618h526q257 0 430 -167.5t173 -429.5v-262q0 -263 -173 -430t-430 -167h-526v647h-119zM483 260h164q135 0 211 92.5t76 244.5v264q0 151 -76 243t-211 92h-164v-358h228v-191h-228v-387z" />
<glyph unicode="&#xd1;" horiz-adv-x="1444" d="M114 0v1456h339l533 -928l6 2v926h337v-1456h-337l-533 928l-6 -2v-926h-339zM334 1652q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51q0 -96 -60 -164.5t-150 -68.5q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5z " />
<glyph unicode="&#xd2;" horiz-adv-x="1400" d="M81 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-277 0 -449 174.5t-172 443.5zM323 1840l2 6h347l208 -266h-275zM418 597q0 -158 73.5 -258t210.5 -100q133 0 206 100t73 258v264q0 156 -73.5 256t-207.5 100 q-137 0 -209.5 -99.5t-72.5 -256.5v-264z" />
<glyph unicode="&#xd3;" horiz-adv-x="1400" d="M81 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-277 0 -449 174.5t-172 443.5zM418 597q0 -158 73.5 -258t210.5 -100q133 0 206 100t73 258v264q0 156 -73.5 256t-207.5 100q-137 0 -209.5 -99.5 t-72.5 -256.5v-264zM523 1582l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xd4;" horiz-adv-x="1400" d="M81 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-277 0 -449 174.5t-172 443.5zM304 1608v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260zM418 597q0 -158 73.5 -258t210.5 -100q133 0 206 100 t73 258v264q0 156 -73.5 256t-207.5 100q-137 0 -209.5 -99.5t-72.5 -256.5v-264z" />
<glyph unicode="&#xd5;" horiz-adv-x="1400" d="M81 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-277 0 -449 174.5t-172 443.5zM312 1673q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51q0 -96 -60 -164.5 t-150 -68.5q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5zM418 597q0 -158 73.5 -258t210.5 -100q133 0 206 100t73 258v264q0 156 -73.5 256t-207.5 100q-137 0 -209.5 -99.5t-72.5 -256.5v-264z" />
<glyph unicode="&#xd6;" horiz-adv-x="1400" d="M81 597v262q0 268 171.5 443t447.5 175q274 0 446 -175t172 -443v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-277 0 -449 174.5t-172 443.5zM298 1622v204h290v-204h-290zM418 597q0 -158 73.5 -258t210.5 -100q133 0 206 100t73 258v264q0 156 -73.5 256t-207.5 100 q-137 0 -209.5 -99.5t-72.5 -256.5v-264zM813 1622v204h290v-204h-290z" />
<glyph unicode="&#xd7;" horiz-adv-x="1083" d="M53 381l299 305l-299 306l193 183l293 -299l293 299l193 -183l-300 -306l300 -305l-193 -183l-293 298l-293 -298z" />
<glyph unicode="&#xd8;" horiz-adv-x="1416" d="M89 597v262q0 268 171.5 443t447.5 175q101 0 190.5 -26t163.5 -74l82 141h140l-127 -219q81 -84 125 -196.5t44 -243.5v-262q0 -269 -170.5 -443.5t-445.5 -174.5q-78 0 -149 15t-133 44l-77 -133h-140l112 194q-112 83 -173 212.5t-61 285.5zM426 597q0 -66 13 -123 t38 -97l6 -1l430 744q-37 46 -88.5 71.5t-116.5 25.5q-137 0 -209.5 -99.5t-72.5 -256.5v-264zM566 278q30 -20 66 -29.5t78 -9.5q133 0 206 100t73 258v264q0 31 -3.5 61.5t-9.5 52.5l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1417" d="M107 502v954h339v-954q0 -134 69 -198.5t195 -64.5q125 0 192.5 64t67.5 199v954h339v-954q0 -249 -165.5 -386t-433.5 -137q-271 0 -437 137t-166 386zM331 1819l2 6h347l208 -266h-275z" />
<glyph unicode="&#xda;" horiz-adv-x="1417" d="M107 502v954h339v-954q0 -134 69 -198.5t195 -64.5q125 0 192.5 64t67.5 199v954h339v-954q0 -249 -165.5 -386t-433.5 -137q-271 0 -437 137t-166 386zM531 1561l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xdb;" horiz-adv-x="1417" d="M107 502v954h339v-954q0 -134 69 -198.5t195 -64.5q125 0 192.5 64t67.5 199v954h339v-954q0 -249 -165.5 -386t-433.5 -137q-271 0 -437 137t-166 386zM312 1587v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260z" />
<glyph unicode="&#xdc;" horiz-adv-x="1417" d="M107 502v954h339v-954q0 -134 69 -198.5t195 -64.5q125 0 192.5 64t67.5 199v954h339v-954q0 -249 -165.5 -386t-433.5 -137q-271 0 -437 137t-166 386zM306 1601v204h290v-204h-290zM821 1601v204h290v-204h-290z" />
<glyph unicode="&#xdd;" horiz-adv-x="1310" d="M-3 1456h365l289 -636h6l290 636h367l-495 -944v-512h-337v529zM487 1561l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xde;" horiz-adv-x="1266" d="M116 0v1456h339v-258h198q266 0 413.5 -126.5t147.5 -333.5t-148 -333.5t-413 -126.5h-198v-278h-339zM455 538h198q112 0 167 56t55 142q0 87 -55 144.5t-167 57.5h-198v-400z" />
<glyph unicode="&#xdf;" horiz-adv-x="1330" d="M134 0v1112q0 226 134 347.5t377 121.5q190 0 317.5 -100.5t127.5 -279.5q0 -102 -47.5 -192.5t-47.5 -166.5q0 -43 138 -184t138 -281q0 -200 -120 -299t-357 -99q-80 0 -154.5 12.5t-113.5 35.5l59 256q36 -19 89.5 -31.5t121.5 -12.5q61 0 100 33t39 92 q0 65 -138.5 194.5t-138.5 268.5q0 96 47 190.5t47 169.5q0 53 -43 94t-97 41q-62 0 -101 -59t-39 -157v-1106h-338z" />
<glyph unicode="&#xe0;" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6q-7 148 123 247.5t344 99.5q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66q-48 -67 -116 -106.5 t-165 -39.5q-154 0 -250.5 89t-96.5 237zM161 1497l2 6h347l208 -266h-275zM382 323q0 -46 31.5 -74.5t81.5 -28.5t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99z" />
<glyph unicode="&#xe1;" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6q-7 148 123 247.5t344 99.5q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66q-48 -67 -116 -106.5 t-165 -39.5q-154 0 -250.5 89t-96.5 237zM361 1239l206 266h348l2 -6l-280 -260h-276zM382 323q0 -46 31.5 -74.5t81.5 -28.5t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99z" />
<glyph unicode="&#xe2;" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6q-7 148 123 247.5t344 99.5q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66q-48 -67 -116 -106.5 t-165 -39.5q-154 0 -250.5 89t-96.5 237zM142 1265v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260zM382 323q0 -46 31.5 -74.5t81.5 -28.5t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99z" />
<glyph unicode="&#xe3;" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6q-7 148 123 247.5t344 99.5q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66q-48 -67 -116 -106.5 t-165 -39.5q-154 0 -250.5 89t-96.5 237zM150 1330q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51q0 -96 -60 -164.5t-150 -68.5q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5zM382 323q0 -46 31.5 -74.5t81.5 -28.5 t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99z" />
<glyph unicode="&#xe4;" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6q-7 148 123 247.5t344 99.5q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66q-48 -67 -116 -106.5 t-165 -39.5q-154 0 -250.5 89t-96.5 237zM138 1279v204h290v-204h-290zM382 323q0 -46 31.5 -74.5t81.5 -28.5t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99zM653 1279v204h290v-204h-290z" />
<glyph unicode="&#xe5;" horiz-adv-x="1086" d="M45 305q0 161 120.5 248.5t366.5 87.5h123v77q0 69 -32.5 106t-100.5 37q-58 0 -86.5 -27.5t-28.5 -85.5l-327 1l-2 6q-7 148 123 247.5t344 99.5q200 0 324.5 -100t124.5 -286v-408q0 -87 14.5 -161t43.5 -147l-334 1q-14 26 -25.5 58t-19.5 66q-48 -67 -116 -106.5 t-165 -39.5q-154 0 -250.5 89t-96.5 237zM326 1419q0 81 62 137t153 56q89 0 150 -56t61 -137q0 -82 -61 -135.5t-150 -53.5q-92 0 -153.5 53.5t-61.5 135.5zM382 323q0 -46 31.5 -74.5t81.5 -28.5t92 20t68 52v169h-120q-80 0 -116.5 -39t-36.5 -99zM447 1419 q0 -42 26.5 -68t67.5 -26q40 0 64.5 25.5t24.5 68.5t-24.5 69.5t-64.5 26.5q-41 0 -67.5 -26.5t-26.5 -69.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1730" d="M41 324q0 159 132.5 245t386.5 86h158v46q0 66 -35 103.5t-99 37.5q-70 0 -109.5 -29t-39.5 -73l-328 18l-1 6q-7 147 126.5 242.5t355.5 95.5q97 0 179 -22.5t143 -66.5q61 43 140.5 66t176.5 23q211 0 334.5 -132.5t123.5 -357.5v-177h-619l-2 -6q4 -88 57.5 -139 t162.5 -51q88 0 148.5 16t136.5 51l81 -206q-66 -51 -178.5 -86t-233.5 -35q-125 0 -223.5 37.5t-166.5 107.5q-60 -64 -157 -104.5t-227 -40.5q-203 0 -313 92.5t-110 252.5zM378 320q0 -52 37 -80.5t113 -28.5q49 0 102.5 24t87.5 58v141q-1 4 -1 7.5v9.5h-155 q-87 0 -135.5 -38.5t-48.5 -92.5zM1062 651l2 -5h292v26q0 80 -34 125t-95 45q-86 0 -123.5 -50.5t-41.5 -140.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1046" d="M45 529v23q0 243 133 396.5t377 153.5q206 0 329 -115t119 -313l-2 -6h-309q0 77 -34 125.5t-103 48.5q-96 0 -134.5 -79t-38.5 -211v-23q0 -136 38.5 -213t137.5 -77q68 0 101 37t33 109h309l2 -6q4 -177 -122.5 -288.5t-322.5 -111.5q-246 0 -379.5 153t-133.5 397z M403 -136l31 146h256l-10 -61q64 -11 107 -52t43 -121q0 -114 -97 -181t-277 -67l-7 186q41 0 64.5 19t23.5 58q0 38 -30.5 53.5t-103.5 19.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1083" d="M66 505v38q0 247 129.5 403.5t370.5 155.5q220 0 345 -132t125 -358v-177h-618l-2 -6q11 -83 68 -136.5t152 -53.5q96 0 153.5 15t145.5 52l80 -206q-71 -52 -183.5 -86.5t-241.5 -34.5q-239 0 -381.5 150t-142.5 376zM163 1498l2 6h347l208 -266h-275zM412 651l3 -5h291 v26q0 82 -34 126t-106 44q-73 0 -109.5 -52t-44.5 -139z" />
<glyph unicode="&#xe9;" horiz-adv-x="1083" d="M66 505v38q0 247 129.5 403.5t370.5 155.5q220 0 345 -132t125 -358v-177h-618l-2 -6q11 -83 68 -136.5t152 -53.5q96 0 153.5 15t145.5 52l80 -206q-71 -52 -183.5 -86.5t-241.5 -34.5q-239 0 -381.5 150t-142.5 376zM363 1240l206 266h348l2 -6l-280 -260h-276z M412 651l3 -5h291v26q0 82 -34 126t-106 44q-73 0 -109.5 -52t-44.5 -139z" />
<glyph unicode="&#xea;" horiz-adv-x="1083" d="M66 505v38q0 247 129.5 403.5t370.5 155.5q220 0 345 -132t125 -358v-177h-618l-2 -6q11 -83 68 -136.5t152 -53.5q96 0 153.5 15t145.5 52l80 -206q-71 -52 -183.5 -86.5t-241.5 -34.5q-239 0 -381.5 150t-142.5 376zM144 1266v26l300 240h193l305 -244v-22h-265 l-137 126l-136 -126h-260zM412 651l3 -5h291v26q0 82 -34 126t-106 44q-73 0 -109.5 -52t-44.5 -139z" />
<glyph unicode="&#xeb;" horiz-adv-x="1083" d="M66 505v38q0 247 129.5 403.5t370.5 155.5q220 0 345 -132t125 -358v-177h-618l-2 -6q11 -83 68 -136.5t152 -53.5q96 0 153.5 15t145.5 52l80 -206q-71 -52 -183.5 -86.5t-241.5 -34.5q-239 0 -381.5 150t-142.5 376zM140 1280v204h290v-204h-290zM412 651l3 -5h291v26 q0 82 -34 126t-106 44q-73 0 -109.5 -52t-44.5 -139zM655 1280v204h290v-204h-290z" />
<glyph unicode="&#xec;" horiz-adv-x="584" d="M-82 1476l2 6h347l208 -266h-275zM123 0v1082h339v-1082h-339z" />
<glyph unicode="&#xed;" horiz-adv-x="584" d="M116 1218l206 266h348l2 -6l-280 -260h-276zM123 0v1082h339v-1082h-339z" />
<glyph unicode="&#xee;" horiz-adv-x="584" d="M-101 1246v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260zM123 0v1082h339v-1082h-339z" />
<glyph unicode="&#xef;" horiz-adv-x="584" d="M-107 1258v204h290v-204h-290zM123 0v1082h339v-1082h-339zM408 1258v204h290v-204h-290z" />
<glyph unicode="&#xf0;" horiz-adv-x="1226" d="M37 468q0 226 132 359.5t372 133.5q73 0 137.5 -19t113.5 -53l4 5q-20 67 -57.5 125.5t-87.5 106.5l-213 -116l-78 118l157 85v6q-30 15 -64 29t-69 25l107 244q90 -20 172.5 -55.5t154.5 -84.5l196 107l77 -118l-157 -86q111 -114 172.5 -267.5t61.5 -336.5v-63 q0 -279 -163.5 -456.5t-408.5 -177.5q-248 0 -403.5 140.5t-155.5 348.5zM374 468q0 -101 61.5 -165t164.5 -64q108 0 169 104.5t61 269.5v35q-33 31 -89.5 51.5t-130.5 20.5q-118 0 -177 -66.5t-59 -185.5z" />
<glyph unicode="&#xf1;" d="M90 0v1082h317l13 -152q53 81 131 126.5t174 45.5q159 0 248.5 -103t89.5 -328v-671h-338v672q0 93 -38.5 131.5t-113.5 38.5q-47 0 -83.5 -17t-62.5 -47v-778h-337zM188 1330q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51 q0 -96 -60 -164.5t-150 -68.5q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5z" />
<glyph unicode="&#xf2;" d="M51 530v21q0 244 138 397.5t385 153.5q248 0 386 -153.5t138 -397.5v-21q0 -245 -138 -398t-384 -153q-249 0 -387 153t-138 398zM198 1497l2 6h347l208 -266h-275zM389 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21q0 132 -43 211.5t-144 79.5 q-100 0 -142.5 -80t-42.5 -211v-21z" />
<glyph unicode="&#xf3;" d="M51 530v21q0 244 138 397.5t385 153.5q248 0 386 -153.5t138 -397.5v-21q0 -245 -138 -398t-384 -153q-249 0 -387 153t-138 398zM389 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21q0 132 -43 211.5t-144 79.5q-100 0 -142.5 -80t-42.5 -211v-21zM398 1239 l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xf4;" d="M51 530v21q0 244 138 397.5t385 153.5q248 0 386 -153.5t138 -397.5v-21q0 -245 -138 -398t-384 -153q-249 0 -387 153t-138 398zM179 1265v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260zM389 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21 q0 132 -43 211.5t-144 79.5q-100 0 -142.5 -80t-42.5 -211v-21z" />
<glyph unicode="&#xf5;" d="M51 530v21q0 244 138 397.5t385 153.5q248 0 386 -153.5t138 -397.5v-21q0 -245 -138 -398t-384 -153q-249 0 -387 153t-138 398zM187 1330q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51q0 -96 -60 -164.5t-150 -68.5 q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5zM389 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21q0 132 -43 211.5t-144 79.5q-100 0 -142.5 -80t-42.5 -211v-21z" />
<glyph unicode="&#xf6;" d="M51 530v21q0 244 138 397.5t385 153.5q248 0 386 -153.5t138 -397.5v-21q0 -245 -138 -398t-384 -153q-249 0 -387 153t-138 398zM173 1279v204h290v-204h-290zM389 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21q0 132 -43 211.5t-144 79.5 q-100 0 -142.5 -80t-42.5 -211v-21zM688 1279v204h290v-204h-290z" />
<glyph unicode="&#xf7;" horiz-adv-x="1166" d="M59 563v244h1044v-244h-1044zM413 158v246h339v-246h-339zM413 961v245h339v-245h-339z" />
<glyph unicode="&#xf8;" horiz-adv-x="1152" d="M51 530v21q0 244 138 397.5t385 153.5q47 0 91 -6.5t86 -18.5l69 142h177l-103 -212q99 -73 151.5 -191t52.5 -265v-21q0 -245 -138 -398t-384 -153q-47 0 -89.5 6t-81.5 17l-71 -147h-177l104 214q-103 72 -156.5 191.5t-53.5 269.5zM389 530q0 -47 4 -85t14 -63l6 -1 l220 452q-14 4 -28.5 6.5t-30.5 2.5q-100 0 -142.5 -80t-42.5 -211v-21zM524 245q11 -3 24 -4.5t28 -1.5q99 0 142 78t43 213v21q0 41 -4.5 76.5t-11.5 59.5l-6 1z" />
<glyph unicode="&#xf9;" d="M88 422v660h337v-662q0 -91 34.5 -136t98.5 -45q54 0 95 15t70 45v783h338v-1082h-295l-21 128q-52 -72 -127.5 -110.5t-170.5 -38.5q-168 0 -263.5 108t-95.5 335zM197 1476l2 6h347l208 -266h-275z" />
<glyph unicode="&#xfa;" d="M88 422v660h337v-662q0 -91 34.5 -136t98.5 -45q54 0 95 15t70 45v783h338v-1082h-295l-21 128q-52 -72 -127.5 -110.5t-170.5 -38.5q-168 0 -263.5 108t-95.5 335zM397 1218l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xfb;" d="M88 422v660h337v-662q0 -91 34.5 -136t98.5 -45q54 0 95 15t70 45v783h338v-1082h-295l-21 128q-52 -72 -127.5 -110.5t-170.5 -38.5q-168 0 -263.5 108t-95.5 335zM178 1246v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260z" />
<glyph unicode="&#xfc;" d="M88 422v660h337v-662q0 -91 34.5 -136t98.5 -45q54 0 95 15t70 45v783h338v-1082h-295l-21 128q-52 -72 -127.5 -110.5t-170.5 -38.5q-168 0 -263.5 108t-95.5 335zM172 1258v204h290v-204h-290zM687 1258v204h290v-204h-290z" />
<glyph unicode="&#xfd;" horiz-adv-x="1053" d="M-5 1082h359l161 -605l1 -8h6l179 613h360l-431 -1243q-50 -120 -129 -198t-251 -78q-44 0 -72 5.5t-88 20.5l41 241l21 -4.5t18 -1.5q80 0 117 23.5t55 70.5l27 70zM350 1218l206 266h348l2 -6l-280 -260h-276z" />
<glyph unicode="&#xfe;" horiz-adv-x="1149" d="M95 -416v1976h339v-583q45 60 104 92.5t137 32.5q201 0 311.5 -155t110.5 -408v-21q0 -244 -110 -391.5t-310 -147.5q-79 0 -139 29.5t-104 86.5v-95h-1v-416h-338zM434 307q24 -34 63.5 -51t96.5 -17q89 0 127.5 73.5t38.5 205.5v21q0 137 -40 220t-128 83 q-56 0 -95.5 -21t-62.5 -59v-455z" />
<glyph unicode="&#xff;" horiz-adv-x="1053" d="M-5 1082h359l161 -605l1 -8h6l179 613h360l-431 -1243q-50 -120 -129 -198t-251 -78q-44 0 -72 5.5t-88 20.5l41 241l21 -4.5t18 -1.5q80 0 117 23.5t55 70.5l27 70zM127 1258v204h290v-204h-290zM642 1258v204h290v-204h-290z" />
<glyph unicode="&#x152;" horiz-adv-x="1995" d="M93 576v304q0 265 173.5 431t453.5 166q69 0 140 -6t150 -15h923v-260h-675v-313h571v-260h-571v-363h673v-260h-921q-92 -10 -156.5 -15.5t-131.5 -5.5q-280 0 -454.5 166t-174.5 431zM430 576q0 -165 77 -251t215 -86q49 0 98.5 3t98.5 10v951q-52 6 -101.5 10t-97.5 4 q-138 0 -214 -85.5t-76 -249.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1845" d="M75 530v21q0 244 137.5 397.5t384.5 153.5q110 0 200 -32.5t157 -91.5q63 60 148.5 92t191.5 32q220 0 345 -132t125 -358v-177h-617l-2 -6q11 -83 67.5 -136.5t152.5 -53.5q95 0 152.5 15t145.5 52l80 -206q-70 -52 -182.5 -86.5t-241.5 -34.5q-109 0 -200 33t-159 95 q-67 -62 -158 -95t-203 -33q-248 0 -386 153t-138 398zM412 530q0 -136 42.5 -213.5t144.5 -77.5q99 0 142 78t43 213v21q0 132 -43 211.5t-144 79.5q-99 0 -142 -80t-43 -211v-21zM1141 651l3 -5h291v26q0 82 -34.5 126t-106.5 44t-108.5 -52t-44.5 -139z" />
<glyph unicode="&#x178;" horiz-adv-x="1310" d="M-3 1456h365l289 -636h6l290 636h367l-495 -944v-512h-337v529zM262 1601v204h290v-204h-290zM777 1601v204h290v-204h-290z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1033" d="M120 1252v26l300 240h193l305 -244v-22h-265l-137 126l-136 -126h-260z" />
<glyph unicode="&#x2dc;" horiz-adv-x="987" d="M111 1271q0 94 59.5 163.5t149.5 69.5q56 0 157.5 -41.5t153.5 -41.5q31 0 54.5 32t23.5 78l178 -51q0 -96 -60 -164.5t-150 -68.5q-70 0 -164.5 42t-146.5 42q-33 0 -55 -32.5t-22 -77.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="967" />
<glyph unicode="&#x2001;" horiz-adv-x="1934" />
<glyph unicode="&#x2002;" horiz-adv-x="967" />
<glyph unicode="&#x2003;" horiz-adv-x="1934" />
<glyph unicode="&#x2004;" horiz-adv-x="644" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="386" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="921" d="M152 497v261h601v-261h-601z" />
<glyph unicode="&#x2011;" horiz-adv-x="921" d="M152 497v261h601v-261h-601z" />
<glyph unicode="&#x2012;" horiz-adv-x="921" d="M152 497v261h601v-261h-601z" />
<glyph unicode="&#x2013;" horiz-adv-x="1412" d="M157 578v264h1085v-264h-1085z" />
<glyph unicode="&#x2014;" horiz-adv-x="1675" d="M126 578v264h1334v-264h-1334z" />
<glyph unicode="&#x2018;" horiz-adv-x="398" d="M35 1016v195l162 349h166l-60 -343v-201h-268z" />
<glyph unicode="&#x2019;" horiz-adv-x="398" d="M46 1016l60 351v193h268v-194l-162 -350h-166z" />
<glyph unicode="&#x201a;" horiz-adv-x="399" d="M35 -266l60 269v306h269v-292l-139 -283h-190z" />
<glyph unicode="&#x201c;" horiz-adv-x="739" d="M35 1016v195l162 349h166l-60 -343v-201h-268zM375 1016v195l162 349h166l-60 -343v-201h-268z" />
<glyph unicode="&#x201d;" horiz-adv-x="747" d="M37 1016l60 351v193h268v-194l-162 -350h-166zM383 1016l60 351v193h268v-194l-162 -350h-166z" />
<glyph unicode="&#x201e;" horiz-adv-x="733" d="M35 -216l60 236v288h246v-275l-162 -249h-144zM392 -216l60 244v280h246v-275l-162 -249h-144z" />
<glyph unicode="&#x2022;" horiz-adv-x="757" d="M134 706v107q0 106 69 173.5t183 67.5q118 0 186.5 -67t68.5 -174v-107q0 -107 -68.5 -172.5t-184.5 -65.5t-185 66t-69 172z" />
<glyph unicode="&#x2026;" horiz-adv-x="1587" d="M147 0v284h337v-284h-337zM636 0v284h337v-284h-337zM1124 0v284h337v-284h-337z" />
<glyph unicode="&#x202f;" horiz-adv-x="386" />
<glyph unicode="&#x2039;" horiz-adv-x="650" d="M108 541v19l272 390h206l-232 -400l232 -399h-206z" />
<glyph unicode="&#x203a;" horiz-adv-x="620" d="M76 151l232 399l-232 400h207l272 -390v-19l-272 -390h-207z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1130" d="M67 442v210h146v115h-146v210h146v13q0 202 154.5 344.5t405.5 142.5q60 0 117.5 -8t125.5 -23l-21 -264q-53 16 -109.5 25.5t-112.5 9.5q-105 0 -163 -67.5t-58 -157.5v-15h396v-210h-396v-115h396v-210h-396v-14q0 -79 57.5 -134t165.5 -55q57 0 112.5 8t107.5 25 l21 -262q-57 -15 -118 -23t-123 -8q-252 0 -407 131.5t-155 317.5v14h-146z" />
<glyph unicode="&#x2122;" horiz-adv-x="1298" d="M92 1340v116h406v-116h-121v-423h-168v423h-117zM564 913v543h180l100 -348h6l99 348h175v-543h-147v243l-6 1l-83 -244h-83l-88 260l-6 -1v-259h-147z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1304" d="M12 848v234h156v112q0 187 112 287t317 100q38 0 78 -5.5t89 -15.5l-25 -249q-27 5 -48.5 7.5t-52.5 2.5q-63 0 -97 -33t-34 -94v-112h210v-234h-210v-848h-339v848h-156zM854 0v1560h339v-1560h-339z" />
<glyph unicode="&#xfb03;" horiz-adv-x="2045" d="M12 848v234h156v112q0 187 112 287t317 100q38 0 78 -5.5t89 -15.5l-25 -249q-27 5 -48.5 7.5t-52.5 2.5q-63 0 -97 -33t-34 -94v-112h210v-234h-210v-848h-339v848h-156zM759 848v234h157v52q0 216 133 331.5t378 115.5q84 0 167 -15t185 -43l-46 -266q-86 22 -143.5 33 t-142.5 11q-93 0 -143 -43.5t-50 -123.5v-52h212v-234h-212v-848h-338v848h-157zM1595 0v1082h339v-1082h-339z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2047" d="M12 848v234h156v112q0 187 112 287t317 100q38 0 78 -5.5t89 -15.5l-25 -249q-27 5 -48.5 7.5t-52.5 2.5q-63 0 -97 -33t-34 -94v-112h210v-234h-210v-848h-339v848h-156zM755 848v234h156v112q0 187 112 287t317 100q38 0 78 -5.5t89 -15.5l-25 -249q-27 5 -48.5 7.5 t-52.5 2.5q-63 0 -97 -33t-34 -94v-112h210v-234h-210v-848h-339v848h-156zM1597 0v1560h339v-1560h-339z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-38" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="248" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="81" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="274" />
<hkern u1="F" u2="&#x201e;" k="274" />
<hkern u1="F" u2="&#x201a;" k="274" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="208" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="274" />
<hkern u1="F" u2="&#x2c;" k="274" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="52" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="297" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="33" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="50" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="84" />
<hkern u1="T" u2="&#xc6;" k="189" />
<hkern u1="T" u2="&#xbb;" k="146" />
<hkern u1="T" u2="&#xab;" k="148" />
<hkern u1="T" u2="w" k="47" />
<hkern u1="T" u2="r" k="65" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-24" />
<hkern u1="r" u2="f" k="-20" />
<hkern u1="t" u2="&#xf6;" k="30" />
<hkern u1="t" u2="&#xf5;" k="30" />
<hkern u1="t" u2="&#xf4;" k="30" />
<hkern u1="t" u2="&#xf3;" k="30" />
<hkern u1="t" u2="&#xf2;" k="30" />
<hkern u1="t" u2="o" k="30" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="81" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="81" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="81" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="81" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="81" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="81" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="m,n,p,ntilde" k="48" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="89" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="77" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="39" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="150" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="122" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="164" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="258" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="L" g2="T" k="205" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="24" />
<hkern g1="L" g2="V" k="206" />
<hkern g1="L" g2="W" k="93" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="279" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="14" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="123" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="178" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="404" />
<hkern g1="P" g2="X" k="51" />
<hkern g1="P" g2="Z" k="36" />
<hkern g1="P" g2="J" k="184" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="109" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="83" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="89" />
<hkern g1="T" g2="m,n,p,ntilde" k="89" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="79" />
<hkern g1="T" g2="s" k="76" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="65" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="82" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="258" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="272" />
<hkern g1="T" g2="J" k="216" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="215" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="157" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="143" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="156" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="150" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="63" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="231" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="152" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="17" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="20" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="173" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="167" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="40" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'robotoblack';
src: url('Roboto-Black-webfont.eot');
src: url('Roboto-Black-webfont.eot?#iefix') format('embedded-opentype'),
url('Roboto-Black-webfont.woff') format('woff'),
url('Roboto-Black-webfont.ttf') format('truetype'),
url('Roboto-Black-webfont.svg#robotoblack') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'robotoblack_italic';
}
</style>
<title>Roboto Black Italic Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Black Italic </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Black Italic</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,642 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotoblack_italic" horiz-adv-x="1083" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="486" />
<glyph unicode="&#xfb01;" horiz-adv-x="1237" d="M75 0l169 848h-143l46 234h144l11 52q46 230 192 338.5t386 108.5q74 0 153.5 -15.5t168.5 -42.5l-100 -266q-72 22 -125.5 33t-132.5 11t-136 -44t-72 -123l-11 -52h192l-46 -234h-193l-169 -848h-334zM714 0l216 1082h335l-216 -1082h-335z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="486" />
<glyph unicode=" " horiz-adv-x="486" />
<glyph unicode="&#x09;" horiz-adv-x="486" />
<glyph unicode="&#xa0;" horiz-adv-x="486" />
<glyph unicode="!" horiz-adv-x="547" d="M25 0l57 283h332l-57 -283h-332zM126 516l188 940h336l-188 -940h-336z" />
<glyph unicode="&#x22;" horiz-adv-x="623" d="M135 1042l36 235l46 283h225l-43 -269l-124 -249h-140zM457 1042l38 244l44 274h224l-43 -269l-124 -249h-139z" />
<glyph unicode="#" horiz-adv-x="1111" d="M34 410l37 183h231l93 264h-202l37 183h230l146 416h194l-146 -416h136l147 416h195l-147 -416h213l-37 -183h-240l-93 -264h211l-37 -183h-239l-144 -410h-195l144 410h-135l-144 -410h-195l144 410h-204zM497 593h136l93 264h-137z" />
<glyph unicode="$" horiz-adv-x="1118" d="M85 467h333q-21 -130 15 -181.5t112 -51.5q58 0 96 42.5t50 109.5q12 81 -13 123t-101 85q-206 95 -292 191t-55 283q27 175 150.5 282t305.5 124l34 211h155l-35 -216q158 -29 239 -151.5t52 -311.5h-334q18 113 -9 164.5t-85 51.5q-56 0 -92.5 -44.5t-46.5 -111.5 q-12 -71 12.5 -112.5t102.5 -86.5q201 -99 287.5 -197.5t57.5 -281.5q-30 -180 -147.5 -283.5t-294.5 -121.5l-32 -201h-156l32 202q-174 22 -276 140t-65 343z" />
<glyph unicode="%" horiz-adv-x="1424" d="M223 1099l15 77q27 138 121 219.5t243 81.5q138 0 204.5 -87t41.5 -214l-15 -77q-29 -138 -122 -218.5t-242 -80.5q-138 0 -205 86.5t-41 212.5zM240 188l889 1138l138 -79l-889 -1138zM435 1099q-11 -52 6.5 -84.5t63.5 -32.5q41 0 73 34t42 83l15 77q11 53 -6 86 t-63 33q-41 0 -73.5 -35t-42.5 -84zM697 280l15 77q27 137 122 218.5t244 81.5q138 0 204 -86.5t41 -213.5l-15 -77q-29 -139 -121.5 -219.5t-241.5 -80.5q-138 0 -206 86.5t-42 213.5zM910 280q-10 -50 11 -84t60 -34q51 0 77.5 32t37.5 86l15 77q10 52 -7.5 85t-61.5 33 q-42 0 -74.5 -35t-42.5 -83z" />
<glyph unicode="&#x26;" horiz-adv-x="1303" d="M50 391q19 121 87.5 199t205.5 175l3 2q-45 89 -63 164.5t-5 152.5q29 180 151.5 286.5t301.5 106.5q144 0 225 -103.5t58 -246.5q-16 -102 -71 -184t-139 -138l-86 -57l174 -270q38 54 64.5 117.5t37.5 132.5h234q-24 -147 -71 -262t-125 -204l169 -262h-371l-52 80 q-88 -51 -171 -76t-177 -25q-197 0 -303.5 115.5t-76.5 296.5zM388 414q-13 -79 19.5 -127t86.5 -48q37 0 77 9t80 27l-194 299l-3 -2q-27 -39 -43 -76.5t-23 -81.5zM567 1088q-7 -39 3.5 -77.5t36.5 -83.5l50 31q57 36 79.5 70t29.5 75q7 46 -13.5 80t-63.5 34 q-47 0 -80.5 -37t-41.5 -92z" />
<glyph unicode="'" horiz-adv-x="302" d="M127 985l42 270l49 305h214l-47 -292l-118 -283h-140z" />
<glyph unicode="(" horiz-adv-x="695" d="M135 564l5 28q64 405 244 667t384 340l6 -1l33 -158q-131 -94 -240 -304t-162 -542l-5 -32q-56 -347 -14 -548.5t146 -297.5l-85 -159h-6q-176 77 -272 347t-34 660z" />
<glyph unicode=")" horiz-adv-x="692" d="M-68 -284q129 95 239 304.5t164 541.5l5 32q55 346 12.5 547.5t-145.5 298.5l86 159h6q181 -76 284.5 -355t44.5 -652l-5 -28q-62 -389 -252 -659.5t-399 -347.5l-6 1z" />
<glyph unicode="*" horiz-adv-x="869" d="M154 1048l97 188l246 -130l48 350h196l-93 -350l4 -4l285 124l21 -190l-302 -90l135 -264l-181 -117l-97 293l-212 -283l-137 112l252 271z" />
<glyph unicode="+" horiz-adv-x="1023" d="M67 537l58 289h310l76 380h311l-76 -380h307l-58 -289h-307l-78 -391h-311l78 391h-310z" />
<glyph unicode="," horiz-adv-x="524" d="M-97 -326l130 327l51 253h289l-53 -262l-222 -318h-195z" />
<glyph unicode="-" horiz-adv-x="889" d="M167 497l53 261h568l-53 -261h-568z" />
<glyph unicode="." horiz-adv-x="598" d="M44 0l57 284h331l-57 -284h-331z" />
<glyph unicode="/" horiz-adv-x="674" d="M-137 -125l771 1581h235l-771 -1581h-235z" />
<glyph unicode="0" horiz-adv-x="1114" d="M111 575l61 306q62 314 215.5 455t378.5 141q205 0 310 -153.5t48 -442.5l-61 -306q-63 -315 -217 -455.5t-377 -140.5q-206 0 -311 153t-47 443zM425.5 306q22.5 -66 93.5 -60l6 -1q62 -5 114.5 68.5t86.5 240.5l70 350q35 178 12.5 244.5t-92.5 61.5l-6 1 q-63 4 -115.5 -69.5t-84.5 -237.5l-70 -350q-37 -182 -14.5 -248z" />
<glyph unicode="1" horiz-adv-x="1118" d="M273 1117l48 238l650 102l-291 -1457h-333l223 1117h-297z" />
<glyph unicode="2" horiz-adv-x="1118" d="M13 0l35 220l514 492q96 102 146 182t60 139q14 87 -14 135.5t-102 48.5q-62 0 -110 -65t-64 -164h-326l-2 6q29 210 178.5 346.5t364.5 136.5q219 0 331 -119t80 -322q-23 -144 -104 -245t-300 -314l-202 -211l3 -6h512l-42 -260h-958z" />
<glyph unicode="3" horiz-adv-x="1118" d="M45 398l3 6h327q-12 -73 26.5 -119t104.5 -46q74 0 129 50.5t67 125.5q17 110 -21.5 156.5t-127.5 46.5h-151l25 160l2 8l13 83h151q75 0 126 49.5t66 135.5q11 72 -19.5 117.5t-101.5 45.5q-53 0 -103 -38t-59 -98h-324l-1 6q23 181 172.5 285.5t343.5 104.5 q215 0 336 -109.5t90 -306.5q-17 -104 -87 -186.5t-175 -129.5q100 -45 148 -131t30 -206q-34 -208 -194 -318.5t-388 -110.5q-186 0 -315.5 108t-92.5 311z" />
<glyph unicode="4" horiz-adv-x="1118" d="M53 307l22 208l722 936l1 5h334l-177 -887h129l-53 -262h-129l-61 -307h-334l61 307h-515zM382 569h239l88 438l-6 3l-26 -32z" />
<glyph unicode="5" horiz-adv-x="1118" d="M72 398l2 5l331 21q-15 -90 18.5 -137.5t103.5 -47.5q75 0 119.5 65.5t60.5 162.5q19 125 -6.5 191.5t-107.5 66.5q-55 0 -96 -29.5t-60 -72.5l-298 17l209 816h806l-42 -262h-534l-81 -303q38 29 92.5 47t112.5 20q203 4 289 -124.5t49 -364.5q-34 -212 -178 -351 t-376 -139q-189 0 -318.5 116t-95.5 303z" />
<glyph unicode="6" horiz-adv-x="1118" d="M97 566l46 293q48 299 232 458.5t440 159.5q78 0 140.5 -15t131.5 -46l-94 -246q-62 21 -108.5 31.5t-109.5 10.5q-103 0 -182 -82.5t-103 -237.5l3 -5q47 45 116.5 70t153.5 25q174 0 255.5 -142t47.5 -358q-36 -224 -192 -363.5t-368 -139.5q-217 0 -335 158.5 t-74 428.5zM431 566q-27 -165 3.5 -246t112.5 -81q62 0 115 72.5t69 170.5q18 115 -10.5 178.5t-90.5 63.5q-59 0 -105.5 -17.5t-79.5 -49.5z" />
<glyph unicode="7" horiz-adv-x="1118" d="M173 1196l42 260h985l-42 -260q-244 -247 -353 -479.5t-194 -575.5l-37 -141h-334l36 141q76 312 215.5 579t346.5 476h-665z" />
<glyph unicode="8" horiz-adv-x="1118" d="M79 401q24 123 101 211.5t191 136.5q-81 50 -117.5 132.5t-15.5 185.5q41 208 182 309t348 101q190 0 297 -109t69 -301q-23 -116 -90.5 -198.5t-168.5 -128.5q90 -53 132 -140.5t21 -198.5q-43 -217 -191 -319.5t-366 -102.5q-199 0 -315.5 111t-76.5 311zM419 428 q-20 -93 8.5 -141t95.5 -48q60 0 110 51t68 138q18 94 -10.5 140.5t-94.5 46.5q-61 0 -111 -50.5t-66 -136.5zM570 1049q-18 -86 2 -130t78 -44q53 0 92 47t56 127q16 84 -4 126t-78 42q-53 0 -92 -45t-54 -123z" />
<glyph unicode="9" horiz-adv-x="1118" d="M143 42l72 241q61 -23 117.5 -33.5t128.5 -10.5q85 0 156.5 73.5t92.5 199.5l8 52q-52 -54 -114.5 -81.5t-127.5 -27.5q-179 0 -265 136t-49 366q36 225 192 372.5t369 147.5q199 0 311 -160.5t68 -435.5l-55 -346q-43 -262 -217.5 -409t-409.5 -147q-66 0 -140.5 17 t-136.5 46zM496 957q-20 -124 2.5 -191.5t90.5 -67.5q46 0 88 19.5t74 52.5l25 153q23 149 -4.5 221.5t-90.5 72.5q-64 0 -116.5 -80t-68.5 -180z" />
<glyph unicode=":" horiz-adv-x="598" d="M46 0l57 284h331l-57 -284h-331zM206 798l57 284h331l-57 -284h-331z" />
<glyph unicode=";" horiz-adv-x="564" d="M-55 -326l130 327l51 253h289l-53 -262l-222 -318h-195zM190 798l57 284h331l-57 -284h-331z" />
<glyph unicode="&#x3c;" horiz-adv-x="980" d="M42 410l34 168l19 98l898 360l-61 -306l-549 -185v-6l474 -182l-61 -307z" />
<glyph unicode="=" horiz-adv-x="1125" d="M97 293l52 260h867l-52 -260h-867zM184 732l52 260h867l-52 -260h-867z" />
<glyph unicode="&#x3e;" horiz-adv-x="986" d="M33 50l61 307l544 185v6l-469 182l61 306l749 -360l-34 -169l-19 -97z" />
<glyph unicode="?" horiz-adv-x="990" d="M142 1060q40 208 189.5 312.5t360.5 104.5t324 -122t74 -322q-27 -133 -115 -233t-210 -162q-68 -42 -99 -90.5t-48 -131.5h-328l-3 5q26 135 87 204t204 161q68 42 114.5 104t63.5 143q17 89 -12.5 136.5t-103.5 47.5q-53 0 -103 -42t-67 -121h-326zM202 0l54 270h330 l-54 -270h-330z" />
<glyph unicode="@" horiz-adv-x="1686" d="M50 478q102 429 376 680.5t645 251.5q339 0 496.5 -243t61.5 -647q-53 -221 -200 -381t-378 -160q-72 0 -118.5 47t-54.5 131q-54 -87 -120 -130.5t-142 -43.5q-130 0 -185 120.5t3 312.5q74 251 216.5 402t302.5 151q106 0 177 -27.5t140 -78.5l-4 -4h5l-160 -566 q-22 -88 -16 -120t30 -24l6 -2q90 -5 175.5 104t125.5 269q82 339 -16.5 528.5t-382.5 189.5q-260 0 -472.5 -207t-295.5 -553q-84 -343 23.5 -542t384.5 -199q73 0 164.5 19t156.5 46l4 -166q-72 -42 -173 -65.5t-193 -23.5q-353 0 -517 253t-65 678zM657 235 q11 -62 63 -62q44 0 87.5 30t88.5 111l128 455q-16 4 -33.5 6.5t-36.5 2.5q-88 0 -156.5 -92t-119.5 -270q-32 -119 -21 -181z" />
<glyph unicode="A" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM511 543h265l-32 487l-6 1z" />
<glyph unicode="B" horiz-adv-x="1239" d="M20 0l291 1456h473q240 0 370 -102q100 -79 101 -213q0 -40 -9 -85q-23 -110 -83 -189.5t-164 -118.5q113 -29 151 -116q24 -54 24 -120q0 -39 -8 -81q-46 -226 -197.5 -328.5t-409.5 -102.5h-539zM407 260h204q89 0 147 43.5t76 129.5q7 40 7 71q1 48 -17 76 q-30 46 -122 45h-222zM524 849h143q95 2 157 45.5t80 123.5q6 31 6 56q0 54 -28 82q-42 40 -150 40h-138z" />
<glyph unicode="C" horiz-adv-x="1233" d="M105 576l61 304q57 286 221.5 441.5t407.5 155.5q247 0 381 -144q107 -115 108 -297q0 -45 -7 -94l-2 -5h-327q9 51 9 93q0 73 -27 117q-42 70 -165 70q-92 0 -163.5 -92.5t-101.5 -242.5l-61 -306q-14 -71 -15 -127q0 -73 24 -123q42 -88 155 -87q102 0 164 67t94 205 h325l3 -6q-61 -260 -208 -393t-397 -133q-241 -1 -386 169q-107 125 -107 298q0 62 14 130z" />
<glyph unicode="D" horiz-adv-x="1254" d="M20 0l291 1456h461q228 0 378 -176q112 -131 112 -307q0 -59 -13 -124l-53 -262q-56 -283 -227.5 -435t-413.5 -152h-535zM407 260h177q108 0 177 86t100 241l53 264q10 53 10 99q0 90 -40 152q-62 94 -187 94h-103z" />
<glyph unicode="E" horiz-adv-x="1093" d="M20 0l291 1456h952l-52 -260h-617l-63 -313h521l-52 -260h-521l-72 -363h615l-52 -260h-950z" />
<glyph unicode="F" horiz-adv-x="1105" d="M20 0l291 1456h961l-52 -260h-626l-70 -350h531l-52 -260h-531l-117 -586h-335z" />
<glyph unicode="G" horiz-adv-x="1268" d="M111 576l61 304q56 281 239.5 439t429.5 158q247 0 361 -133q92 -108 92 -272q0 -39 -5 -81l-2 -5h-315q1 18 1 34q0 90 -32 139q-38 58 -141 58q-95 0 -180.5 -95t-114.5 -240l-61 -306q-14 -70 -14 -126q0 -74 24 -124q44 -87 158 -87q75 0 126 15t84 40l46 230h-198 l45 224h533l-110 -547q-89 -89 -233.5 -155.5t-344.5 -66.5q-236 0 -368 169q-96 121 -96 289q0 66 15 139z" />
<glyph unicode="H" horiz-adv-x="1353" d="M20 0l291 1456h335l-122 -610h474l122 610h333l-291 -1456h-333l117 586h-474l-117 -586h-335z" />
<glyph unicode="I" horiz-adv-x="584" d="M40 0l291 1456h333l-291 -1456h-333z" />
<glyph unicode="J" horiz-adv-x="1119" d="M61 431l2 5h327q-9 -46 -9 -80q0 -49 19 -74q33 -43 100 -43q55 0 110.5 58t76.5 160l200 999h333l-200 -999q-47 -235 -205 -356.5t-367 -121.5t-322 116q-79 81 -79 214q0 56 14 122z" />
<glyph unicode="K" horiz-adv-x="1197" d="M25 0l291 1456h335l-115 -576h103l334 576h441l-525 -718l250 -738h-385l-174 578h-105l-115 -578h-335z" />
<glyph unicode="L" horiz-adv-x="1045" d="M20 0l291 1456h335l-239 -1196h575l-52 -260h-910z" />
<glyph unicode="M" horiz-adv-x="1667" d="M20 0l291 1456h439l81 -1017l6 -1l491 1018h440l-291 -1456h-335l72 361l155 624l-6 2l-504 -987h-225l-107 978h-6l-94 -617l-72 -361h-335z" />
<glyph unicode="N" horiz-adv-x="1353" d="M20 0l291 1456h335l288 -894l6 1l179 893h334l-291 -1456h-334l-288 894l-6 -1l-179 -893h-335z" />
<glyph unicode="O" horiz-adv-x="1315" d="M111 597l53 262q58 290 232 454t433 164q244 1 395 -179q113 -134 113 -313q0 -60 -13 -126l-53 -262q-58 -289 -236.5 -453.5t-437.5 -164.5q-244 1 -391 179q-109 132 -109 308q0 63 14 131zM444 597q-12 -60 -13 -112q1 -88 37 -149q56 -97 181 -97q107 0 182 99 t107 259l53 264q11 55 11 102q0 91 -40 156q-62 98 -185 98q-109 0 -178.5 -97t-101.5 -259z" />
<glyph unicode="P" horiz-adv-x="1268" d="M20 0l291 1456h559q228 0 352 -134q93 -101 93 -244q0 -48 -11 -101q-46 -228 -211.5 -353t-413.5 -125h-225l-99 -499h-335zM506 759h225q90 0 155 61.5t84 154.5q7 36 7 66q0 57 -24 95q-37 60 -135 60h-224z" />
<glyph unicode="Q" horiz-adv-x="1366" d="M119 597l53 262q58 290 232 454t433 164q244 0 395 -179q113 -135 113 -313q0 -61 -13 -126l-53 -262q-28 -138 -84.5 -249t-137.5 -191l175 -225l-237 -167l-186 244q-50 -14 -101 -22t-103 -8q-244 0 -391 179q-109 131 -109 308q0 63 14 131zM452 597 q-12 -60 -12 -112q0 -88 36 -149q56 -97 181 -97q107 0 182 99t107 259l53 264q11 55 11 102q0 92 -40 156q-62 98 -185 98q-109 0 -178.5 -97t-101.5 -259z" />
<glyph unicode="R" horiz-adv-x="1268" d="M20 0l291 1456h528q223 0 345 -119q93 -90 92 -227q0 -43 -9 -91q-25 -122 -95.5 -200.5t-191.5 -127.5q112 -40 152 -130q25 -56 25 -125q0 -43 -9 -90l-18 -92q-11 -52 -10 -115v-16q2 -72 34 -103l-4 -20h-344q-27 27 -27 91v17q4 76 18 148l18 88q8 42 8 76 q0 54 -22 86q-36 52 -131 52h-203l-111 -558h-336zM519 818h196q79 0 138.5 47.5t76.5 132.5q6 31 6 58q0 54 -24 88q-36 52 -125 52h-192z" />
<glyph unicode="S" horiz-adv-x="1191" d="M100 425l2 6h325q-6 -29 -6 -54q1 -67 47 -97q64 -41 160 -41q60 0 115.5 35.5t66.5 88.5q5 26 5 48q0 55 -30 85q-42 42 -169 98q-240 85 -354 202q-87 89 -87 213q0 39 9 82q37 184 193.5 285t374.5 101q228 0 356 -120q95 -89 95 -225q0 -48 -12 -101l-3 -6h-325 q5 24 5 45q0 57 -34 95q-46 52 -134 52q-62 0 -116 -36.5t-64 -87.5q-4 -22 -5 -40q0 -53 36 -81q48 -38 214 -105q216 -77 316 -195q72 -85 73 -208q0 -47 -11 -99q-39 -192 -192 -289t-375 -97q-220 -1 -374 109q-115 82 -115 231q0 49 13 106z" />
<glyph unicode="T" horiz-adv-x="1077" d="M181 1196l52 260h1026l-52 -260h-347l-239 -1196h-335l239 1196h-344z" />
<glyph unicode="U" horiz-adv-x="1331" d="M114 502l191 954h335l-191 -954q-11 -54 -11 -96q0 -69 30 -107q48 -60 162 -60q105 0 180 65t101 198l191 954h335l-191 -954q-53 -266 -231 -394.5t-437 -128.5q-240 0 -376 139q-100 102 -101 262q0 57 13 122z" />
<glyph unicode="V" horiz-adv-x="1229" d="M165 1456h348l81 -1061l1 -45l6 -1l15 42l425 1065h350l-667 -1456h-361z" />
<glyph unicode="W" horiz-adv-x="1699" d="M174 1456h324l22 -905l6 -1l371 906h231l83 -907h6l312 907h322l-539 -1456h-314l-80 853h-6l-350 -853h-314z" />
<glyph unicode="X" horiz-adv-x="1231" d="M-55 0l509 734l-266 722h382l122 -483l6 -1l282 484h386l-498 -722l295 -734h-405l-132 493l-6 1l-289 -494h-386z" />
<glyph unicode="Y" horiz-adv-x="1234" d="M205 1456h361l131 -613l6 -1l377 614h362l-645 -941l-103 -515h-333l107 533z" />
<glyph unicode="Z" horiz-adv-x="1093" d="M-5 152l720 1044h-487l52 260h910l-29 -146l-723 -1050h577l-52 -260h-954z" />
<glyph unicode="[" horiz-adv-x="556" d="M-26 -349l329 2055h437l-39 -246h-102l-251 -1564h102l-39 -245h-437z" />
<glyph unicode="\" horiz-adv-x="827" d="M191 1456h334l249 -1581h-335z" />
<glyph unicode="]" horiz-adv-x="556" d="M-106 -349l39 245h103l251 1564h-103l39 246h436l-329 -2055h-436z" />
<glyph unicode="^" horiz-adv-x="867" d="M96 729l423 727h245l134 -727h-250l-67 413v4l-6 1l-2 -5l-228 -413h-249z" />
<glyph unicode="_" horiz-adv-x="855" d="M-130 -251l50 251h844l-50 -251h-844z" />
<glyph unicode="`" horiz-adv-x="667" d="M237 1473l2 5h341l151 -266h-270z" />
<glyph unicode="a" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q6 32 6 56q0 33 -11 53q-19 34 -76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279 -102q75 -75 76 -193q0 -43 -10 -91l-81 -408q-20 -96 -20 -168q0 -68 14 -140l-330 1 q-8 27 -13 57.5t-6 63.5q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 1 -211 91q-56 66 -56 160q0 35 8 75zM357 323q-4 -17 -4 -31q0 -27 14 -45q21 -27 63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5z" />
<glyph unicode="b" d="M4 0l312 1560h334l-111 -554q48 46 102.5 71t114.5 25q182 0 264 -166q51 -103 51 -239q0 -83 -19 -178l-4 -21q-54 -264 -167 -391.5t-310 -127.5q-78 0 -139 33t-99 95l-39 -107h-290zM393 278q16 -21 46 -30t77 -9q83 0 127.5 63.5t71.5 195.5l4 21q23 118 23 193 q0 26 -3 48q-11 82 -97 82q-44 0 -84 -27t-72 -75z" />
<glyph unicode="c" horiz-adv-x="983" d="M58 529l3 23q40 252 187.5 401t379.5 149q188 0 288 -116q75 -86 74 -217q0 -45 -9 -96l-3 -5h-306q5 32 5 59q1 41 -11 69q-18 46 -79 46q-79 0 -126 -80t-67 -210l-3 -23q-12 -77 -13 -134q0 -48 10 -82q20 -74 105 -74q57 0 89.5 37t44.5 109h304l2 -6 q-26 -185 -159.5 -292.5t-321.5 -107.5q-222 1 -328 155q-77 113 -77 271q0 59 11 124z" />
<glyph unicode="d" d="M70 538l4 21q53 270 172.5 406.5t310.5 136.5q65 0 120 -30t95 -84l114 572h334l-312 -1560h-289l2 109q-57 -63 -121 -96.5t-131 -33.5q-175 0 -261 161q-56 104 -55 239q0 74 17 159zM390 316q15 -76 95 -77q41 0 82 26t75 72l89 448q-16 29 -45.5 43t-71.5 14 q-73 0 -126.5 -76.5t-78.5 -206.5l-4 -21q-20 -97 -20 -164q0 -32 5 -58z" />
<glyph unicode="e" horiz-adv-x="1021" d="M76 505l6 38q40 257 184 409q143 151 370 150h3q199 0 299 -133q74 -98 73 -247q0 -52 -9 -110l-28 -177h-565l-2 -5q-1 -9 -1 -18q0 -72 37 -120q41 -52 128 -53q83 0 141 15.5t145 51.5l45 -206q-74 -52 -185.5 -86.5t-232.5 -34.5q-216 0 -330 151q-86 115 -87 271 q0 50 9 104zM440 651l3 -5h238l5 26q5 34 5 61q0 42 -12 67q-20 42 -81 42t-99.5 -52t-58.5 -139z" />
<glyph unicode="f" horiz-adv-x="708" d="M70 0l169 848h-142l46 234h143l23 112q39 198 162.5 292.5t323.5 94.5q34 0 72.5 -6t81.5 -15l-74 -249q-24 5 -43.5 7.5t-47.5 2.5q-52 0 -90.5 -33.5t-49.5 -93.5l-23 -112h190l-46 -234h-191l-169 -848h-335z" />
<glyph unicode="g" horiz-adv-x="1082" d="M-13 -352l104 250q61 -32 121 -47.5t139 -15.5q86 0 148.5 57t82.5 152l5 27q-50 -45 -104.5 -68.5t-114.5 -23.5q-174 0 -260 161q-54 103 -54 237q0 76 17 161l4 21q53 270 172 406.5t309 136.5q75 0 135 -35.5t98 -99.5l42 115h293l-208 -1040q-46 -231 -209.5 -355 t-407.5 -124q-74 0 -159 23.5t-153 61.5zM389 316q15 -77 95 -77q44 0 83 22.5t71 64.5l93 467q-15 25 -44.5 37t-73.5 12q-73 0 -126.5 -76.5t-78.5 -206.5l-4 -21q-20 -97 -20 -164q0 -33 5 -58z" />
<glyph unicode="h" d="M-6 0l312 1560h334l-119 -596q58 67 128 102.5t147 35.5q148 0 218 -119q42 -71 42 -185q0 -78 -20 -176l-124 -622h-334l125 624q14 71 14 117q-1 39 -11 59q-22 42 -92 42q-38 0 -70 -13.5t-58 -38.5l-158 -790h-334z" />
<glyph unicode="i" horiz-adv-x="541" d="M18 0l216 1082h335l-216 -1082h-335zM285 1333l45 227h335l-45 -227h-335z" />
<glyph unicode="j" horiz-adv-x="527" d="M-268 -420l64 255q27 -6 45 -9t47 -3q47 0 81 42t50 120l219 1097h335l-219 -1097q-44 -216 -165 -319t-309 -103q-38 0 -74.5 4t-73.5 13zM283 1334l45 226h336l-45 -226h-336z" />
<glyph unicode="k" horiz-adv-x="1061" d="M4 0l312 1560h334l-175 -875h36l276 397h375l3 -5l-398 -481l236 -596h-380l-156 430h-43l-86 -430h-334z" />
<glyph unicode="l" horiz-adv-x="541" d="M18 0l312 1560h335l-312 -1560h-335z" />
<glyph unicode="m" horiz-adv-x="1645" d="M5 0l216 1082h314l-14 -130q61 73 139 111.5t171 38.5q83 0 142 -42.5t79 -127.5q62 83 143.5 126.5t180.5 43.5q138 0 204 -110q40 -66 40 -174q0 -71 -18 -159l-132 -659h-336l132 659q12 61 12 100q0 32 -8 48q-18 35 -76 35q-38 0 -73 -17t-64 -47q-2 -14 -4.5 -28 t-4.5 -28l-144 -722h-334l132 659q12 61 12 100q0 32 -8 48q-18 35 -78 35q-35 0 -69 -16.5t-64 -46.5l-156 -779h-334z" />
<glyph unicode="n" d="M-2 0l216 1082h314l-17 -140q64 77 144 118.5t168 41.5q137 0 204 -105q40 -63 41 -169q0 -69 -18 -157l-134 -671h-334l134 672q9 44 9 75q0 39 -14 59q-25 36 -92 36q-36 0 -70 -16.5t-62 -45.5l-156 -780h-333z" />
<glyph unicode="o" d="M65 530l3 21q40 253 191 402t387 149q224 0 332 -155q80 -115 81 -277q0 -57 -10 -119l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-225 1 -334 155q-80 114 -80 275q0 57 10 121zM398 314q22 -74 112 -75q82 0 131 78.5t71 212.5l3 21q11 69 11 123t-11 92 q-22 76 -110 76q-83 0 -133 -80.5t-70 -210.5l-3 -21q-12 -73 -12 -129q0 -51 11 -87z" />
<glyph unicode="p" d="M-79 -416l299 1498h313l-9 -91q51 53 109.5 82t122.5 29q175 0 260 -168q54 -107 54 -245q0 -80 -18 -170l-4 -21q-53 -260 -170 -389.5t-307 -129.5q-68 0 -123.5 25.5t-93.5 74.5l-99 -495h-334zM393 277q16 -20 46.5 -29t77.5 -9q74 0 123 66.5t75 192.5l4 21 q19 99 19 170q0 37 -5 67q-15 86 -90 86q-44 0 -84.5 -27.5t-73.5 -76.5z" />
<glyph unicode="q" d="M70 538l4 21q53 270 172.5 406.5t310.5 136.5q73 0 132 -38t98 -105l49 123h289l-299 -1498h-334l99 496q-51 -49 -107 -75t-115 -26q-174 0 -261 161q-55 104 -55 239q0 74 17 159zM390 316q15 -77 95 -77q44 0 83.5 23t71.5 66l93 464q-15 25 -44.5 37.5t-74.5 12.5 q-73 0 -126.5 -76.5t-78.5 -206.5l-4 -21q-20 -97 -20 -164q0 -33 5 -58z" />
<glyph unicode="r" horiz-adv-x="719" d="M4 0l216 1082h315l-18 -138l5 -3q42 78 99.5 119.5t124.5 41.5q21 0 45.5 -3.5t40.5 -8.5l-93 -306l-119 1q-46 0 -81 -19t-59 -54l-142 -712h-334z" />
<glyph unicode="s" horiz-adv-x="987" d="M24 341l2 6h303q-3 -20 -2 -38q0 -49 22 -73q31 -34 104 -34q55 0 90 27t43 75q1 6 1 12q0 34 -30 60q-35 31 -139 56q-169 37 -247 115q-61 61 -61 156q0 27 5 57q23 148 151 245t323 97q196 0 305 -98q86 -77 86 -187q0 -29 -6 -61l-2 -6h-326q3 21 3 39q0 37 -14 59 q-21 32 -82 32q-41 0 -77.5 -29.5t-43.5 -73.5q-1 -8 -1 -15q1 -34 27 -58q32 -30 141 -54q179 -38 255 -116q59 -60 59 -158q0 -29 -5 -62q-25 -152 -160 -243.5t-339 -91.5q-198 0 -305 113q-85 90 -85 195q0 27 5 54z" />
<glyph unicode="t" horiz-adv-x="707" d="M94 848l46 234h138l54 269h333l-54 -269h165l-46 -234h-166l-99 -496q-5 -27 -5 -47q0 -25 8 -39q16 -24 52 -23q28 0 45.5 2t45.5 8l-27 -250q-56 -13 -99.5 -18.5t-102.5 -5.5q-150 0 -220 91q-45 58 -44 157q0 55 14 123l99 498h-137z" />
<glyph unicode="u" d="M80 422l132 660h333l-132 -662q-10 -48 -10 -83t10 -56q20 -42 76 -42q43 0 81 14.5t70 43.5l156 785h334l-216 -1082h-291l4 116q-61 -68 -136.5 -102.5t-164.5 -34.5q-147 0 -219 110q-44 68 -44 178q0 69 17 155z" />
<glyph unicode="v" horiz-adv-x="995" d="M105 1082h352l20 -636l1 -100l6 -1l33 101l222 636h351l-496 -1082h-339z" />
<glyph unicode="w" horiz-adv-x="1387" d="M151 1082h308l-17 -581l6 -1l270 582h209l39 -578l6 -1l214 579h308l-448 -1082h-282l-46 538l-6 1l-263 -539h-281z" />
<glyph unicode="x" horiz-adv-x="995" d="M-64 0l385 547l-203 535h372l57 -317l6 -1l164 318h374l-373 -535l209 -547h-374l-65 327l-6 1l-172 -328h-374z" />
<glyph unicode="y" horiz-adv-x="995" d="M-79 -411l89 241q11 -3 17 -4.5t16 -1.5q68 0 109.5 24.5t64.5 69.5l37 68l-126 1096h355l15 -585l6 -1l271 586h356l-645 -1243q-72 -121 -162.5 -198.5t-252.5 -77.5q-40 0 -67.5 6t-82.5 20z" />
<glyph unicode="z" horiz-adv-x="995" d="M-21 0l38 188l564 629l-2 5h-417l52 260h835l-36 -182l-568 -635l2 -5h444l-52 -260h-860z" />
<glyph unicode="{" horiz-adv-x="629" d="M51 505l14 88l22 139q70 0 115 52t61 145l32 203q28 177 123.5 293.5t289.5 171.5l33 -176q-67 -29 -103 -102.5t-54 -186.5l-32 -203q-18 -109 -74.5 -189t-153.5 -124q80 -48 112 -128t16 -179l-32 -203q-19 -117 -7 -188.5t72 -100.5l-91 -177q-174 55 -232.5 175 t-30.5 291l32 203q15 96 -11.5 146t-100.5 50z" />
<glyph unicode="|" horiz-adv-x="505" d="M51 -270l276 1726h181l-276 -1726h-181z" />
<glyph unicode="}" horiz-adv-x="629" d="M-53 -183q66 29 102 102.5t55 186.5l32 203q17 108 74 188t155 125q-81 46 -113.5 126t-15.5 181l32 203q18 117 5.5 188.5t-70.5 100.5l91 176q173 -55 231 -174.5t31 -290.5l-32 -203q-17 -97 10.5 -147t102.5 -50l-26 -165h-1l-9 -62q-72 0 -117.5 -52.5t-59.5 -143.5 l-32 -203q-29 -177 -124 -294t-288 -172z" />
<glyph unicode="~" horiz-adv-x="1206" d="M88 435q29 182 128 291.5t231 109.5q71 0 138 -33t121 -96q32 -43 58 -61t61 -18q36 0 72 50.5t48 121.5l222 -31q-30 -182 -129.5 -292t-230.5 -110q-74 0 -136.5 31t-120.5 99q-36 43 -61 61t-62 18q-36 0 -71 -50.5t-46 -120.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="597" d="M-26 -374l188 940h336l-188 -940h-336zM211 799l56 283h332l-56 -283h-332z" />
<glyph unicode="&#xa2;" horiz-adv-x="1142" d="M108 529l3 23q37 233 167 379t334 168l45 219h196l-47 -233q129 -37 191.5 -145.5t37.5 -271.5h-313q12 82 -6.5 128t-78.5 46q-79 0 -126 -80t-67 -210l-3 -23q-23 -142 -3.5 -216t105.5 -74q57 0 89.5 37t44.5 109h305l2 -6q-23 -162 -131.5 -267t-266.5 -127l-46 -230 h-196l47 236q-167 38 -242 184.5t-41 353.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1157" d="M77 0l52 260h9q44 12 79 86t52 157l11 72h-147l52 260h138l30 186q45 227 183 341.5t340 114.5q197 0 297 -117.5t59 -302.5l-2 -5h-328q18 91 -6 128t-73 37q-43 0 -80 -51.5t-55 -144.5l-28 -186h290l-52 -260h-278l-8 -51q-16 -77 -61 -144t-116 -120h636l-52 -260 h-942z" />
<glyph unicode="&#xa4;" horiz-adv-x="1302" d="M5 118l159 142q-32 76 -40 164t12 184q21 107 64.5 200.5t105.5 169.5l-101 142l167 144l98 -137q79 52 166.5 79.5t178.5 27.5q82 0 157 -31t135 -88l165 150l110 -145l-172 -155q33 -78 42 -168.5t-10 -188.5q-21 -102 -61 -191.5t-96 -162.5l97 -136l-168 -145 l-90 126q-82 -58 -174 -88.5t-186 -30.5q-87 0 -164.5 33t-136.5 95l-149 -134zM318 608q-40 -196 42.5 -315.5t242.5 -119.5q144 0 282.5 127t175.5 308q38 195 -45 314.5t-240 119.5q-146 0 -284.5 -127t-173.5 -307z" />
<glyph unicode="&#xa5;" horiz-adv-x="1184" d="M92 222l41 210h292l20 100h-291l41 210h225l-195 714h362l99 -552l6 -1l321 553h362l-481 -714h189l-41 -210h-264l-20 -100h263l-41 -210h-263l-45 -222h-333l45 222h-292z" />
<glyph unicode="&#xa6;" horiz-adv-x="506" d="M-27 -270l159 795h288l-159 -795h-288zM167 698l151 758h288l-151 -758h-288z" />
<glyph unicode="&#xa7;" horiz-adv-x="1225" d="M7 -31l2 6h326q-19 -94 24.5 -125.5t130.5 -31.5q75 0 126 33t63 87q11 60 -29.5 93t-170.5 78q-217 64 -309 157t-58 262q18 93 67.5 161t128.5 111q-55 51 -73.5 121.5t1.5 168.5q37 187 191.5 287t388.5 100q219 0 336 -112.5t74 -307.5l-3 -6h-325q15 77 -18.5 121.5 t-115.5 44.5q-80 0 -130.5 -35.5t-61.5 -89.5q-14 -67 22.5 -98t174.5 -74q220 -62 312 -156.5t58 -263.5q-20 -95 -69 -162t-124 -109q52 -52 69.5 -122t-1.5 -168q-39 -192 -190.5 -287t-386.5 -95q-211 0 -344 99t-86 313zM453 568q-16 -75 18 -108.5t170 -83.5 q-136 42 -31.5 9.5t122.5 -38.5q27 21 45 50t26 65q13 66 -27.5 103.5t-169.5 86.5q-27 8 -49 15.5t-41 15.5q-25 -22 -41 -51t-22 -64z" />
<glyph unicode="&#xa8;" horiz-adv-x="1070" d="M272 1252l33 204h281l-33 -204h-281zM754 1252l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xa9;" horiz-adv-x="1501" d="M128 729q52 327 276.5 537t503.5 210q263 0 426.5 -218t114.5 -529q-53 -328 -278 -539t-502 -211q-265 0 -428.5 218.5t-112.5 531.5zM246 729q-45 -274 84 -449.5t359 -175.5q216 0 407 182t234 443q43 273 -85.5 447.5t-356.5 174.5q-218 0 -409.5 -181t-232.5 -441z M439 669l19 119q28 179 132 283t256 104q142 0 214.5 -80.5t45.5 -228.5l-2 -5h-145q15 97 -18.5 138t-116.5 41q-82 0 -139.5 -69.5t-75.5 -181.5l-19 -120q-20 -119 14.5 -185.5t120.5 -66.5q79 0 127 42t63 137h143l2 -6q-21 -156 -114 -232t-243 -76q-144 0 -218 107.5 t-46 279.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="851" d="M202 920q23 117 112 174t244 57h122l10 51q13 66 -5.5 96.5t-70.5 30.5q-55 0 -93.5 -26.5t-47.5 -72.5l-158 13l-2 6q16 104 106 166t224 62q118 0 181 -72.5t37 -203.5l-63 -314q-11 -53 -13.5 -95t1.5 -86h-173q-3 21 -3 45t3 49q-41 -47 -98 -77.5t-128 -30.5 q-103 0 -154.5 62.5t-30.5 165.5zM374 924q-10 -46 11 -67t74 -21q41 0 97 30t79 64l21 104h-120q-62 0 -108 -33t-54 -77z" />
<glyph unicode="&#xab;" horiz-adv-x="1001" d="M65 507l1 6l3 13l330 390h201l-291 -400l131 -399h-201zM468 507l1 6l3 13l330 390h201l-291 -400l131 -399h-201z" />
<glyph unicode="&#xac;" horiz-adv-x="1057" d="M163 634l34 171h780l-16 -77h1l-19 -94l-52 -260h-196l52 260h-584z" />
<glyph unicode="&#xad;" horiz-adv-x="889" d="M167 497l53 261h568l-53 -261h-568z" />
<glyph unicode="&#xae;" horiz-adv-x="1501" d="M129 729q52 327 276.5 537t502.5 210q264 0 427.5 -218t114.5 -529q-53 -328 -278.5 -539t-502.5 -211q-265 0 -428 218.5t-112 531.5zM247 729q-45 -274 84 -449.5t358 -175.5q216 0 407 182t234 443q43 273 -85.5 447.5t-356.5 174.5q-218 0 -409 -181t-232 -441z M444 316l136 850h265q135 0 208.5 -69.5t53.5 -194.5q-10 -59 -42 -101t-87 -71q46 -32 61 -87t4 -128l-9 -56q-7 -42 -8.5 -74t4.5 -53l-2 -16h-151q-5 22 -0.5 63.5t11.5 80.5l8 54q12 74 -13 106.5t-95 32.5h-143l-53 -337h-148zM667 787h113q66 0 118.5 30.5t61.5 85.5 q12 75 -18 102.5t-119 27.5h-117z" />
<glyph unicode="&#xaf;" horiz-adv-x="1018" d="M296 1285l27 173h690l-27 -173h-690z" />
<glyph unicode="&#xb0;" horiz-adv-x="768" d="M273 1197q25 122 118 201.5t204 79.5q99 0 161 -84t40 -197q-25 -123 -115 -200t-198 -77q-103 0 -168 81.5t-42 195.5zM424 1197q-11 -56 15.5 -90t74.5 -34q42 0 81.5 35.5t50.5 88.5q11 57 -12.5 92.5t-69.5 35.5q-44 0 -87 -37.5t-53 -90.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="1038" d="M40 1l52 264h775l-52 -264h-775zM130 723l43 271h280l54 339h289l-54 -339h283l-43 -271h-284l-58 -368h-289l58 368h-279z" />
<glyph unicode="&#xb2;" horiz-adv-x="810" d="M160 667l33 167l340 247q60 46 79.5 77t28.5 73q7 37 -6.5 59.5t-53.5 22.5q-39 0 -66.5 -29t-36.5 -75h-214l-2 6q18 117 116.5 190.5t243.5 73.5q131 0 198 -66.5t45 -182.5q-19 -90 -83.5 -151.5t-212.5 -165.5l-88 -73l2 -6h308l-33 -167h-598z" />
<glyph unicode="&#xb3;" horiz-adv-x="798" d="M182 900l2 6h217q-9 -44 11 -64t73 -20q39 0 70.5 21.5t39.5 63.5q9 47 -15.5 72.5t-81.5 25.5h-93l9 45l10 49l8 40h93q49 0 80 23.5t40 66.5q7 37 -9 60t-58 23q-40 0 -66.5 -21t-31.5 -48h-215l-2 6q17 112 112 170.5t228 58.5q136 0 214.5 -60.5t57.5 -168.5 q-12 -59 -54 -104t-104 -69q59 -25 85.5 -72.5t13.5 -112.5q-25 -120 -118 -178t-243 -58q-138 0 -220 66t-53 179z" />
<glyph unicode="&#xb4;" horiz-adv-x="736" d="M223 1217l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xb5;" horiz-adv-x="1245" d="M-43 -416l299 1498h334l-127 -637q-23 -125 2 -163.5t100 -38.5q52 0 95 23.5t77 67.5l150 748h333l-216 -1082h-314l5 40q-44 -31 -94 -46t-104 -15q-34 0 -64.5 8.5t-56.5 23.5l-85 -427h-334z" />
<glyph unicode="&#xb6;" horiz-adv-x="1057" d="M171 988q43 220 187 344t364 124h409l-291 -1456h-335l104 520h-74q-203 0 -304 132t-60 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="634" d="M174 539l57 284h330l-57 -284h-330z" />
<glyph unicode="&#xb8;" horiz-adv-x="545" d="M-40 -465l29 179q31 0 54 19t31 58q7 40 -16 54.5t-88 18.5l58 146h253l-22 -61q55 -11 85.5 -52.5t15.5 -120.5q-25 -121 -126 -183.5t-269 -60.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="556" d="M275 665l124 619h-116l34 170l344 23l-162 -812h-224z" />
<glyph unicode="&#xba;" horiz-adv-x="884" d="M232 1025l23 117q32 157 136.5 246t254.5 89q139 0 213.5 -95t45.5 -240l-23 -117q-32 -158 -136 -246t-255 -88q-139 0 -213.5 94.5t-45.5 239.5zM403 1025q-18 -90 11 -139t106 -49q68 0 121 52.5t70 135.5l23 117q17 88 -12 137.5t-105 49.5q-70 0 -122.5 -53 t-68.5 -134z" />
<glyph unicode="&#xbb;" horiz-adv-x="1001" d="M-4 151l291 399l-131 400h202l173 -390l-2 -6h1l-3 -13l-329 -390h-202zM411 151l291 399l-131 400h202l173 -390l-2 -6h1l-3 -13l-329 -390h-202z" />
<glyph unicode="&#xbc;" horiz-adv-x="1344" d="M141 196l889 1138l138 -79l-889 -1138zM249 664l124 619h-116l34 170l344 23l-162 -812h-224zM583 134l11 137l498 530h226l-100 -499h77l-33 -168h-77l-27 -134h-226l27 134h-376zM830 307l2 -5h160l46 229l-6 2l-13 -15z" />
<glyph unicode="&#xbd;" horiz-adv-x="1382" d="M130 196l889 1138l138 -79l-889 -1138zM226 664l124 619h-116l34 170l344 23l-162 -812h-224zM651 0l33 167l340 247q60 46 79.5 77t28.5 73q7 37 -6.5 59.5t-53.5 22.5q-39 0 -66.5 -29t-36.5 -75h-214l-2 6q18 117 116.5 190.5t243.5 73.5q131 0 198 -66.5t45 -182.5 q-19 -90 -83.5 -151.5t-212.5 -165.5l-88 -73l2 -6h308l-33 -167h-598z" />
<glyph unicode="&#xbe;" horiz-adv-x="1559" d="M157 901l2 6h217q-9 -44 11 -64t73 -20q39 0 70.5 21.5t39.5 63.5q9 47 -15.5 72.5t-81.5 25.5h-93l9 45l10 49l8 40h93q49 0 80 23.5t40 66.5q7 37 -9 60t-58 23q-40 0 -66.5 -21t-31.5 -48h-215l-2 6q17 112 112 170.5t228 58.5q136 0 214.5 -60.5t57.5 -168.5 q-12 -59 -54 -104t-104 -69q59 -25 85.5 -72.5t13.5 -112.5q-25 -120 -118 -178t-243 -58q-138 0 -220 66t-53 179zM357 196l889 1138l138 -79l-889 -1138zM753 134l11 137l498 530h226l-100 -499h77l-33 -168h-77l-27 -134h-226l27 134h-376zM1000 307l2 -5h160l46 229 l-6 2l-13 -15z" />
<glyph unicode="&#xbf;" horiz-adv-x="993" d="M-22 49q26 132 114 232t211 163q67 41 98 90t48 132h327l3 -5q-27 -136 -87.5 -204.5t-202.5 -160.5q-69 -43 -115.5 -105t-61.5 -142q-19 -89 10.5 -136.5t105.5 -47.5q52 0 101.5 42t68.5 121h325l2 -6q-41 -208 -190.5 -312.5t-358.5 -104.5q-213 0 -325 122t-73 322z M481 812l54 270h330l-54 -270h-330z" />
<glyph unicode="&#xc0;" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM511 543h265l-32 487l-6 1zM520 1820l2 5h341l151 -266h-270z" />
<glyph unicode="&#xc1;" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM511 543h265l-32 487l-6 1zM671 1566l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xc2;" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM462 1587l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256zM511 543h265l-32 487l-6 1z" />
<glyph unicode="&#xc3;" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM488 1652q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51q-16 -99 -82.5 -166t-152.5 -67q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5t-32.5 -77.5zM511 543h265 l-32 487l-6 1z" />
<glyph unicode="&#xc4;" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM462 1601l33 204h281l-33 -204h-281zM511 543h265l-32 487l-6 1zM944 1601l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xc5;" horiz-adv-x="1224" d="M-75 0l723 1456h358l142 -1456h-336l-19 283h-402l-131 -283h-335zM511 543h265l-32 487l-6 1zM670 1741q16 86 85 139.5t158 53.5q79 0 129.5 -56.5t34.5 -136.5q-18 -88 -85.5 -138.5t-154.5 -50.5q-82 0 -133 54.5t-34 134.5zM787 1741q-9 -45 10 -69.5t59 -24.5 q35 0 64.5 26t38.5 68q8 46 -9.5 71t-55.5 25q-37 0 -68 -27t-39 -69z" />
<glyph unicode="&#xc6;" horiz-adv-x="1809" d="M-67 0l964 1456h985l-53 -264h-502l-50 -316h413l-53 -264h-403l-56 -348h522l-53 -264h-844l53 329h-334l-204 -329h-385zM690 599h209l71 440l-6 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1233" d="M105 576l61 304q57 286 221.5 441.5t407.5 155.5q248 0 381.5 -144t100.5 -391l-2 -5h-327q24 140 -18 210t-165 70q-92 0 -163.5 -92.5t-101.5 -242.5l-61 -306q-33 -162 9.5 -249.5t154.5 -87.5q102 0 164 67t94 205h325l3 -6q-61 -260 -208 -393t-397 -133 q-241 0 -386 169.5t-93 427.5zM337 -465l29 179q31 0 54 19t31 58q7 40 -16 54.5t-88 18.5l58 146h253l-22 -61q55 -11 85.5 -52.5t15.5 -120.5q-25 -121 -126 -183.5t-269 -60.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1093" d="M20 0l291 1456h952l-52 -260h-617l-63 -313h521l-52 -260h-521l-72 -363h615l-52 -260h-950zM464 1820l2 5h341l151 -266h-270z" />
<glyph unicode="&#xc9;" horiz-adv-x="1093" d="M20 0l291 1456h952l-52 -260h-617l-63 -313h521l-52 -260h-521l-72 -363h615l-52 -260h-950zM615 1566l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xca;" horiz-adv-x="1093" d="M20 0l291 1456h952l-52 -260h-617l-63 -313h521l-52 -260h-521l-72 -363h615l-52 -260h-950zM406 1587l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#xcb;" horiz-adv-x="1093" d="M20 0l291 1456h952l-52 -260h-617l-63 -313h521l-52 -260h-521l-72 -363h615l-52 -260h-950zM406 1601l33 204h281l-33 -204h-281zM888 1601l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xcc;" horiz-adv-x="584" d="M40 0l291 1456h333l-291 -1456h-333zM204 1820l2 5h341l151 -266h-270z" />
<glyph unicode="&#xcd;" horiz-adv-x="584" d="M40 0l291 1456h333l-291 -1456h-333zM353 1566l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xce;" horiz-adv-x="584" d="M40 0l291 1456h333l-291 -1456h-333zM146 1587l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#xcf;" horiz-adv-x="584" d="M40 0l291 1456h333l-291 -1456h-333zM146 1601l33 204h281l-33 -204h-281zM628 1601l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xd0;" horiz-adv-x="1284" d="M50 0l129 647h-109l38 191h109l124 618h461q227 0 377.5 -176t99.5 -431l-53 -262q-56 -283 -227.5 -435t-413.5 -152h-535zM437 260h177q108 0 177 86t100 241l53 264q31 158 -30.5 251.5t-186.5 93.5h-103l-72 -358h201l-38 -191h-201z" />
<glyph unicode="&#xd1;" horiz-adv-x="1353" d="M20 0l291 1456h335l288 -894l6 1l179 893h334l-291 -1456h-334l-288 894l-6 -1l-179 -893h-335zM555 1652q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51q-16 -99 -82.5 -166t-152.5 -67q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5 t-32.5 -77.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1315" d="M111 597l53 262q58 290 232 454t433 164q244 0 395 -179.5t100 -438.5l-53 -262q-58 -289 -236.5 -453.5t-437.5 -164.5q-244 0 -391 178.5t-95 439.5zM444 597q-33 -164 23.5 -261t181.5 -97q107 0 182 99t107 259l53 264q32 160 -29.5 258t-184.5 98q-109 0 -178.5 -97 t-101.5 -259zM574 1841l2 5h341l151 -266h-270z" />
<glyph unicode="&#xd3;" horiz-adv-x="1315" d="M111 597l53 262q58 290 232 454t433 164q244 0 395 -179.5t100 -438.5l-53 -262q-58 -289 -236.5 -453.5t-437.5 -164.5q-244 0 -391 178.5t-95 439.5zM444 597q-33 -164 23.5 -261t181.5 -97q107 0 182 99t107 259l53 264q32 160 -29.5 258t-184.5 98q-109 0 -178.5 -97 t-101.5 -259zM725 1587l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xd4;" horiz-adv-x="1315" d="M111 597l53 262q58 290 232 454t433 164q244 0 395 -179.5t100 -438.5l-53 -262q-58 -289 -236.5 -453.5t-437.5 -164.5q-244 0 -391 178.5t-95 439.5zM444 597q-33 -164 23.5 -261t181.5 -97q107 0 182 99t107 259l53 264q32 160 -29.5 258t-184.5 98q-109 0 -178.5 -97 t-101.5 -259zM516 1608l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#xd5;" horiz-adv-x="1315" d="M111 597l53 262q58 290 232 454t433 164q244 0 395 -179.5t100 -438.5l-53 -262q-58 -289 -236.5 -453.5t-437.5 -164.5q-244 0 -391 178.5t-95 439.5zM444 597q-33 -164 23.5 -261t181.5 -97q107 0 182 99t107 259l53 264q32 160 -29.5 258t-184.5 98q-109 0 -178.5 -97 t-101.5 -259zM542 1673q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51q-16 -99 -82.5 -166t-152.5 -67q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5t-32.5 -77.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="1315" d="M111 597l53 262q58 290 232 454t433 164q244 0 395 -179.5t100 -438.5l-53 -262q-58 -289 -236.5 -453.5t-437.5 -164.5q-244 0 -391 178.5t-95 439.5zM444 597q-33 -164 23.5 -261t181.5 -97q107 0 182 99t107 259l53 264q32 160 -29.5 258t-184.5 98q-109 0 -178.5 -97 t-101.5 -259zM516 1622l33 204h281l-33 -204h-281zM998 1622l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xd7;" horiz-adv-x="1019" d="M42 381l339 304l-219 307l228 183l209 -294l327 294l153 -183l-341 -307l217 -304l-226 -183l-209 292l-324 -292z" />
<glyph unicode="&#xd8;" horiz-adv-x="1331" d="M99 -95l147 201q-88 85 -123 212.5t-4 278.5l53 262q57 285 248 451.5t455 166.5q88 0 165.5 -27t138.5 -77l106 145h135l-166 -225q61 -85 82 -196t-4 -238l-53 -262q-57 -286 -248 -452t-453 -166q-69 0 -130.5 15.5t-113.5 46.5l-100 -136h-135zM437.5 477.5 q-1.5 -53.5 10.5 -88.5l6 -2l536 730q-22 48 -64 74t-103 26q-112 0 -200 -101.5t-118 -254.5l-53 -264q-13 -66 -14.5 -119.5zM507 277q23 -19 53.5 -28.5t69.5 -9.5q109 0 197 102t119 256l53 264q5 28 8.5 52t3.5 39l-6 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1331" d="M114 502l191 954h335l-191 -954q-29 -143 18.5 -203t162.5 -60q105 0 180 65t101 198l191 954h335l-191 -954q-53 -266 -231 -394.5t-437 -128.5q-240 0 -376.5 139t-87.5 384zM575 1820l2 5h341l151 -266h-270z" />
<glyph unicode="&#xda;" horiz-adv-x="1331" d="M114 502l191 954h335l-191 -954q-29 -143 18.5 -203t162.5 -60q105 0 180 65t101 198l191 954h335l-191 -954q-53 -266 -231 -394.5t-437 -128.5q-240 0 -376.5 139t-87.5 384zM726 1566l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xdb;" horiz-adv-x="1331" d="M114 502l191 954h335l-191 -954q-29 -143 18.5 -203t162.5 -60q105 0 180 65t101 198l191 954h335l-191 -954q-53 -266 -231 -394.5t-437 -128.5q-240 0 -376.5 139t-87.5 384zM517 1587l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#xdc;" horiz-adv-x="1331" d="M114 502l191 954h335l-191 -954q-29 -143 18.5 -203t162.5 -60q105 0 180 65t101 198l191 954h335l-191 -954q-53 -266 -231 -394.5t-437 -128.5q-240 0 -376.5 139t-87.5 384zM517 1601l33 204h281l-33 -204h-281zM999 1601l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xdd;" horiz-adv-x="1234" d="M205 1456h361l131 -613l6 -1l377 614h362l-645 -941l-103 -515h-333l107 533zM688 1566l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xde;" horiz-adv-x="1191" d="M22 0l291 1456h335l-52 -258h173q234 0 355.5 -129t82.5 -331q-45 -220 -206 -340t-416 -120h-173l-55 -278h-335zM464 538h173q92 0 154.5 57t79.5 141q18 92 -18 147t-136 55h-170l-2 2z" />
<glyph unicode="&#xdf;" horiz-adv-x="1257" d="M43 0l222 1112q48 241 196 355t385 114q170 0 276.5 -102t71.5 -278q-23 -113 -83 -199.5t-75 -159.5q-10 -49 87 -187.5t69 -277.5q-43 -214 -170.5 -306t-360.5 -92q-69 0 -137.5 12.5t-99.5 35.5l109 256q29 -19 74.5 -31.5t108.5 -12.5q48 0 88.5 33.5t52.5 91.5 q14 73 -86 199t-72 264q21 106 82.5 196.5t76.5 163.5q11 56 -19 95.5t-79 39.5t-96 -60t-66 -156l-221 -1106h-334z" />
<glyph unicode="&#xe0;" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q14 75 -5 109t-76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279.5 -101.5t65.5 -284.5l-81 -408q-19 -93 -19.5 -163t13.5 -145l-330 1q-8 27 -13 57.5t-6 63.5 q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 0 -211 90.5t-48 235.5zM353 1498l2 5h341l151 -266h-270zM357 323q-11 -49 10 -76t63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q14 75 -5 109t-76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279.5 -101.5t65.5 -284.5l-81 -408q-19 -93 -19.5 -163t13.5 -145l-330 1q-8 27 -13 57.5t-6 63.5 q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 0 -211 90.5t-48 235.5zM357 323q-11 -49 10 -76t63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5zM504 1244l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xe2;" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q14 75 -5 109t-76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279.5 -101.5t65.5 -284.5l-81 -408q-19 -93 -19.5 -163t13.5 -145l-330 1q-8 27 -13 57.5t-6 63.5 q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 0 -211 90.5t-48 235.5zM295 1265l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256zM357 323q-11 -49 10 -76t63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q14 75 -5 109t-76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279.5 -101.5t65.5 -284.5l-81 -408q-19 -93 -19.5 -163t13.5 -145l-330 1q-8 27 -13 57.5t-6 63.5 q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 0 -211 90.5t-48 235.5zM321 1330q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51q-16 -99 -82.5 -166t-152.5 -67q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5t-32.5 -77.5zM357 323 q-11 -49 10 -76t63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q14 75 -5 109t-76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279.5 -101.5t65.5 -284.5l-81 -408q-19 -93 -19.5 -163t13.5 -145l-330 1q-8 27 -13 57.5t-6 63.5 q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 0 -211 90.5t-48 235.5zM295 1279l33 204h281l-33 -204h-281zM357 323q-11 -49 10 -76t63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5zM777 1279l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xe5;" horiz-adv-x="1020" d="M20 305q34 171 159.5 253.5t359.5 82.5h104l16 77q14 75 -5 109t-76 34q-45 0 -74 -28t-39 -85l-323 1l-2 6q26 158 164.5 252.5t344.5 94.5q177 0 279.5 -101.5t65.5 -284.5l-81 -408q-19 -93 -19.5 -163t13.5 -145l-330 1q-8 27 -13 57.5t-6 63.5 q-56 -66 -124.5 -104.5t-154.5 -38.5q-134 0 -211 90.5t-48 235.5zM357 323q-11 -49 10 -76t63 -27q38 0 76 18.5t66 47.5l35 175h-101q-62 0 -100 -39.5t-49 -98.5zM503 1419q16 86 85 139.5t158 53.5q79 0 129.5 -56.5t34.5 -136.5q-18 -88 -85.5 -138.5t-154.5 -50.5 q-82 0 -133 54.5t-34 134.5zM620 1419q-9 -45 10 -69.5t59 -24.5q35 0 64.5 26t38.5 68q8 46 -9.5 71t-55.5 25q-37 0 -68 -27t-39 -69z" />
<glyph unicode="&#xe6;" horiz-adv-x="1619" d="M19 324q34 169 172.5 250t382.5 81h138l9 46q14 70 -8.5 105.5t-76.5 35.5q-55 0 -96 -29.5t-49 -72.5l-319 18l-2 6q26 156 167.5 247t354.5 91q81 0 150.5 -21.5t119.5 -61.5q66 41 145 62t172 21q185 0 280.5 -134.5t51.5 -355.5l-35 -177h-567l-3 -5 q-15 -93 21.5 -142t135.5 -49q75 0 137.5 16.5t137.5 50.5l38 -206q-72 -51 -185.5 -86t-225.5 -35q-109 0 -193 37.5t-135 108.5q-70 -65 -168.5 -105.5t-219.5 -40.5q-179 0 -270 94.5t-60 250.5zM352 320q-12 -56 14 -82.5t93 -26.5q38 0 90.5 24t89.5 57l29 142v6t2 11 h-135q-69 0 -121 -39.5t-62 -91.5zM1050 651l3 -5h240l5 26q17 85 -1.5 127.5t-69.5 42.5q-69 0 -112 -50.5t-65 -140.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="983" d="M58 529l3 23q40 252 187.5 401t379.5 149q187 0 287.5 -116t65.5 -313l-3 -5h-306q12 82 -6.5 128t-78.5 46q-79 0 -126 -80t-67 -210l-3 -23q-23 -142 -3.5 -216t105.5 -74q57 0 89.5 37t44.5 109h304l2 -6q-26 -185 -159.5 -292.5t-321.5 -107.5q-222 0 -327.5 154.5 t-66.5 395.5zM267 -465l29 179q31 0 54 19t31 58q7 40 -16 54.5t-88 18.5l58 146h253l-22 -61q55 -11 85.5 -52.5t15.5 -120.5q-25 -121 -126 -183.5t-269 -60.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1021" d="M76 505l6 38q41 257 184.5 408.5t372.5 150.5q199 0 298.5 -133t64.5 -357l-28 -177h-565l-2 -5q-5 -86 36 -138.5t128 -52.5q83 0 141 15.5t145 51.5l45 -206q-74 -52 -185.5 -86.5t-232.5 -34.5q-217 0 -330.5 151t-77.5 375zM316 1499l2 5h341l151 -266h-270zM440 651 l3 -5h238l5 26q13 86 -7 128t-81 42t-99.5 -52t-58.5 -139z" />
<glyph unicode="&#xe9;" horiz-adv-x="1021" d="M76 505l6 38q41 257 184.5 408.5t372.5 150.5q199 0 298.5 -133t64.5 -357l-28 -177h-565l-2 -5q-5 -86 36 -138.5t128 -52.5q83 0 141 15.5t145 51.5l45 -206q-74 -52 -185.5 -86.5t-232.5 -34.5q-217 0 -330.5 151t-77.5 375zM440 651l3 -5h238l5 26q13 86 -7 128 t-81 42t-99.5 -52t-58.5 -139zM467 1245l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xea;" horiz-adv-x="1021" d="M76 505l6 38q41 257 184.5 408.5t372.5 150.5q199 0 298.5 -133t64.5 -357l-28 -177h-565l-2 -5q-5 -86 36 -138.5t128 -52.5q83 0 141 15.5t145 51.5l45 -206q-74 -52 -185.5 -86.5t-232.5 -34.5q-217 0 -330.5 151t-77.5 375zM260 1266l6 26l334 240h187l241 -244 l-5 -22h-260l-98 126l-149 -126h-256zM440 651l3 -5h238l5 26q13 86 -7 128t-81 42t-99.5 -52t-58.5 -139z" />
<glyph unicode="&#xeb;" horiz-adv-x="1021" d="M76 505l6 38q41 257 184.5 408.5t372.5 150.5q199 0 298.5 -133t64.5 -357l-28 -177h-565l-2 -5q-5 -86 36 -138.5t128 -52.5q83 0 141 15.5t145 51.5l45 -206q-74 -52 -185.5 -86.5t-232.5 -34.5q-217 0 -330.5 151t-77.5 375zM260 1280l33 204h281l-33 -204h-281z M440 651l3 -5h238l5 26q13 86 -7 128t-81 42t-99.5 -52t-58.5 -139zM742 1280l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xec;" horiz-adv-x="566" d="M30 0l216 1082h336l-216 -1082h-336zM128 1477l2 5h341l151 -266h-270z" />
<glyph unicode="&#xed;" horiz-adv-x="566" d="M30 0l216 1082h336l-216 -1082h-336zM277 1223l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xee;" horiz-adv-x="566" d="M30 0l216 1082h336l-216 -1082h-336zM70 1246l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#xef;" horiz-adv-x="566" d="M30 0l216 1082h336l-216 -1082h-336zM70 1258l33 204h281l-33 -204h-281zM552 1258l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xf0;" horiz-adv-x="1153" d="M42 468q47 240 193.5 366.5t376.5 126.5q64 0 120 -20.5t96 -56.5l5 5q-3 71 -24.5 130.5t-57.5 105.5l-220 -115l-52 118l169 88q-27 16 -57.5 30t-64.5 27l153 244q80 -20 149.5 -55t128.5 -84l201 106l51 -118l-162 -85q83 -115 111 -269t-8 -336l-12 -63 q-60 -298 -245.5 -466t-421.5 -168q-219 0 -345 142.5t-84 346.5zM376 468q-22 -107 18.5 -168t132.5 -61q89 0 166.5 106t110.5 268l7 38q-23 31 -68.5 50t-109.5 19q-97 0 -165.5 -68t-91.5 -184z" />
<glyph unicode="&#xf1;" d="M-2 0l216 1082h314l-17 -140q64 77 144 118.5t168 41.5q137 0 204 -105t23 -326l-134 -671h-334l134 672q20 99 -5 134.5t-92 35.5q-36 0 -70 -16.5t-62 -45.5l-156 -780h-333zM356 1330q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51 q-16 -99 -82.5 -166t-152.5 -67q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5t-32.5 -77.5z" />
<glyph unicode="&#xf2;" d="M65 530l3 21q40 253 191 402t387 149q224 0 332.5 -155t70.5 -396l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-225 0 -334 154.5t-70 396.5zM349 1498l2 5h341l151 -266h-270zM397.5 313.5q22.5 -74.5 112.5 -74.5q82 0 131 78.5t71 212.5l3 21q22 138 0 214.5t-110 76.5 q-83 0 -133 -80.5t-70 -210.5l-3 -21q-24 -142 -1.5 -216.5z" />
<glyph unicode="&#xf3;" d="M65 530l3 21q40 253 191 402t387 149q224 0 332.5 -155t70.5 -396l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-225 0 -334 154.5t-70 396.5zM397.5 313.5q22.5 -74.5 112.5 -74.5q82 0 131 78.5t71 212.5l3 21q22 138 0 214.5t-110 76.5q-83 0 -133 -80.5t-70 -210.5 l-3 -21q-24 -142 -1.5 -216.5zM500 1244l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xf4;" d="M65 530l3 21q40 253 191 402t387 149q224 0 332.5 -155t70.5 -396l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-225 0 -334 154.5t-70 396.5zM291 1265l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256zM397.5 313.5q22.5 -74.5 112.5 -74.5q82 0 131 78.5 t71 212.5l3 21q22 138 0 214.5t-110 76.5q-83 0 -133 -80.5t-70 -210.5l-3 -21q-24 -142 -1.5 -216.5z" />
<glyph unicode="&#xf5;" d="M65 530l3 21q40 253 191 402t387 149q224 0 332.5 -155t70.5 -396l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-225 0 -334 154.5t-70 396.5zM317 1330q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51q-16 -99 -82.5 -166t-152.5 -67 q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5t-32.5 -77.5zM397.5 313.5q22.5 -74.5 112.5 -74.5q82 0 131 78.5t71 212.5l3 21q22 138 0 214.5t-110 76.5q-83 0 -133 -80.5t-70 -210.5l-3 -21q-24 -142 -1.5 -216.5z" />
<glyph unicode="&#xf6;" d="M65 530l3 21q40 253 191 402t387 149q224 0 332.5 -155t70.5 -396l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-225 0 -334 154.5t-70 396.5zM291 1279l33 204h281l-33 -204h-281zM397.5 313.5q22.5 -74.5 112.5 -74.5q82 0 131 78.5t71 212.5l3 21q22 138 0 214.5 t-110 76.5q-83 0 -133 -80.5t-70 -210.5l-3 -21q-24 -142 -1.5 -216.5zM773 1279l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xf7;" horiz-adv-x="1095" d="M87 563l48 244h974l-48 -244h-974zM328 158l49 246h332l-49 -246h-332zM488 961l49 245h332l-49 -245h-332z" />
<glyph unicode="&#xf8;" horiz-adv-x="1084" d="M34 -145l147 226q-79 73 -109.5 189.5t-6.5 259.5l3 21q40 253 191 402t387 149q49 0 94 -8.5t85 -24.5l98 150h173l-151 -231q71 -75 98 -188t6 -249l-3 -21q-41 -254 -192 -402.5t-385 -148.5q-45 0 -86.5 7t-78.5 20l-98 -151h-172zM387 408l6 -2l275 421 q-13 7 -29 11t-34 4q-83 0 -133 -80.5t-70 -210.5l-3 -21q-7 -40 -10 -71.5t-2 -50.5zM461 246q10 -4 22 -5.5t27 -1.5q82 0 131 78.5t71 212.5l3 21q4 27 7 50.5t3 37.5l-6 2z" />
<glyph unicode="&#xf9;" d="M80 422l132 660h333l-132 -662q-20 -97 0 -139t76 -42q43 0 81 14.5t70 43.5l156 785h334l-216 -1082h-291l4 116q-61 -68 -136.5 -102.5t-164.5 -34.5q-147 0 -219 110t-27 333zM381 1477l2 5h341l151 -266h-270z" />
<glyph unicode="&#xfa;" d="M80 422l132 660h333l-132 -662q-20 -97 0 -139t76 -42q43 0 81 14.5t70 43.5l156 785h334l-216 -1082h-291l4 116q-61 -68 -136.5 -102.5t-164.5 -34.5q-147 0 -219 110t-27 333zM532 1223l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xfb;" d="M80 422l132 660h333l-132 -662q-20 -97 0 -139t76 -42q43 0 81 14.5t70 43.5l156 785h334l-216 -1082h-291l4 116q-61 -68 -136.5 -102.5t-164.5 -34.5q-147 0 -219 110t-27 333zM323 1246l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#xfc;" d="M80 422l132 660h333l-132 -662q-20 -97 0 -139t76 -42q43 0 81 14.5t70 43.5l156 785h334l-216 -1082h-291l4 116q-61 -68 -136.5 -102.5t-164.5 -34.5q-147 0 -219 110t-27 333zM323 1258l33 204h281l-33 -204h-281zM805 1258l33 204h281l-33 -204h-281z" />
<glyph unicode="&#xfd;" horiz-adv-x="995" d="M-79 -411l89 241q11 -3 17 -4.5t16 -1.5q68 0 109.5 24.5t64.5 69.5l37 68l-126 1096h355l15 -585l6 -1l271 586h356l-645 -1243q-72 -121 -162.5 -198.5t-252.5 -77.5q-40 0 -67.5 6t-82.5 20zM490 1223l227 261h341l2 -6l-304 -260h-264z" />
<glyph unicode="&#xfe;" horiz-adv-x="1081" d="M-80 -416l83 416l16 83l200 999l96 478h335l-111 -553q48 45 102.5 70t113.5 25q175 0 260 -168t36 -415l-4 -21q-53 -260 -170 -389.5t-307 -129.5q-68 0 -123 25t-94 74l-15 -78h-1l-83 -416h-334zM393 276q16 -20 45.5 -28.5t77.5 -8.5q74 0 123 66.5t75 192.5l4 21 q29 150 14 236.5t-90 86.5q-44 0 -84 -27.5t-73 -75.5z" />
<glyph unicode="&#xff;" horiz-adv-x="995" d="M-79 -411l89 241q11 -3 17 -4.5t16 -1.5q68 0 109.5 24.5t64.5 69.5l37 68l-126 1096h355l15 -585l6 -1l271 586h356l-645 -1243q-72 -121 -162.5 -198.5t-252.5 -77.5q-40 0 -67.5 6t-82.5 20zM281 1258l33 204h281l-33 -204h-281zM763 1258l33 204h281l-33 -204h-281z " />
<glyph unicode="&#x152;" horiz-adv-x="1874" d="M120 576l61 304q56 282 248.5 439.5t461.5 157.5q59 0 127 -6t136 -15h864l-52 -260h-617l-63 -313h521l-52 -260h-521l-72 -363h615l-52 -260h-862q-87 -10 -147.5 -15.5t-121.5 -5.5q-247 0 -386.5 168.5t-87.5 428.5zM453 576q-35 -176 16.5 -256.5t176.5 -80.5 q41 0 87 3t92 10l190 951q-46 6 -89.5 10t-86.5 4q-114 0 -203.5 -87t-121.5 -248z" />
<glyph unicode="&#x153;" horiz-adv-x="1720" d="M95 530l4 21q52 260 207 405.5t391 145.5q92 0 166.5 -30.5t126.5 -85.5q69 57 155 86.5t188 29.5q193 0 290.5 -134t52.5 -356l-35 -177h-563l-3 -5q-8 -88 30.5 -139.5t126.5 -51.5q81 0 140.5 15.5t146.5 51.5l37 -206q-75 -52 -188.5 -86.5t-233.5 -34.5 q-92 0 -167.5 31t-127.5 89q-74 -59 -165.5 -89.5t-198.5 -30.5q-218 0 -323 155.5t-57 395.5zM418.5 312q19.5 -73 108.5 -73q80 0 133.5 79.5t80.5 211.5l4 21q28 141 8.5 216t-108.5 75q-80 0 -133.5 -81t-79.5 -210l-4 -21q-29 -145 -9.5 -218zM1118 651l2 -5h238l5 26 q18 88 -1 129t-81 41q-58 0 -99 -52.5t-64 -138.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1234" d="M205 1456h361l131 -613l6 -1l377 614h362l-645 -941l-103 -515h-333l107 533zM479 1601l33 204h281l-33 -204h-281zM961 1601l33 204h281l-33 -204h-281z" />
<glyph unicode="&#x2c6;" horiz-adv-x="987" d="M279 1252l6 26l334 240h187l241 -244l-5 -22h-260l-98 126l-149 -126h-256z" />
<glyph unicode="&#x2dc;" horiz-adv-x="940" d="M244 1271q16 97 82 165t152 68q49 0 138.5 -41.5t138.5 -41.5q27 0 53.5 32t34.5 78l166 -51q-16 -99 -82.5 -166t-152.5 -67q-61 0 -145 42t-133 42q-28 0 -53.5 -32.5t-32.5 -77.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="967" />
<glyph unicode="&#x2001;" horiz-adv-x="1934" />
<glyph unicode="&#x2002;" horiz-adv-x="967" />
<glyph unicode="&#x2003;" horiz-adv-x="1934" />
<glyph unicode="&#x2004;" horiz-adv-x="644" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="386" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="889" d="M167 497l53 261h568l-53 -261h-568z" />
<glyph unicode="&#x2011;" horiz-adv-x="889" d="M167 497l53 261h568l-53 -261h-568z" />
<glyph unicode="&#x2012;" horiz-adv-x="889" d="M167 497l53 261h568l-53 -261h-568z" />
<glyph unicode="&#x2013;" horiz-adv-x="1323" d="M194 578l68 264h1007l-68 -264h-1007z" />
<glyph unicode="&#x2014;" horiz-adv-x="1568" d="M176 578l83 264h1240l-83 -264h-1240z" />
<glyph unicode="&#x2018;" horiz-adv-x="386" d="M151 1016l39 195l227 349h163l-125 -343l-40 -201h-264z" />
<glyph unicode="&#x2019;" horiz-adv-x="386" d="M162 1016l125 351l39 193h265l-39 -194l-227 -350h-163z" />
<glyph unicode="&#x201a;" horiz-adv-x="388" d="M-105 -266l111 269l61 306h265l-59 -292l-191 -283h-187z" />
<glyph unicode="&#x201c;" horiz-adv-x="714" d="M151 1016l39 195l227 349h163l-125 -343l-40 -201h-264zM478 1016l39 195l227 349h163l-125 -343l-40 -201h-264z" />
<glyph unicode="&#x201d;" horiz-adv-x="722" d="M153 1016l125 351l39 193h265l-39 -194l-227 -350h-163zM486 1016l125 351l39 193h265l-39 -194l-227 -350h-163z" />
<glyph unicode="&#x201e;" horiz-adv-x="709" d="M-95 -216l104 236l58 288h242l-55 -275l-208 -249h-141zM249 -216l106 244l56 280h242l-55 -275l-208 -249h-141z" />
<glyph unicode="&#x2022;" horiz-adv-x="723" d="M184 706l22 107q22 113 100 177t189 64q104 0 159.5 -68t35.5 -173l-22 -107q-23 -114 -99.5 -176t-189.5 -62q-103 0 -159.5 67t-35.5 171z" />
<glyph unicode="&#x2026;" horiz-adv-x="1509" d="M52 0l57 284h331l-57 -284h-331zM514 0l57 284h331l-57 -284h-331zM977 0l57 284h331l-57 -284h-331z" />
<glyph unicode="&#x202f;" horiz-adv-x="386" />
<glyph unicode="&#x2039;" horiz-adv-x="618" d="M128 541l1 6l3 13l330 390h201l-291 -400l131 -399h-201z" />
<glyph unicode="&#x203a;" horiz-adv-x="588" d="M19 151l291 399l-131 400h202l173 -390l-2 -6h1l-3 -13l-329 -390h-202z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1066" d="M71 442l39 210h133l24 115h-133l45 210h132l3 13q42 222 211.5 354.5t410.5 132.5q52 0 107.5 -8.5t114.5 -22.5l-74 -264q-46 16 -96.5 25.5t-103.5 9.5q-86 0 -152.5 -68t-81.5 -157l-3 -15h355l-45 -210h-354l-25 -115h355l-39 -210h-354l-3 -14q-20 -89 19 -139 t135 -50q50 0 105 8.5t106 24.5l-31 -262q-58 -15 -116 -23t-116 -8q-222 0 -349.5 131.5t-87.5 317.5l3 14h-134z" />
<glyph unicode="&#x2122;" horiz-adv-x="1221" d="M274 1340l23 116h379l-23 -116h-110l-85 -423h-164l85 423h-105zM628 913l108 543h175l18 -345l6 -1l155 346h170l-108 -543h-143l45 225l-6 2l-116 -227h-79l-27 241h-6l-48 -241h-144z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1249" d="M70 0l169 848h-142l46 234h143l23 112q39 198 162.5 292.5t323.5 94.5q34 0 72.5 -6t81.5 -15l-74 -249q-24 5 -43.5 7.5t-47.5 2.5q-52 0 -90.5 -33.5t-49.5 -93.5l-23 -112h190l-46 -234h-191l-169 -848h-335zM726 0l312 1560h335l-312 -1560h-335z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1945" d="M70 0l169 848h-142l46 234h143l23 112q39 198 162.5 292.5t323.5 94.5q34 0 72.5 -6t81.5 -15l-74 -249q-24 5 -43.5 7.5t-47.5 2.5q-52 0 -90.5 -33.5t-49.5 -93.5l-23 -112h190l-46 -234h-191l-169 -848h-335zM783 0l169 848h-143l46 234h144l11 52q46 230 192 338.5 t386 108.5q74 0 153.5 -15.5t168.5 -42.5l-100 -266q-72 22 -125.5 33t-132.5 11t-136 -44t-72 -123l-11 -52h192l-46 -234h-193l-169 -848h-334zM1422 0l216 1082h335l-216 -1082h-335z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1957" d="M70 0l169 848h-142l46 234h143l23 112q39 198 162.5 292.5t323.5 94.5q34 0 72.5 -6t81.5 -15l-74 -249q-24 5 -43.5 7.5t-47.5 2.5q-52 0 -90.5 -33.5t-49.5 -93.5l-23 -112h190l-46 -234h-191l-169 -848h-335zM778 0l169 848h-142l46 234h143l23 112 q39 198 162.5 292.5t323.5 94.5q34 0 72.5 -6t81.5 -15l-74 -249q-24 5 -43.5 7.5t-47.5 2.5q-52 0 -90.5 -33.5t-49.5 -93.5l-23 -112h190l-46 -234h-191l-169 -848h-335zM1434 0l312 1560h335l-312 -1560h-335z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-38" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="248" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="81" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="274" />
<hkern u1="F" u2="&#x201e;" k="274" />
<hkern u1="F" u2="&#x201a;" k="274" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="208" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="274" />
<hkern u1="F" u2="&#x2c;" k="274" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="52" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="297" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="33" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="50" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="84" />
<hkern u1="T" u2="&#xc6;" k="189" />
<hkern u1="T" u2="&#xbb;" k="146" />
<hkern u1="T" u2="&#xab;" k="148" />
<hkern u1="T" u2="w" k="47" />
<hkern u1="T" u2="r" k="65" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-24" />
<hkern u1="r" u2="f" k="-20" />
<hkern u1="t" u2="&#xf6;" k="30" />
<hkern u1="t" u2="&#xf5;" k="30" />
<hkern u1="t" u2="&#xf4;" k="30" />
<hkern u1="t" u2="&#xf3;" k="30" />
<hkern u1="t" u2="&#xf2;" k="30" />
<hkern u1="t" u2="o" k="30" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="81" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="81" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="81" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="81" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="81" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="81" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="m,n,p,ntilde" k="48" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="89" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="77" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="39" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="150" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="122" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="164" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="258" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="L" g2="T" k="205" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="24" />
<hkern g1="L" g2="V" k="206" />
<hkern g1="L" g2="W" k="93" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="279" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="14" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="123" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="178" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="404" />
<hkern g1="P" g2="X" k="51" />
<hkern g1="P" g2="Z" k="36" />
<hkern g1="P" g2="J" k="184" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="109" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="83" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="89" />
<hkern g1="T" g2="m,n,p,ntilde" k="89" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="79" />
<hkern g1="T" g2="s" k="76" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="65" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="82" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="258" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="272" />
<hkern g1="T" g2="J" k="216" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="215" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="157" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="143" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="156" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="150" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="63" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="231" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="152" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="17" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="20" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="173" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="167" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="40" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'robotoblack_italic';
src: url('Roboto-BlackItalic-webfont.eot');
src: url('Roboto-BlackItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('Roboto-BlackItalic-webfont.woff') format('woff'),
url('Roboto-BlackItalic-webfont.ttf') format('truetype'),
url('Roboto-BlackItalic-webfont.svg#robotoblack_italic') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'robotobold';
}
</style>
<title>Roboto Bold Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Bold </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Bold</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,593 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotobold" horiz-adv-x="1156" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="510" />
<glyph unicode="&#xfb01;" horiz-adv-x="1249" d="M20 877v205h161v74q0 204 124.5 314.5t350.5 110.5q78 0 154 -15.5t176 -44.5l-42 -230q-73 22 -132.5 34t-136.5 12q-101 0 -151.5 -46t-50.5 -135v-74h213v-205h-213v-877h-292v877h-161zM829 0v1082h292v-1082h-292z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="510" />
<glyph unicode=" " horiz-adv-x="510" />
<glyph unicode="&#x09;" horiz-adv-x="510" />
<glyph unicode="&#xa0;" horiz-adv-x="510" />
<glyph unicode="!" horiz-adv-x="557" d="M134 0v256h292v-256h-292zM134 502v954h292v-954h-292z" />
<glyph unicode="&#x22;" horiz-adv-x="656" d="M50 1039v524h230v-275l-102 -249h-128zM376 1039v524h230v-275l-102 -249h-128z" />
<glyph unicode="#" horiz-adv-x="1219" d="M48 410v169h256l51 290h-232v171h262l73 416h183l-73 -416h192l74 416h183l-73 -416h220v-171h-250l-51 -290h225v-169h-254l-72 -410h-184l72 410h-192l-71 -410h-184l72 410h-227zM488 579h191l51 290h-192z" />
<glyph unicode="$" horiz-adv-x="1175" d="M96 449l2 5h285q0 -134 61.5 -192t156.5 -58q91 0 139.5 48.5t48.5 130.5q0 81 -46.5 132t-159.5 95q-222 81 -329.5 180.5t-107.5 280.5q0 168 107.5 275.5t289.5 126.5v215h159v-217q176 -26 276.5 -147t98.5 -314l-3 -5h-285q0 118 -48.5 182t-132.5 64 q-86 0 -128 -49.5t-42 -131.5q0 -78 44.5 -126.5t163.5 -95.5q221 -87 327.5 -186t106.5 -277q0 -174 -107 -278t-291 -123v-198h-159v197q-187 19 -309 132.5t-118 333.5z" />
<glyph unicode="%" horiz-adv-x="1513" d="M95 1099v77q0 129 83.5 215t232.5 86q151 0 234 -85.5t83 -215.5v-77q0 -129 -83 -214t-232 -85q-150 0 -234 85t-84 214zM289 1099q0 -58 32 -97.5t92 -39.5q58 0 89.5 39.5t31.5 97.5v77q0 58 -32 98.5t-91 40.5t-90.5 -40.5t-31.5 -98.5v-77zM319 184l711 1138 l142 -75l-711 -1138zM791 280v77q0 128 84 214t233 86q150 0 233.5 -85.5t83.5 -214.5v-77q0 -130 -83 -215t-232 -85q-150 0 -234.5 85.5t-84.5 214.5zM985 280q0 -57 34.5 -97.5t90.5 -40.5q65 0 93 37.5t28 100.5v77q0 57 -32 97.5t-91 40.5q-60 0 -91.5 -40.5 t-31.5 -97.5v-77z" />
<glyph unicode="&#x26;" horiz-adv-x="1346" d="M61 392q0 118 65 203.5t198 178.5q-68 92 -101.5 168t-33.5 155q0 173 108 276.5t289 103.5q159 0 258.5 -98.5t99.5 -238.5q0 -98 -49 -179t-134 -142l-93 -66l276 -322q36 60 56 130t20 148h218q0 -138 -34 -254t-104 -206l208 -244l-2 -5h-324l-77 89 q-85 -55 -175 -82.5t-193 -27.5q-218 0 -347 114.5t-129 298.5zM353 407q0 -89 55 -146.5t144 -57.5q53 0 106 13.5t102 40.5l-300 348l-19 -13q-51 -48 -69.5 -93.5t-18.5 -91.5zM450 1100q0 -43 21.5 -88.5t64.5 -100.5l86 56q56 36 75.5 74t19.5 83q0 50 -36.5 89 t-95.5 39q-65 0 -100 -43.5t-35 -108.5z" />
<glyph unicode="'" horiz-adv-x="330" d="M50 1008v552h230v-269l-102 -283h-128z" />
<glyph unicode="(" horiz-adv-x="711" d="M124 570v22q0 392 152 665.5t344 354.5h6l53 -146q-131 -98 -220 -316t-89 -556v-26q0 -339 89 -556.5t220 -318.5l-53 -143h-6q-192 81 -344 354t-152 666z" />
<glyph unicode=")" horiz-adv-x="713" d="M31 -307q129 98 219 317t90 558v26q0 336 -91 556.5t-218 319.5l54 142h6q194 -80 352.5 -359t158.5 -661v-22q0 -383 -158.5 -661.5t-352.5 -358.5h-6z" />
<glyph unicode="*" horiz-adv-x="908" d="M27 1055l57 177l297 -123l-18 347h187l-19 -353l291 120l56 -180l-306 -89l200 -265l-152 -110l-174 290l-173 -281l-153 106l209 272z" />
<glyph unicode="+" horiz-adv-x="1117" d="M56 560v252h362v394h276v-394h360v-252h-360v-414h-276v414h-362z" />
<glyph unicode="," horiz-adv-x="528" d="M63 -302l70 324v228h284v-237l-159 -315h-195z" />
<glyph unicode="-" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="." horiz-adv-x="596" d="M144 0v256h292v-256h-292z" />
<glyph unicode="/" horiz-adv-x="825" d="M-14 -125l534 1581h284l-534 -1581h-284z" />
<glyph unicode="0" horiz-adv-x="1175" d="M95 567v321q0 288 132.5 438.5t359.5 150.5q226 0 359.5 -150.5t133.5 -438.5v-321q0 -289 -132.5 -438.5t-358.5 -149.5q-228 0 -361 149.5t-133 438.5zM386 539q0 -176 51.5 -256t151.5 -80q98 0 149 80t51 256v379q0 173 -52 253.5t-150 80.5q-99 0 -150 -80t-51 -254 v-379z" />
<glyph unicode="1" horiz-adv-x="1175" d="M171 1198v206l588 52v-1456h-292v1198h-296z" />
<glyph unicode="2" horiz-adv-x="1175" d="M76 1007q-5 197 129.5 333.5t362.5 136.5q225 0 353.5 -117t128.5 -312q0 -132 -72.5 -243.5t-239.5 -292.5l-259 -283l2 -5h612v-224h-994v191l471 505q102 117 145 197.5t43 149.5q0 92 -49.5 150.5t-140.5 58.5q-101 0 -153.5 -68.5t-52.5 -182.5h-284z" />
<glyph unicode="3" horiz-adv-x="1175" d="M70 390l2 6h283q0 -84 60 -138.5t152 -54.5q101 0 159.5 56t58.5 152q0 115 -57.5 168.5t-169.5 53.5h-164v219h164q104 0 154 54.5t50 151.5q0 88 -50 141t-145 53q-82 0 -138 -48t-56 -126h-283l-2 6q-6 171 131 282t340 111q226 0 360.5 -108t134.5 -308 q0 -95 -60 -180.5t-165 -133.5q121 -43 184.5 -132t63.5 -207q0 -200 -145.5 -314.5t-372.5 -114.5q-203 0 -348.5 107.5t-140.5 303.5z" />
<glyph unicode="4" horiz-adv-x="1175" d="M57 491l604 965h294v-914h165v-226h-165v-316h-291v316h-594zM329 542h335v524l-6 2l-23 -41z" />
<glyph unicode="5" horiz-adv-x="1175" d="M110 390l2 5l281 14q0 -97 55 -151.5t144 -54.5q102 0 150.5 72.5t48.5 189.5q0 126 -52 202t-154 76q-84 0 -128.5 -31t-63.5 -84l-257 17l84 811h812v-234h-573l-40 -336q40 30 97 49.5t126 20.5q210 3 325.5 -127t115.5 -362q0 -210 -126.5 -349t-364.5 -139 q-201 0 -344 109.5t-138 301.5z" />
<glyph unicode="6" horiz-adv-x="1175" d="M99 569v284q0 286 165 455t420 169q82 0 151.5 -15.5t139.5 -45.5l-52 -214q-66 23 -117.5 34.5t-119.5 11.5q-133 0 -213.5 -99.5t-74.5 -275.5l3 -5q49 51 124 80t169 29q195 0 305.5 -138.5t110.5 -353.5q0 -220 -136.5 -363t-353.5 -143q-231 0 -376 156.5 t-145 433.5zM391 562q0 -173 62.5 -266t166.5 -93q90 0 144.5 82.5t54.5 199.5q0 121 -55 196t-147 75q-81 0 -138 -26t-88 -71v-97z" />
<glyph unicode="7" horiz-adv-x="1175" d="M60 1231v225h1029v-225q-234 -274 -319.5 -511t-122.5 -572l-14 -148h-292l14 148q34 321 146 589.5t307 493.5h-748z" />
<glyph unicode="8" horiz-adv-x="1175" d="M91 398q0 118 66.5 208.5t183.5 140.5q-102 47 -159 130.5t-57 192.5q0 194 127 300.5t335 106.5q207 0 335 -106.5t128 -300.5q0 -109 -57.5 -193t-158.5 -131q116 -49 183 -140t67 -208q0 -202 -137 -310.5t-358 -108.5q-223 0 -360.5 108.5t-137.5 310.5zM384 418 q0 -100 56 -157.5t149 -57.5q91 0 147 58t56 157q0 98 -57 157t-148 59q-92 0 -147.5 -59t-55.5 -157zM417 1057q0 -91 45.5 -144.5t126.5 -53.5q79 0 124.5 53.5t45.5 144.5q0 88 -46.5 141.5t-125.5 53.5q-80 0 -125 -52.5t-45 -142.5z" />
<glyph unicode="9" horiz-adv-x="1175" d="M82 970q0 218 138 362.5t351 144.5q223 0 362 -153.5t139 -431.5v-344q0 -265 -155.5 -417t-396.5 -152q-76 0 -156.5 15.5t-149.5 45.5l34 211q65 -25 128.5 -36.5t143.5 -11.5q115 0 187.5 85.5t72.5 244.5v72q-49 -62 -116.5 -94t-145.5 -32q-203 0 -319.5 132.5 t-116.5 358.5zM373 970q0 -124 50.5 -200.5t143.5 -76.5q72 0 126 27t87 72v134q0 160 -56 243t-152 83q-88 0 -143.5 -82t-55.5 -200z" />
<glyph unicode=":" horiz-adv-x="582" d="M144 0v256h292v-256h-292zM144 876v256h292v-256h-292z" />
<glyph unicode=";" horiz-adv-x="562" d="M114 -302l70 324v228h284v-237l-159 -315h-195zM145 876v256h292v-256h-292z" />
<glyph unicode="&#x3c;" horiz-adv-x="1043" d="M54 436v227l862 366v-272l-577 -207v-6l577 -203v-272z" />
<glyph unicode="=" horiz-adv-x="1181" d="M136 332v229h896v-229h-896zM136 763v229h896v-229h-896z" />
<glyph unicode="&#x3e;" horiz-adv-x="1058" d="M119 69v270l586 209v6l-586 206v269l872 -366v-227z" />
<glyph unicode="?" horiz-adv-x="1021" d="M32 1081q-3 192 126.5 294t337.5 102q224 0 351.5 -113.5t127.5 -308.5q0 -127 -74.5 -235t-186.5 -181q-61 -47 -80 -94.5t-19 -130.5h-291q1 140 41.5 205t161.5 158q71 58 113.5 125t42.5 150q0 92 -48.5 144t-138.5 52q-74 0 -125.5 -44t-52.5 -129h-284zM323 0v250 h294v-250h-294z" />
<glyph unicode="@" horiz-adv-x="1817" d="M66 478q18 427 255.5 683.5t625.5 256.5q387 0 593 -242.5t190 -662.5q-9 -218 -128 -376t-356 -158q-78 0 -135 44t-81 123q-44 -82 -109.5 -123t-153.5 -41q-141 0 -216.5 119t-55.5 315q25 254 143.5 407t287.5 153q116 0 186.5 -26t154.5 -80l-3 -4h5l-51 -573 q-7 -95 14 -130t57 -35q115 0 184.5 109t77.5 276q16 353 -136.5 551t-471.5 198q-303 0 -484 -213t-196 -571q-17 -355 146 -560t469 -205q85 0 175.5 20t155.5 50l38 -147q-67 -42 -170.5 -65.5t-202.5 -23.5q-396 0 -610.5 249t-197.5 682zM720 416q-10 -127 18.5 -192.5 t92.5 -65.5q56 0 101.5 26t81.5 96v6.5t1 6.5l44 496q-23 7 -46 11t-48 4q-111 0 -169 -96.5t-76 -291.5z" />
<glyph unicode="A" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM478 543h367l-180 572h-6z" />
<glyph unicode="B" horiz-adv-x="1314" d="M136 0v1456h492q257 0 401 -100t144 -299q0 -101 -53.5 -180.5t-155.5 -119.5q131 -28 196.5 -120t65.5 -213q0 -209 -138 -316.5t-391 -107.5h-561zM428 224h269q116 0 177 50.5t61 149.5q0 107 -52 163.5t-164 56.5h-291v-420zM428 846h210q117 0 180 48t63 140 q0 101 -63.5 149t-189.5 48h-200v-385z" />
<glyph unicode="C" horiz-adv-x="1309" d="M93 583v289q0 265 160 435t416 170q270 -1 422 -139q148 -135 148 -365v-12l-2 -6h-284q0 144 -69 220.5t-215 76.5q-131 0 -208 -106.5t-77 -271.5v-291q0 -167 81 -273.5t219 -106.5q137 0 202.5 73.5t65.5 218.5h283l2 -6v-12q1 -227 -143 -361q-148 -138 -410 -137 q-263 0 -427 169t-164 435z" />
<glyph unicode="D" horiz-adv-x="1342" d="M136 0v1456h500q267 0 440 -170.5t173 -437.5v-241q0 -268 -173 -437.5t-440 -169.5h-500zM428 224h193q157 0 246 106t89 277v243q0 169 -89 275t-246 106h-193v-1007z" />
<glyph unicode="E" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997z" />
<glyph unicode="F" horiz-adv-x="1182" d="M136 0v1456h1004v-225h-712v-401h610v-225h-610v-605h-292z" />
<glyph unicode="G" horiz-adv-x="1369" d="M99 576v304q0 264 162.5 430.5t418.5 166.5q266 0 407.5 -129.5t144.5 -340.5l-2 -6h-275q-8 116 -74 183.5t-193 67.5q-134 0 -216 -103.5t-82 -266.5v-306q0 -166 85 -269.5t229 -103.5q102 0 164 21t94 52v270h-258v202h550v-549q-65 -86 -202.5 -153t-347.5 -67 q-267 0 -436 166t-169 431z" />
<glyph unicode="H" horiz-adv-x="1450" d="M136 0v1456h292v-626h594v626h291v-1456h-291v605h-594v-605h-292z" />
<glyph unicode="I" horiz-adv-x="601" d="M154 0v1456h292v-1456h-292z" />
<glyph unicode="J" horiz-adv-x="1169" d="M63 417l2 6h284q0 -115 55 -167.5t148 -52.5q81 0 137.5 62.5t56.5 171.5v1019h291v-1019q0 -211 -137.5 -334.5t-347.5 -123.5q-228 0 -361 111q-128 107 -128 311v16z" />
<glyph unicode="K" horiz-adv-x="1323" d="M136 0v1456h292v-595h127l386 595h357l-490 -678l529 -778h-356l-391 608h-162v-608h-292z" />
<glyph unicode="L" horiz-adv-x="1108" d="M136 0v1456h292v-1232h648v-224h-940z" />
<glyph unicode="M" horiz-adv-x="1787" d="M136 0v1456h381l371 -1073h6l374 1073h382v-1456h-292v434l28 643l-6 1l-390 -1078h-196l-388 1074l-6 -1l28 -639v-434h-292z" />
<glyph unicode="N" horiz-adv-x="1450" d="M136 0v1456h292l588 -994l6 1v993h291v-1456h-291l-588 995l-6 -1v-994h-292z" />
<glyph unicode="O" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="P" horiz-adv-x="1334" d="M136 0v1456h580q251 0 395 -128t144 -337t-144 -336t-395 -127h-288v-528h-292zM428 753h288q122 0 185 66.5t63 169.5q0 105 -62.5 173.5t-185.5 68.5h-288v-478z" />
<glyph unicode="Q" horiz-adv-x="1433" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -132 -43 -244.5t-123 -195.5l241 -236l-191 -156l-262 254q-54 -19 -112 -29.5t-120 -10.5q-269 0 -437 175t-168 443zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264 q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="R" horiz-adv-x="1354" d="M136 0v1456h549q249 0 389.5 -113.5t140.5 -316.5q0 -113 -59 -194t-173 -131q129 -38 185.5 -127t56.5 -220v-107q0 -61 16.5 -127.5t56.5 -98.5v-21h-301q-40 32 -52 107t-12 142v103q0 109 -59.5 169.5t-167.5 60.5h-278v-582h-292zM428 807h252q123 0 183.5 52 t60.5 154q0 100 -60.5 159t-178.5 59h-257v-424z" />
<glyph unicode="S" horiz-adv-x="1299" d="M90 445l2 6h284q0 -130 79.5 -190.5t221.5 -60.5q119 0 182 49t63 131q0 84 -59.5 135t-208.5 96q-260 75 -393 178t-133 282t152.5 292.5t389.5 113.5q240 1 391 -127q146 -123 146 -303v-12l-2 -6h-283q0 101 -67.5 163.5t-189.5 62.5q-117 0 -181 -52t-64 -133 q0 -74 68.5 -121.5t236.5 -100.5q241 -67 365 -177t124 -289q0 -187 -147.5 -295t-389.5 -108q-238 1 -415 123q-172 119 -172 331v12z" />
<glyph unicode="T" horiz-adv-x="1169" d="M28 1231v225h1114v-225h-412v-1231h-292v1231h-410z" />
<glyph unicode="U" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378z" />
<glyph unicode="V" horiz-adv-x="1303" d="M7 1456h308l315 -1069l18 -79h6l17 77l317 1071h308l-495 -1456h-300z" />
<glyph unicode="W" horiz-adv-x="1815" d="M24 1456h286l209 -997l6 -1l273 998h215l275 -998h6l208 998h285l-340 -1456h-271l-267 961h-6l-267 -961h-271z" />
<glyph unicode="X" horiz-adv-x="1303" d="M31 0l443 734l-432 722h338l269 -516l273 516h340l-432 -722l457 -734h-353l-281 525l-281 -525h-341z" />
<glyph unicode="Y" horiz-adv-x="1292" d="M5 1456h320l318 -671h6l318 671h320l-500 -944v-512h-291v527z" />
<glyph unicode="Z" horiz-adv-x="1206" d="M77 0v152l692 1079h-691v225h1047v-146l-695 -1086h712v-224h-1065z" />
<glyph unicode="[" horiz-adv-x="570" d="M119 -336v2027h434v-216h-141v-1595h141v-216h-434z" />
<glyph unicode="\" horiz-adv-x="863" d="M2 1456h289l608 -1581h-289z" />
<glyph unicode="]" horiz-adv-x="570" d="M13 -120h142v1595h-142v216h434v-2027h-434v216z" />
<glyph unicode="^" horiz-adv-x="896" d="M44 729l299 727h212l299 -727h-231l-165 413l-8 34h-6l-7 -34l-162 -413h-231z" />
<glyph unicode="_" horiz-adv-x="914" d="M1 0h910v-219h-910v219z" />
<glyph unicode="`" horiz-adv-x="678" d="M77 1472l2 6h309l197 -266h-237z" />
<glyph unicode="a" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6v14q0 128 119 222q126 100 331 100q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="b" d="M112 0v1560h291v-593q47 65 112.5 100t150.5 35q206 0 314 -155.5t108 -414.5v-21q0 -242 -108 -387t-312 -145q-94 0 -164.5 39.5t-119.5 115.5l-22 -134h-250zM403 307q27 -49 74.5 -75t116.5 -26q113 0 158 79.5t45 225.5v21q0 158 -46.5 250.5t-158.5 92.5 q-68 0 -115 -28.5t-74 -81.5v-458z" />
<glyph unicode="c" horiz-adv-x="1060" d="M62 525v30q0 239 130.5 393t372.5 154q201 0 323 -114q119 -110 118 -288v-12l-2 -6h-266q0 84 -46 139.5t-127 55.5q-116 0 -163.5 -90t-47.5 -232v-30q0 -145 47.5 -233.5t164.5 -88.5q78 0 125 45.5t47 121.5h265l3 -6v-10q0 -156 -124 -264q-128 -110 -316 -111 q-242 0 -373 153t-131 393z" />
<glyph unicode="d" d="M67 511v21q0 256 110.5 413t311.5 157q81 0 146 -35t114 -100v593h293v-1560h-251l-24 132q-51 -75 -120.5 -114t-159.5 -39q-199 0 -309.5 146t-110.5 386zM358 511q0 -142 48 -223.5t156 -81.5q63 0 110 25.5t77 74.5v461q-30 51 -76.5 79.5t-108.5 28.5 q-107 0 -156.5 -95t-49.5 -248v-21z" />
<glyph unicode="e" horiz-adv-x="1084" d="M77 510v40q1 241 133 397q132 155 352 155h3q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM379 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5 q-81 0 -128 -62t-58 -163z" />
<glyph unicode="f" horiz-adv-x="732" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161z" />
<glyph unicode="g" d="M67 511v21q0 256 111.5 413t312.5 157q91 0 160 -41t118 -117l23 138h252v-1077q0 -211 -138.5 -326.5t-385.5 -115.5q-82 0 -174 22.5t-170 61.5l54 218q67 -32 136.5 -48.5t151.5 -16.5q120 0 176.5 50t56.5 156v98q-48 -61 -113 -93t-149 -32q-199 0 -310.5 146.5 t-111.5 385.5zM359 511q0 -142 48 -223.5t156 -81.5q67 0 113.5 24.5t74.5 71.5v470q-28 49 -74.5 76t-111.5 27q-107 0 -156.5 -95t-49.5 -248v-21z" />
<glyph unicode="h" d="M105 0v1560h292v-615q51 74 125 115.5t164 41.5q169 0 265.5 -112.5t96.5 -347.5v-642h-292v644q0 126 -44.5 178.5t-132.5 52.5q-60 0 -106 -21.5t-76 -60.5v-793h-292z" />
<glyph unicode="i" horiz-adv-x="547" d="M127 0v1082h292v-1082h-292zM127 1341v219h292v-219h-292z" />
<glyph unicode="j" horiz-adv-x="543" d="M-98 -420l14 223q23 -6 46 -9t49 -3q59 0 91 41.5t32 127.5v1122h293v-1122q0 -190 -101 -293.5t-281 -103.5q-40 0 -73 4t-70 13zM128 1343v217h293v-217h-293z" />
<glyph unicode="k" horiz-adv-x="1097" d="M112 0v1560h292v-885h72l251 407h338l-346 -490l399 -592h-335l-299 453h-80v-453h-292z" />
<glyph unicode="l" horiz-adv-x="547" d="M127 0v1560h292v-1560h-292z" />
<glyph unicode="m" horiz-adv-x="1772" d="M112 0v1082h271l12 -143q52 78 130.5 120.5t181.5 42.5q104 0 178 -46t112 -139q50 87 130 136t188 49q160 0 252.5 -110.5t92.5 -336.5v-655h-292v656q0 123 -40 171t-119 48q-62 0 -107.5 -27.5t-72.5 -76.5q0 -19 1 -32.5t1 -27.5v-711h-291v656q0 120 -40 169.5 t-120 49.5q-59 0 -103.5 -22.5t-73.5 -63.5v-789h-291z" />
<glyph unicode="n" d="M107 0v1082h272l13 -155q54 83 133 129t177 46q164 0 256 -103t92 -323v-676h-293v675q0 109 -44 154.5t-133 45.5q-58 0 -104 -23.5t-77 -66.5v-785h-292z" />
<glyph unicode="o" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5 v-21z" />
<glyph unicode="p" d="M112 -416v1498h263l17 -128q48 71 115.5 109.5t157.5 38.5q201 0 312 -157t111 -413v-21q0 -240 -111 -386t-310 -146q-85 0 -151 31.5t-113 92.5v-519h-291zM403 297q27 -46 73.5 -70t114.5 -24q106 0 155.5 83t49.5 225v21q0 153 -51 248t-156 95q-66 0 -112.5 -27 t-73.5 -77v-474z" />
<glyph unicode="q" d="M67 511v21q0 256 110.5 413t311.5 157q90 0 158 -39.5t117 -113.5l27 133h248v-1498h-292v517q-48 -60 -112.5 -91t-147.5 -31q-199 0 -309.5 146t-110.5 386zM358 511q0 -142 48 -225t156 -83q64 0 110 24t75 70v480q-29 48 -74.5 74t-108.5 26q-107 0 -156.5 -96 t-49.5 -249v-21z" />
<glyph unicode="r" horiz-adv-x="717" d="M112 0v1082h271l13 -160q38 85 98.5 132.5t139.5 47.5q22 0 40.5 -3.5t37.5 -8.5l-31 -259l-107 3q-65 0 -107 -27t-64 -76v-731h-291z" />
<glyph unicode="s" horiz-adv-x="1056" d="M64 338l2 6h267q3 -87 57 -126t141 -39q81 0 123.5 32t42.5 87q0 48 -46.5 83t-172.5 62q-192 39 -289.5 115.5t-97.5 208.5q0 140 117.5 237.5t314.5 97.5q207 0 329 -97q118 -93 118 -233v-12l-2 -6h-282q0 65 -41.5 106t-121.5 41q-71 0 -111.5 -34.5t-40.5 -86.5 q0 -50 42.5 -82t172.5 -57q200 -40 297 -117.5t97 -213.5q0 -146 -125 -238.5t-330 -92.5q-215 -1 -341 109q-120 105 -120 237v13z" />
<glyph unicode="t" horiz-adv-x="715" d="M9 877v205h158v265h292v-265h182v-205h-182v-551q0 -63 26 -90t70 -27q23 0 39.5 2.5t38.5 8.5l25 -211q-44 -15 -86 -22.5t-91 -7.5q-151 0 -232.5 83t-81.5 263v552h-158z" />
<glyph unicode="u" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5z" />
<glyph unicode="v" horiz-adv-x="1046" d="M16 1082h305l182 -679l19 -100h6l20 100l178 679h305l-368 -1082h-279z" />
<glyph unicode="w" horiz-adv-x="1507" d="M29 1082h274l143 -693h6l202 693h195l204 -695h6l141 695h274l-275 -1082h-244l-201 644h-6l-201 -644h-243z" />
<glyph unicode="x" horiz-adv-x="1046" d="M19 0l337 547l-327 535h328l162 -344h6l166 344h330l-326 -535l337 -547h-329l-177 359l-177 -359h-330z" />
<glyph unicode="y" horiz-adv-x="1046" d="M5 1082h314l183 -628l12 -60h6l207 688h314l-439 -1244q-46 -116 -125 -195.5t-237 -79.5q-37 0 -68.5 6t-76.5 17l34 213q13 -2 28 -4t27 -2q72 0 111 35.5t60 88.5l34 84z" />
<glyph unicode="z" horiz-adv-x="1046" d="M75 0v172l515 684h-499v226h866v-167l-519 -691h536v-224h-899z" />
<glyph unicode="{" horiz-adv-x="676" d="M48 518v201q90 0 133.5 54.5t43.5 155.5v203q0 171 82.5 290.5t277.5 174.5l56 -157q-85 -31 -120 -110.5t-35 -197.5v-203q0 -104 -44.5 -184.5t-134.5 -125.5q90 -47 134.5 -127.5t44.5 -182.5v-203q0 -118 35 -197.5t120 -110.5l-56 -158q-195 55 -277.5 175 t-82.5 291v203q0 99 -43.5 154t-133.5 55z" />
<glyph unicode="|" horiz-adv-x="519" d="M173 -270v1726h176v-1726h-176z" />
<glyph unicode="}" horiz-adv-x="676" d="M34 -202q85 31 120 110.5t35 197.5v203q0 104 46 184t140 125q-94 45 -140 125.5t-46 185.5v203q0 118 -35 197.5t-120 110.5l56 157q194 -55 277 -174.5t83 -290.5v-203q0 -101 43 -155.5t135 -54.5v-201q-92 0 -135 -55t-43 -154v-203q0 -171 -83 -291t-277 -175z" />
<glyph unicode="~" horiz-adv-x="1327" d="M105 448q0 162 86.5 269.5t223.5 107.5q83 0 158.5 -33.5t151.5 -99.5q49 -45 86.5 -64.5t81.5 -19.5q50 0 87 52t37 125l203 -27q0 -161 -88.5 -270.5t-223.5 -109.5q-85 0 -157 31.5t-150 101.5q-52 44 -89.5 64t-81.5 20q-52 0 -87.5 -51t-35.5 -122z" />
<glyph unicode="&#xa1;" horiz-adv-x="580" d="M142 -374v953h292v-953h-292zM142 825v257h292v-257h-292z" />
<glyph unicode="&#xa2;" horiz-adv-x="1181" d="M72 525v30q0 218 110.5 367.5t317.5 174.5v221h200v-229q148 -34 235 -141.5t87 -265.5h-274q0 84 -46 139.5t-127 55.5q-116 0 -163.5 -90t-47.5 -232v-30q0 -145 47.5 -233.5t164.5 -88.5q78 0 125 45.5t47 121.5h267l2 -5q3 -135 -85.5 -237t-231.5 -135v-238h-200 v229q-207 23 -317.5 172.5t-110.5 368.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1216" d="M92 588v225h155l-8 214q0 210 120.5 330t322.5 120q215 0 333.5 -111.5t114.5 -294.5l-2 -6h-284q0 96 -46 141.5t-117 45.5q-70 0 -110 -58.5t-40 -166.5l10 -214h355v-225h-345l4 -85q0 -78 -30 -150t-86 -129h713v-224h-996v224h10q47 12 70.5 95t23.5 171l-4 98h-164 z" />
<glyph unicode="&#xa4;" horiz-adv-x="1417" d="M80 118l135 137q-49 76 -74.5 165.5t-25.5 187.5q0 101 28 194t81 171l-144 147l141 144l142 -145q74 55 162.5 85t185.5 30q96 0 185 -30.5t164 -86.5l144 148l142 -145l-148 -151q51 -78 79 -169.5t28 -191.5q0 -97 -25.5 -185.5t-72.5 -163.5l139 -141l-142 -145 l-132 134q-77 -62 -169 -94.5t-192 -32.5q-101 0 -193.5 32.5t-167.5 93.5l-129 -132zM301 608q0 -185 119 -312t291 -127q170 0 289.5 127.5t119.5 311.5q0 183 -119.5 310t-289.5 127q-172 0 -291 -127t-119 -310z" />
<glyph unicode="&#xa5;" horiz-adv-x="1253" d="M22 1456h321l280 -608h6l281 608h320l-382 -714h244v-200h-324v-110h324v-200h-324v-232h-292v232h-339v200h339v110h-339v200h267z" />
<glyph unicode="&#xa6;" horiz-adv-x="517" d="M127 -270v795h262v-795h-262zM127 698v758h262v-758h-262z" />
<glyph unicode="&#xa7;" horiz-adv-x="1287" d="M94 536q0 89 42 158t121 113q-69 50 -103 120.5t-34 168.5q0 172 141.5 276.5t378.5 104.5q243 0 380.5 -111t132.5 -311l-2 -6h-283q0 88 -60 145.5t-168 57.5q-114 0 -171 -43.5t-57 -110.5q0 -75 55.5 -113.5t232.5 -86.5q247 -64 363.5 -157.5t116.5 -265.5 q0 -91 -42 -159t-121 -111q68 -51 102.5 -121t34.5 -168q0 -177 -140 -277t-377 -100q-232 0 -387.5 99.5t-150.5 317.5l2 6l283 1q0 -106 72.5 -152t180.5 -46q107 0 166.5 41.5t59.5 108.5t-61 107.5t-230 90.5q-244 64 -361 157.5t-117 265.5zM385 562q0 -80 55.5 -121.5 t232.5 -93.5q34 -10 68.5 -20t69.5 -21q39 22 60.5 59t21.5 85q0 71 -62 116t-232 97q-40 10 -74 21t-65 22q-38 -22 -56.5 -59t-18.5 -85z" />
<glyph unicode="&#xa8;" horiz-adv-x="1090" d="M156 1252v204h266v-204h-266zM656 1252v204h266v-204h-266z" />
<glyph unicode="&#xa9;" horiz-adv-x="1606" d="M86 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -208 -533t-502 -217q-296 0 -503 217t-207 533zM208 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M433 669v119q0 173 94.5 280t254.5 107q157 0 245.5 -79.5t84.5 -228.5l-2 -6h-148q0 94 -45 136.5t-135 42.5q-94 0 -144 -69t-50 -182v-120q0 -115 50 -183.5t144 -68.5q90 0 134.5 41.5t44.5 137.5h148l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254.5 106t-94.5 281z " />
<glyph unicode="&#xaa;" horiz-adv-x="909" d="M112 920q0 111 84.5 171t246.5 60h137v51q0 62 -29.5 94.5t-86.5 32.5q-66 0 -102 -26t-36 -73l-165 13l-1 6q-6 98 79 163t225 65q134 0 212.5 -71t78.5 -205v-314q0 -51 6 -95t20 -86h-177q-8 21 -13 44.5t-8 49.5q-33 -47 -88.5 -77.5t-133.5 -30.5q-119 0 -184 61 t-65 167zM287 924q0 -43 29 -65.5t88 -22.5q51 0 105 30t71 65v103h-136q-74 0 -115.5 -32t-41.5 -78z" />
<glyph unicode="&#xab;" horiz-adv-x="1025" d="M98 507v19l280 390h187l-240 -400l240 -399h-187zM432 507v19l280 390h187l-240 -400l240 -399h-187z" />
<glyph unicode="&#xac;" horiz-adv-x="1129" d="M126 634v171h835v-431h-200v260h-635z" />
<glyph unicode="&#xad;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#xae;" horiz-adv-x="1606" d="M86 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -208 -533t-502 -217q-296 0 -503 217t-207 533zM208 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M501 316v850h281q151 0 238 -68t87 -194q0 -58 -29 -101.5t-85 -74.5q58 -30 84.5 -84.5t26.5 -128.5v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-155q-9 21 -11 61.5t-2 82.5v54q0 71 -33.5 105t-109.5 34h-158v-337h-151zM652 787h135q71 0 120.5 30t49.5 86q0 72 -39 101 t-136 29h-130v-246z" />
<glyph unicode="&#xaf;" horiz-adv-x="1028" d="M148 1292v165h731v-165h-731z" />
<glyph unicode="&#xb0;" horiz-adv-x="796" d="M126 1203q0 112 80.5 193t192.5 81q110 0 189 -81t79 -193q0 -113 -79 -192t-189 -79q-113 0 -193 79t-80 192zM273 1203q0 -53 37 -88.5t89 -35.5q51 0 86 35t35 89t-35 91t-86 37q-52 0 -89 -37t-37 -91z" />
<glyph unicode="&#xb1;" horiz-adv-x="1101" d="M90 715v232h333v363h256v-363h327v-232h-327v-383h-256v383h-333zM114 -43v228h834v-228h-834z" />
<glyph unicode="&#xb2;" horiz-adv-x="860" d="M108 1223q-6 106 82.5 181t236.5 75q144 0 223 -65t79 -183q0 -82 -53.5 -144.5t-178.5 -165.5l-109 -93l2 -6h346v-155h-622v155l309 252q60 50 77.5 83.5t17.5 74.5q0 39 -23.5 65.5t-72.5 26.5q-55 0 -83 -30t-28 -77h-201z" />
<glyph unicode="&#xb3;" horiz-adv-x="856" d="M95 893l2 6h201q0 -42 31.5 -65.5t91.5 -23.5q56 0 90 24t34 68q0 50 -35 77t-102 27h-111v133h111q62 0 92 24.5t30 70.5q0 38 -28.5 63.5t-83.5 25.5q-51 0 -79.5 -22t-28.5 -53h-200l-2 6q-6 101 82 162.5t222 61.5q152 0 240.5 -59.5t88.5 -169.5q0 -55 -35.5 -100.5 t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -89.5 -174t-241.5 -62q-146 0 -240 62.5t-88 175.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="727" d="M108 1212l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xb5;" horiz-adv-x="1264" d="M139 -416v1498h291v-620q0 -149 45 -202.5t135 -53.5q75 0 125 27.5t78 79.5v769h292v-1082h-272l-6 67q-44 -43 -100.5 -65.5t-123.5 -22.5q-51 0 -94.5 10.5t-78.5 33.5v-439h-291z" />
<glyph unicode="&#xb6;" horiz-adv-x="1078" d="M61 988q0 207 129.5 337.5t362.5 130.5h375v-1456h-292v520h-83q-233 0 -362.5 129.5t-129.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="619" d="M159 568v260h292v-260h-292z" />
<glyph unicode="&#xb8;" horiz-adv-x="549" d="M97 -136l31 142h219l-11 -57q64 -11 107 -52t43 -121q0 -107 -91.5 -171t-259.5 -64l-7 161q51 0 81 20.5t30 62.5q0 41 -32 57.5t-110 21.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M78 1295v159l338 23v-812h-211v630h-127z" />
<glyph unicode="&#xba;" horiz-adv-x="937" d="M118 1025v117q0 148 94 241.5t252 93.5t252.5 -93.5t94.5 -241.5v-117q0 -149 -94 -241.5t-251 -92.5q-159 0 -253.5 92.5t-94.5 241.5zM293 1025q0 -85 44 -136.5t129 -51.5q82 0 126 51.5t44 136.5v117q0 83 -44.5 135t-127.5 52q-84 0 -127.5 -52t-43.5 -135v-117z " />
<glyph unicode="&#xbb;" horiz-adv-x="1025" d="M102 151l239 399l-239 400h188l280 -390v-19l-280 -390h-188zM448 151l239 399l-239 400h188l280 -390v-19l-280 -390h-188z" />
<glyph unicode="&#xbc;" horiz-adv-x="1493" d="M167 1294v159l338 23v-812h-211v630h-127zM309 192l711 1138l142 -75l-711 -1138zM762 265l424 536h211v-505h101v-157h-101v-139h-211v139h-410zM978 296h208v257l-6 2l-13 -20z" />
<glyph unicode="&#xbd;" horiz-adv-x="1553" d="M167 1294v159l338 23v-812h-211v630h-127zM322 192l711 1138l142 -75l-711 -1138zM919 556q-6 106 82.5 181t236.5 75q144 0 223 -65t79 -183q0 -82 -53.5 -144.5t-178.5 -165.5l-109 -93l2 -6h346v-155h-622v155l309 252q60 50 77.5 83.5t17.5 74.5q0 39 -23.5 65.5 t-72.5 26.5q-55 0 -83 -30t-28 -77h-201z" />
<glyph unicode="&#xbe;" horiz-adv-x="1717" d="M111 894l2 6h201q0 -42 31.5 -65.5t91.5 -23.5q56 0 90 24t34 68q0 50 -35 77t-102 27h-111v133h111q62 0 92 24.5t30 70.5q0 38 -28.5 63.5t-83.5 25.5q-51 0 -79.5 -22t-28.5 -53h-200l-2 6q-6 101 82 162.5t222 61.5q152 0 240.5 -59.5t88.5 -169.5 q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -89.5 -174t-241.5 -62q-146 0 -240 62.5t-88 175.5zM492 192l711 1138l142 -75l-711 -1138zM951 265l424 536h211v-505h101v-157h-101v-139h-211v139h-410zM1167 296h208v257l-6 2l-13 -20z" />
<glyph unicode="&#xbf;" horiz-adv-x="1037" d="M75 27q0 125 74 233t187 183q60 45 79.5 92.5t19.5 132.5h291q-2 -141 -42.5 -206.5t-159.5 -157.5q-72 -58 -114.5 -125.5t-42.5 -149.5q0 -90 48.5 -142t139.5 -52q73 0 124 43t54 128h283l2 -6q2 -191 -127.5 -292.5t-335.5 -101.5q-226 0 -353 113t-127 308zM433 831 v251h294v-251h-294z" />
<glyph unicode="&#xc0;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM307 1820l2 6h309l197 -266h-237zM478 543h367l-180 572h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM478 543h367l-180 572h-6zM519 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xc2;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM286 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM478 543h367l-180 572h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM281 1644q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM478 543h367 l-180 572h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM272 1601v204h266v-204h-266zM478 543h367l-180 572h-6zM772 1601v204h266v-204h-266z" />
<glyph unicode="&#xc5;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM444 1739q0 83 61.5 139.5t151.5 56.5q88 0 149 -56.5t61 -139.5q0 -84 -60.5 -138t-149.5 -54q-90 0 -151.5 54t-61.5 138zM478 543h367l-180 572h-6zM560 1739q0 -43 28 -70.5t69 -27.5t67.5 27.5 t26.5 70.5q0 44 -26.5 72t-67.5 28q-42 0 -69.5 -28.5t-27.5 -71.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1925" d="M3 0l784 1456h1016v-228h-596l16 -366h499v-227h-490l17 -408h616v-227h-898l-14 335h-440l-168 -335h-342zM633 575h310l-23 559l-6 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1309" d="M93 583v289q0 265 160 435t416 170q270 0 422 -138.5t148 -377.5l-2 -6h-284q0 144 -69 220.5t-215 76.5q-131 0 -208 -106.5t-77 -271.5v-291q0 -167 81 -273.5t219 -106.5q137 0 202.5 73.5t65.5 218.5h283l2 -6q4 -235 -143.5 -372.5t-409.5 -137.5q-263 0 -427 169 t-164 435zM524 -137l31 142h219l-11 -57q64 -11 107 -52t43 -121q0 -107 -91.5 -171t-259.5 -64l-7 161q51 0 81 20.5t30 62.5q0 41 -32 57.5t-110 21.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM244 1820l2 6h309l197 -266h-237z" />
<glyph unicode="&#xc9;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM456 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xca;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM238 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#xcb;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM221 1601v204h266v-204h-266zM721 1601v204h266v-204h-266z" />
<glyph unicode="&#xcc;" horiz-adv-x="601" d="M-58 1820l2 6h309l197 -266h-237zM154 0v1456h292v-1456h-292z" />
<glyph unicode="&#xcd;" horiz-adv-x="601" d="M152 1560l199 266h309l2 -6l-277 -260h-233zM154 0v1456h292v-1456h-292z" />
<glyph unicode="&#xce;" horiz-adv-x="601" d="M-64 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM154 0v1456h292v-1456h-292z" />
<glyph unicode="&#xcf;" horiz-adv-x="601" d="M-81 1601v204h266v-204h-266zM154 0v1456h292v-1456h-292zM419 1601v204h266v-204h-266z" />
<glyph unicode="&#xd0;" horiz-adv-x="1372" d="M31 652v181h135v623h500q267 0 440 -170.5t173 -437.5v-241q0 -268 -173 -437.5t-440 -169.5h-500v652h-135zM458 224h193q157 0 246 106t89 277v243q0 169 -89 275t-246 106h-193v-398h244v-181h-244v-428z" />
<glyph unicode="&#xd1;" horiz-adv-x="1450" d="M136 0v1456h292l588 -994l6 1v993h291v-1456h-291l-588 995l-6 -1v-994h-292zM349 1644q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5z " />
<glyph unicode="&#xd2;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM339 1820l2 6h309l197 -266h-237zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109 t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="&#xd3;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264zM551 1581 l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xd4;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM333 1613v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282 v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="&#xd5;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM324 1665q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5 q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="&#xd6;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM316 1622v204h266v-204h-266zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5 t-82 -279.5v-264zM816 1622v204h266v-204h-266z" />
<glyph unicode="&#xd7;" horiz-adv-x="1088" d="M64 371l309 315l-309 315l172 164l303 -310l304 310l172 -164l-309 -315l309 -315l-172 -164l-304 309l-303 -309z" />
<glyph unicode="&#xd8;" horiz-adv-x="1410" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q100 0 188.5 -26.5t162.5 -74.5l83 142h143l-130 -223q79 -83 121.5 -195t42.5 -241v-262q0 -268 -169.5 -443t-440.5 -175q-79 0 -151 16t-133 47l-80 -137h-143l119 204q-104 83 -160.5 209.5t-56.5 278.5zM383 597 q0 -74 15.5 -137.5t45.5 -107.5l6 -1l468 803q-42 45 -98 70t-124 25q-149 0 -231 -108.5t-82 -279.5v-264zM535 251q33 -22 74 -33.5t88 -11.5q150 0 234 109t84 282v264q0 45 -7 87t-18 73l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM344 1820l2 6h309l197 -266h-237z" />
<glyph unicode="&#xda;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM556 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xdb;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM338 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#xdc;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM321 1601v204h266v-204h-266zM821 1601v204h266v-204h-266z" />
<glyph unicode="&#xdd;" horiz-adv-x="1292" d="M5 1456h320l318 -671h6l318 671h320l-500 -944v-512h-291v527zM504 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xde;" horiz-adv-x="1247" d="M132 0v1456h292v-270h221q254 0 396 -124t142 -324q0 -201 -142 -325t-396 -124h-221v-289h-292zM424 514h221q123 0 184.5 63.5t61.5 158.5t-61.5 160t-184.5 65h-221v-447z" />
<glyph unicode="&#xdf;" horiz-adv-x="1294" d="M135 0v1101q0 226 129 349t352 123q180 0 299 -95.5t119 -271.5q0 -108 -53.5 -205.5t-53.5 -165.5q0 -56 150 -197.5t150 -281.5q0 -189 -115 -283t-332 -94q-81 0 -160.5 15t-118.5 41l55 223q39 -22 96 -38.5t122 -16.5q76 0 119 38t43 103q0 71 -150 205.5 t-150 276.5q0 90 54.5 190t54.5 175q0 68 -45 113t-103 45q-76 0 -123.5 -67.5t-47.5 -184.5v-1097h-291z" />
<glyph unicode="&#xe0;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM184 1492l2 6h309l197 -266h-237zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5zM396 1232l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xe2;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM178 1270v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM169 1322q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM346 315q0 -54 36 -87t98 -33q77 0 137 38 t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM161 1279v204h266v-204h-266zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5zM661 1279v204h266v-204h-266z" />
<glyph unicode="&#xe5;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM332 1417q0 83 61.5 139.5t151.5 56.5q88 0 149 -56.5t61 -139.5q0 -84 -60.5 -138t-149.5 -54q-90 0 -151.5 54t-61.5 138zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5zM448 1417 q0 -43 28 -70.5t69 -27.5t67.5 27.5t26.5 70.5q0 44 -26.5 72t-67.5 28q-42 0 -69.5 -28.5t-27.5 -71.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1729" d="M46 317q0 159 127 245t370 86h181v59q0 79 -41 124.5t-115 45.5q-81 0 -127 -37.5t-46 -93.5l-283 18l-2 6q-6 144 121.5 238t339.5 94q102 0 186 -27.5t143 -79.5q61 52 142.5 79.5t180.5 27.5q212 0 333 -132t121 -358v-158h-650l-2 -6q4 -112 66 -178.5t186 -66.5 q92 0 154 20t140 61l77 -184q-62 -48 -169 -84.5t-233 -36.5q-129 0 -229.5 40.5t-167.5 116.5q-60 -68 -161.5 -112.5t-240.5 -44.5q-192 0 -296.5 90.5t-104.5 247.5zM338 313q0 -59 41.5 -93.5t123.5 -34.5q58 0 121 30.5t100 72.5v176h-179q-98 0 -152.5 -44t-54.5 -107 zM1027 649l2 -5h362v28q0 94 -42.5 149.5t-125.5 55.5q-95 0 -142 -61.5t-54 -166.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1060" d="M62 525v30q0 239 130.5 393t372.5 154q200 0 322.5 -114t118.5 -300l-2 -6h-266q0 84 -46 139.5t-127 55.5q-116 0 -163.5 -90t-47.5 -232v-30q0 -145 47.5 -233.5t164.5 -88.5q78 0 125 45.5t47 121.5h265l3 -6q4 -164 -123.5 -274.5t-316.5 -110.5q-242 0 -373 153 t-131 393zM415 -137l31 142h219l-11 -57q64 -11 107 -52t43 -121q0 -107 -91.5 -171t-259.5 -64l-7 161q51 0 81 20.5t30 62.5q0 41 -32 57.5t-110 21.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM186 1498l2 6h309l197 -266h-237zM379 652l3 -5h358v26 q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62t-58 -163z" />
<glyph unicode="&#xe9;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM379 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5 q-81 0 -128 -62t-58 -163zM398 1238l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xea;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM180 1271v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133 h-227zM379 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62t-58 -163z" />
<glyph unicode="&#xeb;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM163 1280v204h266v-204h-266zM379 652l3 -5h358v26 q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62t-58 -163zM663 1280v204h266v-204h-266z" />
<glyph unicode="&#xec;" horiz-adv-x="562" d="M-78 1498l2 6h309l197 -266h-237zM133 0v1082h292v-1082h-292z" />
<glyph unicode="&#xed;" horiz-adv-x="562" d="M132 1217l199 266h309l2 -6l-277 -260h-233zM133 0v1082h292v-1082h-292z" />
<glyph unicode="&#xee;" horiz-adv-x="562" d="M-84 1251v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM133 0v1082h292v-1082h-292z" />
<glyph unicode="&#xef;" horiz-adv-x="562" d="M-101 1258v204h266v-204h-266zM133 0v1082h292v-1082h-292zM399 1258v204h266v-204h-266z" />
<glyph unicode="&#xf0;" horiz-adv-x="1218" d="M48 468q0 226 134.5 362.5t365.5 136.5q81 0 153 -25.5t124 -70.5l4 4q-14 83 -54 153.5t-100 125.5l-245 -136l-78 113l192 106l-1 6q-31 16 -68 30t-77 26l92 218q88 -19 168.5 -52.5t149.5 -80.5l198 109l77 -113l-162 -90q102 -106 158.5 -245t56.5 -303v-196 q0 -250 -157 -408.5t-392 -158.5q-238 0 -388.5 140.5t-150.5 348.5zM340 468q0 -112 68 -188.5t183 -76.5q116 0 184.5 96.5t68.5 246.5v118q-35 39 -99 65t-151 26q-122 0 -188 -79t-66 -208z" />
<glyph unicode="&#xf1;" d="M107 0v1082h272l13 -155q54 83 133 129t177 46q164 0 256 -103t92 -323v-676h-293v675q0 109 -44 154.5t-133 45.5q-58 0 -104 -23.5t-77 -66.5v-785h-292zM202 1322q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5 t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5z" />
<glyph unicode="&#xf2;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM217 1498l2 6h309l197 -266h-237zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91 q-113 0 -165.5 -91.5t-52.5 -234.5v-21z" />
<glyph unicode="&#xf3;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5 v-21zM429 1238l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xf4;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM211 1270v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90 t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5v-21z" />
<glyph unicode="&#xf5;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM202 1322q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5 q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5v-21z" />
<glyph unicode="&#xf6;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM194 1279v204h266v-204h-266zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91 q-113 0 -165.5 -91.5t-52.5 -234.5v-21zM694 1279v204h266v-204h-266z" />
<glyph unicode="&#xf7;" horiz-adv-x="1168" d="M63 573v227h1029v-227h-1029zM432 164v233h293v-233h-293zM432 973v233h293v-233h-293z" />
<glyph unicode="&#xf8;" d="M67 530v21q0 242 135 396.5t374 154.5q50 0 96.5 -8t90.5 -22l70 143h161l-103 -211q95 -74 146 -191.5t51 -261.5v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-48 0 -92 7t-84 19l-71 -146h-161l103 211q-101 71 -153.5 190.5t-52.5 269.5zM358 530q0 -62 8.5 -114 t26.5 -86l6 -1l260 531q-19 8 -39.5 12.5t-43.5 4.5q-113 0 -165.5 -91.5t-52.5 -234.5v-21zM505 215q15 -7 33.5 -9.5t39.5 -2.5q113 0 165.5 90t52.5 237v21q0 54 -8 102t-22 82l-6 1z" />
<glyph unicode="&#xf9;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM216 1477l2 6h309l197 -266h-237z" />
<glyph unicode="&#xfa;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM428 1217l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xfb;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM210 1251v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#xfc;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM193 1258v204h266v-204h-266zM693 1258v204h266v-204h-266z" />
<glyph unicode="&#xfd;" horiz-adv-x="1046" d="M5 1082h314l183 -628l12 -60h6l207 688h314l-439 -1244q-46 -116 -125 -195.5t-237 -79.5q-37 0 -68.5 6t-76.5 17l34 213q13 -2 28 -4t27 -2q72 0 111 35.5t60 88.5l34 84zM375 1217l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xfe;" horiz-adv-x="1162" d="M121 0v1560h292v-591q47 64 112 98.5t150 34.5q201 0 312 -157t111 -413v-21q0 -240 -111 -386t-310 -146q-85 0 -151 31.5t-113 92.5v-519h-291v416h-1zM413 297q27 -46 73.5 -70t114.5 -24q106 0 155.5 83t49.5 225v21q0 153 -51 248t-156 95q-66 0 -112.5 -27 t-73.5 -77v-474z" />
<glyph unicode="&#xff;" horiz-adv-x="1046" d="M5 1082h314l183 -628l12 -60h6l207 688h314l-439 -1244q-46 -116 -125 -195.5t-237 -79.5q-37 0 -68.5 6t-76.5 17l34 213q13 -2 28 -4t27 -2q72 0 111 35.5t60 88.5l34 84zM142 1258v204h266v-204h-266zM642 1258v204h266v-204h-266z" />
<glyph unicode="&#x152;" horiz-adv-x="1984" d="M97 576v304q0 265 167 431t437 166q69 0 140 -6t150 -15h865v-225h-703v-366h603v-225h-603v-416h705v-224h-867q-92 -10 -156.5 -15.5t-131.5 -5.5q-270 0 -438 165.5t-168 431.5zM388 576q0 -182 83.5 -277t231.5 -95q40 0 79.5 2t78.5 7v1030q-45 4 -83.5 6.5 t-76.5 2.5q-148 0 -230.5 -94.5t-82.5 -275.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1848" d="M67 530v21q0 242 135 396.5t374 154.5q127 0 227 -46.5t167 -129.5q65 84 159.5 130t213.5 46q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-127 0 -228 46t-169 131 q-67 -85 -167 -131t-227 -46q-240 0 -375.5 153.5t-135.5 397.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5v-21zM1157 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62 t-58 -163z" />
<glyph unicode="&#x178;" horiz-adv-x="1292" d="M5 1456h320l318 -671h6l318 671h320l-500 -944v-512h-291v527zM269 1601v204h266v-204h-266zM769 1601v204h266v-204h-266z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1016" d="M137 1252v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#x2dc;" horiz-adv-x="986" d="M119 1272q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="967" />
<glyph unicode="&#x2001;" horiz-adv-x="1935" />
<glyph unicode="&#x2002;" horiz-adv-x="967" />
<glyph unicode="&#x2003;" horiz-adv-x="1935" />
<glyph unicode="&#x2004;" horiz-adv-x="645" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="387" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#x2011;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#x2012;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#x2013;" horiz-adv-x="1413" d="M141 601v228h1084v-228h-1084z" />
<glyph unicode="&#x2014;" horiz-adv-x="1670" d="M106 601v228h1334v-228h-1334z" />
<glyph unicode="&#x2018;" horiz-adv-x="405" d="M50 1015v192l162 353h143l-60 -352v-193h-245z" />
<glyph unicode="&#x2019;" horiz-adv-x="405" d="M57 1016l60 349v195h246v-194l-162 -350h-144z" />
<glyph unicode="&#x201a;" horiz-adv-x="406" d="M50 -263l60 266v284h246v-268l-147 -282h-159z" />
<glyph unicode="&#x201c;" horiz-adv-x="742" d="M50 1015v192l162 353h143l-60 -352v-193h-245zM379 1015v192l162 353h143l-60 -352v-193h-245z" />
<glyph unicode="&#x201d;" horiz-adv-x="750" d="M57 1016l60 349v195h246v-194l-162 -350h-144zM394 1016l60 349v195h246v-194l-162 -350h-144z" />
<glyph unicode="&#x201e;" horiz-adv-x="732" d="M50 -225l60 268v255h230v-243l-162 -280h-128zM391 -225l60 276v247h231v-243l-162 -280h-129z" />
<glyph unicode="&#x2022;" horiz-adv-x="737" d="M135 716v90q0 100 65 164t172 64q110 0 175 -63.5t65 -164.5v-90q0 -101 -64.5 -163t-173.5 -62t-174 62.5t-65 162.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1519" d="M144 0v256h292v-256h-292zM587 0v256h292v-256h-292zM1007 0v256h292v-256h-292z" />
<glyph unicode="&#x202f;" horiz-adv-x="387" />
<glyph unicode="&#x2039;" horiz-adv-x="639" d="M108 541v19l280 390h187l-240 -400l240 -399h-187z" />
<glyph unicode="&#x203a;" horiz-adv-x="619" d="M80 151l239 399l-239 400h188l280 -390v-19l-280 -390h-188z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1116" d="M71 455v200h146v116h-146v200h146v13q0 203 150.5 348t394.5 145q60 0 117.5 -8t125.5 -23l-21 -229q-53 16 -109.5 25.5t-112.5 9.5q-118 0 -185.5 -80.5t-67.5 -185.5v-15h428v-200h-428v-116h428v-200h-428v-8q0 -99 67.5 -171.5t187.5 -72.5q58 0 113.5 8.5 t106.5 25.5l21 -227q-57 -15 -118 -23t-123 -8q-245 0 -396 137.5t-151 330.5v8h-146z" />
<glyph unicode="&#x2122;" horiz-adv-x="1294" d="M96 1351v105h398v-105h-128v-434h-144v434h-126zM565 915v541h159l119 -362h6l120 362h154v-541h-129v282l-6 1l-105 -283h-73l-110 298l-6 -1v-297h-129z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1279" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM859 0v1560h292v-1560h-292z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1981" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM752 877v205h161v74q0 204 124.5 314.5t350.5 110.5q78 0 154 -15.5t176 -44.5l-42 -230 q-73 22 -132.5 34t-136.5 12q-101 0 -151.5 -46t-50.5 -135v-74h213v-205h-213v-877h-292v877h-161zM1561 0v1082h292v-1082h-292z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2011" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM759 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217 q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM1591 0v1560h292v-1560h-292z" />
<hkern u1="&#x22;" u2="w" k="-12" />
<hkern u1="&#x27;" u2="w" k="-12" />
<hkern u1="&#x28;" u2="&#x178;" k="-25" />
<hkern u1="&#x28;" u2="&#xdd;" k="-25" />
<hkern u1="&#x28;" u2="Y" k="-25" />
<hkern u1="&#x28;" u2="W" k="-26" />
<hkern u1="&#x28;" u2="V" k="-23" />
<hkern u1="A" u2="w" k="39" />
<hkern u1="A" u2="t" k="20" />
<hkern u1="A" u2="&#x3f;" k="77" />
<hkern u1="C" u2="&#x29;" k="30" />
<hkern u1="D" u2="&#xc6;" k="61" />
<hkern u1="E" u2="w" k="25" />
<hkern u1="F" u2="&#x2026;" k="325" />
<hkern u1="F" u2="&#x201e;" k="325" />
<hkern u1="F" u2="&#x201a;" k="325" />
<hkern u1="F" u2="&#x153;" k="52" />
<hkern u1="F" u2="&#xff;" k="28" />
<hkern u1="F" u2="&#xfd;" k="28" />
<hkern u1="F" u2="&#xfc;" k="25" />
<hkern u1="F" u2="&#xfb;" k="25" />
<hkern u1="F" u2="&#xfa;" k="25" />
<hkern u1="F" u2="&#xf9;" k="25" />
<hkern u1="F" u2="&#xf6;" k="54" />
<hkern u1="F" u2="&#xf5;" k="54" />
<hkern u1="F" u2="&#xf4;" k="54" />
<hkern u1="F" u2="&#xf3;" k="54" />
<hkern u1="F" u2="&#xf2;" k="54" />
<hkern u1="F" u2="&#xeb;" k="52" />
<hkern u1="F" u2="&#xea;" k="52" />
<hkern u1="F" u2="&#xe9;" k="52" />
<hkern u1="F" u2="&#xe8;" k="52" />
<hkern u1="F" u2="&#xe7;" k="52" />
<hkern u1="F" u2="&#xe5;" k="68" />
<hkern u1="F" u2="&#xe4;" k="68" />
<hkern u1="F" u2="&#xe3;" k="68" />
<hkern u1="F" u2="&#xe2;" k="68" />
<hkern u1="F" u2="&#xe1;" k="68" />
<hkern u1="F" u2="&#xe0;" k="68" />
<hkern u1="F" u2="&#xc5;" k="163" />
<hkern u1="F" u2="&#xc4;" k="163" />
<hkern u1="F" u2="&#xc3;" k="163" />
<hkern u1="F" u2="&#xc2;" k="163" />
<hkern u1="F" u2="&#xc1;" k="163" />
<hkern u1="F" u2="&#xc0;" k="163" />
<hkern u1="F" u2="y" k="28" />
<hkern u1="F" u2="v" k="28" />
<hkern u1="F" u2="u" k="25" />
<hkern u1="F" u2="r" k="30" />
<hkern u1="F" u2="q" k="52" />
<hkern u1="F" u2="o" k="54" />
<hkern u1="F" u2="g" k="52" />
<hkern u1="F" u2="e" k="52" />
<hkern u1="F" u2="d" k="52" />
<hkern u1="F" u2="c" k="52" />
<hkern u1="F" u2="a" k="68" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="A" k="163" />
<hkern u1="F" u2="&#x3a;" k="325" />
<hkern u1="F" u2="&#x2e;" k="325" />
<hkern u1="F" u2="&#x2c;" k="325" />
<hkern u1="K" u2="w" k="74" />
<hkern u1="L" u2="w" k="104" />
<hkern u1="O" u2="&#xc6;" k="61" />
<hkern u1="P" u2="&#xc6;" k="165" />
<hkern u1="P" u2="t" k="-16" />
<hkern u1="Q" u2="&#x178;" k="71" />
<hkern u1="Q" u2="&#xdd;" k="71" />
<hkern u1="Q" u2="Y" k="71" />
<hkern u1="Q" u2="W" k="23" />
<hkern u1="Q" u2="V" k="33" />
<hkern u1="Q" u2="T" k="39" />
<hkern u1="R" u2="&#x178;" k="57" />
<hkern u1="R" u2="&#xdd;" k="57" />
<hkern u1="R" u2="Y" k="57" />
<hkern u1="R" u2="V" k="22" />
<hkern u1="R" u2="T" k="31" />
<hkern u1="T" u2="&#xf8;" k="112" />
<hkern u1="T" u2="&#xe6;" k="99" />
<hkern u1="T" u2="&#xc6;" k="195" />
<hkern u1="T" u2="&#xbb;" k="173" />
<hkern u1="T" u2="&#xab;" k="175" />
<hkern u1="T" u2="w" k="55" />
<hkern u1="T" u2="r" k="77" />
<hkern u1="V" u2="&#x7d;" k="-22" />
<hkern u1="V" u2="r" k="35" />
<hkern u1="V" u2="]" k="-20" />
<hkern u1="V" u2="&#x29;" k="-23" />
<hkern u1="W" u2="&#x7d;" k="-16" />
<hkern u1="W" u2="r" k="24" />
<hkern u1="W" u2="]" k="-14" />
<hkern u1="W" u2="&#x29;" k="-17" />
<hkern u1="Y" u2="&#x2022;" k="105" />
<hkern u1="Y" u2="&#xf8;" k="91" />
<hkern u1="Y" u2="&#xe6;" k="89" />
<hkern u1="Y" u2="&#xc6;" k="136" />
<hkern u1="Y" u2="&#xbb;" k="60" />
<hkern u1="Y" u2="&#xab;" k="119" />
<hkern u1="Y" u2="&#x7d;" k="-22" />
<hkern u1="Y" u2="t" k="33" />
<hkern u1="Y" u2="r" k="62" />
<hkern u1="Y" u2="f" k="40" />
<hkern u1="Y" u2="]" k="-21" />
<hkern u1="Y" u2="&#x2a;" k="88" />
<hkern u1="Y" u2="&#x29;" k="-23" />
<hkern u1="Y" u2="&#x26;" k="57" />
<hkern u1="Z" u2="w" k="31" />
<hkern u1="[" u2="&#xdc;" k="21" />
<hkern u1="[" u2="&#xdb;" k="21" />
<hkern u1="[" u2="&#xda;" k="21" />
<hkern u1="[" u2="&#xd9;" k="21" />
<hkern u1="[" u2="U" k="21" />
<hkern u1="[" u2="J" k="21" />
<hkern u1="f" u2="&#x201d;" k="-34" />
<hkern u1="f" u2="&#x201c;" k="-34" />
<hkern u1="f" u2="&#x2019;" k="-34" />
<hkern u1="f" u2="&#x2018;" k="-34" />
<hkern u1="f" u2="&#x7d;" k="-37" />
<hkern u1="f" u2="]" k="-66" />
<hkern u1="f" u2="&#x29;" k="-53" />
<hkern u1="f" u2="&#x27;" k="-34" />
<hkern u1="f" u2="&#x22;" k="-34" />
<hkern u1="k" u2="&#x153;" k="23" />
<hkern u1="k" u2="&#xeb;" k="23" />
<hkern u1="k" u2="&#xea;" k="23" />
<hkern u1="k" u2="&#xe9;" k="23" />
<hkern u1="k" u2="&#xe8;" k="23" />
<hkern u1="k" u2="&#xe7;" k="23" />
<hkern u1="k" u2="q" k="23" />
<hkern u1="k" u2="g" k="23" />
<hkern u1="k" u2="e" k="23" />
<hkern u1="k" u2="d" k="23" />
<hkern u1="k" u2="c" k="23" />
<hkern u1="r" u2="w" k="-27" />
<hkern u1="r" u2="t" k="-27" />
<hkern u1="r" u2="f" k="-24" />
<hkern u1="v" u2="f" k="-15" />
<hkern u1="w" u2="&#x2026;" k="72" />
<hkern u1="w" u2="&#x201e;" k="72" />
<hkern u1="w" u2="&#x201a;" k="72" />
<hkern u1="w" u2="&#x3a;" k="72" />
<hkern u1="w" u2="&#x2e;" k="72" />
<hkern u1="w" u2="&#x2c;" k="72" />
<hkern u1="y" u2="f" k="-15" />
<hkern u1="&#x7b;" u2="&#xdc;" k="23" />
<hkern u1="&#x7b;" u2="&#xdb;" k="23" />
<hkern u1="&#x7b;" u2="&#xda;" k="23" />
<hkern u1="&#x7b;" u2="&#xd9;" k="23" />
<hkern u1="&#x7b;" u2="U" k="23" />
<hkern u1="&#x7b;" u2="J" k="23" />
<hkern u1="&#xc0;" u2="w" k="39" />
<hkern u1="&#xc0;" u2="t" k="20" />
<hkern u1="&#xc0;" u2="&#x3f;" k="77" />
<hkern u1="&#xc1;" u2="w" k="39" />
<hkern u1="&#xc1;" u2="t" k="20" />
<hkern u1="&#xc1;" u2="&#x3f;" k="77" />
<hkern u1="&#xc2;" u2="w" k="39" />
<hkern u1="&#xc2;" u2="t" k="20" />
<hkern u1="&#xc2;" u2="&#x3f;" k="77" />
<hkern u1="&#xc3;" u2="w" k="39" />
<hkern u1="&#xc3;" u2="t" k="20" />
<hkern u1="&#xc3;" u2="&#x3f;" k="77" />
<hkern u1="&#xc4;" u2="w" k="39" />
<hkern u1="&#xc4;" u2="t" k="20" />
<hkern u1="&#xc4;" u2="&#x3f;" k="77" />
<hkern u1="&#xc5;" u2="w" k="39" />
<hkern u1="&#xc5;" u2="t" k="20" />
<hkern u1="&#xc5;" u2="&#x3f;" k="77" />
<hkern u1="&#xc7;" u2="&#x29;" k="30" />
<hkern u1="&#xc8;" u2="w" k="25" />
<hkern u1="&#xc9;" u2="w" k="25" />
<hkern u1="&#xca;" u2="w" k="25" />
<hkern u1="&#xcb;" u2="w" k="25" />
<hkern u1="&#xd0;" u2="&#xc6;" k="61" />
<hkern u1="&#xd2;" u2="&#xc6;" k="61" />
<hkern u1="&#xd3;" u2="&#xc6;" k="61" />
<hkern u1="&#xd4;" u2="&#xc6;" k="61" />
<hkern u1="&#xd5;" u2="&#xc6;" k="61" />
<hkern u1="&#xd6;" u2="&#xc6;" k="61" />
<hkern u1="&#xdd;" u2="&#x2022;" k="105" />
<hkern u1="&#xdd;" u2="&#xf8;" k="91" />
<hkern u1="&#xdd;" u2="&#xe6;" k="89" />
<hkern u1="&#xdd;" u2="&#xc6;" k="136" />
<hkern u1="&#xdd;" u2="&#xbb;" k="60" />
<hkern u1="&#xdd;" u2="&#xab;" k="119" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-22" />
<hkern u1="&#xdd;" u2="t" k="33" />
<hkern u1="&#xdd;" u2="r" k="62" />
<hkern u1="&#xdd;" u2="f" k="40" />
<hkern u1="&#xdd;" u2="]" k="-21" />
<hkern u1="&#xdd;" u2="&#x2a;" k="88" />
<hkern u1="&#xdd;" u2="&#x29;" k="-23" />
<hkern u1="&#xdd;" u2="&#x26;" k="57" />
<hkern u1="&#xfd;" u2="f" k="-15" />
<hkern u1="&#xff;" u2="f" k="-15" />
<hkern u1="&#x178;" u2="&#x2022;" k="105" />
<hkern u1="&#x178;" u2="&#xf8;" k="91" />
<hkern u1="&#x178;" u2="&#xe6;" k="89" />
<hkern u1="&#x178;" u2="&#xc6;" k="136" />
<hkern u1="&#x178;" u2="&#xbb;" k="60" />
<hkern u1="&#x178;" u2="&#xab;" k="119" />
<hkern u1="&#x178;" u2="&#x7d;" k="-22" />
<hkern u1="&#x178;" u2="t" k="33" />
<hkern u1="&#x178;" u2="r" k="62" />
<hkern u1="&#x178;" u2="f" k="40" />
<hkern u1="&#x178;" u2="]" k="-21" />
<hkern u1="&#x178;" u2="&#x2a;" k="88" />
<hkern u1="&#x178;" u2="&#x29;" k="-23" />
<hkern u1="&#x178;" u2="&#x26;" k="57" />
<hkern u1="&#x2018;" u2="w" k="-12" />
<hkern u1="&#x2019;" u2="w" k="-12" />
<hkern u1="&#x201c;" u2="w" k="-12" />
<hkern u1="&#x201d;" u2="w" k="-12" />
<hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
<hkern g1="B" g2="T" k="31" />
<hkern g1="B" g2="V" k="28" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="130" />
<hkern g1="C,Ccedilla" g2="T" k="34" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="24" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="31" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="25" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="50" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="88" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="25" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="26" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="22" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="30" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="25" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="30" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="26" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="47" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="168" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="58" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="298" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-22" />
<hkern g1="L" g2="T" k="213" />
<hkern g1="L" g2="V" k="215" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="267" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="16" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="140" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="59" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="28" />
<hkern g1="L" g2="W" k="117" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="168" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="12" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="15" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="P" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="382" />
<hkern g1="P" g2="X" k="77" />
<hkern g1="P" g2="Z" k="39" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-17" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="100" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="98" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="105" />
<hkern g1="T" g2="m,n,p,ntilde" k="83" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="93" />
<hkern g1="T" g2="s" k="90" />
<hkern g1="T" g2="T" k="-19" />
<hkern g1="T" g2="V" k="-19" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-19" />
<hkern g1="T" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="203" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="77" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="97" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="200" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="33" />
<hkern g1="T" g2="W" k="-17" />
<hkern g1="T" g2="S" k="19" />
<hkern g1="T" g2="x" k="91" />
<hkern g1="T" g2="z" k="71" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="141" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="54" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="52" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="54" />
<hkern g1="V" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="215" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="33" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="12" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="73" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="30" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="73" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="39" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="36" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="36" />
<hkern g1="W" g2="T" k="-16" />
<hkern g1="W" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="169" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="22" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="101" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="30" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="32" />
<hkern g1="X" g2="V" k="-16" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="24" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="51" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="186" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="37" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="159" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="129" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="77" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="144" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="121" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-20" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-21" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-21" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="247" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="75" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="23" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="131" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="34" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="61" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-20" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="19" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="34" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="42" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="159" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-15" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="24" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="24" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="22" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="30" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="50" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="17" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="49" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="12" />
<hkern g1="b,p,thorn" g2="x" k="17" />
<hkern g1="b,p,thorn" g2="z" k="17" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="42" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="38" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="56" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="61" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="17" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="32" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="19" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-19" />
<hkern g1="r" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="146" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-28" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="17" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="17" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="140" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="23" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="28" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

View File

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'robotobold';
src: url('Roboto-Bold-webfont.eot');
src: url('Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('Roboto-Bold-webfont.woff') format('woff'),
url('Roboto-Bold-webfont.ttf') format('truetype'),
url('Roboto-Bold-webfont.svg#robotobold') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'roboto_condensedbold';
}
</style>
<title>Roboto Bold Condensed Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Bold Condensed </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Bold Condensed</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,643 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedbold" horiz-adv-x="995" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="449" />
<glyph unicode="&#xfb01;" horiz-adv-x="1107" d="M18 876v206h133v70q0 207 112 318t316 111q70 0 138.5 -15t153.5 -44l-40 -232q-65 22 -115.5 34t-118.5 12q-80 0 -121 -47t-41 -137v-70h173v-206h-173v-876h-284v876h-133zM716 0v1082h285v-1082h-285z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="449" />
<glyph horiz-adv-x="16" />
<glyph unicode="&#x9;" horiz-adv-x="16" />
<glyph unicode=" " horiz-adv-x="449" />
<glyph unicode="&#x09;" horiz-adv-x="449" />
<glyph unicode="&#xa0;" horiz-adv-x="449" />
<glyph unicode="!" horiz-adv-x="506" d="M112 506v950h285v-950h-285zM115 0v258h280v-258h-280z" />
<glyph unicode="&#x22;" horiz-adv-x="602" d="M51 1046v514h198v-263l-74 -251h-124zM351 1046l1 247v267h196v-263l-74 -251h-123z" />
<glyph unicode="#" horiz-adv-x="1034" d="M44 410v166h209l43 298h-189v166h213l61 416h172l-60 -416h136l60 416h173l-60 -416h186v-166h-210l-43 -298h189v-166h-213l-59 -410h-173l59 410h-136l-59 -410h-173l59 410h-185zM426 576h136l43 298h-136z" />
<glyph unicode="$" horiz-adv-x="1019" d="M79 456h284q0 -135 44 -193.5t115 -58.5q63 0 96 49t33 128q0 84 -33 133t-115 96q-194 86 -285.5 183t-91.5 279q0 166 93.5 274t250.5 127v212h144v-215q149 -28 236.5 -148.5t87.5 -313.5h-284q0 117 -35 180t-92 63q-59 0 -88 -50t-29 -130q0 -76 32.5 -125 t117.5 -97q192 -91 283.5 -189t91.5 -277q0 -171 -92 -275.5t-248 -123.5v-199h-145v199q-161 20 -266 135t-105 337z" />
<glyph unicode="%" horiz-adv-x="1356" d="M90 1099v77q0 129 74.5 215t209.5 86q137 0 211 -85.5t74 -215.5v-77q0 -130 -74 -214.5t-209 -84.5q-136 0 -211 85t-75 214zM276 1099q0 -57 26 -96.5t74 -39.5q46 0 71.5 39t25.5 97v77q0 58 -26 98t-73 40t-72.5 -40.5t-25.5 -97.5v-77zM283 184l601 1138l134 -74 l-601 -1138zM700 280v77q0 128 75 214t210 86q137 0 211 -85.5t74 -214.5v-77q0 -130 -74 -215t-209 -85q-136 0 -211.5 85t-75.5 215zM887 280q0 -56 28.5 -97t71.5 -40q55 -1 76 36t21 101v77q0 57 -26 97t-73 40q-48 0 -73 -40t-25 -97v-77z" />
<glyph unicode="&#x26;" horiz-adv-x="1221" d="M59 388q0 118 57.5 203.5t175.5 178.5q-62 94 -92 170.5t-30 156.5q0 171 98.5 275.5t262.5 104.5q142 0 232.5 -98.5t90.5 -238.5q0 -97 -43.5 -177.5t-117.5 -139.5l-81 -65l230 -304l6 1q27 52 42.5 117.5t15.5 138.5h208q0 -138 -29.5 -252.5t-92.5 -203.5l194 -255 h-322l-64 84q-75 -53 -152.5 -79t-166.5 -26q-193 0 -307.5 113t-114.5 296zM345 406q0 -87 43.5 -143.5t109.5 -56.5q44 0 88 12t85 37l-259 344l-7 -6q-35 -48 -47.5 -93.5t-12.5 -93.5zM423 1100q0 -41 17.5 -84t52.5 -94l59 44q50 36 67 73.5t17 82.5q0 50 -29.5 88.5 t-76.5 38.5q-52 0 -79.5 -42.5t-27.5 -106.5z" />
<glyph unicode="'" horiz-adv-x="302" d="M52 1275v285h190v-272l-66 -281h-123z" />
<glyph unicode="(" horiz-adv-x="633" d="M109 567v24q0 384 131 658.5t297 356.5h6l50 -143q-105 -98 -177.5 -317.5t-72.5 -552.5v-28q0 -333 72 -552t178 -319l-50 -141h-6q-166 82 -297 355t-131 659z" />
<glyph unicode=")" horiz-adv-x="632" d="M38 -306q104 98 177 318t73 553v28q0 332 -73.5 553t-176.5 319l52 141h6q169 -80 306 -361t137 -654v-24q0 -375 -137 -654.5t-306 -359.5h-6z" />
<glyph unicode="*" horiz-adv-x="825" d="M31 1058l53 173l260 -127l-19 352h178l-19 -358l253 125l53 -175l-268 -93l176 -269l-144 -107l-149 294l-150 -285l-143 103l183 275z" />
<glyph unicode="+" d="M54 556v254h307v396h269v-396h306v-254h-306v-410h-269v410h-307z" />
<glyph unicode="," horiz-adv-x="459" d="M47 -309l59 319v231h252v-239l-145 -311h-166z" />
<glyph unicode="-" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="." horiz-adv-x="543" d="M124 0v258h281v-258h-281z" />
<glyph unicode="/" horiz-adv-x="646" d="M-12 -125l432 1581h206l-434 -1581h-204z" />
<glyph unicode="0" horiz-adv-x="1014" d="M80 571v313q0 290 115.5 441.5t310.5 151.5t311 -151.5t116 -441.5v-313q0 -291 -115.5 -441.5t-309.5 -150.5q-196 0 -312 150.5t-116 441.5zM364 548q0 -178 37 -259.5t104 -75.5h6q66 -6 102 75t36 260v361q0 176 -37 257t-103 76h-6q-67 5 -103 -76t-36 -257v-361z " />
<glyph unicode="1" horiz-adv-x="1019" d="M128 1153v205l554 99v-1457h-284v1159z" />
<glyph unicode="2" horiz-adv-x="1019" d="M64 1004q-4 198 112 335.5t312 137.5q200 0 312 -116t112 -316q0 -134 -62.5 -248t-208.5 -298l-190 -272h492v-227h-860v193l397 503q79 112 113.5 195t34.5 151q0 93 -36 150t-104 57q-70 0 -107.5 -69t-37.5 -181h-277z" />
<glyph unicode="3" horiz-adv-x="1019" d="M58 394l2 6h276q0 -84 44 -139t109 -55q74 0 117.5 55.5t43.5 148.5q0 116 -42.5 169.5t-125.5 53.5h-142v220h142q76 0 113 54t37 151q0 85 -37 138t-106 53q-56 0 -96.5 -47t-40.5 -123h-275l-2 6q-5 173 113.5 282.5t292.5 109.5q198 0 316 -108.5t118 -306.5 q0 -99 -51 -183.5t-140 -131.5q102 -42 156 -130.5t54 -210.5q0 -199 -127.5 -313t-326.5 -114q-175 0 -301 107.5t-121 307.5z" />
<glyph unicode="4" horiz-adv-x="1019" d="M53 496l497 960h284v-910h126v-228h-126v-318h-283v318h-483zM311 546h240v503l-6 1l-15 -27z" />
<glyph unicode="5" horiz-adv-x="1019" d="M86 393l2 5l276 15q0 -98 40 -152.5t105 -54.5q75 0 109 71.5t34 187.5q0 129 -38 204t-116 75q-59 0 -91 -32t-44 -85l-253 17l72 812h712v-233h-480l-31 -343q31 31 77.5 51.5t97.5 22.5q182 3 279.5 -125.5t97.5 -361.5q0 -208 -110.5 -348t-315.5 -140 q-174 0 -300.5 111.5t-122.5 302.5z" />
<glyph unicode="6" horiz-adv-x="1019" d="M80 563v300q0 283 144.5 448.5t369.5 165.5q71 0 129.5 -15.5t119.5 -46.5l-48 -215q-53 23 -97.5 34.5t-102.5 11.5q-104 0 -166.5 -94.5t-59.5 -267.5l4 -4q39 45 100 71t136 26q165 0 257.5 -139t92.5 -356q0 -218 -119 -360.5t-307 -142.5q-202 0 -327.5 156 t-125.5 428zM364 560q0 -171 45.5 -263t123.5 -92q64 0 103 81.5t39 195.5q0 121 -40 196t-103 75q-59 0 -101 -20.5t-67 -57.5v-115z" />
<glyph unicode="7" horiz-adv-x="1019" d="M55 1228v228h886v-228q-197 -253 -261.5 -486.5t-93.5 -601.5l-13 -140h-285l14 140q27 327 116.5 598t250.5 490h-614z" />
<glyph unicode="8" horiz-adv-x="1019" d="M83 398q0 117 56 207.5t155 139.5q-87 47 -136 131t-49 194q0 193 110 300t290 107t290.5 -107t110.5 -300q0 -110 -49.5 -194t-135.5 -131q98 -50 154 -140t56 -207q0 -203 -117 -311t-308 -108t-309 108.5t-118 310.5zM368 419q0 -100 38 -156.5t104 -56.5 q64 0 102.5 56.5t38.5 156.5q0 98 -39 155.5t-103 57.5q-65 0 -103 -57.5t-38 -155.5zM395 1056q0 -92 29.5 -144.5t85.5 -52.5t85 52t29 145q0 89 -29.5 141t-85.5 52t-85 -51t-29 -142z" />
<glyph unicode="9" horiz-adv-x="1019" d="M75 957q0 219 120.5 369.5t304.5 150.5q191 0 311 -154.5t120 -430.5v-356q0 -256 -136.5 -406.5t-345.5 -150.5q-62 0 -131 16t-128 46l32 212q55 -24 108.5 -35.5t118.5 -11.5q86 0 142.5 82t56.5 230v56q-40 -58 -93.5 -88t-113.5 -30q-171 0 -268.5 134.5 t-97.5 366.5zM358 957q0 -131 35 -209t102 -78q50 0 88.5 24.5t64.5 66.5v166q0 158 -40 239t-105 77h-6q-61 4 -100 -82.5t-39 -203.5z" />
<glyph unicode=":" horiz-adv-x="540" d="M127 0v258h281v-258h-281zM127 823v258h281v-258h-281z" />
<glyph unicode=";" horiz-adv-x="516" d="M89 -309l59 319v231h252v-239l-145 -311h-166zM118 823v258h281v-258h-281z" />
<glyph unicode="&#x3c;" horiz-adv-x="898" d="M48 430v230l739 364v-270l-482 -209v-6l482 -203v-271z" />
<glyph unicode="=" horiz-adv-x="1023" d="M120 323v229h772v-229h-772zM120 756v228h772v-228h-772z" />
<glyph unicode="&#x3e;" horiz-adv-x="909" d="M106 65v269l487 209v6l-487 206v269l745 -364v-230z" />
<glyph unicode="?" horiz-adv-x="898" d="M25 1075q-3 197 111 299.5t299 102.5q200 0 314.5 -115.5t114.5 -312.5q0 -125 -64 -231.5t-160 -178.5q-51 -46 -68.5 -94.5t-17.5 -131.5h-284q1 136 39.5 202t147.5 159q56 55 89 121.5t33 152.5q0 92 -37.5 146t-106.5 54q-53 0 -92 -46.5t-40 -132.5h-276zM271 0 v247h281v-247h-281z" />
<glyph unicode="@" horiz-adv-x="1615" d="M56 478q15 428 226 682t558 254q342 0 526 -241t170 -657q-8 -219 -115.5 -378t-321.5 -159q-72 0 -123.5 44.5t-72.5 126.5q-38 -85 -93.5 -126.5t-129.5 -41.5q-128 0 -196.5 119t-50.5 315q22 252 127.5 404t255.5 152q106 0 171 -26t142 -80l-3 -4h5l-46 -569 q-5 -97 10 -132t41 -28l6 -1q96 -5 154.5 105t66.5 279q13 350 -119 546.5t-408 196.5q-266 0 -422 -210.5t-168 -570.5q-16 -352 126 -557.5t407 -205.5q75 0 155 19.5t138 49.5l35 -148q-60 -42 -151.5 -65.5t-179.5 -23.5q-353 0 -544.5 249t-175.5 682zM649 416 q-8 -127 15.5 -194t75.5 -67q46 0 83.5 28.5t66.5 103.5v6l39 496q-19 5 -37.5 8.5t-37.5 3.5q-95 0 -142.5 -95t-62.5 -290z" />
<glyph unicode="A" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM439 538h268l-131 515h-6z" />
<glyph unicode="B" horiz-adv-x="1136" d="M110 0v1456h429q225 0 351.5 -100t126.5 -298q0 -104 -46 -184.5t-138 -120.5q115 -27 170 -117t55 -211q0 -209 -119.5 -317t-342.5 -108h-486zM395 227h201q90 0 134.5 50t44.5 149q0 104 -38 160t-122 56h-220v-415zM395 841h157q87 2 133.5 50.5t46.5 139.5 q0 102 -48 149.5t-145 47.5h-144v-387z" />
<glyph unicode="C" horiz-adv-x="1088" d="M74 510v435q0 253 130.5 392.5t349.5 139.5q232 0 350.5 -124t122.5 -367l-3 -6h-274q1 17 1 33q0 118 -40 173q-45 63 -157 63q-96 0 -147 -75t-51 -227v-437q0 -154 54.5 -229t159.5 -75q104 0 144 60q36 53 36 172q0 15 -1 31h274l3 -6v-8q0 -234 -114 -354 q-116 -122 -342 -122t-361 138.5t-135 392.5z" />
<glyph unicode="D" horiz-adv-x="1151" d="M110 0v1456h440q224 0 370 -169.5t146 -436.5v-245q0 -267 -146 -436t-370 -169h-440zM395 227h139q119 0 183.5 103.5t64.5 274.5v247q0 170 -64.5 273t-183.5 103h-139v-1001z" />
<glyph unicode="E" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860z" />
<glyph unicode="F" horiz-adv-x="1016" d="M110 0v1456h866v-228h-581v-396h494v-227h-494v-605h-285z" />
<glyph unicode="G" horiz-adv-x="1179" d="M81 506v444q0 251 136.5 389t361.5 138q242 0 363 -118.5t126 -339.5l-2 -6h-267q-3 123 -54.5 179.5t-157.5 56.5q-104 0 -163 -73.5t-59 -223.5v-446q0 -153 59.5 -226.5t173.5 -73.5q85 0 125.5 23t66.5 68v261h-192v200h476v-542q-59 -94 -177 -165.5t-299 -71.5 q-234 0 -375.5 137t-141.5 390z" />
<glyph unicode="H" horiz-adv-x="1241" d="M110 0v1456h285v-626h452v626h284v-1456h-284v603h-452v-603h-285z" />
<glyph unicode="I" horiz-adv-x="534" d="M125 0v1456h283v-1456h-283z" />
<glyph unicode="J" horiz-adv-x="1015" d="M57 421l3 6h277q0 -115 40.5 -168t104.5 -53q58 0 99.5 63t41.5 175v1012h283v-1012q0 -214 -120.5 -339.5t-303.5 -125.5q-198 0 -314 112q-111 108 -111 316v14z" />
<glyph unicode="K" horiz-adv-x="1137" d="M110 0v1456h285v-592h92l284 592h349l-397 -665l430 -791h-346l-288 605h-124v-605h-285z" />
<glyph unicode="L" horiz-adv-x="959" d="M110 0v1456h285v-1229h532v-227h-817z" />
<glyph unicode="M" horiz-adv-x="1481" d="M105 0v1456h369l261 -1069h6l264 1069h371v-1456h-283v423l24 566l-6 1l-278 -990h-189l-275 982l-6 -1l25 -558v-423h-283z" />
<glyph unicode="N" horiz-adv-x="1241" d="M110 0v1456h285l445 -930l6 2v928h283v-1456h-283l-445 931l-6 -2v-929h-285z" />
<glyph unicode="O" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="P" horiz-adv-x="1158" d="M110 0v1456h506q218 0 344 -129t126 -338q0 -210 -126.5 -338.5t-343.5 -128.5h-221v-522h-285zM395 750h221q91 0 139 67t48 170q0 104 -47.5 172.5t-139.5 68.5h-221v-478z" />
<glyph unicode="Q" horiz-adv-x="1241" d="M81 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -113 -29 -206t-82 -161l216 -237l-176 -150l-224 249q-49 -19 -102.5 -29t-111.5 -10q-231 0 -369 144t-138 400zM363 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5 t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="R" horiz-adv-x="1162" d="M111 0v1455h475q215 0 337.5 -113.5t122.5 -315.5q0 -114 -51 -196.5t-149 -131.5q112 -38 161.5 -126t49.5 -220v-103q0 -60 14 -128.5t49 -99.5v-21h-294q-35 32 -44 104t-9 147v99q0 109 -44.5 169t-127.5 60h-206v-579h-284zM395 806h190q87 0 132 53t45 151 q0 100 -45 159t-131 59h-191v-422z" />
<glyph unicode="S" horiz-adv-x="1109" d="M72 449l2 6h277q0 -135 57 -194t172 -59q90 0 133.5 48t43.5 130q0 85 -44 134.5t-155 97.5q-227 79 -340.5 179.5t-113.5 281.5q0 179 132 291.5t337 112.5q208 1 338 -125q126 -122 126 -306v-11l-2 -6h-276q0 100 -50 162t-141 62q-85 0 -132.5 -51.5t-47.5 -129.5 q0 -72 53 -118.5t184 -103.5q207 -70 311.5 -177.5t104.5 -290.5q0 -189 -126 -296t-335 -107q-208 -1 -360 121q-148 118 -148 335v14z" />
<glyph unicode="T" horiz-adv-x="994" d="M29 1228v228h938v-228h-328v-1228h-284v1228h-326z" />
<glyph unicode="U" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359z" />
<glyph unicode="V" horiz-adv-x="1129" d="M9 1456h299l241 -1084l11 -56h6l11 53l243 1087h299l-407 -1456h-296z" />
<glyph unicode="W" horiz-adv-x="1548" d="M21 1456h276l157 -929h6l210 929h204l213 -929h6l157 929h276l-281 -1456h-265l-205 892h-6l-203 -892h-264z" />
<glyph unicode="X" horiz-adv-x="1127" d="M27 0l362 734l-353 722h327l195 -509h6l198 509h329l-353 -722l377 -734h-343l-204 520h-6l-204 -520h-331z" />
<glyph unicode="Y" horiz-adv-x="1124" d="M7 1456h311l240 -624h6l243 624h309l-416 -938v-518h-284v536z" />
<glyph unicode="Z" horiz-adv-x="998" d="M60 1229v227h876v-138l-550 -1091h559v-227h-879v143l546 1086h-552z" />
<glyph unicode="[" horiz-adv-x="530" d="M106 -339v2034h399v-217h-112v-1601h112v-216h-399z" />
<glyph unicode="\" horiz-adv-x="758" d="M0 1456h280l515 -1581h-282z" />
<glyph unicode="]" horiz-adv-x="530" d="M21 -123h114v1601h-114v217h399v-2034h-399v216z" />
<glyph unicode="^" horiz-adv-x="785" d="M38 729l253 727h206l253 -727h-219l-134 422l-2 8h-6l-1 -8l-131 -422h-219z" />
<glyph unicode="_" horiz-adv-x="793" d="M8 0h775v-220h-775v220z" />
<glyph unicode="`" horiz-adv-x="629" d="M73 1471l3 6h298l175 -266h-230z" />
<glyph unicode="a" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6v12q1 133 105 228q110 99 288 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5 t-133.5 -39.5q-134 0 -214.5 88t-80.5 235zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="b" d="M92 0v1560h284v-570q38 54 89.5 83t116.5 29q176 0 267 -135.5t91 -361.5v-147q0 -219 -90.5 -349t-265.5 -130q-76 0 -132.5 35t-96.5 102l-17 -116h-246zM376 281q20 -37 53.5 -55.5t80.5 -18.5q86 0 116.5 63.5t30.5 187.5v147q0 127 -31.5 198t-116.5 71 q-46 0 -79 -23t-54 -65v-505z" />
<glyph unicode="c" horiz-adv-x="910" d="M52 470v139q0 216 112 354.5t321 138.5q175 0 279 -113q101 -110 101 -294v-11l-2 -5h-259q0 88 -29.5 141.5t-89.5 53.5q-85 0 -117 -72t-32 -193v-139q0 -124 32 -194t119 -70q58 0 87.5 43t29.5 124h258l3 -6v-9q-1 -164 -105 -270q-108 -109 -273 -109 q-210 0 -322.5 137t-112.5 354z" />
<glyph unicode="d" d="M54 514v21q0 255 94 411t265 156q63 0 114 -30t91 -86v574h284v-1560h-247l-19 118q-42 -68 -97.5 -103.5t-126.5 -35.5q-171 0 -264.5 146.5t-93.5 388.5zM338 514q0 -145 33.5 -226t113.5 -81q44 0 77 20.5t56 59.5v492q-23 45 -56 70t-75 25q-79 0 -114 -93t-35 -246 v-21z" />
<glyph unicode="e" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM353 645h255v40q0 90 -28 139.5t-91 49.5q-68 0 -100 -62t-36 -167z " />
<glyph unicode="f" horiz-adv-x="647" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133z" />
<glyph unicode="g" horiz-adv-x="994" d="M54 458v133q0 229 94.5 370t266.5 141q72 0 127 -36.5t96 -104.5l18 121h247v-1061q0 -213 -123.5 -335.5t-338.5 -122.5q-70 0 -149 22.5t-147 60.5l50 219q57 -32 116 -48t128 -16q90 0 135 56.5t45 164.5v62q-40 -52 -91 -78.5t-115 -26.5q-171 0 -265 131.5 t-94 347.5zM338 458q0 -118 34 -184.5t114 -66.5q44 0 77.5 18t55.5 53v512q-22 40 -54.5 62t-76.5 22q-80 0 -115 -77.5t-35 -205.5v-133z" />
<glyph unicode="h" d="M84 0v1560h284v-607q42 71 101 110t130 39q144 0 226 -114.5t82 -353.5v-634h-285v636q0 134 -31.5 186t-98.5 52q-40 0 -71 -17.5t-53 -48.5v-808h-284z" />
<glyph unicode="i" horiz-adv-x="495" d="M105 0v1082h284v-1082h-284zM105 1343v217h284v-217h-284z" />
<glyph unicode="j" horiz-adv-x="487" d="M-73 -419l12 223q22 -6 40 -9t40 -3q44 0 67.5 44t23.5 131v1115h285v-1115q0 -194 -90 -299t-250 -105q-35 0 -64 4.5t-64 13.5zM105 1343v217h284v-217h-284z" />
<glyph unicode="k" horiz-adv-x="963" d="M92 0v1560h284v-886h47l183 408h327l-282 -487l329 -595h-325l-227 450h-52v-450h-284z" />
<glyph unicode="l" horiz-adv-x="495" d="M105 0v1560h284v-1560h-284z" />
<glyph unicode="m" horiz-adv-x="1507" d="M93 0v1082h265l11 -138q43 76 108 117t149 41q82 0 143 -43.5t93 -132.5q42 84 108 130t154 46q134 0 211.5 -110.5t77.5 -337.5v-654h-285v654q0 125 -27 172.5t-84 47.5q-41 0 -73 -24t-53 -66q1 -19 2 -37.5t1 -38.5v-708h-283v654q0 124 -27.5 172t-85.5 48 q-39 0 -69.5 -19.5t-52.5 -54.5v-800h-283z" />
<glyph unicode="n" d="M87 0v1082h265l12 -149q45 80 110.5 124.5t144.5 44.5q135 0 212.5 -104t77.5 -327v-671h-285v671q0 112 -31.5 157.5t-97.5 45.5q-38 0 -70 -20t-54 -55v-799h-284z" />
<glyph unicode="o" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="p" d="M92 -416v1498h263l10 -107q39 61 92.5 94t123.5 33q171 0 265 -140.5t94 -370.5v-133q0 -216 -94 -347.5t-263 -131.5q-66 0 -117.5 26.5t-89.5 78.5v-500h-284zM376 278q20 -36 52.5 -54t79.5 -18q79 0 113.5 67t34.5 185v133q0 128 -36 205.5t-113 77.5 q-45 0 -78 -22.5t-53 -63.5v-510z" />
<glyph unicode="q" d="M54 458v133q0 229 94 370t265 141q71 0 125.5 -35.5t95.5 -101.5l20 117h247v-1498h-285v499q-39 -51 -89.5 -77.5t-114.5 -26.5q-170 0 -264 131.5t-94 347.5zM338 458q0 -119 33.5 -185.5t113.5 -66.5q44 0 77 18t54 53v515q-21 39 -53 60.5t-76 21.5q-79 0 -114 -77.5 t-35 -205.5v-133z" />
<glyph unicode="r" horiz-adv-x="655" d="M92 0v1082h265l11 -145l5 -2q26 78 72.5 122.5t108.5 44.5q19 0 40.5 -3.5t37.5 -8.5l-29 -267l-107 3q-45 0 -74.5 -22t-45.5 -62v-742h-284z" />
<glyph unicode="s" horiz-adv-x="888" d="M39 334l2 6h260q2 -86 40 -124t105 -38q57 0 87 28t30 77q0 46 -36 79.5t-138 82.5q-163 61 -244.5 138t-81.5 200q0 132 104.5 225.5t276.5 93.5q180 0 287 -96q103 -93 103 -234v-11l-3 -6h-274q0 68 -28 108t-86 40q-46 0 -78 -31t-32 -75q0 -48 32 -77.5t139 -80.5 q170 -58 252 -137.5t82 -208.5q0 -138 -110 -226t-289 -88q-187 0 -296 109q-104 104 -104 234v12z" />
<glyph unicode="t" horiz-adv-x="648" d="M18 876v206h128v269h284v-269h150v-206h-150v-543q0 -66 19 -94.5t52 -28.5q26 0 44 2.5t40 8.5l22 -216q-45 -14 -86 -20t-93 -6q-137 0 -209.5 84.5t-72.5 268.5v544h-128z" />
<glyph unicode="u" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5z" />
<glyph unicode="v" horiz-adv-x="909" d="M15 1082h297l127 -674l13 -82h6l14 82l125 674h297l-300 -1082h-278z" />
<glyph unicode="w" horiz-adv-x="1280" d="M24 1082h265l101 -616h6l151 616h184l151 -614l6 1l101 613h263l-222 -1082h-237l-151 583h-6l-151 -583h-237z" />
<glyph unicode="x" horiz-adv-x="909" d="M16 0l275 547l-268 535h319l109 -341h6l114 341h320l-268 -535l276 -547h-319l-119 351h-6l-119 -351h-320z" />
<glyph unicode="y" horiz-adv-x="909" d="M5 1082h305l130 -638l2 -11l158 649h304l-365 -1245q-41 -117 -109.5 -195.5t-209.5 -78.5q-35 0 -62 6t-72 18l33 212q17 -3 24.5 -4.5t16.5 -1.5q62 0 93.5 32.5t45.5 85.5l25 80z" />
<glyph unicode="z" horiz-adv-x="883" d="M65 0v169l412 685h-400v228h730v-165l-416 -690h423v-227h-749z" />
<glyph unicode="{" horiz-adv-x="586" d="M44 514v202q69 0 103 55t34 154v207q0 171 71 290.5t238 174.5l53 -157q-62 -31 -86 -109.5t-24 -198.5v-207q0 -104 -41 -184.5t-124 -125.5q82 -46 123.5 -126.5t41.5 -183.5v-206q0 -120 23.5 -198t86.5 -109l-53 -158q-167 55 -238 175t-71 290v206q0 98 -34 153.5 t-103 55.5z" />
<glyph unicode="|" horiz-adv-x="467" d="M153 -270v1726h163v-1726h-163z" />
<glyph unicode="}" horiz-adv-x="586" d="M42 -208q62 31 87 109t25 198v206q0 104 41 184.5t126 125.5q-85 44 -126 124.5t-41 185.5v207q0 120 -25 198.5t-87 109.5l53 157q166 -55 237.5 -174.5t71.5 -290.5v-207q0 -100 33.5 -154.5t105.5 -54.5v-202q-72 0 -105.5 -55t-33.5 -154v-206q0 -170 -71.5 -290 t-237.5 -175z" />
<glyph unicode="~" horiz-adv-x="1121" d="M89 444q0 165 74.5 273t193.5 108q69 0 132.5 -33.5t125.5 -98.5q37 -46 66 -65.5t63 -19.5q37 0 64.5 52.5t27.5 128.5l194 -28q0 -164 -76.5 -273.5t-193.5 -109.5q-71 0 -131.5 32t-124.5 102q-40 45 -68 64.5t-63 19.5q-38 0 -64.5 -51.5t-26.5 -126.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="534" d="M125 -374v949h285v-949h-285zM128 821v261h280v-261h-280z" />
<glyph unicode="&#xa2;" horiz-adv-x="1031" d="M89 470v139q0 189 87.5 321t252.5 163v225h184v-225q136 -29 215 -137.5t79 -276.5h-266q0 88 -29.5 141.5t-89.5 53.5q-85 0 -117 -72t-32 -193v-139q0 -124 32 -194t119 -70q58 0 87.5 43t29.5 124h266q0 -149 -81 -252.5t-213 -131.5v-234h-184v233q-166 30 -253 161 t-87 321z" />
<glyph unicode="&#xa3;" horiz-adv-x="1055" d="M92 591v225h122l-7 209q0 211 105 331.5t282 120.5q188 0 293 -113t102 -297l-3 -6h-276q0 96 -34 142t-83 46q-48 0 -74.5 -58.5t-26.5 -165.5l8 -209h280v-225h-270l3 -82q0 -78 -29.5 -151t-83.5 -131h600v-227h-855v227h8q36 12 54 94.5t18 171.5l-3 98h-130z" />
<glyph unicode="&#xa4;" horiz-adv-x="1257" d="M74 110l122 140q-45 76 -68.5 167t-23.5 191q0 103 25.5 196.5t73.5 172.5l-129 150l130 137l123 -142q65 54 142.5 83t161.5 29t161.5 -30t143.5 -84l125 145l132 -138l-133 -153q46 -78 71.5 -171.5t25.5 -194.5q0 -99 -23.5 -189t-66.5 -166l126 -143l-132 -137 l-114 131q-67 -60 -147.5 -92t-168.5 -32t-168 31.5t-147 90.5l-112 -128zM276 608q0 -189 103 -318.5t252 -129.5q147 0 250 129.5t103 318.5q0 187 -103 316.5t-250 129.5q-149 0 -252 -129.5t-103 -316.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1082" d="M22 1456h310l207 -561h6l206 561h310l-318 -719h189v-200h-253v-111h253v-198h-253v-228h-283v228h-271v198h271v111h-271v200h215z" />
<glyph unicode="&#xa6;" horiz-adv-x="467" d="M108 -270v791h251v-791h-251zM108 698v758h251v-758h-251z" />
<glyph unicode="&#xa7;" horiz-adv-x="1115" d="M84 533q0 88 36.5 156.5t106.5 113.5q-63 51 -94.5 122t-31.5 171q0 172 123 276.5t329 104.5q210 0 329 -111.5t115 -310.5l-2 -6h-276q0 87 -43.5 143.5t-122.5 56.5q-84 0 -125 -42.5t-41 -108.5q0 -74 43 -112.5t181 -85.5q210 -63 309 -155.5t99 -262.5 q0 -90 -37 -157.5t-105 -110.5q62 -51 93.5 -122t31.5 -171q0 -177 -121.5 -277t-326.5 -100q-201 0 -335 99t-129 317l2 6h276q0 -105 52.5 -149.5t133.5 -44.5q78 0 121 40.5t43 107.5q0 66 -47.5 106t-180.5 89q-208 64 -307 156.5t-99 261.5zM368 564q0 -80 41.5 -121 t177.5 -94q57 -19 67 -22.5l30 -10.5q27 23 41.5 58t14.5 79q0 71 -47.5 116t-177.5 97q-25 7 -49.5 16t-49.5 19q-25 -23 -36.5 -58t-11.5 -79z" />
<glyph unicode="&#xa8;" horiz-adv-x="1000" d="M143 1258v198h251v-198h-251zM592 1258v198h250v-198h-250z" />
<glyph unicode="&#xa9;" horiz-adv-x="1433" d="M82 729q0 315 182.5 531t444.5 216q261 0 444.5 -216t183.5 -531q0 -316 -184 -533t-444 -217q-261 0 -444 217t-183 533zM193 729q0 -266 150.5 -448.5t365.5 -181.5q214 -1 364.5 181.5t150.5 448.5q0 264 -150.5 445.5t-364.5 181.5q-215 0 -365.5 -181.5 t-150.5 -445.5zM386 669v119q0 173 83.5 280t226.5 107q140 0 219 -79.5t76 -228.5l-3 -6h-136q0 96 -39 140.5t-117 45.5q-81 -1 -124 -72t-43 -186v-120q0 -118 43 -188.5t124 -70.5q78 0 116.5 43.5t38.5 142.5h136l3 -6q3 -151 -75.5 -229.5t-218.5 -78.5 q-143 0 -226.5 106t-83.5 281z" />
<glyph unicode="&#xaa;" horiz-adv-x="785" d="M98 920q0 109 72.5 169t212.5 60h106v53q0 65 -22.5 99.5t-66.5 34.5q-51 0 -79 -27.5t-28 -78.5l-150 13l-2 6q-5 98 67.5 163t191.5 65q114 0 182 -71.5t68 -204.5v-314q0 -51 5 -95t17 -86h-162q-7 23 -11.5 47t-6.5 48q-27 -48 -73 -78.5t-110 -30.5 q-100 0 -155.5 61.5t-55.5 166.5zM258 924q0 -46 22.5 -70.5t68.5 -24.5q39 0 82 30t58 66v112h-105q-59 0 -92.5 -33.5t-33.5 -79.5z" />
<glyph unicode="&#xab;" horiz-adv-x="904" d="M55 507v19l233 389h176l-195 -399l195 -397h-176zM407 507v19l233 389h176l-195 -399l195 -397h-176z" />
<glyph unicode="&#xac;" horiz-adv-x="972" d="M115 638v163h710v-426h-183v263h-527z" />
<glyph unicode="&#xad;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#xae;" horiz-adv-x="1433" d="M82 729q0 315 183 531t445 216q260 0 443.5 -216t183.5 -531q0 -316 -183.5 -533t-443.5 -217q-262 0 -445 217t-183 533zM194 729q0 -266 150.5 -448.5t365.5 -181.5q214 -1 364 181.5t150 448.5q0 264 -150 445.5t-364 181.5q-215 0 -365.5 -181.5t-150.5 -445.5z M445 316v850h251q134 0 212 -68t78 -193q0 -58 -26 -101.5t-76 -74.5q53 -30 77 -84.5t24 -129.5v-56q0 -42 3 -74t11 -53v-16h-143q-8 21 -9.5 61.5t-1.5 82.5v54q0 73 -29.5 107t-94.5 34h-136v-339h-140zM585 783h112q64 0 107.5 31.5t43.5 89.5q0 74 -34 104t-118 30 h-111v-255z" />
<glyph unicode="&#xaf;" horiz-adv-x="949" d="M146 1297v160h654v-160h-654z" />
<glyph unicode="&#xb0;" horiz-adv-x="725" d="M117 1203q0 112 72.5 193t173.5 81q99 0 170.5 -81t71.5 -193q0 -113 -71 -192t-171 -79q-102 0 -174 79t-72 192zM255 1203q0 -55 31.5 -92t76.5 -37q43 0 73.5 36.5t30.5 92.5t-30.5 94t-73.5 38q-45 0 -76.5 -38.5t-31.5 -93.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="992" d="M87 721v235h281v361h250v-361h279v-235h-279v-382h-250v382h-281zM98 7v230h705v-230h-705z" />
<glyph unicode="&#xb2;" horiz-adv-x="748" d="M100 1221q-5 107 71.5 182.5t205.5 75.5q126 0 194.5 -64.5t68.5 -182.5q0 -83 -48.5 -149t-155.5 -163l-79 -96l2 -5h286v-152h-539v152l262 254q47 49 60 82.5t13 77.5q0 41 -16.5 67t-53.5 26q-40 0 -59.5 -30.5t-19.5 -80.5h-190z" />
<glyph unicode="&#xb3;" horiz-adv-x="740" d="M85 895l2 6h191q0 -44 23 -69t69 -25q39 0 64.5 24.5t25.5 70.5q0 51 -27.5 79t-78.5 28h-91v127h91q48 0 70.5 25t22.5 73q0 39 -20.5 65t-60.5 26q-39 0 -58.5 -22.5t-19.5 -55.5h-189l-2 6q-6 102 70.5 163.5t193.5 61.5q131 0 208 -59.5t77 -169.5 q0 -55 -30.5 -100.5t-83.5 -71.5q60 -24 93 -71.5t33 -115.5q0 -112 -77 -173.5t-209 -61.5q-130 0 -211.5 63t-75.5 177z" />
<glyph unicode="&#xb4;" horiz-adv-x="683" d="M100 1212l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xb5;" horiz-adv-x="1113" d="M120 -416v1498h285v-637q1 -137 33.5 -186.5t100.5 -49.5q52 0 88.5 24t59.5 70v779h284v-1082h-267l-4 51q-35 -36 -78 -54t-93 -18q-36 0 -67 9t-57 26v-430h-285z" />
<glyph unicode="&#xb6;" horiz-adv-x="951" d="M56 988q0 207 109.5 337.5t306.5 130.5h351v-1456h-286v520h-65q-197 0 -306.5 129.5t-109.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="566" d="M140 560v262h278v-262h-278z" />
<glyph unicode="&#xb8;" horiz-adv-x="493" d="M83 -134l27 141h213l-9 -59q51 -11 86.5 -52.5t35.5 -120.5q0 -108 -80.5 -172.5t-227.5 -64.5l-6 163q34 0 53.5 20.5t19.5 63.5q0 42 -25.5 59t-86.5 22z" />
<glyph unicode="&#xb9;" horiz-adv-x="513" d="M102 1298v156l303 23v-812h-200v634z" />
<glyph unicode="&#xba;" horiz-adv-x="811" d="M104 1027v115q0 148 81 241.5t217 93.5t216.5 -93.5t80.5 -241.5v-115q0 -150 -80.5 -242.5t-215.5 -92.5q-137 0 -218 92.5t-81 242.5zM265 1027q0 -89 35 -142.5t103 -53.5q65 0 100 53.5t35 142.5v115q0 85 -35 139.5t-101 54.5q-67 0 -102 -54.5t-35 -139.5v-115z " />
<glyph unicode="&#xbb;" horiz-adv-x="905" d="M60 152l195 398l-195 399h176l233 -389v-19l-233 -389h-176zM422 152l195 398l-195 399h176l233 -389v-19l-233 -389h-176z" />
<glyph unicode="&#xbc;" horiz-adv-x="1260" d="M99 1297v156l303 23v-812h-200v634zM199 192l601 1138l134 -74l-601 -1138zM593 264l356 534v3h200v-507h75v-154h-75v-140h-200v140h-343zM794 294h155v253l-6 2l-7 -12z" />
<glyph unicode="&#xbd;" horiz-adv-x="1317" d="M82 1297v156l303 23v-812h-200v634zM192 192l601 1138l134 -74l-601 -1138zM693 554q-5 107 71.5 182.5t205.5 75.5q126 0 194.5 -64.5t68.5 -182.5q0 -83 -48.5 -149t-155.5 -163l-79 -96l2 -5h286v-152h-539v152l262 254q47 49 60 82.5t13 77.5q0 41 -16.5 67t-53.5 26 q-40 0 -59.5 -30.5t-19.5 -80.5h-190z" />
<glyph unicode="&#xbe;" horiz-adv-x="1452" d="M71 896l2 6h191q0 -44 23 -69t69 -25q39 0 64.5 24.5t25.5 70.5q0 51 -27.5 79t-78.5 28h-91v127h91q48 0 70.5 25t22.5 73q0 39 -20.5 65t-60.5 26q-39 0 -58.5 -22.5t-19.5 -55.5h-189l-2 6q-6 102 70.5 163.5t193.5 61.5q131 0 208 -59.5t77 -169.5 q0 -55 -30.5 -100.5t-83.5 -71.5q60 -24 93 -71.5t33 -115.5q0 -112 -77 -173.5t-209 -61.5q-130 0 -211.5 63t-75.5 177zM384 192l601 1138l134 -74l-601 -1138zM747 264l356 534v3h200v-507h75v-154h-75v-140h-200v140h-343zM948 294h155v253l-6 2l-7 -12z" />
<glyph unicode="&#xbf;" horiz-adv-x="909" d="M63 32q0 125 62.5 231t159.5 179q51 44 69 92.5t18 133.5h284q-2 -137 -41 -203t-147 -158q-57 -57 -89.5 -123t-32.5 -151q0 -91 37 -144.5t107 -53.5q52 0 91.5 46t41.5 131h277l2 -6q1 -196 -113.5 -298t-298.5 -102q-200 0 -313.5 115t-113.5 311zM373 834v248h283 v-248h-283z" />
<glyph unicode="&#xc0;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM243 1819l3 6h298l175 -266h-230zM439 538h268l-131 515h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM429 1560l176 266h299l3 -6l-249 -260h-229zM439 538h268l-131 515h-6z" />
<glyph unicode="&#xc2;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM244 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM439 538h268l-131 515h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM248 1645q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79zM439 538h268l-131 515 h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM224 1606v198h251v-198h-251zM439 538h268l-131 515h-6zM673 1606v198h250v-198h-250z" />
<glyph unicode="&#xc5;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM381 1739q0 80 56 135t138 55q80 0 135 -55t55 -135q0 -82 -54.5 -134t-135.5 -52q-82 0 -138 52.5t-56 133.5zM439 538h268l-131 515h-6zM489 1739q0 -42 24 -68.5t62 -26.5q37 0 60 26t23 69t-23 70 t-60 27q-38 0 -62 -27t-24 -70z" />
<glyph unicode="&#xc6;" horiz-adv-x="1656" d="M9 0l639 1456h891v-231h-481l12 -363h400v-230h-392l15 -402h498v-230h-774l-12 339h-329l-136 -339h-331zM573 578h224l-17 497l-6 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1088" d="M74 510v435q0 253 130.5 392.5t349.5 139.5q232 0 350.5 -124t122.5 -367l-3 -6h-274q6 143 -39 206t-157 63q-96 0 -147 -75t-51 -227v-437q0 -154 54.5 -229t159.5 -75q103 0 143.5 59.5t35.5 203.5h274l3 -6q2 -240 -114 -362t-342 -122t-361 138.5t-135 392.5z M414 -134l27 141h213l-9 -59q51 -11 86.5 -52.5t35.5 -120.5q0 -108 -80.5 -172.5t-227.5 -64.5l-6 163q34 0 53.5 20.5t19.5 63.5q0 42 -25.5 59t-86.5 22z" />
<glyph unicode="&#xc8;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM183 1819l3 6h298l175 -266h-230z" />
<glyph unicode="&#xc9;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM369 1560l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xca;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM184 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#xcb;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM164 1606v198h251v-198h-251zM613 1606v198h250v-198h-250z" />
<glyph unicode="&#xcc;" horiz-adv-x="534" d="M-61 1819l3 6h298l175 -266h-230zM125 0v1456h283v-1456h-283z" />
<glyph unicode="&#xcd;" horiz-adv-x="534" d="M123 1560l176 266h299l3 -6l-249 -260h-229zM125 0v1456h283v-1456h-283z" />
<glyph unicode="&#xce;" horiz-adv-x="534" d="M-60 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM125 0v1456h283v-1456h-283z" />
<glyph unicode="&#xcf;" horiz-adv-x="534" d="M-80 1606v198h251v-198h-251zM125 0v1456h283v-1456h-283zM369 1606v198h250v-198h-250z" />
<glyph unicode="&#xd0;" horiz-adv-x="1181" d="M31 655v175h109v626h440q224 0 370 -169.5t146 -436.5v-245q0 -267 -146 -436t-370 -169h-440v655h-109zM425 227h139q119 0 183.5 103.5t64.5 274.5v247q0 170 -64.5 273t-183.5 103h-139v-398h187v-175h-187v-428z" />
<glyph unicode="&#xd1;" horiz-adv-x="1241" d="M110 0v1456h285l445 -930l6 2v928h283v-1456h-283l-445 931l-6 -2v-929h-285zM294 1645q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79z" />
<glyph unicode="&#xd2;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM253 1840l3 6h298l175 -266h-230zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236 v-410z" />
<glyph unicode="&#xd3;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410zM439 1581l176 266h299l3 -6 l-249 -260h-229z" />
<glyph unicode="&#xd4;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM254 1612v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5 t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="&#xd5;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM258 1666q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44 t-121.5 44q-27 0 -46 -33t-19 -79zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="&#xd6;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM234 1627v198h251v-198h-251zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410z M683 1627v198h250v-198h-250z" />
<glyph unicode="&#xd7;" horiz-adv-x="978" d="M57 1000l167 163l262 -302l262 302l166 -163l-275 -316l274 -315l-167 -163l-261 300l-260 -300l-165 163l272 314z" />
<glyph unicode="&#xd8;" horiz-adv-x="1215" d="M81 523v408q0 255 138 400.5t368 145.5q90 0 168.5 -24t141.5 -69l65 132h129l-106 -216q54 -71 83 -164t29 -205v-408q0 -256 -139 -400t-370 -144q-63 0 -120.5 11t-107.5 34l-57 -117h-127l86 176q-87 70 -134 181.5t-47 258.5zM363 523q0 -54 6 -97.5t19 -70.5l6 -1 l382 781q-28 56 -75.5 84.5t-113.5 28.5q-112 0 -168 -79t-56 -236v-410zM466 241q24 -18 54.5 -26t67.5 -8q110 0 168 79t58 237v410v4l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM256 1819l3 6h298l175 -266h-230z" />
<glyph unicode="&#xda;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM442 1560l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xdb;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM257 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#xdc;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM237 1606v198h251v-198h-251zM686 1606v198h250v-198h-250z" />
<glyph unicode="&#xdd;" horiz-adv-x="1124" d="M7 1456h311l240 -624h6l243 624h309l-416 -938v-518h-284v536zM425 1559l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xde;" horiz-adv-x="1079" d="M108 0v1456h285v-268h165q223 0 346.5 -124t123.5 -326q0 -203 -123.5 -326.5t-346.5 -123.5h-165v-288h-285zM393 515h165q94 0 139.5 63t45.5 158q0 96 -46 160.5t-139 64.5h-163l-2 2v-448z" />
<glyph unicode="&#xdf;" horiz-adv-x="1132" d="M119 0v1104q0 223 114 344t315 121q161 0 268 -96t107 -269q0 -105 -42.5 -200.5t-42.5 -168.5q0 -53 118.5 -194t118.5 -282q0 -192 -98.5 -286t-296.5 -94q-66 0 -131 15t-98 40l50 224q32 -23 77 -38t100 -15q53 0 84 38t31 105q0 71 -120 203.5t-120 272.5 q0 94 44 192t44 174q0 63 -35.5 108t-80.5 45q-54 0 -88.5 -65.5t-34.5 -177.5v-1100h-283z" />
<glyph unicode="&#xe0;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM136 1497l3 6h298l175 -266h-230zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe1;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM322 1238l176 266h299l3 -6l-249 -260h-229zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe2;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM137 1269v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe3;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM141 1323q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107 q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe4;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM119 1284v198h251v-198h-251zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114zM568 1284v198h250v-198h-250z" />
<glyph unicode="&#xe5;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM274 1417q0 80 56 135t138 55q80 0 135 -55t55 -135q0 -82 -54.5 -134t-135.5 -52q-82 0 -138 52.5t-56 133.5zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114zM382 1417q0 -42 24 -68.5t62 -26.5q37 0 60 26 t23 69t-23 70t-60 27q-38 0 -62 -27t-24 -70z" />
<glyph unicode="&#xe6;" horiz-adv-x="1479" d="M41 317q0 159 110.5 245.5t322.5 86.5h136v56q0 79 -30 124t-83 45q-57 0 -89.5 -37t-32.5 -92l-275 17l-2 6q-5 145 106.5 239.5t295.5 94.5q83 0 153 -23.5t121 -68.5q51 44 118 68t149 24q181 0 285 -131t104 -356v-160h-535q5 -117 51.5 -183t144.5 -66 q77 0 127.5 18.5t115.5 59.5l71 -183q-53 -49 -147.5 -85.5t-200.5 -36.5q-108 0 -192 38t-142 110q-52 -65 -135.5 -106.5t-196.5 -41.5q-168 0 -259 90.5t-91 247.5zM324 313q0 -61 30 -95t92 -34q41 0 88 27t76 65v190h-134q-71 0 -111.5 -44.5t-40.5 -108.5zM896 644 h257v27q0 94 -28 148.5t-84 54.5q-73 0 -106 -60t-39 -170z" />
<glyph unicode="&#xe7;" horiz-adv-x="910" d="M52 470v139q0 216 112 354.5t321 138.5q176 0 279.5 -113t100.5 -305l-2 -5h-259q0 88 -29.5 141.5t-89.5 53.5q-85 0 -117 -72t-32 -193v-139q0 -124 32 -194t119 -70q58 0 87.5 43t29.5 124h258l3 -6q3 -170 -104.5 -279t-273.5 -109q-210 0 -322.5 137t-112.5 354z M346 -134l27 141h213l-9 -59q51 -11 86.5 -52.5t35.5 -120.5q0 -108 -80.5 -172.5t-227.5 -64.5l-6 163q34 0 53.5 20.5t19.5 63.5q0 42 -25.5 59t-86.5 22z" />
<glyph unicode="&#xe8;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM135 1498l3 6h298l175 -266h-230zM353 645h255v40q0 90 -28 139.5 t-91 49.5q-68 0 -100 -62t-36 -167z" />
<glyph unicode="&#xe9;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM321 1239l176 266h299l3 -6l-249 -260h-229zM353 645h255v40 q0 90 -28 139.5t-91 49.5q-68 0 -100 -62t-36 -167z" />
<glyph unicode="&#xea;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM136 1270v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z M353 645h255v40q0 90 -28 139.5t-91 49.5q-68 0 -100 -62t-36 -167z" />
<glyph unicode="&#xeb;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM118 1285v198h251v-198h-251zM353 645h255v40q0 90 -28 139.5t-91 49.5 q-68 0 -100 -62t-36 -167zM567 1285v198h250v-198h-250z" />
<glyph unicode="&#xec;" horiz-adv-x="513" d="M-73 1476l3 6h298l175 -266h-230zM113 0v1082h285v-1082h-285z" />
<glyph unicode="&#xed;" horiz-adv-x="513" d="M111 1217l176 266h299l3 -6l-249 -260h-229zM113 0v1082h285v-1082h-285z" />
<glyph unicode="&#xee;" horiz-adv-x="513" d="M-72 1250v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM113 0v1082h285v-1082h-285z" />
<glyph unicode="&#xef;" horiz-adv-x="513" d="M-92 1263v198h251v-198h-251zM113 0v1082h285v-1082h-285zM357 1263v198h250v-198h-250z" />
<glyph unicode="&#xf0;" horiz-adv-x="1053" d="M38 466q0 227 113.5 362t313.5 135q59 0 112.5 -19t93.5 -52l4 4q-17 69 -47 130.5t-71 111.5l-181 -119l-72 111l155 101q-30 21 -62 38t-65 31l89 217q72 -21 138.5 -56t125.5 -83l173 112l70 -110l-147 -96q98 -117 152.5 -274.5t54.5 -345.5v-71q0 -270 -137.5 -442 t-342.5 -172q-208 0 -339 139.5t-131 347.5zM322 466q0 -111 51.5 -185.5t137.5 -74.5q90 0 141 108t51 279v70q-28 38 -76.5 62.5t-111.5 24.5q-93 0 -143 -77.5t-50 -206.5z" />
<glyph unicode="&#xf1;" d="M87 0v1082h265l12 -149q45 80 110.5 124.5t144.5 44.5q135 0 212.5 -104t77.5 -327v-671h-285v671q0 112 -31.5 157.5t-97.5 45.5q-38 0 -70 -20t-54 -55v-799h-284zM170 1323q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45 q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79z" />
<glyph unicode="&#xf2;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM165 1497l3 6h298l175 -266h-230zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5 t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="&#xf3;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z M351 1238l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xf4;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM166 1269v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5 v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="&#xf5;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM170 1323q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5 q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="&#xf6;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM146 1284v198h251v-198h-251zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5 t-120.5 -73t-35.5 -194v-134zM595 1284v198h250v-198h-250z" />
<glyph unicode="&#xf7;" horiz-adv-x="1005" d="M59 577v221h878v-221h-878zM357 167v230h281v-230h-281zM357 971v230h281v-230h-281z" />
<glyph unicode="&#xf8;" horiz-adv-x="997" d="M58 473v134q0 218 115.5 356.5t323.5 138.5q40 0 78 -6t73 -17l57 138h152l-85 -206q80 -66 122.5 -170.5t42.5 -233.5v-134q0 -220 -116 -357t-323 -137q-40 0 -75.5 5.5t-68.5 14.5l-58 -142h-151l85 206q-85 64 -128.5 170t-43.5 240zM341 473q0 -35 1.5 -62t6.5 -43 l6 -1l203 494q-14 6 -29.5 9.5t-31.5 3.5q-85 0 -120.5 -73t-35.5 -194v-134zM444 215q12 -5 25 -7t29 -2q84 0 119.5 71.5t35.5 195.5v134q0 27 -2 49.5t-4 36.5l-6 1z" />
<glyph unicode="&#xf9;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM163 1476l3 6h298l175 -266h-230z" />
<glyph unicode="&#xfa;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM349 1217l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xfb;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM164 1250v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#xfc;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM144 1263v198h251v-198h-251zM593 1263v198h250v-198h-250z" />
<glyph unicode="&#xfd;" horiz-adv-x="909" d="M5 1082h305l130 -638l2 -11l158 649h304l-365 -1245q-41 -117 -109.5 -195.5t-209.5 -78.5q-35 0 -62 6t-72 18l33 212q17 -3 24.5 -4.5t16.5 -1.5q62 0 93.5 32.5t45.5 85.5l25 80zM307 1217l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xfe;" horiz-adv-x="999" d="M93 -416v1976h284v-570q38 54 89 83t116 29q171 0 265 -140.5t94 -370.5v-133q0 -216 -94 -347.5t-263 -131.5q-66 0 -117.5 26.5t-89.5 78.5v-500h-284zM377 277q20 -35 52.5 -53t79.5 -18q79 0 113.5 67t34.5 185v133q0 128 -36 205.5t-113 77.5q-45 0 -78 -22.5 t-53 -63.5v-511z" />
<glyph unicode="&#xff;" horiz-adv-x="909" d="M5 1082h305l130 -638l2 -11l158 649h304l-365 -1245q-41 -117 -109.5 -195.5t-209.5 -78.5q-35 0 -62 6t-72 18l33 212q17 -3 24.5 -4.5t16.5 -1.5q62 0 93.5 32.5t45.5 85.5l25 80zM104 1263v198h251v-198h-251zM553 1263v198h250v-198h-250z" />
<glyph unicode="&#x152;" horiz-adv-x="1709" d="M87 576v304q0 265 146 431t382 166q57 0 116.5 -6t124.5 -15h781v-228h-573v-362h489v-227h-489v-412h575v-227h-783q-76 -10 -130.5 -15.5t-109.5 -5.5q-235 0 -382 166t-147 431zM371 576q0 -179 65 -274.5t180 -95.5q41 0 82 3t81 10v1018q-41 6 -82 9.5t-82 3.5 q-116 0 -180 -95t-64 -273v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1571" d="M75 529v22q0 244 115 397.5t323 153.5q92 0 168 -32.5t132 -92.5q53 60 125 92.5t160 32.5q190 0 294 -130.5t104 -355.5v-161h-532q8 -111 56.5 -180t135.5 -69q80 0 131 18t119 60l73 -181q-57 -54 -151 -89t-206 -35q-94 0 -171.5 33t-134.5 95q-56 -63 -132 -95.5 t-170 -32.5q-209 0 -324 152.5t-115 397.5zM359 529q0 -150 34.5 -236t117.5 -81h6q82 -5 117 81.5t35 235.5v22q0 146 -35.5 233.5t-117.5 83.5h-6q-82 4 -116.5 -83.5t-34.5 -233.5v-22zM965 645h253v27q0 95 -28.5 148.5t-91.5 53.5q-61 0 -93 -61.5t-40 -167.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1124" d="M7 1456h311l240 -624h6l243 624h309l-416 -938v-518h-284v536zM220 1605v198h251v-198h-251zM669 1605v198h250v-198h-250z" />
<glyph unicode="&#x2c6;" horiz-adv-x="902" d="M118 1252v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#x2dc;" horiz-adv-x="867" d="M110 1272q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79z" />
<glyph unicode="&#x2000;" horiz-adv-x="964" />
<glyph unicode="&#x2001;" horiz-adv-x="1929" />
<glyph unicode="&#x2002;" horiz-adv-x="964" />
<glyph unicode="&#x2003;" horiz-adv-x="1929" />
<glyph unicode="&#x2004;" horiz-adv-x="643" />
<glyph unicode="&#x2005;" horiz-adv-x="482" />
<glyph unicode="&#x2006;" horiz-adv-x="321" />
<glyph unicode="&#x2007;" horiz-adv-x="321" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="385" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#x2011;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#x2012;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#x2013;" horiz-adv-x="1212" d="M147 600v230h917v-230h-917z" />
<glyph unicode="&#x2014;" horiz-adv-x="1430" d="M123 600v230h1128v-230h-1128z" />
<glyph unicode="&#x2018;" horiz-adv-x="366" d="M41 1023v191l146 346h137l-50 -342v-195h-233z" />
<glyph unicode="&#x2019;" horiz-adv-x="366" d="M49 1024l49 344v192h234v-192l-146 -344h-137z" />
<glyph unicode="&#x201a;" horiz-adv-x="367" d="M41 -257l52 267v285h234v-271l-132 -281h-154z" />
<glyph unicode="&#x201c;" horiz-adv-x="667" d="M41 1023v191l146 346h137l-50 -342v-195h-233zM342 1023v191l146 346h137l-50 -342v-195h-233z" />
<glyph unicode="&#x201d;" horiz-adv-x="675" d="M43 1024l49 344v192h234v-192l-146 -344h-137zM350 1024l49 344v192h234v-192l-146 -344h-137z" />
<glyph unicode="&#x201e;" horiz-adv-x="661" d="M41 -217l52 254v263h217v-251l-148 -266h-121zM350 -217l52 261v256h217v-251l-148 -266h-121z" />
<glyph unicode="&#x2022;" horiz-adv-x="680" d="M126 710v96q0 100 59.5 164t158.5 64q101 0 161 -63.5t60 -164.5v-96q0 -101 -59.5 -163t-159.5 -62t-160 62.5t-60 162.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1347" d="M129 0v258h281v-258h-281zM543 0v258h281v-258h-281zM952 0v258h281v-258h-281z" />
<glyph unicode="&#x202f;" horiz-adv-x="385" />
<glyph unicode="&#x2039;" horiz-adv-x="563" d="M99 541v19l233 389h176l-195 -399l195 -397h-176z" />
<glyph unicode="&#x203a;" horiz-adv-x="541" d="M72 152l195 398l-195 399h176l233 -389v-19l-233 -389h-176z" />
<glyph unicode="&#x205f;" horiz-adv-x="482" />
<glyph unicode="&#x20ac;" horiz-adv-x="970" d="M65 453v200h121v117h-121v200h121v16q0 204 130 347.5t342 143.5q51 0 100.5 -8t107.5 -23l-20 -232q-45 16 -92.5 25.5t-95.5 9.5q-89 0 -138.5 -78.5t-49.5 -182.5v-18h336v-200h-336v-117h336v-200h-336v-12q0 -97 49.5 -166t139.5 -69q48 0 95.5 8t91.5 25l20 -229 q-50 -15 -102 -23t-105 -8q-212 0 -342.5 134.5t-130.5 327.5v12h-121z" />
<glyph unicode="&#x2122;" horiz-adv-x="1116" d="M89 1350v106h340v-106h-104v-433h-137v433h-99zM487 914v542h149l89 -360h6l89 360h143v-542h-120v251h-6l-76 -251h-67l-80 266l-6 -1v-265h-121z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1142" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM752 0v1560h284v-1560h-284z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1754" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM665 876v206h133v70q0 207 112 318t316 111q70 0 138.5 -15t153.5 -44l-40 -232q-65 22 -115.5 34 t-118.5 12q-80 0 -121 -47t-41 -137v-70h173v-206h-173v-876h-284v876h-133zM1363 0v1082h285v-1082h-285z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1789" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM670 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7 t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM1399 0v1560h284v-1560h-284z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'roboto_condensedbold';
src: url('RobotoCondensed-Bold-webfont.eot');
src: url('RobotoCondensed-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('RobotoCondensed-Bold-webfont.woff') format('woff'),
url('RobotoCondensed-Bold-webfont.ttf') format('truetype'),
url('RobotoCondensed-Bold-webfont.svg#roboto_condensedbold') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'roboto_condensedbold_italic';
}
</style>
<title>Roboto Bold Condensed Italic Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Bold Condensed Italic </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Bold Condensed Italic</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,643 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedbold_italic" horiz-adv-x="960" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="439" />
<glyph unicode="&#xfb01;" horiz-adv-x="1074" d="M61 0l175 876h-126l41 206h126l14 70q44 220 171 324.5t330 104.5q63 0 129.5 -15.5t139.5 -43.5l-85 -232q-58 22 -104 34t-111 12q-70 0 -120.5 -48t-67.5 -136l-14 -70h161l-41 -206h-161l-175 -876h-282zM603 0l216 1082h283l-216 -1082h-283z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="439" />
<glyph horiz-adv-x="26" />
<glyph unicode="&#x9;" horiz-adv-x="26" />
<glyph unicode=" " horiz-adv-x="439" />
<glyph unicode="&#x09;" horiz-adv-x="439" />
<glyph unicode="&#xa0;" horiz-adv-x="439" />
<glyph unicode="!" horiz-adv-x="500" d="M29 0l52 258h276l-52 -258h-276zM126 506l190 950h283l-190 -950h-283z" />
<glyph unicode="&#x22;" horiz-adv-x="591" d="M147 1046l39 239l44 275h196l-42 -263l-115 -251h-122zM440 1046l41 247l43 267h193l-42 -263l-114 -251h-121z" />
<glyph unicode="#" horiz-adv-x="993" d="M43 410l33 166h198l100 297h-178l33 167h202l140 416h170l-140 -416h121l140 416h171l-140 -416h176l-33 -167h-199l-100 -297h178l-33 -166h-201l-138 -410h-171l138 410h-122l-138 -410h-170l138 410h-175zM444 576h122l100 297h-122z" />
<glyph unicode="$" horiz-adv-x="984" d="M82 456h282q-23 -141 7 -196.5t96 -55.5q53 0 91 49.5t51 127.5q13 87 -8 134.5t-88 94.5q-172 87 -244.5 183.5t-42.5 278.5q27 172 132.5 277t259.5 124l35 212h142l-35 -217q133 -30 198.5 -151t35.5 -309h-282q19 122 -2 182.5t-71 60.5t-85 -51t-47 -129 q-13 -78 9 -125.5t91 -96.5q169 -92 240.5 -189.5t43.5 -276.5q-29 -178 -132 -279.5t-257 -119.5l-31 -199h-143l31 200q-146 22 -229 137t-48 334z" />
<glyph unicode="%" horiz-adv-x="1305" d="M223 184l800 1138l118 -74l-800 -1138zM225 1099l15 77q27 137 114.5 219t219.5 82q122 0 180.5 -87t33.5 -214l-15 -77q-28 -138 -114 -218.5t-219 -80.5q-122 0 -181.5 86.5t-33.5 212.5zM409 1099q-12 -60 4 -98t60 -38q40 0 72 40t44 96l15 77q12 61 -3 99.5 t-59 38.5q-40 0 -73.5 -41t-44.5 -97zM641 280l15 77q27 136 114.5 218t219.5 82q123 0 181 -87t33 -213l-15 -77q-28 -139 -113.5 -219.5t-218.5 -80.5q-122 0 -182 87t-34 213zM826 280q-13 -59 5.5 -98.5t57.5 -38.5q48 -1 76.5 37.5t40.5 99.5l15 77q12 61 -3.5 99 t-59.5 38q-40 0 -73 -40.5t-44 -96.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1181" d="M51 388q19 123 86 204.5t197 176.5q-44 94 -60 171t-3 157q28 177 138 278.5t270 101.5q132 0 206 -99.5t52 -237.5q-16 -101 -69 -179.5t-136 -137.5l-85 -62l167 -298l5 1q33 50 57 113t36 134h205q-24 -142 -69 -254.5t-119 -199.5l144 -257h-319l-45 81 q-80 -51 -157 -76.5t-161 -25.5q-178 0 -273.5 114.5t-66.5 294.5zM338 406q-15 -90 16 -145t90 -55q40 0 82 12t86 37l-189 341l-4 -3q-37 -49 -55.5 -94.5t-25.5 -92.5zM521 1100q-7 -41 3 -83t34 -91l57 40q53 36 75 73.5t30 82.5q7 51 -14 89t-64 38q-45 0 -78 -43 t-43 -106z" />
<glyph unicode="'" horiz-adv-x="298" d="M144 1007l41 268l46 285h188l-44 -272l-110 -281h-121z" />
<glyph unicode="(" horiz-adv-x="619" d="M129 567l4 24q64 401 231 666.5t343 348.5h6l26 -143q-114 -98 -217.5 -318t-156.5 -552l-5 -28q-55 -347 -22 -558t118 -313l-72 -141h-6q-147 82 -229 355t-20 659z" />
<glyph unicode=")" horiz-adv-x="617" d="M-77 -306q113 98 216.5 318.5t157.5 552.5l5 28q55 345 21 558t-117 314l74 141h6q149 -81 236.5 -362t28.5 -653l-4 -24q-63 -390 -237 -661t-353 -353h-6z" />
<glyph unicode="*" horiz-adv-x="801" d="M162 1058l86 173l221 -127l51 352h175l-87 -351l4 -4l258 122l17 -175l-273 -93l112 -269l-163 -107l-78 287l-6 1l-194 -279l-121 103l228 275z" />
<glyph unicode="+" horiz-adv-x="959" d="M82 556l51 254h289l79 396h266l-79 -396h287l-51 -254h-287l-82 -410h-266l82 410h-289z" />
<glyph unicode="," horiz-adv-x="454" d="M-100 -309l121 319l46 231h250l-48 -239l-205 -311h-164z" />
<glyph unicode="-" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="." horiz-adv-x="535" d="M37 0l52 258h278l-52 -258h-278z" />
<glyph unicode="/" horiz-adv-x="625" d="M-119 -125l724 1581h204l-726 -1581h-202z" />
<glyph unicode="0" horiz-adv-x="977" d="M108 571l63 313q61 309 198 451t329 142q174 0 261 -154t30 -439l-63 -313q-62 -310 -198.5 -451t-326.5 -141q-176 0 -263.5 153t-29.5 439zM364.5 282.5q17.5 -75.5 79.5 -67.5l6 -1q53 -7 103.5 75.5t86.5 258.5l72 361q37 187 20 262.5t-77 68.5l-6 1 q-54 6 -105.5 -76.5t-85.5 -255.5l-72 -361q-39 -190 -21.5 -265.5z" />
<glyph unicode="1" horiz-adv-x="984" d="M271 1153l41 205l555 99l-291 -1457h-282l232 1159z" />
<glyph unicode="2" horiz-adv-x="984" d="M12 0l31 193l458 503q92 112 136.5 194.5t56.5 151.5q15 97 -8 152t-85 55q-60 0 -106.5 -70t-63.5 -180h-274l-2 6q29 205 160.5 338.5t321.5 133.5q186 0 278 -117.5t61 -314.5q-23 -140 -98 -249t-248 -297l-213 -267l3 -5h453l-36 -227h-825z" />
<glyph unicode="3" horiz-adv-x="984" d="M51 395l3 5h275q-14 -87 16 -140.5t89 -53.5q64 0 114 56.5t65 147.5q18 121 -11 172t-105 51h-138l24 150l11 70h138q66 0 109 54.5t58 150.5q14 88 -10.5 139.5t-87.5 51.5q-48 0 -92.5 -47.5t-56.5 -122.5h-271l-3 6q24 180 153 286t298 106q183 0 283 -109.5 t69 -305.5q-17 -103 -79 -187t-155 -130q89 -44 127.5 -132t19.5 -207q-34 -207 -172.5 -317t-332.5 -110q-162 0 -267.5 108.5t-70.5 307.5z" />
<glyph unicode="4" horiz-adv-x="984" d="M49 318l20 178l661 960h281l-182 -910h116l-45 -228h-117l-63 -318h-281l63 318h-453zM333 546h215l98 493l-5 3l-14 -19z" />
<glyph unicode="5" horiz-adv-x="984" d="M73 398l283 15q-16 -102 11 -154.5t86 -52.5q65 0 107.5 72.5t61.5 186.5q21 133 -0.5 206t-94.5 73q-50 0 -85 -32.5t-54 -84.5l-248 17l199 812h684l-37 -233h-454l-84 -343q33 31 80 51.5t93 22.5q175 3 247.5 -125.5t35.5 -361.5q-35 -215 -161.5 -351.5 t-325.5 -136.5q-162 0 -269 113t-75 306z" />
<glyph unicode="6" horiz-adv-x="984" d="M98 563l48 300q47 294 210 454t384 160q66 0 120.5 -15.5t107.5 -46.5l-81 -215q-47 23 -87.5 34.5t-95.5 11.5q-93 0 -166.5 -93t-99.5 -259l3 -5q43 41 103 64.5t131 23.5q151 0 220 -140.5t35 -354.5q-36 -226 -171 -364.5t-318 -138.5q-187 0 -286.5 157.5 t-56.5 426.5zM377.5 294q26.5 -88 97.5 -82l6 -1q52 -5 100.5 76.5t66.5 194.5q19 126 -4.5 198.5t-80.5 72.5q-52 0 -93.5 -19.5t-70.5 -55.5l-19 -118q-29 -178 -2.5 -266z" />
<glyph unicode="7" horiz-adv-x="984" d="M183 1228l37 228h849l-37 -228q-229 -252 -323.5 -480.5t-183.5 -607.5l-35 -140h-282l35 140q79 328 206 599t313 489h-579z" />
<glyph unicode="8" horiz-adv-x="984" d="M79 398q24 126 96 215.5t177 135.5q-73 48 -105 131.5t-10 189.5q41 207 164 307t301 100q162 0 251.5 -108.5t51.5 -298.5q-24 -118 -87.5 -202t-156.5 -128q81 -51 118 -140t15 -202q-44 -217 -173.5 -318t-317.5 -101q-171 0 -267.5 110t-56.5 309zM366 259.5 q22 -53.5 82 -53.5q53 0 100.5 57.5t67.5 155.5q20 104 -2.5 158.5t-80.5 54.5q-54 0 -101 -58.5t-66 -154.5q-22 -106 0 -159.5zM513 908.5q15 -49.5 66 -49.5q47 0 83.5 53t55.5 144q18 95 3.5 144t-64.5 49q-47 0 -84.5 -52t-54.5 -141q-20 -98 -5 -147.5z" />
<glyph unicode="9" horiz-adv-x="984" d="M124 41l64 212q50 -24 98.5 -35.5t110.5 -11.5q76 0 142.5 83t90.5 229l7 47q-46 -54 -99.5 -81.5t-109.5 -27.5q-158 0 -232 136t-37 365q36 227 174 373.5t317 146.5q176 0 269.5 -156t50.5 -429l-57 -356q-43 -266 -196 -411.5t-356 -145.5q-57 0 -122 16.5t-115 45.5 zM436.5 745.5q18.5 -75.5 79.5 -75.5q43 0 82.5 25t69.5 66l27 166q26 165 3.5 242.5t-82.5 71.5l-6 1q-52 5 -102 -82.5t-68 -202.5q-22 -136 -3.5 -211.5z" />
<glyph unicode=":" horiz-adv-x="535" d="M41 0l52 258h278l-52 -258h-278zM206 823l52 258h278l-52 -258h-278z" />
<glyph unicode=";" horiz-adv-x="511" d="M-58 -309l121 319l46 231h250l-48 -239l-205 -311h-164zM195 823l52 258h278l-52 -258h-278z" />
<glyph unicode="&#x3c;" horiz-adv-x="866" d="M51 431l16 81l30 149l778 364l-54 -270l-498 -209v-6l414 -203l-54 -271z" />
<glyph unicode="=" horiz-adv-x="987" d="M99 323l45 229h739l-45 -229h-739zM185 756l46 228h739l-46 -228h-739z" />
<glyph unicode="&#x3e;" horiz-adv-x="877" d="M33 66l54 269l505 209v6l-421 206l54 269l639 -364l-17 -82h1l-30 -149z" />
<glyph unicode="?" horiz-adv-x="872" d="M156 1075q37 197 167.5 299.5t308.5 102.5q180 0 274 -117.5t56 -310.5q-27 -134 -106.5 -234.5t-189.5 -175.5q-58 -46 -84.5 -94.5t-42.5 -131.5h-282q28 136 79 201.5t175 159.5q63 55 106.5 121.5t61.5 152.5q19 98 -4.5 149t-87.5 51q-44 0 -91.5 -47.5 t-64.5 -131.5h-273zM175 0l49 247h278l-49 -247h-278z" />
<glyph unicode="@" horiz-adv-x="1549" d="M67 478q100 428 352 682t584 254q305 0 442 -245.5t43 -652.5q-51 -219 -186 -378t-341 -159q-64 0 -105.5 46t-46.5 128q-54 -86 -115.5 -128.5t-130.5 -42.5q-114 0 -159.5 121t9.5 313q72 252 202.5 404t273.5 152q95 0 158.5 -27.5t123.5 -78.5l-4 -4h5l-157 -569 q-24 -98 -18 -132.5t31 -26.5l6 -1q82 -6 163 106t121 277q83 350 -3 546.5t-347 196.5q-236 0 -433.5 -214t-279.5 -567q-85 -352 7.5 -557.5t343.5 -205.5q67 0 150 20t143 49l4 -148q-66 -42 -158 -65.5t-176 -23.5q-316 0 -458 253.5t-44 677.5zM602.5 222 q7.5 -67 55.5 -67q40 0 80.5 28.5t82.5 103.5l2 6l136 497q-15 5 -31.5 8t-33.5 3q-84 0 -149.5 -96.5t-117.5 -288.5q-32 -127 -24.5 -194z" />
<glyph unicode="A" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1z" />
<glyph unicode="B" horiz-adv-x="1097" d="M22 0l291 1456h414q203 0 311 -102q79 -75 79 -201q0 -44 -10 -95q-23 -110 -81.5 -188.5t-153.5 -116.5q104 -27 136 -117q19 -52 20 -116q0 -45 -10 -95q-45 -223 -177.5 -324t-351.5 -101h-467zM350 227h184q77 0 130 50.5t73 148.5q11 55 11 95q0 43 -12 69 q-22 52 -100 52h-203zM473 841h141q76 2 130.5 51.5t73.5 138.5q8 42 8 75q0 51 -20 78q-33 44 -124 44h-131z" />
<glyph unicode="C" horiz-adv-x="1081" d="M109 584l58 290q57 289 203 446t356 157q213 1 325 -141q88 -111 88 -285q0 -48 -7 -101h-281q10 61 10 109q-1 71 -21 115q-34 76 -141 75q-82 0 -150 -103t-101 -270l-58 -292q-19 -92 -19 -163q0 -67 17 -115q35 -100 135 -100q89 0 144 69.5t92 219.5h273l2 -6 q-60 -251 -188 -380.5t-342 -129.5q-206 0 -326 173q-84 121 -85 284q0 70 16 148z" />
<glyph unicode="D" horiz-adv-x="1107" d="M22 0l291 1456h391q204 0 329 -178q88 -126 89 -292q0 -69 -16 -145l-49 -245q-58 -288 -210.5 -442t-368.5 -154h-456zM350 227h157q100 0 166.5 97t101.5 272l50 247q14 72 14 131q0 88 -30 150q-50 104 -166 104h-93z" />
<glyph unicode="E" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825z" />
<glyph unicode="F" horiz-adv-x="979" d="M22 0l291 1456h830l-45 -228h-548l-79 -396h464l-45 -227h-464l-121 -605h-283z" />
<glyph unicode="G" horiz-adv-x="1133" d="M95 506l89 444q53 268 207.5 397.5t374.5 129.5q217 0 316 -121q73 -88 73 -226q0 -52 -11 -112l-3 -5h-266q8 47 8 84q0 61 -21 95q-36 57 -133 57q-90 0 -162 -75t-101 -222l-89 -446q-15 -74 -15 -129q0 -65 22 -103q39 -68 146 -68q73 0 117 24t75 67l53 261h-174 l40 200h456l-109 -542q-76 -94 -203 -165.5t-300 -71.5q-210 0 -325 139q-80 98 -80 248q0 65 15 140z" />
<glyph unicode="H" horiz-adv-x="1193" d="M22 0l291 1456h283l-125 -626h415l125 626h281l-291 -1456h-281l120 603h-415l-120 -603h-283z" />
<glyph unicode="I" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281z" />
<glyph unicode="J" horiz-adv-x="980" d="M53 427h283q-12 -60 -12 -102q0 -45 14 -70q26 -49 84 -49q49 0 101 64t74 174l202 1012h281l-202 -1012q-47 -229 -184 -347t-317 -118q-178 0 -273 115q-65 78 -65 205q0 59 14 128z" />
<glyph unicode="K" horiz-adv-x="1053" d="M22 0l291 1456h282l-119 -594h87l325 594h370l-496 -722l217 -734h-324l-148 602h-83l-120 -602h-282z" />
<glyph unicode="L" horiz-adv-x="927" d="M22 0l291 1456h283l-246 -1229h502l-45 -227h-785z" />
<glyph unicode="M" horiz-adv-x="1421" d="M17 0l291 1456h366l24 -1067l6 -1l453 1068h368l-291 -1456h-281l85 423l129 533l-6 2l-444 -958h-187l-59 947l-6 1l-82 -525l-85 -423h-281z" />
<glyph unicode="N" horiz-adv-x="1193" d="M22 0l291 1456h283l226 -905h6l181 905h281l-291 -1456h-281l-226 907h-6l-181 -907h-283z" />
<glyph unicode="O" horiz-adv-x="1158" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181q89 -128 89 -296q0 -69 -15 -145l-52 -259q-58 -289 -218 -453t-384 -164q-209 -1 -330 179q-84 125 -84 290q0 72 16 152zM394 600q-16 -80 -16 -145q0 -81 25 -141q45 -106 154 -107q95 0 168 107.5 t108 281.5l52 261q15 74 15 135q0 86 -30 149q-50 107 -160 107q-94 0 -161.5 -106t-102.5 -281z" />
<glyph unicode="P" horiz-adv-x="1119" d="M22 0l291 1456h488q194 0 296 -132q73 -94 73 -226q0 -52 -11 -109q-45 -223 -189.5 -345t-355.5 -122h-205l-104 -522h-283zM455 750h205q77 0 137 68.5t80 168.5q9 47 9 86q0 52 -16 90q-30 65 -114 65h-205z" />
<glyph unicode="Q" horiz-adv-x="1196" d="M120 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181q89 -128 89 -296q0 -69 -15 -145l-52 -259q-30 -144 -85 -258.5t-132 -193.5l152 -225l-204 -150l-159 238q-42 -13 -85.5 -20.5t-88.5 -7.5q-209 0 -330 179q-84 125 -84 290q0 72 16 152zM400 600 q-16 -80 -16 -145q0 -82 25 -141q45 -107 154 -107q95 0 168 107.5t108 281.5l52 261q15 74 15 135q0 87 -30 149q-50 107 -160 107q-94 0 -161.5 -106t-102.5 -281z" />
<glyph unicode="R" horiz-adv-x="1118" d="M23 0l291 1455h457q192 1 293 -115q73 -83 73 -210q0 -49 -11 -104q-25 -123 -89.5 -202.5t-169.5 -127.5q95 -40 127 -130q18 -51 19 -112q0 -48 -11 -102l-20 -103q-13 -64 -13 -130.5t27 -97.5l-4 -21h-292q-22 26 -22 78v22q6 69 22 151l20 99q10 52 10 92 q0 48 -16 80q-28 56 -105 57h-188l-116 -579h-282zM466 806h174q72 0 126.5 54t74.5 150q9 45 9 81q0 49 -16 81q-28 56 -108 56h-175z" />
<glyph unicode="S" horiz-adv-x="1048" d="M93 424l2 5h275q-8 -41 -9 -74q-1 -69 37 -101q54 -48 145 -48q52 0 102 42.5t63 104.5q7 35 7 63q1 54 -23 86q-36 50 -145 108q-201 82 -293 196q-66 81 -65 197q0 46 10 97q36 180 171 278.5t321 98.5q198 0 306 -120q76 -85 76 -212q0 -53 -13 -114l-2 -5h-275 q7 35 7 65q0 57 -25 97q-38 60 -119 61q-54 0 -103 -43t-61 -104q-6 -30 -6 -56q0 -53 27 -84q40 -46 176 -113q185 -77 267 -191q56 -78 56 -191q0 -52 -12 -112q-38 -187 -171 -281.5t-321 -94.5q-194 1 -324 109q-94 78 -95 219q0 54 14 117z" />
<glyph unicode="T" horiz-adv-x="955" d="M193 1228l45 228h893l-45 -228h-308l-245 -1228h-281l245 1228h-304z" />
<glyph unicode="U" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-12 -61 -12 -106q0 -60 21 -94q37 -59 132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-199 1 -311 129q-79 91 -79 232q0 58 13 125z" />
<glyph unicode="V" horiz-adv-x="1090" d="M176 1456h296l49 -1084l2 -49l5 -1l17 47l398 1087h296l-618 -1456h-293z" />
<glyph unicode="W" horiz-adv-x="1484" d="M187 1456h273v-898l6 -1l336 899h202l52 -900h6l287 900h273l-498 -1456h-263l-50 863h-6l-325 -863h-261z" />
<glyph unicode="X" horiz-adv-x="1088" d="M-40 0l458 734l-217 722h324l95 -508l6 -1l261 509h326l-449 -722l239 -734h-340l-101 519l-6 1l-268 -520h-328z" />
<glyph unicode="Y" horiz-adv-x="1085" d="M217 1456h308l99 -607l5 -1l344 608h307l-583 -939l-103 -517h-281l108 539z" />
<glyph unicode="Z" horiz-adv-x="966" d="M5 143l670 1086h-439l45 227h777l-27 -138l-674 -1091h514l-45 -227h-814z" />
<glyph unicode="[" horiz-adv-x="522" d="M-20 -339l325 2034h387l-35 -217h-102l-256 -1601h102l-34 -216h-387z" />
<glyph unicode="\" horiz-adv-x="737" d="M209 1456h277l175 -1581h-280z" />
<glyph unicode="]" horiz-adv-x="522" d="M-98 -339l34 216h105l256 1601h-105l35 217h388l-325 -2034h-388z" />
<glyph unicode="^" horiz-adv-x="761" d="M100 729l386 727h204l96 -727h-216l-41 422v-1l-6 1l-206 -422h-217z" />
<glyph unicode="_" horiz-adv-x="769" d="M-116 -220l44 220h741l-44 -220h-741z" />
<glyph unicode="`" horiz-adv-x="618" d="M235 1477h302l124 -266h-226z" />
<glyph unicode="a" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q8 42 8 73t-8 51q-16 40 -68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q153 0 239 -100q62 -71 61 -182q0 -45 -10 -97l-88 -438q-17 -84 -19 -150q-1 -14 -1 -29q0 -52 7 -106h-280q-6 27 -8.5 58 t-2.5 64q-50 -65 -110.5 -104t-131.5 -39q-119 -1 -183 89q-44 61 -44 149q0 40 9 85zM318 315q-5 -25 -5 -45q0 -27 9 -45q16 -32 54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5z" />
<glyph unicode="b" d="M5 0l312 1560h282l-110 -546q44 42 92.5 65t100.5 23q159 0 225 -167q38 -95 38 -218q0 -93 -22 -201l-4 -21q-53 -262 -155 -389t-273 -127q-67 0 -120 32.5t-85 93.5l-37 -105h-244zM338 258q13 -27 39.5 -39t68.5 -12q75 0 118.5 71.5t73.5 216.5l4 21q28 137 28 223 q0 23 -2 43q-10 92 -88 92q-38 0 -74 -30t-67 -82z" />
<glyph unicode="c" horiz-adv-x="878" d="M58 470l22 139q36 224 164.5 358.5t330.5 134.5q163 0 247 -114q62 -84 61 -213q0 -45 -7 -96h-263q6 43 6 77q-1 40 -9 67q-16 51 -71 51q-74 0 -116 -73t-61 -192l-22 -139q-12 -71 -12 -124q0 -42 8 -72q17 -68 97 -68q51 0 84.5 43t46.5 124h255l2 -6 q-26 -177 -144 -282.5t-280 -105.5q-193 1 -283 139q-65 100 -66 239q0 53 10 113z" />
<glyph unicode="d" d="M76 534l4 21q54 272 162 409.5t275 137.5q56 0 103 -27t81 -77l113 562h282l-312 -1560h-245l4 97q-50 -57 -106 -87.5t-115 -30.5q-152 -1 -223 159q-42 95 -42 218q0 83 19 178zM339 292q13 -85 86 -85q36 0 71.5 26.5t66.5 73.5l100 498q-13 34 -38.5 51.5t-62.5 17.5 q-68 0 -119.5 -86t-80.5 -233l-4 -21q-23 -112 -22 -187q-1 -30 3 -55z" />
<glyph unicode="e" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258 -128q58 -91 59 -226q0 -56 -10 -119l-28 -174h-504v-4q-6 -39 -6 -73q0 -62 21 -105q33 -67 125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135q-72 101 -72 239q0 47 8 98z M384 645h226l7 40q7 45 7 79q0 38 -8 62q-16 48 -74 48t-97 -62.5t-61 -166.5z" />
<glyph unicode="f" horiz-adv-x="631" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282z" />
<glyph unicode="g" d="M-15 -354l93 219q49 -32 101 -48t118 -16q77 0 134 64t79 171l5 26q-44 -40 -92 -61.5t-99 -21.5q-153 0 -224 159q-43 96 -43 219q0 82 19 177l4 21q54 272 162.5 409.5t275.5 137.5q64 0 116 -33t85 -93l37 106h245l-209 -1047q-46 -229 -187.5 -350.5t-352.5 -121.5 q-63 0 -137 23t-130 60zM340 292q13 -85 86 -85q38 0 72.5 23t63.5 66l104 521q-13 29 -39 43t-65 14q-67 0 -119 -86.5t-81 -232.5l-4 -21q-23 -110 -23 -185q0 -31 5 -57z" />
<glyph unicode="h" d="M-3 0l312 1560h282l-118 -587l5 -3q49 63 110 97.5t127 34.5q127 0 187 -116q34 -66 34 -170q0 -80 -20 -182l-127 -634h-283l127 636q18 88 18 140q0 32 -7 50q-18 48 -81 48q-33 0 -64.5 -17.5t-58.5 -48.5l-161 -808h-282z" />
<glyph unicode="i" horiz-adv-x="488" d="M18 0l216 1082h281l-216 -1082h-281zM287 1343l43 217h281l-43 -217h-281z" />
<glyph unicode="j" horiz-adv-x="479" d="M-231 -419l57 223q20 -6 35.5 -9t37.5 -3q38 0 69.5 44.5t47.5 130.5l223 1115h282l-223 -1115q-41 -206 -145.5 -305t-262.5 -99q-31 0 -60 4.5t-61 13.5zM287 1343l43 217h281l-43 -217h-281z" />
<glyph unicode="k" horiz-adv-x="934" d="M5 0l312 1560h282l-177 -886h42l244 408h324l-360 -484l190 -598h-322l-119 450h-44l-90 -450h-282z" />
<glyph unicode="l" horiz-adv-x="488" d="M18 0l312 1560h281l-312 -1560h-281z" />
<glyph unicode="m" horiz-adv-x="1444" d="M7 0l216 1082h263l-16 -127q55 72 123.5 109.5t149.5 37.5q70 0 119 -42.5t65 -127.5q56 82 127.5 126t157.5 44q118 0 174 -112q31 -63 31 -160q0 -77 -20 -176l-131 -654h-283l131 654q17 87 17 136q0 26 -5 41q-14 43 -67 43q-34 0 -67.5 -24t-62.5 -67 q-2 -18 -4.5 -36.5t-6.5 -38.5l-142 -708h-281l131 654q17 85 17 134q1 26 -5 42q-14 44 -68 44q-31 0 -63 -20t-61 -56l-159 -798h-280z" />
<glyph unicode="n" d="M0 0l216 1082h263l-16 -138q57 76 127 117t145 41q121 0 177 -106q32 -60 31 -157q0 -74 -18 -168l-134 -671h-283l134 671q13 66 13 109q0 34 -8 52q-19 42 -81 42q-32 0 -64 -20t-61 -55l-159 -799h-282z" />
<glyph unicode="o" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q192 0 284 -140q68 -102 67 -245q0 -52 -9 -110l-21 -134q-37 -228 -168 -361t-331 -133q-194 1 -286 139q-67 100 -66 240q0 54 10 115zM344 274q20 -68 100 -68q73 0 117 72t64 195l21 134q10 64 10 114q0 48 -10 83 q-20 70 -96 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-11 -67 -11 -118q0 -48 9 -81z" />
<glyph unicode="p" d="M-78 -416l299 1498h262l-9 -82q46 49 98 75.5t109 26.5q153 0 222 -169q40 -99 40 -225q0 -90 -20 -193l-4 -21q-52 -258 -157.5 -386.5t-270.5 -128.5q-59 0 -108 23.5t-82 69.5l-97 -488h-282zM337 250q13 -24 39 -34t69 -10q68 0 115.5 75t76.5 213l4 21 q24 122 24 206q0 31 -3 57q-12 96 -83 96q-38 0 -73 -28t-65 -77z" />
<glyph unicode="q" d="M76 534l4 21q54 272 162 409.5t275 137.5q63 0 114 -34t83 -94l40 108h245l-299 -1498h-283l96 483q-44 -43 -92 -65.5t-99 -22.5q-152 0 -223 159q-42 96 -42 218q0 83 19 178zM339 292q13 -86 86 -86q37 0 71 23t63 65l104 521q-13 29 -38.5 44t-62.5 15 q-68 0 -119.5 -86t-80.5 -233l-4 -21q-23 -112 -23 -187q0 -31 4 -55z" />
<glyph unicode="r" horiz-adv-x="638" d="M5 0l216 1082h263l-16 -132l5 -3q38 74 89 114.5t109 40.5q17 0 37.5 -3.5t35.5 -8.5l-82 -267l-104 3q-38 0 -69 -22.5t-54 -62.5l-148 -741h-282z" />
<glyph unicode="s" horiz-adv-x="857" d="M23 335l2 5h259q-4 -26 -3 -48q1 -50 19 -76q28 -38 89 -38q48 0 80.5 28.5t40.5 76.5q2 11 2 21q0 34 -22 59q-28 32 -115 82q-146 61 -212 138q-51 59 -51 145q0 26 5 55q22 137 136 228t282 91q167 0 257 -97q70 -75 70 -179q0 -31 -7 -65l-3 -6h-272q4 25 4 46 q0 38 -12 63q-18 39 -70 39q-38 0 -73 -31.5t-41 -74.5q-2 -13 -3 -25q1 -32 19 -52q24 -28 116 -81q154 -57 219 -137q50 -61 50 -151q0 -28 -5 -58q-24 -143 -141.5 -228.5t-291.5 -85.5q-173 0 -263 110q-70 86 -70 188q0 28 5 58z" />
<glyph unicode="t" horiz-adv-x="632" d="M111 876l41 206h120l54 269h282l-54 -269h140l-41 -206h-140l-108 -543q-8 -39 -8 -65q0 -20 5 -32q12 -26 43 -26q23 0 41 2.5t40 8.5l-22 -216q-47 -14 -87 -20t-91 -6q-124 0 -182 86q-35 53 -36 142q0 56 14 125l109 544h-120z" />
<glyph unicode="u" d="M84 428l130 654h282l-131 -656q-16 -77 -16 -125q-1 -27 5 -45q14 -48 66 -49q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-130 -1 -190 111q-34 63 -34 164q0 76 20 174z" />
<glyph unicode="v" horiz-adv-x="880" d="M121 1082h295l6 -674l-1 -70l6 -1l23 71l220 674h295l-457 -1082h-276z" />
<glyph unicode="w" horiz-adv-x="1228" d="M152 0l5 1082h262l-26 -585l6 -2l254 587h182l21 -584l6 -1l207 585h261l-426 -1082h-234l-26 562l-6 1l-251 -563h-235z" />
<glyph unicode="x" horiz-adv-x="880" d="M-51 0l347 547l-168 535h316l41 -339l6 -1l155 340h317l-338 -535l172 -547h-316l-49 349l-5 1l-161 -350h-317z" />
<glyph unicode="y" horiz-adv-x="880" d="M-81 -413l76 212q13 -3 21 -4.5t16 -1.5q54 0 92 33.5t61 84.5l38 78l-84 1093h303l-11 -615l6 -2l264 617h301l-595 -1245q-62 -116 -143.5 -195t-217.5 -79q-32 0 -59 6t-68 18z" />
<glyph unicode="z" horiz-adv-x="854" d="M-18 0l34 169l526 685h-379l45 228h700l-33 -165l-531 -690h398l-45 -227h-715z" />
<glyph unicode="{" horiz-adv-x="570" d="M58 519l24 151h1l8 51q62 0 103 55.5t57 153.5l33 207q28 177 113.5 292.5t252.5 166.5l6 -1l26 -150q-61 -31 -95 -109t-53 -199l-33 -207q-18 -109 -70.5 -189.5t-140.5 -123.5q72 -47 100 -127t12 -180l-33 -206q-21 -126 -12 -201t62 -106l-79 -158q-151 55 -200 175 t-21 290l33 206q16 102 -6.5 155.5t-87.5 53.5z" />
<glyph unicode="|" horiz-adv-x="461" d="M38 -270l276 1726h161l-276 -1726h-161z" />
<glyph unicode="}" horiz-adv-x="570" d="M-56 -210q62 31 96 109t54 198l33 206q17 109 69.5 189t142.5 123q-73 45 -101.5 125t-11.5 183l33 207q19 124 9.5 200t-61.5 108l78 157q150 -55 199 -175t22 -290l-33 -207q-17 -103 6 -156t90 -53l-9 -54l-15 -94l-9 -54q-64 0 -105.5 -56t-56.5 -153l-33 -206 q-29 -176 -114.5 -292t-251.5 -166h-6z" />
<glyph unicode="~" horiz-adv-x="1075" d="M89 444q27 171 114.5 276t203.5 105q63 0 120.5 -34t103.5 -98q28 -46 51.5 -65.5t54.5 -19.5q32 0 66 53t46 128l188 -28q-28 -170 -118 -276.5t-203 -106.5q-65 0 -119 32.5t-103 101.5q-29 45 -52 64.5t-56 19.5t-66.5 -52t-44.5 -126z" />
<glyph unicode="&#xa1;" horiz-adv-x="528" d="M-37 -374l190 949h283l-190 -949h-283zM206 821l52 261h276l-52 -261h-276z" />
<glyph unicode="&#xa2;" horiz-adv-x="997" d="M94 470l22 139q33 206 144 336.5t287 152.5l44 220h182l-47 -234q109 -38 159.5 -144t26.5 -261h-263q14 93 -2.5 144t-71.5 51q-74 0 -116 -73t-61 -192l-22 -139q-21 -129 -4 -196.5t97 -67.5q51 0 84.5 43t46.5 124h256l2 -5q-23 -157 -119 -259t-233 -124l-46 -230 h-182l48 238q-140 36 -201 166t-31 311z" />
<glyph unicode="&#xa3;" horiz-adv-x="1019" d="M60 0l45 227h7q35 12 68 94.5t51 171.5l17 98h-120l44 225h113l35 209q45 225 166.5 338.5t295.5 113.5q170 0 255.5 -115.5t48.5 -300.5h-282q20 103 -1.5 145t-64.5 36l-6 1q-36 4 -72.5 -54.5t-56.5 -163.5l-34 -209h260l-44 -225h-252l-13 -82q-17 -83 -58.5 -154.5 t-104.5 -127.5h566l-45 -227h-818z" />
<glyph unicode="&#xa4;" horiz-adv-x="1207" d="M11 110l150 145q-29 76 -35 166t14 187q21 108 63 202.5t102 171.5l-91 145l157 137l85 -135q72 51 151 78t161 27q74 0 141 -30.5t120 -86.5l151 148l103 -138l-162 -158q30 -78 36.5 -170t-12.5 -191q-21 -104 -60 -195t-93 -164l88 -139l-158 -137l-77 124 q-76 -58 -159.5 -87.5t-168.5 -29.5q-78 0 -147.5 32.5t-121.5 93.5l-135 -132zM310 608q-41 -201 30 -324.5t213 -123.5q129 0 256.5 131.5t165.5 316.5q39 199 -31.5 322.5t-211.5 123.5q-130 0 -258 -131t-164 -315z" />
<glyph unicode="&#xa5;" horiz-adv-x="1044" d="M86 226l38 200h253l23 111h-253l40 200h202l-158 719h307l80 -543l6 -1l295 544h307l-445 -719h175l-40 -200h-235l-23 -111h235l-38 -200h-236l-45 -226h-281l45 226h-252z" />
<glyph unicode="&#xa6;" horiz-adv-x="461" d="M-33 -270l158 791h249l-158 -791h-249zM161 698l151 758h249l-151 -758h-249z" />
<glyph unicode="&#xa7;" horiz-adv-x="1076" d="M-3 -39l2 5h275q-23 -113 15 -153.5t115 -40.5q66 0 115 41t63 107q13 70 -22 107.5t-151 87.5q-185 64 -261 156t-42 262q18 93 65.5 161t121.5 111q-49 51 -64.5 121.5t4.5 169.5q36 184 172 282.5t338 98.5q189 0 287 -113.5t56 -309.5l-3 -5h-275q18 93 -9.5 146.5 t-100.5 53.5q-71 0 -119.5 -43t-60.5 -108q-17 -79 15 -114.5t153 -83.5q187 -63 263 -155.5t42 -262.5q-20 -95 -66.5 -162.5t-118.5 -108.5q48 -51 62.5 -121.5t-4.5 -168.5q-38 -189 -171 -283t-334 -94q-182 0 -295.5 100.5t-66.5 316.5zM394 564q-17 -86 12 -123.5 t146 -91.5q42 -16 52 -19.5t27 -9.5q28 23 48.5 57t29.5 76q14 76 -19.5 118t-145.5 95q-25 8 -44 15.5t-36 15.5q-27 -23 -44.5 -57t-25.5 -76z" />
<glyph unicode="&#xa8;" horiz-adv-x="974" d="M273 1258l32 198h245l-32 -198h-245zM703 1258l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xa9;" horiz-adv-x="1376" d="M129 729q52 327 258.5 537t459.5 210q239 0 384 -217.5t96 -529.5q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385 218.5t-94 531.5zM238 729q-45 -277 68.5 -454t320.5 -176q196 -1 371.5 183t218.5 447q43 275 -70 451t-319 176q-197 0 -373 -183t-217 -444zM408 669 l19 119q28 179 124 283t235 104q130 0 196 -81t42 -233h-142q16 100 -13.5 142.5t-103.5 43.5q-73 -1 -126 -72.5t-71 -185.5l-19 -120q-20 -122 9 -190.5t106 -68.5q70 0 114 44t60 142h134l2 -6q-22 -156 -108 -232t-223 -76q-132 0 -197.5 107t-37.5 280z" />
<glyph unicode="&#xaa;" horiz-adv-x="759" d="M196 919q22 117 102.5 173.5t217.5 56.5h96l11 53q14 70 0 103t-54 33q-44 0 -76.5 -28t-42.5 -80l-145 13l-2 6q17 104 97.5 166t196.5 62q103 0 157 -72.5t28 -203.5l-63 -315q-11 -54 -15 -96.5t-1 -84.5h-159q-2 23 -1.5 47t3.5 48q-35 -48 -84.5 -78.5t-110.5 -30.5 q-89 0 -132.5 62.5t-22.5 165.5zM355 925q-10 -48 5.5 -71.5t58.5 -23.5q32 0 79 30t69 65l23 112h-97q-51 0 -90 -35t-48 -77z" />
<glyph unicode="&#xab;" horiz-adv-x="878" d="M71 507l1 6l3 13l299 389h173l-263 -399l104 -397h-173zM411 507l1 6l3 13l299 389h173l-263 -399l104 -397h-173z" />
<glyph unicode="&#xac;" horiz-adv-x="938" d="M158 638l32 163h678l-32 -163h-1l-52 -263h-180l52 263h-497z" />
<glyph unicode="&#xad;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#xae;" horiz-adv-x="1376" d="M129 729q52 327 259 537t460 210q239 0 384 -218t96 -529q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385.5 218.5t-94.5 531.5zM239 729q-45 -277 68.5 -454t320.5 -176q195 -1 370.5 183t218.5 447q43 275 -69.5 451t-318.5 176q-197 0 -373 -183t-217 -444zM407 316 l136 850h242q124 0 189.5 -68.5t46.5 -192.5q-10 -61 -42 -104.5t-85 -72.5q45 -30 60 -85t4 -128l-9 -56q-7 -43 -9 -74.5t2 -52.5l-2 -16h-140q-4 22 0.5 63.5t11.5 80.5l8 54q12 75 -9.5 108t-83.5 33h-128l-54 -339h-138zM619 783h104q60 0 106 31.5t56 89.5 q11 77 -15.5 105.5t-105.5 28.5h-104z" />
<glyph unicode="&#xaf;" horiz-adv-x="927" d="M285 1297l25 160h629l-25 -160h-629z" />
<glyph unicode="&#xb0;" horiz-adv-x="704" d="M272 1203q23 119 107 196.5t183 77.5q89 0 145 -82t34 -192q-25 -121 -107.5 -196t-180.5 -75q-91 0 -147.5 80t-33.5 191zM408 1203q-12 -59 10 -94t64 -35q38 0 75 37t48 92q11 59 -9.5 95.5t-61.5 36.5q-39 0 -77.5 -39t-48.5 -93z" />
<glyph unicode="&#xb1;" horiz-adv-x="959" d="M33 7l46 230h672l-46 -230h-672zM134 721l38 235h263l58 361h248l-58 -361h262l-38 -235h-262l-61 -382h-248l61 382h-263z" />
<glyph unicode="&#xb2;" horiz-adv-x="726" d="M154 667l30 152l300 254q55 49 73 82.5t27 77.5q8 43 -1.5 68t-42.5 25t-58 -31.5t-34 -79.5h-187l-2 6q18 114 104.5 186t212.5 72q113 0 169.5 -66t34.5 -181q-18 -88 -74 -149t-184 -163l-91 -95l3 -6h267l-30 -152h-517z" />
<glyph unicode="&#xb3;" horiz-adv-x="717" d="M178 895l3 6h190q-10 -48 5.5 -71t58.5 -23q33 0 62 25t38 70q11 54 -8.5 80.5t-66.5 26.5h-87l17 89l8 38h87q41 0 67.5 26t36.5 72q8 41 -4.5 66t-49.5 25q-34 0 -57 -23t-29 -55h-186l-1 6q17 109 100 167t198 58q118 0 184 -60.5t45 -168.5q-12 -60 -50 -105t-94 -69 q51 -25 73.5 -72.5t10.5 -112.5q-25 -120 -108.5 -177.5t-213.5 -57.5q-118 0 -187.5 64t-41.5 176z" />
<glyph unicode="&#xb4;" horiz-adv-x="673" d="M225 1212l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xb5;" horiz-adv-x="1078" d="M-50 -416l299 1498h283l-124 -623l-2 -8q-30 -151 -11 -196.5t85 -45.5q44 0 82.5 24.5t69.5 71.5l155 777h282l-216 -1082h-265l5 40q-38 -31 -81 -46t-89 -15q-31 0 -57 8.5t-47 25.5l-86 -429h-283z" />
<glyph unicode="&#xb6;" horiz-adv-x="923" d="M170 988q43 220 170.5 344t318.5 124h344l-291 -1456h-284l104 520h-60q-175 0 -259 132t-43 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="557" d="M165 560l52 262h273l-52 -262h-273z" />
<glyph unicode="&#xb8;" horiz-adv-x="483" d="M-47 -454l26 155q28 0 49 21t30 63q8 45 -11 60.5t-76 20.5l54 141h211l-20 -59q45 -11 69.5 -52.5t9.5 -120.5q-24 -115 -110.5 -175t-226.5 -58z" />
<glyph unicode="&#xb9;" horiz-adv-x="504" d="M248 665l127 634l-96 -1l31 156l298 23l-162 -812h-198z" />
<glyph unicode="&#xba;" horiz-adv-x="784" d="M223 1025l23 117q32 158 126 246.5t227 88.5q121 0 184 -95t34 -240l-23 -117q-32 -158 -125.5 -246t-225.5 -88q-123 0 -186.5 94t-33.5 240zM382 1025q-19 -94 3 -144.5t86 -50.5q56 0 101.5 54.5t62.5 140.5l23 117q18 90 -3.5 142t-83.5 54q-58 -2 -104 -57.5 t-62 -138.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="879" d="M5 152l263 398l-103 399h173l143 -389l-2 -6h1l-3 -13l-299 -389h-173zM356 152l263 398l-103 399h173l143 -389l-2 -6h1l-3 -13l-299 -389h-173z" />
<glyph unicode="&#xbc;" horiz-adv-x="1209" d="M145 192l800 1138l118 -74l-800 -1138zM243 664l127 634l-96 -1l31 156l298 23l-162 -812h-198zM524 140l12 124l444 534l1 3h198l-101 -507h68l-31 -154h-68l-28 -140h-198l28 140h-325zM739 294h141l50 249l-6 3l-7 -9z" />
<glyph unicode="&#xbd;" horiz-adv-x="1269" d="M137 192l800 1138l118 -74l-800 -1138zM226 664l127 634l-96 -1l31 156l298 23l-162 -812h-198zM583 0l30 152l300 254q55 49 73 82.5t27 77.5q8 43 -1.5 68t-42.5 25t-58 -31.5t-34 -79.5h-187l-2 6q18 114 104.5 186t212.5 72q113 0 169.5 -66t34.5 -181 q-18 -88 -74 -149t-184 -163l-91 -95l3 -6h267l-30 -152h-517z" />
<glyph unicode="&#xbe;" horiz-adv-x="1396" d="M161 896l3 6h190q-10 -48 5.5 -71t58.5 -23q33 0 62 25t38 70q11 54 -8.5 80.5t-66.5 26.5h-87l17 89l8 38h87q41 0 67.5 26t36.5 72q8 41 -4.5 66t-49.5 25q-34 0 -57 -23t-29 -55h-186l-1 6q17 109 100 167t198 58q118 0 184 -60.5t45 -168.5q-12 -60 -50 -105t-94 -69 q51 -25 73.5 -72.5t10.5 -112.5q-25 -120 -108.5 -177.5t-213.5 -57.5q-118 0 -187.5 64t-41.5 176zM321 192l800 1138l118 -74l-800 -1138zM669 140l12 124l444 534l1 3h198l-101 -507h68l-31 -154h-68l-28 -140h-198l28 140h-325zM884 294h141l50 249l-6 3l-7 -9z" />
<glyph unicode="&#xbf;" horiz-adv-x="883" d="M-15 32q26 133 105 233.5t189 176.5q58 44 84.5 92.5t44.5 133.5h282q-30 -137 -81 -202.5t-175 -158.5q-64 -56 -107.5 -122.5t-59.5 -151.5q-20 -97 3 -147.5t89 -50.5q44 0 91 46.5t65 130.5h274l2 -6q-39 -196 -169.5 -298t-308.5 -102q-181 0 -273.5 117t-54.5 309z M443 834l49 248h279l-49 -248h-279z" />
<glyph unicode="&#xc0;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM500 1825h302l124 -266h-226z" />
<glyph unicode="&#xc1;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM642 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xc2;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM467 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xc3;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM486 1645q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33 t-30.5 -79z" />
<glyph unicode="&#xc4;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM453 1606l32 198h245l-32 -198h-245zM455 538h242l-19 491l-6 1zM883 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xc5;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM631 1739q16 85 80.5 137.5t145.5 52.5q72 0 117 -55.5t30 -134.5q-18 -87 -80 -136.5t-142 -49.5q-75 0 -121.5 53.5t-29.5 132.5zM737 1739q-9 -45 8.5 -70t54.5 -25 q34 0 62 26.5t37 68.5q8 46 -8 71.5t-53 25.5q-34 0 -63.5 -27.5t-37.5 -69.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1593" d="M-73 0l895 1456h860l-46 -231h-454l-60 -363h375l-46 -230h-368l-67 -402h470l-46 -230h-744l56 339h-301l-196 -339h-328zM590 578h202l79 474l-5 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1045" d="M109 584l58 290q57 289 203 446t356 157q213 0 325 -141.5t81 -385.5h-281q24 148 -10.5 223.5t-141.5 75.5q-82 0 -150 -103t-101 -270l-58 -292q-37 -179 -2 -278.5t135 -99.5q89 0 144 69.5t92 219.5h273l2 -6q-60 -251 -188 -380.5t-342 -129.5q-206 0 -326.5 173 t-68.5 432zM264 -454l26 155q28 0 49 21t30 63q8 45 -11 60.5t-76 20.5l54 141h211l-20 -59q45 -11 69.5 -52.5t9.5 -120.5q-24 -115 -110.5 -175t-226.5 -58z" />
<glyph unicode="&#xc8;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM439 1825h302l124 -266h-226z" />
<glyph unicode="&#xc9;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM581 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xca;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM406 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xcb;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM392 1606l32 198h245l-32 -198h-245zM822 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xcc;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM209 1825h302l124 -266h-226z" />
<glyph unicode="&#xcd;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM349 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xce;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM176 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xcf;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM162 1606l32 198h245l-32 -198h-245zM592 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xd0;" horiz-adv-x="1137" d="M52 0l131 655h-103l35 175h103l125 626h391q204 0 329 -178t73 -437l-49 -245q-58 -288 -210.5 -442t-368.5 -154h-456zM380 227h157q100 0 166.5 97t101.5 272l50 247q34 177 -16 281t-166 104h-93l-79 -398h171l-35 -175h-171z" />
<glyph unicode="&#xd1;" horiz-adv-x="1193" d="M22 0l291 1456h283l226 -905h6l181 905h281l-291 -1456h-281l-226 907h-6l-181 -907h-283zM527 1645q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33 t-30.5 -79z" />
<glyph unicode="&#xd2;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM512 1846h302l124 -266h-226z" />
<glyph unicode="&#xd3;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM654 1581l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xd4;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM479 1612l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xd5;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM498 1666q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#xd6;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM465 1627l32 198h245l-32 -198h-245zM895 1627l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xd7;" horiz-adv-x="946" d="M50 369l322 313l-200 318l198 163l188 -300l308 300l131 -163l-326 -317l198 -314l-198 -163l-186 296l-304 -296z" />
<glyph unicode="&#xd8;" horiz-adv-x="1170" d="M69 -93l121 182q-69 71 -93.5 181.5t4.5 252.5l81 408q54 272 211 409t382 137q80 0 150 -25t122 -72l91 136h126l-149 -223q39 -71 49.5 -162.5t-10.5 -199.5l-81 -408q-55 -273 -212.5 -408.5t-383.5 -135.5q-57 0 -108.5 12t-95.5 36l-79 -120h-125zM365.5 429 q-3.5 -41 0.5 -65l6 -2l511 771q-13 59 -51 87t-102 28q-96 0 -167 -80.5t-101 -234.5l-82 -410q-11 -53 -14.5 -94zM414 239q19 -17 46 -24.5t62 -7.5q94 0 166 80.5t104 235.5l78 390l-6 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM509 1825h302l124 -266h-226z" />
<glyph unicode="&#xda;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM651 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xdb;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM476 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xdc;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM462 1606l32 198h245l-32 -198h-245zM892 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xdd;" horiz-adv-x="1085" d="M217 1456h308l99 -607l5 -1l344 608h307l-583 -939l-103 -517h-281l108 539zM638 1559l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xde;" horiz-adv-x="1040" d="M20 0l291 1456h283l-54 -268h151q200 0 300.5 -126.5t61.5 -323.5q-44 -215 -184 -332.5t-358 -117.5h-151l-57 -288h-283zM406 515h150q80 0 137 64.5t76 156.5q20 101 -8.5 163t-115.5 62h-147l-3 3z" />
<glyph unicode="&#xdf;" horiz-adv-x="1095" d="M32 0l221 1104q47 238 178.5 351.5t330.5 113.5q147 0 235.5 -97.5t54.5 -267.5q-23 -116 -81.5 -207t-72.5 -162q-12 -60 71 -198.5t56 -277.5q-42 -205 -151 -292.5t-306 -87.5q-58 0 -118.5 15t-86.5 40l94 224q25 -23 63.5 -38t91.5 -15q44 0 80.5 38.5t50.5 104.5 q16 80 -71 209t-59 267q21 104 81.5 198t75.5 168q13 67 -10.5 110t-66.5 43q-46 0 -92 -66.5t-68 -176.5l-220 -1100h-281z" />
<glyph unicode="&#xe0;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM332 1503h302l124 -266h-226z" />
<glyph unicode="&#xe1;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM474 1238l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xe2;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM299 1269l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM318 1323q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5 q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#xe4;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM285 1284l32 198h245l-32 -198h-245zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM715 1284l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xe5;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM463 1417q16 85 80.5 137.5t145.5 52.5q72 0 117 -55.5t30 -134.5q-18 -87 -80 -136.5t-142 -49.5q-75 0 -121.5 53.5t-29.5 132.5zM569 1417 q-9 -45 8.5 -70t54.5 -25q34 0 62 26.5t37 68.5q8 46 -8 71.5t-53 25.5q-34 0 -63.5 -27.5t-37.5 -69.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1420" d="M20 317q34 169 154.5 250.5t328.5 81.5h124l11 56q16 84 -1.5 126.5t-65.5 42.5q-47 0 -85.5 -37.5t-48.5 -91.5l-268 17l-2 6q26 154 148.5 244t303.5 90q72 0 132.5 -22t102.5 -65q58 43 127.5 65t149.5 22q162 0 241 -133.5t35 -353.5l-32 -160h-505 q-20 -123 9.5 -186t121.5 -63q68 0 122.5 19.5t123.5 58.5l33 -183q-59 -49 -158 -85.5t-200 -36.5q-96 0 -168.5 39t-115.5 112q-62 -66 -151 -108.5t-198 -42.5q-151 0 -225 92.5t-44 245.5zM301 313q-13 -64 7 -96.5t77 -32.5q34 0 83 27t84 64l38 191h-122 q-60 0 -107.5 -45.5t-59.5 -107.5zM910 644h228l5 27q20 100 6.5 151.5t-63.5 51.5q-62 0 -104.5 -61t-71.5 -169z" />
<glyph unicode="&#xe7;" horiz-adv-x="878" d="M58 470l22 139q36 224 164.5 358.5t330.5 134.5q162 0 246.5 -114.5t54.5 -308.5h-263q14 93 -2.5 144t-71.5 51q-74 0 -116 -73t-61 -192l-22 -139q-21 -129 -4 -196.5t97 -67.5q51 0 84.5 43t46.5 124h255l2 -6q-26 -177 -144 -282.5t-280 -105.5q-193 0 -283.5 138.5 t-55.5 352.5zM216 -454l26 155q28 0 49 21t30 63q8 45 -11 60.5t-76 20.5l54 141h211l-20 -59q45 -11 69.5 -52.5t9.5 -120.5q-24 -115 -110.5 -175t-226.5 -58z" />
<glyph unicode="&#xe8;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM293 1504h302l124 -266h-226zM384 645h226l7 40 q15 94 -1.5 141.5t-73.5 47.5q-58 0 -97 -62.5t-61 -166.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM384 645h226l7 40q15 94 -1.5 141.5t-73.5 47.5 q-58 0 -97 -62.5t-61 -166.5zM435 1239l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xea;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM262 1270l5 25l290 237h155l200 -240l-5 -22h-219l-80 134 l-132 -134h-214zM384 645h226l7 40q15 94 -1.5 141.5t-73.5 47.5q-58 0 -97 -62.5t-61 -166.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM248 1284l32 198h245l-32 -198h-245zM384 645h226l7 40 q15 94 -1.5 141.5t-73.5 47.5q-58 0 -97 -62.5t-61 -166.5zM678 1284l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xec;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM132 1482h302l124 -266h-226z" />
<glyph unicode="&#xed;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM272 1217l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xee;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM99 1250l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xef;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM85 1263l32 198h245l-32 -198h-245zM515 1263l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xf0;" horiz-adv-x="1016" d="M46 466q48 241 180.5 369t327.5 128q53 0 101 -21t86 -59q0 79 -16 142t-44 113l-198 -119l-49 111l169 101q-25 20 -52.5 37t-57.5 32l131 217q65 -21 121.5 -56t103.5 -82l185 111l47 -110l-158 -96q71 -117 92 -274.5t-16 -345.5l-14 -71q-58 -288 -220.5 -451 t-363.5 -163q-187 0 -291.5 142t-63.5 345zM328 466q-24 -117 8 -188.5t113 -71.5q77 0 148.5 110t105.5 277l14 73v1q-19 36 -59 59.5t-97 23.5q-79 0 -143.5 -79t-89.5 -205z" />
<glyph unicode="&#xf1;" d="M0 0l216 1082h263l-16 -138q57 76 127 117t145 41q120 0 176.5 -106t13.5 -325l-134 -671h-283l134 671q24 119 5 161t-81 42q-32 0 -64 -20t-61 -55l-159 -799h-282zM345 1323q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45 q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#xf2;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM322 1503h302l124 -266h-226zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134q20 127 0.5 197 t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5z" />
<glyph unicode="&#xf3;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5 t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5zM464 1238l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xf4;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM289 1269l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214zM344.5 274.5q19.5 -68.5 99.5 -68.5 q73 0 117 72t64 195l21 134q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5z" />
<glyph unicode="&#xf5;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM308 1323q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5 t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5z" />
<glyph unicode="&#xf6;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM275 1284l32 198h245l-32 -198h-245zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134 q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5zM705 1284l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xf7;" horiz-adv-x="969" d="M91 577l45 221h838l-45 -221h-838zM289 167l46 230h277l-46 -230h-277zM450 971l46 230h277l-46 -230h-277z" />
<glyph unicode="&#xf8;" horiz-adv-x="962" d="M28 -143l129 218q-64 66 -88 169.5t-3 228.5l21 134q36 226 166.5 360.5t332.5 134.5q44 0 84 -8.5t75 -24.5l88 148h150l-135 -227q57 -67 77.5 -166t2.5 -217l-21 -134q-37 -228 -168 -361t-331 -133q-41 0 -77.5 7t-67.5 19l-87 -148h-148zM337 389l5 -2l275 465 q-14 10 -30.5 16t-36.5 6q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-5 -28 -7.5 -50.5t-1.5 -33.5zM390 218q10 -6 23.5 -9t30.5 -3q73 0 117 72t64 195l21 134q2 13 3.5 25t1.5 15l-6 2z" />
<glyph unicode="&#xf9;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM353 1482h302l124 -266h-226z" />
<glyph unicode="&#xfa;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM495 1217l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xfb;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM320 1250l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xfc;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM306 1263l32 198h245l-32 -198h-245zM736 1263l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xfd;" horiz-adv-x="880" d="M-81 -413l76 212q13 -3 21 -4.5t16 -1.5q54 0 92 33.5t61 84.5l38 78l-84 1093h303l-11 -615l6 -2l264 617h301l-595 -1245q-62 -116 -143.5 -195t-217.5 -79q-32 0 -59 6t-68 18zM455 1217l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xfe;" horiz-adv-x="964" d="M-77 -416l299 1498h1l96 478h281l-109 -545q42 42 90.5 64.5t100.5 22.5q153 0 222 -169t20 -418l-4 -21q-52 -258 -157.5 -386.5t-270.5 -128.5q-60 0 -108.5 24t-81.5 70l-14 -73l-83 -416h-282zM338 250q13 -24 39 -34t69 -10q68 0 115.5 75t76.5 213l4 21 q33 166 21 262.5t-83 96.5q-38 0 -73 -28t-65 -77z" />
<glyph unicode="&#xff;" horiz-adv-x="880" d="M-81 -413l76 212q13 -3 21 -4.5t16 -1.5q54 0 92 33.5t61 84.5l38 78l-84 1093h303l-11 -615l6 -2l264 617h301l-595 -1245q-62 -116 -143.5 -195t-217.5 -79q-32 0 -59 6t-68 18zM268 1263l32 198h245l-32 -198h-245zM698 1263l32 198h245l-32 -198h-245z" />
<glyph unicode="&#x152;" horiz-adv-x="1644" d="M118 576l61 304q56 282 225.5 439.5t400.5 157.5q49 0 108 -6t116 -15h747l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-749q-74 -10 -126.5 -15.5t-104.5 -5.5q-211 0 -326 168.5t-63 428.5zM399 576q-38 -191 3 -280.5t150 -89.5q34 0 73 3t80 9 l204 1019q-37 6 -74.5 9.5t-74.5 3.5q-100 0 -182.5 -96.5t-117.5 -271.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1504" d="M97 529l4 22q52 260 189.5 405.5t339.5 145.5q80 0 143.5 -31.5t106.5 -88.5q61 58 137 89t163 31q171 0 249.5 -133t35.5 -353l-32 -161h-501q-16 -117 14 -183t113 -66q69 0 125 19t128 59l35 -181q-64 -53 -161.5 -88.5t-205.5 -35.5q-81 0 -146 32t-109 91 q-66 -61 -146 -92t-172 -31q-186 0 -272 155t-38 395zM360 289q13 -81 90 -75l6 -1q68 -5 119 82.5t81 233.5l4 22q31 156 17.5 238t-90.5 77l-6 1q-68 4 -119 -85t-79 -231l-4 -22q-32 -159 -19 -240zM973 645h222l5 27q20 102 6 152t-71 50q-51 0 -92 -62t-70 -167z" />
<glyph unicode="&#x178;" horiz-adv-x="1085" d="M217 1456h308l99 -607l5 -1l344 608h307l-583 -939l-103 -517h-281l108 539zM449 1605l32 198h245l-32 -198h-245zM879 1605l32 198h245l-32 -198h-245z" />
<glyph unicode="&#x2c6;" horiz-adv-x="880" d="M282 1252l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#x2dc;" horiz-adv-x="844" d="M246 1272q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#x2000;" horiz-adv-x="964" />
<glyph unicode="&#x2001;" horiz-adv-x="1929" />
<glyph unicode="&#x2002;" horiz-adv-x="964" />
<glyph unicode="&#x2003;" horiz-adv-x="1929" />
<glyph unicode="&#x2004;" horiz-adv-x="643" />
<glyph unicode="&#x2005;" horiz-adv-x="482" />
<glyph unicode="&#x2006;" horiz-adv-x="321" />
<glyph unicode="&#x2007;" horiz-adv-x="321" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="385" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#x2011;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#x2012;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#x2013;" horiz-adv-x="1166" d="M192 600l60 230h873l-59 -230h-874z" />
<glyph unicode="&#x2014;" horiz-adv-x="1373" d="M181 600l74 230h1075l-74 -230h-1075z" />
<glyph unicode="&#x2018;" horiz-adv-x="363" d="M162 1023l38 191l212 346h135l-115 -342l-39 -195h-231z" />
<glyph unicode="&#x2019;" horiz-adv-x="363" d="M170 1024l115 344l38 192h232l-38 -192l-212 -344h-135z" />
<glyph unicode="&#x201a;" horiz-adv-x="365" d="M-94 -257l103 267l57 285h232l-54 -271l-186 -281h-152z" />
<glyph unicode="&#x201c;" horiz-adv-x="657" d="M162 1023l38 191l212 346h135l-115 -342l-39 -195h-231zM456 1023l38 191l212 346h135l-115 -342l-39 -195h-231z" />
<glyph unicode="&#x201d;" horiz-adv-x="665" d="M164 1024l115 344l38 192h232l-38 -192l-212 -344h-135zM464 1024l115 344l38 192h232l-38 -192l-212 -344h-135z" />
<glyph unicode="&#x201e;" horiz-adv-x="652" d="M-86 -246l100 254l53 263h215l-50 -251l-199 -266h-119zM216 -246l102 261l51 256h215l-50 -251l-199 -266h-119z" />
<glyph unicode="&#x2022;" horiz-adv-x="665" d="M182 710l19 96q21 106 90.5 167t166.5 61q92 0 140 -64.5t28 -163.5l-19 -96q-22 -107 -90 -166t-167 -59q-91 0 -139.5 63.5t-28.5 161.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1307" d="M40 0l52 258h278l-52 -258h-278zM439 0l52 258h278l-52 -258h-278zM833 0l52 258h278l-52 -258h-278z" />
<glyph unicode="&#x202f;" horiz-adv-x="385" />
<glyph unicode="&#x2039;" horiz-adv-x="549" d="M123 541l1 6l3 13l299 389h173l-263 -399l104 -397h-173z" />
<glyph unicode="&#x203a;" horiz-adv-x="527" d="M18 152l263 398l-103 399h173l143 -389l-2 -6h1l-3 -13l-299 -389h-173z" />
<glyph unicode="&#x205f;" horiz-adv-x="482" />
<glyph unicode="&#x20ac;" horiz-adv-x="938" d="M74 454l38 200h112l25 116h-112l41 200h113l3 16q43 223 192 357t357 134q46 0 94 -8.5t99 -22.5l-66 -232q-40 16 -83 25.5t-89 9.5q-76 0 -139.5 -78.5t-81.5 -182.5l-4 -18h312l-41 -200h-312l-25 -116h312l-38 -200h-313l-2 -12q-23 -109 8.5 -172.5t115.5 -63.5 q43 0 92 8.5t93 24.5l-26 -229q-51 -15 -102 -23t-102 -8q-190 0 -295.5 135.5t-65.5 327.5l2 12h-112z" />
<glyph unicode="&#x2122;" horiz-adv-x="1076" d="M275 1350l21 106h325l-21 -106h-98l-87 -433h-134l87 433h-93zM568 914l108 542h146l11 -358l5 -1l153 359h140l-108 -542h-117l47 239l-5 2l-117 -241h-65l-22 255h-6l-51 -255h-119z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1119" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM649 0l312 1560h281l-312 -1560h-281z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1705" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM692 0l175 876h-126l41 206h126l14 70q44 220 171 324.5 t330 104.5q63 0 129.5 -15.5t139.5 -43.5l-85 -232q-58 22 -104 34t-111 12q-70 0 -120.5 -48t-67.5 -136l-14 -70h161l-41 -206h-161l-175 -876h-282zM1234 0l216 1082h283l-216 -1082h-283z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1750" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM697 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5 t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM1280 0l312 1560h281l-312 -1560h-281z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'roboto_condensedbold_italic';
src: url('RobotoCondensed-BoldItalic-webfont.eot');
src: url('RobotoCondensed-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('RobotoCondensed-BoldItalic-webfont.woff') format('woff'),
url('RobotoCondensed-BoldItalic-webfont.ttf') format('truetype'),
url('RobotoCondensed-BoldItalic-webfont.svg#roboto_condensedbold_italic') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'robotobold_italic';
}
</style>
<title>Roboto Bold Italic Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Bold Italic </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Bold Italic</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,642 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotobold_italic" horiz-adv-x="1088" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="486" />
<glyph unicode="&#xfb01;" horiz-adv-x="1184" d="M83 0l175 877h-148l41 205h148l15 74q43 217 180.5 321t357.5 104q68 0 140.5 -16t158.5 -44l-88 -230q-61 21 -115 33.5t-126 12.5q-87 0 -145 -47t-75 -134l-15 -74h193l-41 -205h-193l-175 -877h-288zM691 0l216 1082h288l-216 -1082h-288z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="486" />
<glyph unicode=" " horiz-adv-x="486" />
<glyph unicode="&#x09;" horiz-adv-x="486" />
<glyph unicode="&#xa0;" horiz-adv-x="486" />
<glyph unicode="!" horiz-adv-x="539" d="M44 0l51 256h285l-51 -256h-285zM142 502l191 954h289l-191 -954h-289z" />
<glyph unicode="&#x22;" horiz-adv-x="630" d="M153 1039l37 237l46 284h202l-44 -272l-116 -249h-125zM467 1039l38 245l45 276h202l-44 -272l-117 -249h-124z" />
<glyph unicode="#" horiz-adv-x="1140" d="M45 410l34 169h235l105 290h-212l34 171h240l151 416h179l-150 -416h167l151 416h179l-151 -416h202l-34 -171h-230l-105 -290h207l-34 -169h-235l-148 -410h-180l149 410h-166l-148 -410h-180l148 410h-208zM494 579h166l106 290h-167z" />
<glyph unicode="$" horiz-adv-x="1107" d="M91 454h288q-23 -140 20.5 -195t128.5 -55q76 0 126.5 49t64.5 130q13 84 -19 133t-124 94q-195 81 -280 180.5t-56 280.5q27 174 144 279t290 123l35 215h155l-35 -219q154 -28 231 -150t47 -314h-288q19 122 -12.5 184t-104.5 62q-70 0 -115.5 -50t-58.5 -131 q-13 -80 18.5 -127t128.5 -95q192 -87 276 -186t56 -277q-30 -180 -145 -282t-291 -120l-31 -197h-156l31 198q-166 21 -263 135.5t-61 334.5z" />
<glyph unicode="%" horiz-adv-x="1416" d="M227 1099l15 77q27 137 120.5 219t236.5 82q133 0 198 -87t40 -214l-15 -77q-28 -137 -120.5 -218t-235.5 -81q-132 0 -198.5 86.5t-40.5 212.5zM251 184l889 1138l124 -75l-889 -1138zM417 1099q-13 -61 7 -99t74 -38q48 0 85 40.5t49 96.5l15 77q12 62 -7.5 100.5 t-72.5 38.5q-48 0 -86 -41t-49 -98zM706 280l15 77q27 136 121 218t237 82q132 0 197.5 -87t40.5 -213l-15 -77q-28 -138 -120.5 -219t-235.5 -81q-132 0 -199 87t-41 213zM896 280q-13 -60 10 -99t72 -39q54 0 87.5 38.5t46.5 99.5l15 77q12 61 -8 99.5t-72 38.5 q-49 0 -87 -41t-49 -97z" />
<glyph unicode="&#x26;" horiz-adv-x="1269" d="M51 392q19 123 91.5 204.5t214.5 176.5q-50 92 -69 168.5t-6 155.5q28 180 144.5 280t290.5 100q144 0 225.5 -99.5t59.5 -237.5q-16 -102 -73.5 -180.5t-150.5 -140.5l-92 -63l197 -312q41 58 69 124.5t40 140.5h214q-23 -143 -71.5 -256t-129.5 -201l159 -252h-326 l-54 85q-87 -54 -173 -80t-180 -26q-197 0 -303.5 116t-76.5 297zM341 407q-15 -92 24 -148t116 -56q46 0 95.5 13.5t98.5 39.5l-218 346l-14 -10q-49 -48 -72 -94t-30 -91zM539 1100q-8 -43 4.5 -86t42.5 -96l79 49q57 36 80.5 73.5t31.5 83.5q7 52 -18.5 90t-78.5 38 q-54 0 -92.5 -44t-48.5 -108z" />
<glyph unicode="'" horiz-adv-x="316" d="M149 1008l42 268l46 284h194l-43 -269l-114 -283h-125z" />
<glyph unicode="(" horiz-adv-x="679" d="M140 570l4 22q65 408 249 672.5t381 347.5l6 -1l28 -145q-136 -98 -252.5 -316t-169.5 -556l-4 -26q-57 -353 -10.5 -562t152.5 -313l-74 -143l-6 1q-167 80 -267 353t-37 666z" />
<glyph unicode=")" horiz-adv-x="679" d="M-85 -307q133 98 250.5 317.5t172.5 557.5l4 26q55 350 7 562t-150 314l76 142h6q169 -80 274.5 -359.5t44.5 -660.5l-4 -22q-64 -398 -255 -668t-390 -352l-6 1z" />
<glyph unicode="*" horiz-adv-x="858" d="M156 1055l91 177l247 -123l51 347h183l-88 -353l290 120l19 -180l-299 -89l130 -265l-171 -110l-99 290l-213 -281l-129 106l246 272z" />
<glyph unicode="+" horiz-adv-x="1046" d="M83 560l50 252h330l79 394h272l-79 -394h326l-50 -252h-326l-83 -414h-272l83 414h-330z" />
<glyph unicode="," horiz-adv-x="478" d="M-95 -302l129 324l45 221h258l-46 -230l-218 -315h-168z" />
<glyph unicode="-" horiz-adv-x="769" d="M131 510l45 225h531l-45 -225h-531z" />
<glyph unicode="." horiz-adv-x="575" d="M52 0l51 256h286l-51 -256h-286z" />
<glyph unicode="/" horiz-adv-x="718" d="M-122 -125l808 1581h211l-807 -1581h-212z" />
<glyph unicode="0" horiz-adv-x="1103" d="M118 567l65 321q61 308 210.5 448.5t367.5 140.5q199 0 300 -153t45 -436l-65 -321q-62 -309 -211 -448.5t-366 -139.5q-200 0 -301.5 152t-44.5 436zM391.5 277.5q29.5 -74.5 117.5 -74.5q79 0 142 81.5t98 254.5l76 379q36 185 7 259.5t-116 74.5q-80 0 -143.5 -82 t-96.5 -252l-76 -379q-38 -187 -8.5 -261.5z" />
<glyph unicode="1" horiz-adv-x="1107" d="M289 1159l40 199l607 98l-291 -1456h-287l232 1159h-301z" />
<glyph unicode="2" horiz-adv-x="1107" d="M23 0l31 191l518 505q112 117 163.5 197.5t62.5 149.5q15 95 -19 152t-114 57q-85 0 -143.5 -69.5t-76.5 -181.5h-279l-3 6q29 205 175.5 337.5t362.5 132.5q204 0 310 -118.5t76 -310.5q-23 -138 -105 -245t-272 -291l-276 -282l3 -6h555l-36 -224h-933z" />
<glyph unicode="3" horiz-adv-x="1107" d="M59 390l3 6h280q-15 -88 28 -140.5t124 -52.5q85 0 147 56.5t78 151.5q18 120 -22 171t-140 51h-156l24 150l11 69h156q87 0 141 55t69 151q14 91 -21 142.5t-118 51.5q-68 0 -125.5 -48.5t-70.5 -125.5h-279l-2 6q24 178 168 285.5t337 107.5q204 0 317.5 -109.5 t82.5 -306.5q-16 -99 -85.5 -184t-175.5 -132q103 -44 149 -133t28 -204q-34 -208 -187 -318.5t-369 -110.5q-183 0 -305.5 108t-86.5 303z" />
<glyph unicode="4" horiz-adv-x="1107" d="M47 316l22 175l749 965h289l-183 -914h147l-45 -226h-147l-63 -316h-287l63 316h-545zM345 542h292l102 513l-5 3l-23 -31z" />
<glyph unicode="5" horiz-adv-x="1107" d="M94 390l2 5l280 14q-16 -101 23 -153.5t118 -52.5q86 0 141.5 73.5t73.5 188.5q21 131 -12 204.5t-125 73.5q-70 0 -115 -31.5t-69 -83.5l-251 17l208 811h764l-37 -234h-528l-90 -336q40 29 95 49t114 21q198 3 285 -127t50 -362q-35 -217 -174.5 -352.5t-364.5 -135.5 q-182 0 -302 110.5t-86 300.5z" />
<glyph unicode="6" horiz-adv-x="1175" d="M104 569l43 284q44 297 232.5 460.5t446.5 163.5q79 0 148 -16t133 -45l-84 -214q-63 23 -112.5 34.5t-117.5 11.5q-127 0 -224.5 -99.5t-119.5 -271.5l4 -5q54 49 134 77t174 28q187 0 280 -140t62 -352q-35 -228 -191 -367t-375 -139q-223 0 -348.5 158t-84.5 432z M395 562q-27 -180 21 -269.5t154 -89.5q87 0 155.5 83.5t86.5 198.5q18 126 -25.5 198.5t-136.5 72.5q-79 0 -140 -26.5t-101 -73.5z" />
<glyph unicode="7" horiz-adv-x="1107" d="M187 1231l36 225h964l-36 -225q-264 -272 -376 -504.5t-200 -578.5l-38 -148h-288l38 148q82 322 226.5 590t360.5 493h-687z" />
<glyph unicode="8" horiz-adv-x="1107" d="M84 398q24 127 104 217t200 136q-84 48 -122.5 131t-16.5 188q41 207 177.5 307t336.5 100q182 0 286 -108t66 -299q-24 -118 -94 -201.5t-174 -126.5q95 -51 141 -141t24 -203q-44 -216 -189 -317.5t-357 -101.5q-196 0 -309 110t-73 309zM377 418q-22 -106 14.5 -160.5 t119.5 -54.5q74 0 135.5 58.5t81.5 156.5q20 104 -16.5 160t-116.5 56q-75 0 -137 -60t-81 -156zM534 1057q-19 -97 9 -147.5t99 -50.5q64 0 114.5 54.5t68.5 143.5q19 93 -9 144t-98 51q-65 0 -116 -53.5t-68 -141.5z" />
<glyph unicode="9" horiz-adv-x="1107" d="M141 40l67 211q56 -25 113 -36.5t130 -11.5q98 0 178.5 86.5t106.5 243.5l6 37q-53 -58 -118 -86.5t-135 -28.5q-183 0 -273.5 135t-52.5 367q37 230 189 375t353 145q202 0 311.5 -155t65.5 -430l-55 -344q-45 -275 -213 -422t-398 -147q-67 0 -142 15.5t-133 45.5z M450 957q-22 -137 9 -212.5t113 -75.5q60 0 112.5 27t88.5 71l26 159q26 167 -8.5 246.5t-120.5 79.5q-73 0 -137 -87.5t-83 -207.5z" />
<glyph unicode=":" horiz-adv-x="567" d="M54 0l51 256h286l-51 -256h-286zM219 825l51 256h286l-51 -256h-286z" />
<glyph unicode=";" horiz-adv-x="547" d="M-50 -302l129 324l45 221h258l-46 -230l-218 -315h-168zM208 825l51 256h286l-51 -256h-286z" />
<glyph unicode="&#x3c;" horiz-adv-x="979" d="M55 436l30 148l16 79l877 366l-55 -272l-574 -207v-6l491 -203l-54 -272z" />
<glyph unicode="=" horiz-adv-x="1111" d="M112 332l46 229h837l-46 -229h-837zM199 763l45 229h837l-45 -229h-837z" />
<glyph unicode="&#x3e;" horiz-adv-x="994" d="M43 65l54 270l584 209v6l-500 206l54 269l741 -366l-30 -149h-1l-15 -78z" />
<glyph unicode="?" horiz-adv-x="968" d="M160 1081q37 192 180 294t340 102q199 0 303.5 -115.5t66.5 -306.5q-27 -135 -115 -237t-211 -179q-66 -47 -93.5 -94.5t-43.5 -130.5h-288q29 139 81 204t186 159q76 59 127.5 126t67.5 149q20 97 -12.5 146.5t-113.5 49.5q-61 0 -118 -44.5t-74 -128.5h-281zM216 0 l50 250h288l-50 -250h-288z" />
<glyph unicode="@" horiz-adv-x="1694" d="M73 478q102 427 374 683.5t634 256.5q335 0 490 -247.5t58 -657.5q-53 -218 -195.5 -376t-366.5 -158q-69 0 -114 45t-53 125q-58 -84 -126.5 -125.5t-148.5 -41.5q-123 0 -173.5 121t6.5 313q73 254 214 407t298 153q102 0 170 -27.5t132 -78.5l-4 -4h5l-161 -573 q-25 -95 -14.5 -130t41.5 -28l6 -1q93 -5 181 105.5t128 273.5q86 353 -15.5 551t-393.5 198q-261 0 -478 -216.5t-301 -567.5q-86 -355 22.5 -560t388.5 -205q74 0 165.5 20t156.5 50l7 -147q-72 -42 -173 -65.5t-193 -23.5q-345 0 -505.5 253.5t-61.5 677.5zM657 223.5 q12 -65.5 68 -65.5q46 0 92 26t92 94q1 5 1.5 8t2.5 7l140 498q-18 6 -37.5 9.5t-40.5 3.5q-95 0 -168.5 -98t-127.5 -290q-34 -127 -22 -192.5z" />
<glyph unicode="A" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1z" />
<glyph unicode="B" horiz-adv-x="1238" d="M42 0l291 1456h465q227 0 349 -102q92 -77 93 -208q0 -42 -10 -89q-22 -107 -86 -184.5t-168 -115.5q116 -29 158 -121q27 -59 26 -129q0 -39 -8 -83q-45 -222 -191.5 -323t-390.5 -101h-528zM375 224h240q97 0 163.5 51.5t86.5 148.5q9 46 9 81q0 54 -20 86 q-33 53 -134 53h-261zM499 846h195q93 2 159 51t85 137q7 34 7 61q0 59 -32 91q-46 44 -160 45h-177z" />
<glyph unicode="C" horiz-adv-x="1226" d="M120 586l58 290q57 287 219 444t402 157q237 0 368 -142q106 -115 106 -291q0 -42 -6 -87l-2 -5h-282q6 41 6 77q0 89 -36 145q-50 78 -181 78q-107 0 -190.5 -104.5t-115.5 -269.5l-59 -292q-14 -71 -15 -130q0 -88 32 -150q54 -104 180 -103q112 0 179.5 69.5 t106.5 215.5h279l2 -6q-61 -243 -204.5 -373t-382.5 -130q-232 1 -374 175q-103 128 -104 299q0 64 14 133z" />
<glyph unicode="D" horiz-adv-x="1258" d="M42 0l291 1456h435q236 0 386 -179q112 -134 111 -312q0 -61 -12 -127l-49 -241q-58 -288 -230 -442.5t-423 -154.5h-509zM375 224h206q129 0 214 100t120 273l49 243q11 58 11 108q0 104 -48 176q-72 107 -219 107h-132z" />
<glyph unicode="E" horiz-adv-x="1104" d="M42 0l291 1456h933l-45 -225h-645l-73 -366h552l-45 -225h-552l-83 -416h647l-45 -224h-935z" />
<glyph unicode="F" horiz-adv-x="1110" d="M42 0l291 1456h941l-45 -225h-653l-80 -401h558l-45 -225h-558l-121 -605h-288z" />
<glyph unicode="G" horiz-adv-x="1281" d="M122 576l61 304q56 281 237 439t425 158q236 0 348 -129q94 -109 94 -274q0 -32 -4 -67l-3 -6h-272q1 14 1 28q0 100 -39 157q-45 66 -162 66q-111 0 -208.5 -105.5t-129.5 -264.5l-61 -306q-14 -69 -14 -126q0 -89 33 -148q56 -99 186 -99q84 0 145.5 21.5t95.5 51.5 l53 264h-227l40 202h515l-108 -543q-80 -86 -221 -153t-338 -67q-233 0 -366 169q-96 121 -96 289q0 66 15 139z" />
<glyph unicode="H" horiz-adv-x="1359" d="M42 0l291 1456h288l-125 -626h529l125 626h287l-291 -1456h-287l121 605h-529l-121 -605h-288z" />
<glyph unicode="I" horiz-adv-x="574" d="M57 0l291 1456h288l-291 -1456h-288z" />
<glyph unicode="J" horiz-adv-x="1100" d="M61 418l2 5h281q-10 -49 -10 -86q0 -56 22 -85q38 -49 121 -49q66 0 129.5 63.5t85.5 170.5l204 1019h287l-204 -1019q-45 -225 -195 -341.5t-352 -116.5q-201 0 -310 113q-76 78 -76 205q0 56 15 121z" />
<glyph unicode="K" horiz-adv-x="1183" d="M36 0l291 1456h290l-119 -595h115l400 595h376l-569 -726l295 -730h-331l-224 604h-114l-120 -604h-290z" />
<glyph unicode="L" horiz-adv-x="1044" d="M42 0l291 1456h288l-246 -1232h596l-45 -224h-884z" />
<glyph unicode="M" horiz-adv-x="1674" d="M42 0l291 1456h376l115 -1072l6 -1l546 1073h376l-291 -1456h-288l87 434l149 612l-5 2l-557 -1048h-193l-136 1043h-6l-95 -609l-87 -434h-288z" />
<glyph unicode="N" horiz-adv-x="1359" d="M42 0l291 1456h288l328 -967h6l194 967h288l-291 -1456h-288l-329 968h-6l-193 -968h-288z" />
<glyph unicode="O" horiz-adv-x="1314" d="M123 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 388 -182q110 -135 109 -312q0 -61 -13 -128l-52 -262q-58 -288 -235.5 -451t-432.5 -163q-237 1 -379 181q-104 132 -104 306q0 64 14 134zM410 600q-13 -65 -13 -121q0 -97 40 -165q63 -108 200 -108 q122 0 211 107.5t124 279.5l52 264q12 60 12 112q0 103 -46 173q-68 108 -207 107q-120 0 -203 -106t-117 -279z" />
<glyph unicode="P" horiz-adv-x="1258" d="M42 0l291 1456h548q219 0 337 -130q87 -97 87 -234q0 -48 -11 -101q-45 -222 -202 -342.5t-396 -120.5h-261l-105 -528h-288zM480 753h261q101 0 173 68t93 168q8 38 8 71q1 62 -27 106q-42 66 -152 65h-260z" />
<glyph unicode="Q" horiz-adv-x="1348" d="M128 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 387 -182q110 -135 110 -312q0 -62 -13 -128l-52 -262q-30 -144 -90 -258.5t-147 -193.5l175 -220l-212 -152l-187 241q-49 -15 -101 -23t-106 -8q-237 0 -379 181q-104 132 -104 306q0 64 14 134zM415 600 q-13 -65 -13 -121q0 -97 40 -165q63 -108 200 -108q122 0 211 107.5t124 279.5l52 264q12 60 12 112q0 101 -45 173q-69 107 -208 107q-120 0 -203 -106t-117 -279z" />
<glyph unicode="R" horiz-adv-x="1270" d="M42 0l291 1456h517q218 0 334 -115q86 -86 86 -218q0 -46 -10 -97q-25 -122 -95 -201.5t-189 -127.5q108 -41 146 -130q24 -55 23 -123q0 -42 -9 -90l-22 -107q-11 -53 -11 -107v-22q2 -66 34 -97l-4 -21h-297q-28 29 -28 91v15q4 74 19 143l20 103q8 42 8 77 q-1 59 -25 95q-40 58 -136 58h-247l-116 -582h-289zM492 807h224q100 0 167 53.5t88 152.5q7 36 7 66q0 59 -27 96q-41 56 -146 56h-228z" />
<glyph unicode="S" horiz-adv-x="1183" d="M105 425l2 6h280q-7 -34 -7 -63q0 -80 54 -116q72 -50 185 -49q73 0 137 42.5t78 107.5q5 28 5 53q1 60 -33 96q-48 50 -188 109q-229 79 -335 193q-79 84 -79 206q0 43 10 90q36 181 185 279t358 98q223 0 349 -120q92 -88 91 -223q0 -48 -11 -103l-3 -6h-279q5 28 5 53 q0 67 -38 112q-53 62 -159 62q-73 0 -134.5 -43.5t-74.5 -106.5q-6 -28 -6 -51q0 -59 36 -91q50 -46 220 -112q215 -78 311 -190q69 -81 68 -201q0 -48 -10 -102q-38 -189 -185.5 -282.5t-362.5 -93.5q-220 0 -370 109q-112 81 -112 229q0 50 13 108z" />
<glyph unicode="T" horiz-adv-x="1093" d="M190 1231l45 225h1036l-45 -225h-375l-246 -1231h-288l246 1231h-373z" />
<glyph unicode="U" horiz-adv-x="1321" d="M125 490l193 966h289l-193 -966q-11 -56 -11 -101q0 -77 34 -119q54 -66 178 -67q116 0 203 72.5t116 214.5l193 966h289l-193 -966q-53 -262 -226.5 -386.5t-426.5 -124.5q-230 0 -362 135q-96 99 -96 255q0 57 13 121z" />
<glyph unicode="V" horiz-adv-x="1231" d="M175 1456h303l110 -1069l4 -73h6l27 71l454 1071h304l-690 -1456h-296z" />
<glyph unicode="W" horiz-adv-x="1695" d="M188 1456h282l30 -962l5 -1l398 963h211l92 -963l6 -1l337 964h280l-545 -1456h-267l-90 927l-6 1l-386 -928h-267z" />
<glyph unicode="X" horiz-adv-x="1227" d="M-38 0l524 734l-281 722h333l151 -509l6 -1l319 510h336l-513 -722l303 -734h-348l-161 518l-6 1l-326 -519h-337z" />
<glyph unicode="Y" horiz-adv-x="1221" d="M215 1456h316l151 -650l6 -1l414 651h315l-650 -943l-102 -513h-287l106 532z" />
<glyph unicode="Z" d="M12 152l753 1079h-528l45 225h883l-29 -146l-756 -1086h611l-45 -224h-928z" />
<glyph unicode="[" horiz-adv-x="549" d="M-13 -336l325 2027h415l-35 -216h-125l-255 -1595h125l-35 -216h-415z" />
<glyph unicode="\" horiz-adv-x="819" d="M209 1456h285l249 -1581h-285z" />
<glyph unicode="]" horiz-adv-x="549" d="M-105 -336l35 216h126l255 1595h-126l35 216h414l-325 -2027h-414z" />
<glyph unicode="^" horiz-adv-x="847" d="M104 729l423 727h208l133 -727h-227l-67 413v21l-6 1l-9 -22l-228 -413h-227z" />
<glyph unicode="_" horiz-adv-x="865" d="M-123 -219l44 219h851l-44 -219h-851z" />
<glyph unicode="`" horiz-adv-x="650" d="M239 1473l3 5h303l140 -266h-232z" />
<glyph unicode="a" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q6 32 6 57q0 40 -16 66q-26 40 -96 41q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q170 0 270 -100q74 -74 74 -191q0 -41 -9 -88l-90 -447q-17 -82 -19 -146v-15q0 -57 10 -115h-288q-6 30 -9 62t-3 65 q-59 -66 -133 -107t-159 -41q-138 0 -213 90q-54 64 -54 157q0 37 9 79zM333 315q-4 -19 -4 -36q0 -33 16 -53q24 -31 79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112z" />
<glyph unicode="b" d="M20 0l312 1560h287l-113 -563q53 50 113 77.5t127 27.5q180 0 262 -169q51 -105 50 -242q0 -84 -18 -179l-4 -21q-52 -258 -166.5 -385t-308.5 -127q-81 0 -144.5 37.5t-103.5 107.5l-44 -124h-249zM363 283q17 -39 55 -58t99 -19q95 0 149 72t83 213l4 21q20 102 20 178 q-1 50 -9 88q-22 96 -122 97q-54 0 -101 -33.5t-84 -92.5z" />
<glyph unicode="c" horiz-adv-x="997" d="M74 525l5 30q39 247 184.5 397t374.5 150q182 0 281 -115q74 -86 75 -212q0 -42 -9 -88l-2 -5h-263q5 28 5 53q-1 52 -21 88q-30 54 -102 54q-98 0 -155.5 -91t-79.5 -231l-5 -30q-12 -72 -11 -130q0 -63 13 -107q26 -86 131 -85q67 0 114.5 45.5t60.5 121.5h261l2 -6 q-23 -171 -158 -278t-315 -107q-220 0 -322 155q-75 113 -74 269q0 58 10 122z" />
<glyph unicode="d" d="M84 531l4 21q55 273 175 411.5t310 138.5q70 0 129.5 -31.5t100.5 -88.5l115 578h289l-312 -1560h-250l3 107q-58 -62 -124 -95t-139 -33q-174 0 -261 159q-56 103 -56 238q0 73 16 155zM367 292q26 -86 123 -86q50 0 96 30t84 84l94 470q-18 41 -55 63t-91 22 q-89 0 -151 -87.5t-91 -235.5l-4 -21q-17 -83 -16 -147q-1 -53 11 -92z" />
<glyph unicode="e" horiz-adv-x="1022" d="M88 510l6 40q40 251 186 402q146 150 355 150h3q199 0 294 -134q69 -98 69 -242q0 -53 -9 -113l-25 -159h-598l-2 -34q0 -92 39 -149q45 -68 145 -68q84 0 149 20t141 61l49 -180q-69 -53 -175.5 -89t-229.5 -36q-213 0 -324 151q-83 112 -83 268q0 54 10 112zM408 652 l2 -5h306l4 26q5 34 5 63q1 54 -17 88q-28 54 -106 53q-68 0 -118.5 -62.5t-75.5 -162.5z" />
<glyph unicode="f" horiz-adv-x="697" d="M92 0l175 877h-147l41 205h147l24 120q39 194 155.5 286.5t301.5 92.5q33 0 69 -5.5t78 -15.5l-67 -217q-20 4 -41 7t-48 3q-59 0 -102 -40t-57 -111l-24 -120h195l-41 -205h-195l-175 -877h-289z" />
<glyph unicode="g" horiz-adv-x="1087" d="M9 -353l97 218q55 -32 117 -48.5t137 -16.5q97 0 165 63t90 170l8 43q-52 -47 -111.5 -72t-124.5 -25q-174 0 -261 159q-57 104 -57 239q0 73 16 154l4 21q55 273 175 411.5t311 138.5q79 0 142 -36.5t103 -102.5l43 119h251l-210 -1050q-46 -228 -200 -348.5 t-389 -120.5q-72 0 -156.5 23t-149.5 61zM368 292q26 -86 123 -86q53 0 98.5 28t81.5 80l96 482q-18 39 -55 59t-93 20q-89 0 -151 -87.5t-91 -235.5l-4 -21q-17 -83 -17 -147q0 -53 12 -92z" />
<glyph unicode="h" d="M13 0l312 1560h288l-120 -600q60 69 134.5 105.5t155.5 36.5q148 0 220 -114q44 -70 44 -184q0 -72 -18 -162l-128 -642h-288l129 644q13 66 13 112q0 47 -14 71q-28 48 -110 48q-48 0 -92 -21.5t-80 -60.5l-158 -793h-288z" />
<glyph unicode="i" horiz-adv-x="527" d="M34 0l216 1082h288l-216 -1082h-288zM302 1341l44 219h288l-44 -219h-288z" />
<glyph unicode="j" horiz-adv-x="522" d="M-251 -420l58 223q20 -6 40.5 -9t44.5 -3q49 0 86 42t55 127l224 1122h289l-224 -1122q-41 -203 -154 -300t-287 -97q-35 0 -67.5 4t-64.5 13zM304 1343l43 217h290l-43 -217h-290z" />
<glyph unicode="k" horiz-adv-x="1039" d="M20 0l312 1560h288l-177 -885h63l298 407h326l2 -5l-407 -483l246 -594h-330l-174 453h-69l-90 -453h-288z" />
<glyph unicode="l" horiz-adv-x="527" d="M34 0l312 1560h288l-312 -1560h-288z" />
<glyph unicode="m" horiz-adv-x="1653" d="M21 0l216 1082h267l-14 -129q62 73 141 111t175 38q86 0 146 -44.5t80 -133.5q63 85 146.5 131.5t184.5 46.5q139 0 207 -112q41 -68 42 -177q0 -70 -18 -158l-131 -655h-289l131 656q14 69 14 114q1 40 -11 61q-24 44 -96 44q-50 0 -95 -28t-81 -77q-2 -14 -4 -28.5 t-5 -30.5l-142 -711h-287l131 656q14 67 14 111q0 41 -12 63q-24 46 -97 45q-47 0 -90 -23t-78 -63l-158 -789h-287z" />
<glyph unicode="n" d="M15 0l216 1082h269l-17 -142q65 79 146 120.5t171 41.5q143 0 212 -104q43 -64 42 -172q0 -67 -16 -150l-135 -676h-289l135 675q10 52 10 89q1 46 -15 69q-28 42 -111 42q-47 0 -91.5 -24t-81.5 -66l-157 -785h-288z" />
<glyph unicode="o" d="M81 530l3 21q40 252 188.5 401.5t375.5 149.5q217 0 323 -156q78 -114 78 -274q0 -57 -10 -121l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-217 0 -323 155q-77 113 -77 273q0 58 10 123zM368 530q-11 -70 -11 -127q0 -67 16 -114q30 -86 133 -86q95 0 156 90.5t85 236.5 l3 21q11 66 11 120q1 69 -17 118q-30 88 -132 88q-96 0 -157.5 -92t-83.5 -234z" />
<glyph unicode="p" d="M-63 -416l299 1498h265l-9 -97q54 56 118 86.5t135 30.5q175 0 260 -170q54 -107 54 -246q0 -81 -19 -174l-4 -21q-51 -255 -169 -383.5t-307 -128.5q-75 0 -135 28t-100 82l-101 -505h-287zM362 273q17 -36 54.5 -53t97.5 -17q89 0 147.5 75.5t86.5 212.5l4 21 q18 91 18 163q0 56 -12 101q-25 99 -119 99q-52 0 -98 -31.5t-83 -87.5z" />
<glyph unicode="q" d="M84 531l4 21q55 273 175 411.5t310 138.5q77 0 139 -37t102 -103l45 120h249l-299 -1498h-288l99 496q-53 -49 -112 -75t-123 -26q-174 0 -261 159q-56 103 -56 238q0 73 16 155zM367 290q26 -87 123 -87q51 0 95 28t81 79l98 491q-19 37 -55 56.5t-91 19.5 q-89 0 -151 -88.5t-91 -236.5l-4 -21q-17 -83 -17 -147q0 -54 12 -94z" />
<glyph unicode="r" horiz-adv-x="706" d="M20 0l216 1082h268l-16 -139l5 -3q45 77 106.5 119.5t133.5 42.5q20 0 44 -3.5t39 -8.5l-83 -266l-115 3q-53 0 -94.5 -25.5t-70.5 -72.5l-146 -729h-287z" />
<glyph unicode="s" horiz-adv-x="995" d="M46 338l2 6h264q-2 -19 -2 -35q0 -60 32 -91q40 -39 117 -39q67 0 110 32t53 87q1 9 1 18q0 39 -29 66q-36 34 -145 61q-172 39 -252 115q-63 60 -63 155q0 26 5 54q23 145 148 240t312 95t291 -98q81 -77 81 -184q0 -29 -6 -60l-2 -6h-279q3 17 3 33q1 44 -21 74 q-28 40 -99 40q-58 0 -100 -35t-50 -86q-2 -11 -2 -21q0 -37 26 -61q33 -32 147 -57q180 -39 258 -117q61 -61 61 -159q0 -26 -4 -55q-25 -152 -155.5 -241.5t-326.5 -89.5q-195 0 -299 111q-82 87 -82 191q0 28 6 57z" />
<glyph unicode="t" horiz-adv-x="700" d="M110 877l41 205h144l53 265h288l-53 -265h171l-41 -205h-171l-110 -551q-6 -30 -6 -51q0 -27 10 -41q18 -24 58 -25q26 0 48.5 2.5t47.5 8.5l-18 -211q-50 -15 -97 -22.5t-101 -7.5q-135 0 -200 85q-42 55 -42 149q0 50 12 112l110 552h-144z" />
<glyph unicode="u" d="M99 429l130 653h287l-131 -655q-13 -64 -13 -108q0 -41 12 -65q24 -48 94 -48q57 0 106.5 23t87.5 66l157 787h288l-216 -1082h-253l8 125q-62 -72 -139.5 -109t-168.5 -37q-149 -1 -222 111q-45 68 -45 181q0 70 18 158z" />
<glyph unicode="v" horiz-adv-x="988" d="M121 1082h301l50 -679l2 -85l6 -1l29 86l264 679h301l-512 -1082h-275z" />
<glyph unicode="w" horiz-adv-x="1409" d="M159 1082h270l-7 -656l6 -1l310 657h191l50 -658l6 -1l253 659h270l-469 -1082h-240l-55 618l-6 1l-303 -619h-239z" />
<glyph unicode="x" horiz-adv-x="988" d="M-50 0l397 547l-215 535h323l83 -342l6 -1l197 343h325l-385 -535l221 -547h-324l-92 351l-6 1l-205 -352h-325z" />
<glyph unicode="y" horiz-adv-x="988" d="M-75 -414l77 213q10 -2 24 -4t25 -2q61 0 106.5 37.5t71.5 86.5l46 82l-137 1083h310l33 -628l-1 -35l6 -1l315 664h310l-653 -1244q-68 -117 -158 -196t-239 -79q-33 0 -63.5 6t-72.5 17z" />
<glyph unicode="z" horiz-adv-x="988" d="M-11 0l34 172l607 679l-2 5h-454l45 226h813l-33 -167l-612 -686l2 -5h485l-45 -224h-840z" />
<glyph unicode="{" horiz-adv-x="640" d="M61 518l8 48l24 153q78 0 127 55t66 155l32 203q28 177 123.5 293.5t289.5 171.5l29 -157q-80 -31 -122.5 -110t-61.5 -198l-32 -203q-18 -109 -73 -189t-149 -124q77 -47 107.5 -127.5t14.5 -179.5l-32 -203q-20 -123 -2.5 -199.5t88.5 -108.5l-81 -158 q-174 55 -232.5 175t-30.5 291l32 203q16 102 -13.5 155.5t-111.5 53.5z" />
<glyph unicode="|" horiz-adv-x="501" d="M52 -270l276 1726h173l-276 -1726h-173z" />
<glyph unicode="}" horiz-adv-x="640" d="M-63 -202q79 31 121.5 110t62.5 198l32 203q17 109 73.5 188.5t154.5 123.5q-81 45 -113 125.5t-15 182.5l32 203q19 123 1.5 199.5t-87.5 108.5l81 157q173 -55 231 -174.5t31 -290.5l-32 -203q-17 -104 13 -157t114 -53l-9 -52h1l-24 -149q-80 0 -129.5 -56t-65.5 -153 l-32 -203q-29 -177 -124 -294t-288 -172z" />
<glyph unicode="~" horiz-adv-x="1238" d="M101 448q26 168 124 272.5t228 104.5q74 0 140.5 -34t125.5 -99q37 -45 67.5 -64.5t69.5 -19.5q43 0 85 52.5t54 124.5l193 -27q-27 -168 -126 -274t-228 -106q-76 0 -139 32t-124 101q-40 44 -70 64t-70 20q-44 0 -84.5 -51t-51.5 -122z" />
<glyph unicode="&#xa1;" horiz-adv-x="562" d="M-25 -374l191 953h289l-191 -953h-289zM217 825l51 257h285l-51 -257h-285z" />
<glyph unicode="&#xa2;" horiz-adv-x="1113" d="M110 525l5 30q36 226 162 372t324 170l45 221h196l-47 -232q127 -37 191 -144t40 -260h-270q14 87 -15.5 141t-102.5 54q-98 0 -155.5 -91t-79.5 -231l-5 -30q-24 -151 2 -236.5t131 -85.5q67 0 114.5 45.5t60.5 121.5h262l2 -6q-21 -151 -130.5 -254t-264.5 -125 l-46 -230h-196l47 238q-161 39 -232 185t-38 347z" />
<glyph unicode="&#xa3;" horiz-adv-x="1146" d="M67 0l45 224h9q43 12 80 95t55 171l16 98h-147l45 225h138l35 214q45 224 178.5 337t328.5 113q190 0 287 -114t57 -293l-2 -5h-282q20 102 -11.5 144.5t-94.5 42.5q-56 0 -103.5 -59.5t-68.5 -165.5l-34 -214h322l-45 -225h-312l-13 -85q-17 -82 -59 -153t-106 -126h659 l-45 -224h-932z" />
<glyph unicode="&#xa4;" horiz-adv-x="1322" d="M16 118l159 142q-32 76 -40 164t12 184q21 107 64.5 200.5t105.5 169.5l-101 142l167 144l98 -137q79 52 166.5 79.5t178.5 27.5q82 0 157 -31t135 -88l165 150l110 -145l-172 -155q33 -78 42 -168.5t-10 -188.5q-21 -102 -61 -191.5t-96 -162.5l97 -136l-168 -145 l-90 126q-82 -58 -174 -88.5t-186 -30.5q-87 0 -164.5 33t-136.5 95l-149 -134zM329 608q-40 -197 42.5 -318t241.5 -121q144 0 283 129t176 310q38 195 -44.5 316t-239.5 121q-146 0 -285 -128.5t-174 -308.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1179" d="M95 232l38 200h308l22 110h-308l41 200h244l-211 714h316l130 -585l6 -1l364 586h316l-496 -714h219l-41 -200h-292l-22 -110h292l-38 -200h-293l-46 -232h-288l46 232h-307z" />
<glyph unicode="&#xa6;" horiz-adv-x="499" d="M-19 -270l159 795h258l-159 -795h-258zM175 698l151 758h258l-151 -758h-258z" />
<glyph unicode="&#xa7;" horiz-adv-x="1211" d="M2 -44l2 6l281 1q-24 -114 29.5 -156t153.5 -42q88 0 151 42t77 108q13 71 -32 108.5t-191 89.5q-215 64 -305 157t-55 266q18 94 69.5 162t133.5 111q-53 51 -71 120.5t2 166.5q36 184 186.5 282.5t378.5 98.5q213 0 327 -113t71 -309l-3 -6h-280q18 93 -22.5 148 t-137.5 55q-94 0 -156 -44.5t-74 -109.5q-17 -80 24.5 -115.5t195.5 -84.5q217 -64 306 -157.5t55 -265.5q-20 -96 -71 -163.5t-130 -109.5q52 -51 69 -120.5t-2 -165.5q-38 -189 -185.5 -283t-375.5 -94q-206 0 -337 101t-84 316zM405 562q-17 -85 22.5 -123t190.5 -92 q28 -9 55 -18.5t57 -19.5q38 23 64.5 59.5t35.5 81.5q15 76 -30 117.5t-189 95.5q-38 11 -64 20t-49 19q-36 -23 -60 -59t-33 -81z" />
<glyph unicode="&#xa8;" horiz-adv-x="1037" d="M280 1252l33 204h257l-33 -204h-257zM747 1252l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xa9;" horiz-adv-x="1499" d="M129 729q52 327 276.5 537t503.5 210q263 0 426.5 -218t114.5 -529q-53 -328 -278 -539t-502 -211q-265 0 -428.5 218.5t-112.5 531.5zM247 729q-45 -274 84 -449.5t359 -175.5q216 0 407 182t234 443q43 273 -85.5 447.5t-356.5 174.5q-218 0 -409.5 -181t-232.5 -441z M440 669l19 119q28 179 132 283t256 104q142 0 214.5 -80.5t45.5 -228.5l-2 -5h-145q15 97 -18.5 138t-116.5 41q-82 0 -139.5 -69.5t-75.5 -181.5l-19 -120q-20 -119 14.5 -185.5t120.5 -66.5q79 0 127 42t63 137h143l2 -6q-21 -156 -114 -232t-243 -76q-144 0 -218 107.5 t-46 279.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="856" d="M206 920q23 117 112 174t244 57h122l10 51q13 66 -5.5 96.5t-70.5 30.5q-55 0 -93.5 -26.5t-47.5 -72.5l-158 13l-2 6q16 104 106 166t224 62q118 0 181 -72.5t37 -203.5l-63 -314q-11 -53 -13.5 -95t1.5 -86h-173q-3 21 -3 45t3 49q-41 -47 -98 -77.5t-128 -30.5 q-103 0 -154.5 62.5t-30.5 165.5zM378 924q-10 -46 11 -67t74 -21q41 0 97 30t79 64l21 104h-120q-62 0 -108 -33t-54 -77z" />
<glyph unicode="&#xab;" horiz-adv-x="972" d="M79 541l1 6l3 13l338 390h182l-299 -400l139 -399h-182zM453 541l1 6l3 13l338 390h182l-299 -400l139 -399h-182z" />
<glyph unicode="&#xac;" horiz-adv-x="1062" d="M164 634l34 171h780l-16 -77h1l-19 -94l-52 -260h-196l52 260h-584z" />
<glyph unicode="&#xad;" horiz-adv-x="769" d="M131 510l45 225h531l-45 -225h-531z" />
<glyph unicode="&#xae;" horiz-adv-x="1499" d="M130 729q52 327 276.5 537t502.5 210q264 0 427.5 -218t114.5 -529q-53 -328 -278.5 -539t-502.5 -211q-265 0 -428 218.5t-112 531.5zM248 729q-45 -274 84 -449.5t358 -175.5q216 0 407 182t234 443q43 273 -85.5 447.5t-356.5 174.5q-218 0 -409 -181t-232 -441z M445 316l136 850h265q135 0 208.5 -68.5t54.5 -193.5q-10 -60 -44.5 -103.5t-92.5 -73.5q49 -30 66 -84.5t6 -127.5l-9 -56q-7 -42 -8.5 -74t4.5 -53l-2 -16h-151q-5 22 -0.5 63.5t11.5 80.5l8 54q12 74 -13 106.5t-95 32.5h-143l-53 -337h-148zM668 787h120 q63 0 113.5 30.5t59.5 85.5q12 75 -18 102.5t-119 27.5h-117z" />
<glyph unicode="&#xaf;" horiz-adv-x="981" d="M284 1292l26 165h687l-26 -165h-687z" />
<glyph unicode="&#xb0;" horiz-adv-x="751" d="M276 1203q23 119 113 196.5t198 77.5q96 0 157.5 -82t39.5 -192q-25 -121 -112.5 -196t-193.5 -75q-99 0 -162 80t-40 191zM419 1203q-12 -56 14.5 -90t74.5 -34q42 0 82 35.5t51 88.5q11 57 -13 92.5t-70 35.5q-44 0 -86.5 -37.5t-52.5 -90.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="1036" d="M48 1l46 228h775l-46 -228h-775zM134 715l38 232h301l59 363h252l-59 -363h299l-38 -232h-298l-61 -383h-252l61 383h-302z" />
<glyph unicode="&#xb2;" horiz-adv-x="814" d="M163 667l31 155l336 252q64 50 86 83.5t31 74.5q8 42 -7 67t-58 25q-44 0 -76 -30.5t-41 -76.5h-196l-2 6q17 113 113.5 184.5t237.5 71.5q127 0 192.5 -66.5t43.5 -181.5q-18 -88 -76.5 -145t-204.5 -165l-113 -93l2 -6h315l-31 -155h-583z" />
<glyph unicode="&#xb3;" horiz-adv-x="808" d="M187 893l2 6h199q-10 -45 13 -67t77 -22q46 0 81.5 24.5t44.5 67.5q11 53 -14.5 78.5t-85.5 25.5h-103l10 49l9 44l8 40h103q51 0 83.5 25t42.5 70q7 40 -12.5 64.5t-67.5 24.5q-43 0 -72.5 -22t-35.5 -53h-197l-2 6q17 108 110 166t222 58q134 0 210 -60.5t55 -168.5 q-12 -59 -54 -104t-105 -70q59 -25 85.5 -72t13.5 -112q-25 -120 -118.5 -178t-239.5 -58q-130 0 -210 63t-52 175z" />
<glyph unicode="&#xb4;" horiz-adv-x="701" d="M235 1217l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xb5;" horiz-adv-x="1196" d="M-36 -416l299 1498h287l-124 -620l-6 -28q-25 -142 4.5 -185t109.5 -43q62 0 111.5 28t87.5 81l153 767h288l-216 -1082h-269l6 54q-47 -38 -100.5 -56.5t-113.5 -18.5q-43 0 -78.5 10.5t-64.5 32.5l-87 -438h-287z" />
<glyph unicode="&#xb6;" horiz-adv-x="1022" d="M172 988q43 220 187 344t364 124h362l-291 -1456h-288l104 520h-74q-203 0 -304 132t-60 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="596" d="M181 568l52 260h284l-52 -260h-284z" />
<glyph unicode="&#xb8;" horiz-adv-x="525" d="M-42 -452l24 154q41 0 71 20.5t39 62.5q8 44 -16.5 59t-94.5 20l57 142h216l-22 -57q55 -11 85.5 -52t15.5 -121q-23 -114 -118.5 -173.5t-251.5 -57.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="550" d="M269 665l126 630h-116l32 159l327 23l-162 -812h-207z" />
<glyph unicode="&#xba;" horiz-adv-x="883" d="M233 1026l23 116q32 157 136.5 246t254.5 89q139 0 213.5 -95t45.5 -240l-23 -116q-32 -158 -136 -246t-255 -88q-139 0 -213.5 94.5t-45.5 239.5zM404 1026q-18 -90 11 -139t106 -49q68 0 121 52.5t70 135.5l23 116q17 88 -12 137.5t-105 49.5q-70 0 -122.5 -53 t-68.5 -134z" />
<glyph unicode="&#xbb;" horiz-adv-x="972" d="M15 151l298 399l-138 400h183l181 -390l-2 -6h1l-3 -13l-337 -390h-183zM400 151l298 399l-138 400h183l181 -390l-2 -6h1l-3 -13l-337 -390h-183z" />
<glyph unicode="&#xbc;" horiz-adv-x="1396" d="M184 192l889 1138l124 -75l-889 -1138zM280 664l126 630h-116l32 159l327 23l-162 -812h-207zM619 139l11 126l499 534l1 2h207l-101 -505h89l-31 -157h-89l-28 -139h-207l28 139h-379zM851 301l2 -5h176l51 252l-6 3l-13 -16z" />
<glyph unicode="&#xbd;" horiz-adv-x="1462" d="M182 192l889 1138l124 -75l-889 -1138zM265 664l126 630h-116l32 159l327 23l-162 -812h-207zM698 0l31 155l336 252q64 50 86 83.5t31 74.5q8 42 -7 67t-58 25q-44 0 -76 -30.5t-41 -76.5h-196l-2 6q17 113 113.5 184.5t237.5 71.5q127 0 192.5 -66.5t43.5 -181.5 q-18 -88 -76.5 -145t-204.5 -165l-113 -93l2 -6h315l-31 -155h-583z" />
<glyph unicode="&#xbe;" horiz-adv-x="1599" d="M175 894l2 6h199q-10 -45 13 -67t77 -22q46 0 81.5 24.5t44.5 67.5q11 53 -14.5 78.5t-85.5 25.5h-103l10 49l9 44l8 40h103q51 0 83.5 25t42.5 70q7 40 -12.5 64.5t-67.5 24.5q-43 0 -72.5 -22t-35.5 -53h-197l-2 6q17 108 110 166t222 58q134 0 210 -60.5t55 -168.5 q-12 -59 -54 -104t-105 -70q59 -25 85.5 -72t13.5 -112q-25 -120 -118.5 -178t-239.5 -58q-130 0 -210 63t-52 175zM385 192l889 1138l124 -75l-889 -1138zM790 139l11 126l499 534l1 2h207l-101 -505h89l-31 -157h-89l-28 -139h-207l28 139h-379zM1022 301l2 -5h176l51 252 l-6 3l-13 -16z" />
<glyph unicode="&#xbf;" horiz-adv-x="983" d="M-7 27q26 133 114.5 235.5t212.5 180.5q64 45 91.5 92.5t45.5 132.5h287q-30 -140 -82 -205.5t-184 -158.5q-76 -58 -128 -125.5t-68 -149.5q-20 -96 12.5 -145t115.5 -49q59 0 115.5 44t75.5 127h279l2 -6q-37 -191 -180 -292.5t-338 -101.5q-200 0 -304.5 115 t-66.5 306zM489 831l50 251h288l-50 -251h-288z" />
<glyph unicode="&#xc0;" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1zM559 1821l3 5h303l140 -266h-232z" />
<glyph unicode="&#xc1;" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1zM723 1565l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xc2;" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1zM516 1592l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xc3;" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1zM524 1644q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5l142 -45q-16 -99 -82.5 -165t-152.5 -66q-61 0 -138.5 43.5t-126.5 43.5q-31 0 -58 -32.5 t-34 -77.5z" />
<glyph unicode="&#xc4;" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1zM504 1601l33 204h257l-33 -204h-257zM971 1601l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xc5;" horiz-adv-x="1240" d="M-67 0l754 1456h294l169 -1456h-290l-28 314h-456l-154 -314h-289zM488 543h323l-49 546l-6 1zM693 1739q17 89 85.5 142.5t156.5 53.5q79 0 128.5 -57t33.5 -139q-19 -90 -86 -141t-154 -51q-81 0 -131 55t-33 137zM805 1739q-10 -46 10.5 -72t60.5 -26q36 0 68 27.5 t41 70.5q8 47 -10.5 73.5t-58.5 26.5q-37 0 -70.5 -29t-40.5 -71z" />
<glyph unicode="&#xc6;" horiz-adv-x="1808" d="M-81 0l1014 1456h962l-45 -228h-549l-59 -366h458l-45 -227h-449l-66 -408h566l-45 -227h-845l54 335h-393l-220 -335h-338zM635 575h273l86 533l-6 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1226" d="M120 586l58 290q57 287 219 444t402 157q237 0 368 -142t100 -378l-2 -5h-282q20 145 -30 222.5t-181 77.5q-107 0 -190.5 -104.5t-115.5 -269.5l-59 -292q-36 -176 17.5 -279.5t179.5 -103.5q112 0 179.5 69.5t106.5 215.5h279l2 -6q-61 -243 -204.5 -373t-382.5 -130 q-233 0 -374.5 174.5t-89.5 432.5zM350 -453l24 154q41 0 71 20.5t39 62.5q8 44 -16.5 59t-94.5 20l57 142h216l-22 -57q55 -11 85.5 -52t15.5 -121q-23 -114 -118.5 -173.5t-251.5 -57.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1104" d="M42 0l291 1456h933l-45 -225h-645l-73 -366h552l-45 -225h-552l-83 -416h647l-45 -224h-935zM493 1821l3 5h303l140 -266h-232z" />
<glyph unicode="&#xc9;" horiz-adv-x="1104" d="M42 0l291 1456h933l-45 -225h-645l-73 -366h552l-45 -225h-552l-83 -416h647l-45 -224h-935zM657 1565l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xca;" horiz-adv-x="1104" d="M42 0l291 1456h933l-45 -225h-645l-73 -366h552l-45 -225h-552l-83 -416h647l-45 -224h-935zM450 1592l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xcb;" horiz-adv-x="1104" d="M42 0l291 1456h933l-45 -225h-645l-73 -366h552l-45 -225h-552l-83 -416h647l-45 -224h-935zM438 1601l33 204h257l-33 -204h-257zM905 1601l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xcc;" horiz-adv-x="574" d="M57 0l291 1456h288l-291 -1456h-288zM215 1821l3 5h303l140 -266h-232z" />
<glyph unicode="&#xcd;" horiz-adv-x="574" d="M57 0l291 1456h288l-291 -1456h-288zM377 1565l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xce;" horiz-adv-x="574" d="M57 0l291 1456h288l-291 -1456h-288zM172 1592l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xcf;" horiz-adv-x="574" d="M57 0l291 1456h288l-291 -1456h-288zM160 1601l33 204h257l-33 -204h-257zM627 1601l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xd0;" horiz-adv-x="1288" d="M72 0l130 652h-125l36 181h125l125 623h435q236 0 386 -179t99 -439l-49 -241q-58 -288 -230 -442.5t-423 -154.5h-509zM405 224h206q129 0 214 100t120 273l49 243q35 177 -37 284t-219 107h-132l-80 -398h217l-36 -181h-217z" />
<glyph unicode="&#xd1;" horiz-adv-x="1359" d="M42 0l291 1456h288l328 -967h6l194 967h288l-291 -1456h-288l-329 968h-6l-193 -968h-288zM570 1644q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5l142 -45q-16 -99 -82.5 -165t-152.5 -66q-61 0 -138.5 43.5t-126.5 43.5q-31 0 -58 -32.5 t-34 -77.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1314" d="M123 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 387.5 -182t96.5 -440l-52 -262q-58 -288 -235.5 -451t-432.5 -163q-237 0 -379 180.5t-90 440.5zM410 600q-36 -179 27 -286.5t200 -107.5q122 0 211 107.5t124 279.5l52 264q35 177 -33.5 284.5t-207.5 107.5 q-120 0 -203 -106t-117 -279zM589 1842l3 5h303l140 -266h-232z" />
<glyph unicode="&#xd3;" horiz-adv-x="1314" d="M123 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 387.5 -182t96.5 -440l-52 -262q-58 -288 -235.5 -451t-432.5 -163q-237 0 -379 180.5t-90 440.5zM410 600q-36 -179 27 -286.5t200 -107.5q122 0 211 107.5t124 279.5l52 264q35 177 -33.5 284.5t-207.5 107.5 q-120 0 -203 -106t-117 -279zM753 1586l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xd4;" horiz-adv-x="1314" d="M123 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 387.5 -182t96.5 -440l-52 -262q-58 -288 -235.5 -451t-432.5 -163q-237 0 -379 180.5t-90 440.5zM410 600q-36 -179 27 -286.5t200 -107.5q122 0 211 107.5t124 279.5l52 264q35 177 -33.5 284.5t-207.5 107.5 q-120 0 -203 -106t-117 -279zM546 1613l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xd5;" horiz-adv-x="1314" d="M123 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 387.5 -182t96.5 -440l-52 -262q-58 -288 -235.5 -451t-432.5 -163q-237 0 -379 180.5t-90 440.5zM410 600q-36 -179 27 -286.5t200 -107.5q122 0 211 107.5t124 279.5l52 264q35 177 -33.5 284.5t-207.5 107.5 q-120 0 -203 -106t-117 -279zM554 1665q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5l142 -45q-16 -99 -82.5 -165t-152.5 -66q-61 0 -138.5 43.5t-126.5 43.5q-31 0 -58 -32.5t-34 -77.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="1314" d="M123 600l52 262q58 288 229.5 451.5t423.5 163.5q240 0 387.5 -182t96.5 -440l-52 -262q-58 -288 -235.5 -451t-432.5 -163q-237 0 -379 180.5t-90 440.5zM410 600q-36 -179 27 -286.5t200 -107.5q122 0 211 107.5t124 279.5l52 264q35 177 -33.5 284.5t-207.5 107.5 q-120 0 -203 -106t-117 -279zM534 1622l33 204h257l-33 -204h-257zM1001 1622l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xd7;" horiz-adv-x="1024" d="M51 371l349 314l-225 316l203 164l217 -305l340 305l136 -164l-352 -316l224 -314l-202 -164l-216 303l-338 -303z" />
<glyph unicode="&#xd8;" horiz-adv-x="1325" d="M78 -95l158 214q-79 85 -108.5 209t-0.5 269l53 262q56 284 243.5 451t444.5 167q86 0 161.5 -26.5t135.5 -75.5l106 143h138l-167 -226q59 -85 79.5 -196t-3.5 -237l-53 -262q-57 -285 -247 -451.5t-448 -166.5q-70 0 -132.5 17.5t-115.5 51.5l-106 -143h-138z M398.5 464.5q-0.5 -59.5 13.5 -98.5l6 -2l587 794q-28 44 -73.5 67.5t-108.5 23.5q-124 0 -223.5 -110.5t-132.5 -277.5l-53 -264q-15 -73 -15.5 -132.5zM473 253q26 -24 61.5 -35.5t80.5 -11.5q124 0 226 111t136 280l53 264q8 44 11.5 83t0.5 68l-5 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1321" d="M125 490l193 966h289l-193 -966q-31 -154 23 -220.5t178 -66.5q116 0 203 72.5t116 214.5l193 966h289l-193 -966q-53 -262 -226.5 -386.5t-426.5 -124.5q-230 0 -361.5 135t-83.5 376zM587 1821l3 5h303l140 -266h-232z" />
<glyph unicode="&#xda;" horiz-adv-x="1321" d="M125 490l193 966h289l-193 -966q-31 -154 23 -220.5t178 -66.5q116 0 203 72.5t116 214.5l193 966h289l-193 -966q-53 -262 -226.5 -386.5t-426.5 -124.5q-230 0 -361.5 135t-83.5 376zM751 1565l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xdb;" horiz-adv-x="1321" d="M125 490l193 966h289l-193 -966q-31 -154 23 -220.5t178 -66.5q116 0 203 72.5t116 214.5l193 966h289l-193 -966q-53 -262 -226.5 -386.5t-426.5 -124.5q-230 0 -361.5 135t-83.5 376zM544 1592l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xdc;" horiz-adv-x="1321" d="M125 490l193 966h289l-193 -966q-31 -154 23 -220.5t178 -66.5q116 0 203 72.5t116 214.5l193 966h289l-193 -966q-53 -262 -226.5 -386.5t-426.5 -124.5q-230 0 -361.5 135t-83.5 376zM532 1601l33 204h257l-33 -204h-257zM999 1601l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xdd;" horiz-adv-x="1221" d="M215 1456h316l151 -650l6 -1l414 651h315l-650 -943l-102 -513h-287l106 532zM707 1565l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xde;" horiz-adv-x="1172" d="M38 0l291 1456h288l-54 -270h195q224 0 340.5 -126.5t77.5 -321.5q-44 -214 -198.5 -331.5t-398.5 -117.5h-195l-58 -289h-288zM429 514h195q102 0 173 64.5t90 157.5q20 101 -21.5 163t-152.5 62h-193l-2 2z" />
<glyph unicode="&#xdf;" horiz-adv-x="1221" d="M44 0l220 1101q48 241 191.5 356.5t360.5 115.5q161 0 259 -97t64 -270q-24 -119 -91.5 -212t-80.5 -159q-13 -64 96 -202.5t81 -276.5q-41 -202 -162.5 -289.5t-334.5 -87.5q-70 0 -143 15t-103 41l98 223q32 -23 80 -39t108 -16q62 0 108 38.5t59 102.5 q16 80 -94.5 211t-82.5 271q19 100 89.5 196t85.5 169q14 72 -17 115t-84 43q-63 0 -120.5 -68t-80.5 -184l-219 -1097h-287z" />
<glyph unicode="&#xe0;" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q16 83 -10 123.5t-96 40.5q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q171 0 270.5 -100t64.5 -279l-90 -447q-17 -82 -18.5 -146t9.5 -130h-288q-6 30 -9 62t-3 65q-59 -66 -133 -107t-159 -41 q-138 0 -213 90t-45 236zM333 315q-12 -58 12 -89t79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112zM375 1499l3 5h303l140 -266h-232z" />
<glyph unicode="&#xe1;" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q16 83 -10 123.5t-96 40.5q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q171 0 270.5 -100t64.5 -279l-90 -447q-17 -82 -18.5 -146t9.5 -130h-288q-6 30 -9 62t-3 65q-59 -66 -133 -107t-159 -41 q-138 0 -213 90t-45 236zM333 315q-12 -58 12 -89t79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112zM539 1243l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xe2;" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q16 83 -10 123.5t-96 40.5q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q171 0 270.5 -100t64.5 -279l-90 -447q-17 -82 -18.5 -146t9.5 -130h-288q-6 30 -9 62t-3 65q-59 -66 -133 -107t-159 -41 q-138 0 -213 90t-45 236zM332 1270l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223zM333 315q-12 -58 12 -89t79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112z" />
<glyph unicode="&#xe3;" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q16 83 -10 123.5t-96 40.5q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q171 0 270.5 -100t64.5 -279l-90 -447q-17 -82 -18.5 -146t9.5 -130h-288q-6 30 -9 62t-3 65q-59 -66 -133 -107t-159 -41 q-138 0 -213 90t-45 236zM333 315q-12 -58 12 -89t79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112zM340 1322q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5l142 -45q-16 -99 -82.5 -165t-152.5 -66q-61 0 -138.5 43.5 t-126.5 43.5q-31 0 -58 -32.5t-34 -77.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q16 83 -10 123.5t-96 40.5q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q171 0 270.5 -100t64.5 -279l-90 -447q-17 -82 -18.5 -146t9.5 -130h-288q-6 30 -9 62t-3 65q-59 -66 -133 -107t-159 -41 q-138 0 -213 90t-45 236zM320 1279l33 204h257l-33 -204h-257zM333 315q-12 -58 12 -89t79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112zM787 1279l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xe5;" horiz-adv-x="1034" d="M44 305q34 169 161 251.5t351 82.5h130l17 86q16 83 -10 123.5t-96 40.5q-58 0 -100 -35t-53 -95l-277 1l-2 6q24 147 160 241.5t333 94.5q171 0 270.5 -100t64.5 -279l-90 -447q-17 -82 -18.5 -146t9.5 -130h-288q-6 30 -9 62t-3 65q-59 -66 -133 -107t-159 -41 q-138 0 -213 90t-45 236zM333 315q-12 -58 12 -89t79 -31q52 0 104.5 27.5t87.5 68.5l37 183h-130q-74 0 -126 -47t-64 -112zM509 1417q17 89 85.5 142.5t156.5 53.5q79 0 128.5 -57t33.5 -139q-19 -90 -86 -141t-154 -51q-81 0 -131 55t-33 137zM621 1417q-10 -46 10.5 -72 t60.5 -26q36 0 68 27.5t41 70.5q8 47 -10.5 73.5t-58.5 26.5q-37 0 -70.5 -29t-40.5 -71z" />
<glyph unicode="&#xe6;" horiz-adv-x="1618" d="M22 317q34 169 167.5 250t366.5 81h160l12 59q17 84 -9.5 127t-91.5 43t-114.5 -38t-60.5 -93l-275 18l-1 6q25 154 160.5 243t338.5 89q86 0 157 -25.5t118 -73.5q67 49 149 74t176 25q186 0 279.5 -134t48.5 -356l-31 -158h-603q-17 -122 24.5 -186.5t155.5 -64.5 q79 0 144 21t143 60l38 -184q-67 -48 -175.5 -84.5t-225.5 -36.5q-112 0 -197 41t-136 118q-69 -69 -173.5 -114t-234.5 -45q-168 0 -254 92.5t-56 245.5zM311 313q-14 -63 15 -95.5t103 -32.5q46 0 109.5 30.5t106.5 71.5l35 177h-159q-79 0 -139 -45t-71 -106zM1014 650 l3 -6h311l5 28q19 99 -5.5 152t-97.5 53q-77 0 -132.5 -62.5t-83.5 -164.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="997" d="M74 525l5 30q39 247 184.5 397t374.5 150q182 0 281 -115t66 -300l-2 -5h-263q14 87 -15.5 141t-102.5 54q-98 0 -155.5 -91t-79.5 -231l-5 -30q-24 -151 2 -236.5t131 -85.5q67 0 114.5 45.5t60.5 121.5h261l2 -6q-23 -171 -158 -278t-315 -107q-219 0 -321.5 155 t-64.5 391zM266 -453l24 154q41 0 71 20.5t39 62.5q8 44 -16.5 59t-94.5 20l57 142h216l-22 -57q55 -11 85.5 -52t15.5 -121q-23 -114 -118.5 -173.5t-251.5 -57.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1022" d="M88 510l6 40q40 251 186.5 402t357.5 150q199 0 294 -133.5t60 -355.5l-25 -159h-598q-8 -115 37 -183t145 -68q84 0 149 20t141 61l49 -180q-69 -53 -175.5 -89t-229.5 -36q-213 0 -324 151t-73 380zM338 1500l3 5h303l140 -266h-232zM408 652l2 -5h306l4 26 q15 97 -12.5 150.5t-105.5 53.5q-68 0 -118.5 -62.5t-75.5 -162.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="1022" d="M88 510l6 40q40 251 186.5 402t357.5 150q199 0 294 -133.5t60 -355.5l-25 -159h-598q-8 -115 37 -183t145 -68q84 0 149 20t141 61l49 -180q-69 -53 -175.5 -89t-229.5 -36q-213 0 -324 151t-73 380zM408 652l2 -5h306l4 26q15 97 -12.5 150.5t-105.5 53.5 q-68 0 -118.5 -62.5t-75.5 -162.5zM502 1244l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xea;" horiz-adv-x="1022" d="M88 510l6 40q40 251 186.5 402t357.5 150q199 0 294 -133.5t60 -355.5l-25 -159h-598q-8 -115 37 -183t145 -68q84 0 149 20t141 61l49 -180q-69 -53 -175.5 -89t-229.5 -36q-213 0 -324 151t-73 380zM296 1271l6 26l316 240h163l223 -243l-5 -23h-227l-100 133 l-153 -133h-223zM408 652l2 -5h306l4 26q15 97 -12.5 150.5t-105.5 53.5q-68 0 -118.5 -62.5t-75.5 -162.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="1022" d="M88 510l6 40q40 251 186.5 402t357.5 150q199 0 294 -133.5t60 -355.5l-25 -159h-598q-8 -115 37 -183t145 -68q84 0 149 20t141 61l49 -180q-69 -53 -175.5 -89t-229.5 -36q-213 0 -324 151t-73 380zM283 1280l33 204h257l-33 -204h-257zM408 652l2 -5h306l4 26 q15 97 -12.5 150.5t-105.5 53.5q-68 0 -118.5 -62.5t-75.5 -162.5zM750 1280l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xec;" horiz-adv-x="544" d="M40 0l216 1082h289l-216 -1082h-289zM131 1478l3 5h303l140 -266h-232z" />
<glyph unicode="&#xed;" horiz-adv-x="544" d="M40 0l216 1082h289l-216 -1082h-289zM293 1222l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xee;" horiz-adv-x="544" d="M40 0l216 1082h289l-216 -1082h-289zM88 1251l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xef;" horiz-adv-x="544" d="M40 0l216 1082h289l-216 -1082h-289zM76 1258l33 204h257l-33 -204h-257zM543 1258l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xf0;" horiz-adv-x="1145" d="M53 468q48 241 197 370t370 129q66 0 124 -24t99 -65l4 4q-1 81 -22 147t-59 117l-241 -128l-54 113l199 106q-28 18 -59.5 33.5t-65.5 28.5l133 218q75 -20 140.5 -55t119.5 -83l214 114l52 -113l-182 -97q80 -117 105 -275t-12 -347l-15 -76q-57 -285 -234.5 -445.5 t-403.5 -160.5q-209 0 -330 142.5t-79 346.5zM342 468q-24 -118 20.5 -191.5t148.5 -73.5q97 0 182.5 109.5t118.5 272.5l16 78v4q-23 38 -75 63t-129 25q-101 0 -179.5 -80.5t-102.5 -206.5z" />
<glyph unicode="&#xf1;" d="M15 0l216 1082h269l-17 -142q65 79 146 120.5t171 41.5q143 0 212 -104.5t26 -321.5l-135 -676h-289l135 675q23 116 -5.5 158t-110.5 42q-47 0 -91.5 -24t-81.5 -66l-157 -785h-288zM370 1322q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5 l142 -45q-16 -99 -82.5 -165t-152.5 -66q-61 0 -138.5 43.5t-126.5 43.5q-31 0 -58 -32.5t-34 -77.5z" />
<glyph unicode="&#xf2;" d="M81 530l3 21q40 252 188.5 401.5t375.5 149.5q217 0 323 -155.5t68 -395.5l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-217 0 -323 155t-67 396zM367 1499l3 5h303l140 -266h-232zM368 530q-25 -155 5 -241t133 -86q95 0 156 90.5t85 236.5l3 21q24 150 -6.5 238 t-131.5 88q-96 0 -157.5 -92t-83.5 -234z" />
<glyph unicode="&#xf3;" d="M81 530l3 21q40 252 188.5 401.5t375.5 149.5q217 0 323 -155.5t68 -395.5l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-217 0 -323 155t-67 396zM368 530q-25 -155 5 -241t133 -86q95 0 156 90.5t85 236.5l3 21q24 150 -6.5 238t-131.5 88q-96 0 -157.5 -92t-83.5 -234z M531 1243l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xf4;" d="M81 530l3 21q40 252 188.5 401.5t375.5 149.5q217 0 323 -155.5t68 -395.5l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-217 0 -323 155t-67 396zM324 1270l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223zM368 530q-25 -155 5 -241t133 -86 q95 0 156 90.5t85 236.5l3 21q24 150 -6.5 238t-131.5 88q-96 0 -157.5 -92t-83.5 -234z" />
<glyph unicode="&#xf5;" d="M81 530l3 21q40 252 188.5 401.5t375.5 149.5q217 0 323 -155.5t68 -395.5l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-217 0 -323 155t-67 396zM332 1322q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5l142 -45q-16 -99 -82.5 -165t-152.5 -66 q-61 0 -138.5 43.5t-126.5 43.5q-31 0 -58 -32.5t-34 -77.5zM368 530q-25 -155 5 -241t133 -86q95 0 156 90.5t85 236.5l3 21q24 150 -6.5 238t-131.5 88q-96 0 -157.5 -92t-83.5 -234z" />
<glyph unicode="&#xf6;" d="M81 530l3 21q40 252 188.5 401.5t375.5 149.5q217 0 323 -155.5t68 -395.5l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-217 0 -323 155t-67 396zM312 1279l33 204h257l-33 -204h-257zM368 530q-25 -155 5 -241t133 -86q95 0 156 90.5t85 236.5l3 21q24 150 -6.5 238 t-131.5 88q-96 0 -157.5 -92t-83.5 -234zM779 1279l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xf7;" horiz-adv-x="1097" d="M93 573l45 227h959l-45 -227h-959zM348 164l46 233h286l-46 -233h-286zM510 973l46 233h286l-46 -233h-286z" />
<glyph unicode="&#xf8;" d="M48 -141l145 222q-77 73 -106.5 189.5t-5.5 259.5l3 21q40 252 188.5 401.5t375.5 149.5q52 0 99 -10.5t88 -29.5l100 153h157l-151 -231q68 -75 93 -187t5 -246l-3 -21q-41 -253 -189.5 -402t-375.5 -149q-47 0 -89 8t-79 23l-99 -151h-156zM356 425.5q-2 -46.5 5 -76.5 l6 -2l330 505q-17 12 -38.5 18.5t-46.5 6.5q-96 0 -157.5 -92t-83.5 -234l-3 -21q-10 -58 -12 -104.5zM438 216q14 -7 30.5 -10t37.5 -3q95 0 156 90.5t85 236.5l3 21q6 44 8.5 82t0.5 63l-5 2z" />
<glyph unicode="&#xf9;" d="M99 429l130 653h287l-131 -655q-25 -126 -1 -173.5t94 -47.5q57 0 106.5 23t87.5 66l157 787h288l-216 -1082h-253l8 125q-62 -72 -139.5 -109t-168.5 -37q-149 0 -222 111.5t-27 338.5zM399 1478l3 5h303l140 -266h-232z" />
<glyph unicode="&#xfa;" d="M99 429l130 653h287l-131 -655q-25 -126 -1 -173.5t94 -47.5q57 0 106.5 23t87.5 66l157 787h288l-216 -1082h-253l8 125q-62 -72 -139.5 -109t-168.5 -37q-149 0 -222 111.5t-27 338.5zM563 1222l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xfb;" d="M99 429l130 653h287l-131 -655q-25 -126 -1 -173.5t94 -47.5q57 0 106.5 23t87.5 66l157 787h288l-216 -1082h-253l8 125q-62 -72 -139.5 -109t-168.5 -37q-149 0 -222 111.5t-27 338.5zM356 1251l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#xfc;" d="M99 429l130 653h287l-131 -655q-25 -126 -1 -173.5t94 -47.5q57 0 106.5 23t87.5 66l157 787h288l-216 -1082h-253l8 125q-62 -72 -139.5 -109t-168.5 -37q-149 0 -222 111.5t-27 338.5zM344 1258l33 204h257l-33 -204h-257zM811 1258l33 204h257l-33 -204h-257z" />
<glyph unicode="&#xfd;" horiz-adv-x="988" d="M-75 -414l77 213q10 -2 24 -4t25 -2q61 0 106.5 37.5t71.5 86.5l46 82l-137 1083h310l33 -628l-1 -35l6 -1l315 664h310l-653 -1244q-68 -117 -158 -196t-239 -79q-33 0 -63.5 6t-72.5 17zM515 1222l220 261h302l2 -6l-301 -260h-221z" />
<glyph unicode="&#xfe;" horiz-adv-x="1094" d="M-60 -416l83 416h-1l312 1560h288l-112 -560q52 49 112 75.5t126 26.5q175 0 260 -170t35 -420l-4 -21q-51 -255 -169 -383.5t-307 -128.5q-75 0 -135 28t-100 82l-18 -89l-83 -416h-287zM365 273q17 -36 54.5 -53t97.5 -17q89 0 147.5 75.5t86.5 212.5l4 21 q32 164 6.5 263.5t-119.5 99.5q-52 0 -98 -32t-83 -88z" />
<glyph unicode="&#xff;" horiz-adv-x="988" d="M-75 -414l77 213q10 -2 24 -4t25 -2q61 0 106.5 37.5t71.5 86.5l46 82l-137 1083h310l33 -628l-1 -35l6 -1l315 664h310l-653 -1244q-68 -117 -158 -196t-239 -79q-33 0 -63.5 6t-72.5 17zM296 1258l33 204h257l-33 -204h-257zM763 1258l33 204h257l-33 -204h-257z" />
<glyph unicode="&#x152;" horiz-adv-x="1863" d="M124 576l61 304q56 282 242 439.5t445 157.5q59 0 127 -6t136 -15h853l-45 -225h-645l-73 -366h552l-45 -225h-552l-83 -416h647l-45 -224h-855q-87 -10 -147.5 -15.5t-121.5 -5.5q-238 0 -370.5 168.5t-80.5 428.5zM411 576q-39 -194 17 -283t192 -89q41 0 88.5 3.5 t98.5 10.5l204 1019q-46 7 -92 11t-92 4q-124 0 -221.5 -96t-133.5 -274z" />
<glyph unicode="&#x153;" horiz-adv-x="1722" d="M103 530l4 21q51 258 204 404.5t381 146.5q98 0 174.5 -36.5t126.5 -103.5q73 69 163 104.5t193 35.5q193 0 286 -134.5t49 -354.5l-32 -159h-598q-14 -117 29 -184t144 -67q82 0 149 20.5t144 60.5l41 -180q-72 -53 -179.5 -89t-230.5 -36q-98 0 -176.5 36.5 t-128.5 104.5q-76 -70 -170.5 -105.5t-205.5 -35.5q-211 0 -313 156t-54 395zM385 288q27 -85 130 -85q92 0 158.5 91.5t95.5 235.5l4 21q30 154 3 240t-129 86q-92 0 -158.5 -93t-94.5 -233l-4 -21q-32 -157 -5 -242zM1101 652l2 -5h305l6 26q19 99 -6.5 151.5t-103.5 52.5 q-66 0 -119.5 -62.5t-83.5 -162.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1221" d="M215 1456h316l151 -650l6 -1l414 651h315l-650 -943l-102 -513h-287l106 532zM488 1601l33 204h257l-33 -204h-257zM955 1601l33 204h257l-33 -204h-257z" />
<glyph unicode="&#x2c6;" horiz-adv-x="970" d="M296 1252l6 26l316 240h163l223 -243l-5 -23h-227l-100 133l-153 -133h-223z" />
<glyph unicode="&#x2dc;" horiz-adv-x="939" d="M253 1272q15 97 81 165t152 68q49 0 133 -43.5t133 -43.5q30 0 59 32.5t37 78.5l142 -45q-16 -99 -82.5 -165t-152.5 -66q-61 0 -138.5 43.5t-126.5 43.5q-31 0 -58 -32.5t-34 -77.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="967" />
<glyph unicode="&#x2001;" horiz-adv-x="1935" />
<glyph unicode="&#x2002;" horiz-adv-x="967" />
<glyph unicode="&#x2003;" horiz-adv-x="1935" />
<glyph unicode="&#x2004;" horiz-adv-x="645" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="387" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="769" d="M131 510l45 225h531l-45 -225h-531z" />
<glyph unicode="&#x2011;" horiz-adv-x="769" d="M131 510l45 225h531l-45 -225h-531z" />
<glyph unicode="&#x2012;" horiz-adv-x="769" d="M131 510l45 225h531l-45 -225h-531z" />
<glyph unicode="&#x2013;" horiz-adv-x="1324" d="M202 601l60 228h1008l-60 -228h-1008z" />
<glyph unicode="&#x2014;" horiz-adv-x="1563" d="M187 601l74 228h1240l-74 -228h-1240z" />
<glyph unicode="&#x2018;" horiz-adv-x="393" d="M166 1015l38 192l228 353h140l-126 -352l-39 -193h-241z" />
<glyph unicode="&#x2019;" horiz-adv-x="393" d="M173 1016l125 349l39 195h243l-39 -194l-227 -350h-141z" />
<glyph unicode="&#x201a;" horiz-adv-x="395" d="M-90 -263l111 266l56 284h242l-53 -268l-200 -282h-156z" />
<glyph unicode="&#x201c;" horiz-adv-x="717" d="M166 1015l38 192l228 353h140l-126 -352l-39 -193h-241zM490 1015l38 192l228 353h140l-126 -352l-39 -193h-241z" />
<glyph unicode="&#x201d;" horiz-adv-x="725" d="M167 1016l125 349l39 195h243l-39 -194l-227 -350h-141zM497 1016l125 349l39 195h243l-39 -194l-227 -350h-141z" />
<glyph unicode="&#x201e;" horiz-adv-x="708" d="M-82 -225l111 268l51 255h226l-49 -243l-214 -280h-125zM246 -225l112 276l50 247h227l-49 -243l-214 -280h-126z" />
<glyph unicode="&#x2022;" horiz-adv-x="703" d="M187 716l18 90q21 106 94.5 167t177.5 61q98 0 150 -64.5t32 -163.5l-18 -90q-21 -107 -93.5 -166t-178.5 -59q-96 0 -149 63.5t-33 161.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1441" d="M57 0l51 256h286l-51 -256h-286zM503 0l51 256h286l-51 -256h-286zM943 0l51 256h286l-51 -256h-286z" />
<glyph unicode="&#x202f;" horiz-adv-x="387" />
<glyph unicode="&#x2039;" horiz-adv-x="607" d="M128 541l1 6l3 13l338 390h182l-299 -400l139 -399h-182z" />
<glyph unicode="&#x203a;" horiz-adv-x="587" d="M23 151l298 399l-138 400h183l181 -390l-2 -6h1l-3 -13l-337 -390h-183z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1052" d="M77 455l39 200h132l23 116h-132l41 200h133l3 13q43 223 209 358t400 135q52 0 107.5 -8.5t114.5 -22.5l-67 -229q-46 16 -96.5 25.5t-103.5 9.5q-98 0 -177 -80.5t-99 -185.5l-3 -15h387l-41 -200h-388l-23 -116h388l-39 -200h-388l-1 -8q-23 -111 22.5 -177.5 t154.5 -66.5q50 0 105.5 8.5t105.5 25.5l-24 -227q-58 -15 -116 -23t-116 -8q-215 0 -337.5 137t-82.5 331l1 8h-132z" />
<glyph unicode="&#x2122;" horiz-adv-x="1217" d="M280 1351l21 105h371l-21 -105h-117l-87 -434h-140l87 434h-114zM629 915l108 541h154l34 -360l6 -1l179 361h149l-108 -541h-125l53 268l-6 2l-146 -270h-69l-40 283l-6 1l-57 -284h-126z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1224" d="M92 0l175 877h-147l41 205h147l24 120q39 194 155.5 286.5t301.5 92.5q33 0 69 -5.5t78 -15.5l-67 -217q-20 4 -41 7t-48 3q-59 0 -102 -40t-57 -111l-24 -120h195l-41 -205h-195l-175 -877h-289zM731 0l312 1560h288l-312 -1560h-288z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1881" d="M92 0l175 877h-147l41 205h147l24 120q39 194 155.5 286.5t301.5 92.5q33 0 69 -5.5t78 -15.5l-67 -217q-20 4 -41 7t-48 3q-59 0 -102 -40t-57 -111l-24 -120h195l-41 -205h-195l-175 -877h-289zM780 0l175 877h-148l41 205h148l15 74q43 217 180.5 321t357.5 104 q68 0 140.5 -16t158.5 -44l-88 -230q-61 21 -115 33.5t-126 12.5q-87 0 -145 -47t-75 -134l-15 -74h193l-41 -205h-193l-175 -877h-288zM1388 0l216 1082h288l-216 -1082h-288z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1921" d="M92 0l175 877h-147l41 205h147l24 120q39 194 155.5 286.5t301.5 92.5q33 0 69 -5.5t78 -15.5l-67 -217q-20 4 -41 7t-48 3q-59 0 -102 -40t-57 -111l-24 -120h195l-41 -205h-195l-175 -877h-289zM789 0l175 877h-147l41 205h147l24 120q39 194 155.5 286.5t301.5 92.5 q33 0 69 -5.5t78 -15.5l-67 -217q-20 4 -41 7t-48 3q-59 0 -102 -40t-57 -111l-24 -120h195l-41 -205h-195l-175 -877h-289zM1428 0l312 1560h288l-312 -1560h-288z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-38" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="248" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="81" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="274" />
<hkern u1="F" u2="&#x201e;" k="274" />
<hkern u1="F" u2="&#x201a;" k="274" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="208" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="274" />
<hkern u1="F" u2="&#x2c;" k="274" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="52" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="297" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="33" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="50" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="84" />
<hkern u1="T" u2="&#xc6;" k="189" />
<hkern u1="T" u2="&#xbb;" k="146" />
<hkern u1="T" u2="&#xab;" k="148" />
<hkern u1="T" u2="w" k="47" />
<hkern u1="T" u2="r" k="65" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-24" />
<hkern u1="r" u2="f" k="-20" />
<hkern u1="t" u2="&#xf6;" k="30" />
<hkern u1="t" u2="&#xf5;" k="30" />
<hkern u1="t" u2="&#xf4;" k="30" />
<hkern u1="t" u2="&#xf3;" k="30" />
<hkern u1="t" u2="&#xf2;" k="30" />
<hkern u1="t" u2="o" k="30" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="81" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="81" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="81" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="81" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="81" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="81" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="m,n,p,ntilde" k="48" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="89" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="77" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="39" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="150" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="122" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="164" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="258" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="L" g2="T" k="205" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="24" />
<hkern g1="L" g2="V" k="206" />
<hkern g1="L" g2="W" k="93" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="279" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="14" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="123" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="178" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="404" />
<hkern g1="P" g2="X" k="51" />
<hkern g1="P" g2="Z" k="36" />
<hkern g1="P" g2="J" k="184" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="109" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="83" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="89" />
<hkern g1="T" g2="m,n,p,ntilde" k="89" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="79" />
<hkern g1="T" g2="s" k="76" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="65" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="82" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="258" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="272" />
<hkern g1="T" g2="J" k="216" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="215" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="157" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="143" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="156" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="150" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="63" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="231" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="152" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="17" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="20" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="173" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="167" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="40" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'robotobold_italic';
src: url('Roboto-BoldItalic-webfont.eot');
src: url('Roboto-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('Roboto-BoldItalic-webfont.woff') format('woff'),
url('Roboto-BoldItalic-webfont.ttf') format('truetype'),
url('Roboto-BoldItalic-webfont.svg#robotobold_italic') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'roboto_condensedregular';
}
</style>
<title>Roboto Condensed Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Condensed </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Condensed</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,644 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedregular" horiz-adv-x="995" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="446" />
<glyph unicode="&#xfb01;" horiz-adv-x="1025" d="M29 937v145h141v111q0 186 97.5 287t271.5 101q62 0 124.5 -15.5t135.5 -44.5l-31 -158q-50 22 -102 35.5t-113 13.5q-92 0 -136 -55t-44 -164v-111h183v-145h-183v-937h-203v937h-141zM692 0v1082h203v-1082h-203z" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="446" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="16" />
<glyph unicode="&#x9;" horiz-adv-x="16" />
<glyph unicode=" " horiz-adv-x="446" />
<glyph unicode="&#x09;" horiz-adv-x="446" />
<glyph unicode="&#xa0;" horiz-adv-x="446" />
<glyph unicode="!" horiz-adv-x="474" d="M136 0v204h204v-204h-204zM136 485v971h203v-971h-203z" />
<glyph unicode="&#x22;" horiz-adv-x="589" d="M83 1057l1 245v258h152v-249l-56 -254h-97zM354 1057l1 252v251h152v-249l-57 -254h-96z" />
<glyph unicode="#" horiz-adv-x="1069" d="M57 410v130h217l58 368h-211v132h231l66 416h138l-65 -416h192l66 416h138l-65 -416h179v-132h-200l-57 -368h194v-130h-214l-64 -410h-139l64 410h-192l-64 -410h-139l64 410h-197zM413 540h192l58 368h-193z" />
<glyph unicode="$" horiz-adv-x="1000" d="M93 432h202q0 -158 60.5 -226t149.5 -68q93 0 145.5 64t52.5 168q0 96 -47 158.5t-159 116.5q-179 70 -268 167.5t-89 269.5q0 163 86 267.5t233 123.5v212h131v-214q145 -24 228 -142.5t83 -314.5h-203q0 136 -48.5 219.5t-131.5 83.5q-87 0 -131.5 -65t-44.5 -168 q0 -98 45 -158t164 -117q179 -73 266.5 -169.5t87.5 -267.5q0 -168 -88.5 -269t-242.5 -120v-193h-130v193q-153 17 -252 126t-99 323z" />
<glyph unicode="%" horiz-adv-x="1350" d="M97 1099v77q0 128 72.5 214.5t197.5 86.5q126 0 198.5 -86.5t72.5 -214.5v-77q0 -128 -72 -213.5t-197 -85.5q-126 0 -199 85.5t-73 213.5zM240 1099q0 -74 33.5 -126.5t95.5 -52.5q60 0 93 52t33 127v77q0 75 -33.5 128t-94.5 53t-94 -53t-33 -128v-77zM309 176 l601 1138l104 -63l-601 -1138zM720 279v78q0 127 73 213.5t198 86.5q126 0 198.5 -86t72.5 -214v-78q0 -129 -72.5 -214.5t-196.5 -85.5q-126 0 -199.5 86t-73.5 214zM864 279q0 -74 34.5 -127t94.5 -53q63 0 94.5 51.5t31.5 128.5v78q0 76 -33.5 128t-94.5 52t-94 -52 t-33 -128v-78z" />
<glyph unicode="&#x26;" horiz-adv-x="1172" d="M67 383q0 121 62.5 213.5t185.5 188.5q-68 98 -101 177.5t-33 162.5q0 166 89.5 259t242.5 93q139 0 225 -89.5t86 -218.5q0 -96 -44 -168t-125 -137l-104 -86l293 -393l6 1q31 58 48.5 131.5t17.5 157.5h165q0 -131 -32 -240t-97 -195l179 -240h-237l-77 104 q-75 -61 -158 -93t-175 -32q-191 0 -304 111.5t-113 292.5zM272 388q0 -110 58 -182.5t160 -72.5q62 0 123 23.5t114 68.5l-320 433l-23 -19q-67 -72 -89.5 -134.5t-22.5 -116.5zM373 1127q0 -51 22.5 -105.5t66.5 -120.5l104 82q50 40 68.5 84t18.5 97q0 64 -38 110.5 t-102 46.5q-67 0 -103.5 -55.5t-36.5 -138.5z" />
<glyph unicode="'" horiz-adv-x="319" d="M82 1055l1 266v239h150v-226l-55 -279h-96z" />
<glyph unicode="(" horiz-adv-x="602" d="M117 574v16q0 379 130.5 660.5t283.5 372.5h6l37 -108q-112 -102 -193.5 -344t-81.5 -579v-20q0 -337 81.5 -578t193.5 -349l-37 -102h-6q-154 92 -284 369.5t-130 661.5z" />
<glyph unicode=")" horiz-adv-x="606" d="M25 -355q110 102 192.5 346t82.5 581v20q0 333 -84.5 578.5t-190.5 350.5l38 102h6q154 -91 287.5 -374t133.5 -659v-16q0 -380 -133 -660t-288 -371h-6z" />
<glyph unicode="*" horiz-adv-x="806" d="M32 1080l44 140l268 -119l-11 355h145l-12 -361l262 121l44 -141l-274 -100l179 -278l-118 -87l-162 295l-159 -289l-118 84l181 284z" />
<glyph unicode="+" horiz-adv-x="1023" d="M67 600v174h342v432h198v-432h342v-174h-342v-454h-198v454h-342z" />
<glyph unicode="," horiz-adv-x="397" d="M53 -271l59 302v183h189v-190l-127 -295h-121z" />
<glyph unicode="-" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="." horiz-adv-x="497" d="M137 0v203h204v-203h-204z" />
<glyph unicode="/" horiz-adv-x="693" d="M9 -125l482 1581h159l-482 -1581h-159z" />
<glyph unicode="0" horiz-adv-x="1002" d="M96 563v329q0 281 109 433t295 152t295.5 -152t109.5 -433v-329q0 -283 -108.5 -433.5t-294.5 -150.5q-187 0 -296.5 151t-109.5 433zM299 535q0 -198 52.5 -300t150.5 -102q97 0 149 101.5t52 300.5v386q0 198 -52.5 299t-150.5 101t-149.5 -101.5t-51.5 -298.5v-386z " />
<glyph unicode="1" horiz-adv-x="1000" d="M143 1234v131l487 92v-1459h-202v1255z" />
<glyph unicode="2" horiz-adv-x="1000" d="M82 1028q-4 189 107 319t304 130q178 0 281.5 -112.5t103.5 -297.5q0 -125 -63.5 -246.5t-184.5 -271.5l-275 -395h563v-154h-817v135l400 526q97 137 135.5 226.5t38.5 173.5q0 115 -48.5 187.5t-133.5 72.5q-107 0 -160.5 -80t-53.5 -218h-195z" />
<glyph unicode="3" horiz-adv-x="1000" d="M79 386l3 6h194q0 -115 57 -187t150 -72q98 0 153.5 69.5t55.5 197.5q0 136 -53 200.5t-160 64.5h-139v153h139q101 0 147.5 67.5t46.5 182.5q0 118 -48.5 185.5t-141.5 67.5q-85 0 -139.5 -67.5t-54.5 -177.5h-193l-3 6q-4 169 106 282t280 113q180 0 288 -107.5 t108 -303.5q0 -97 -51 -185.5t-145 -134.5q110 -41 163 -132.5t53 -211.5q0 -198 -116.5 -310.5t-298.5 -112.5q-170 0 -287.5 107.5t-113.5 299.5z" />
<glyph unicode="4" horiz-adv-x="1000" d="M56 456l529 1000h208v-959h156v-155h-156v-342h-202v342h-529zM256 497h335v665l-6 1l-20 -42z" />
<glyph unicode="5" horiz-adv-x="1000" d="M121 382l2 5l191 4q0 -124 52.5 -191t138.5 -67q99 0 149 87.5t50 242.5q0 146 -52 234.5t-149 88.5q-86 0 -128.5 -37.5t-59.5 -111.5l-175 17l70 802h653v-167h-484l-38 -432q37 38 86 62.5t112 26.5q172 2 270 -127.5t98 -353.5q0 -217 -102.5 -351.5t-299.5 -134.5 q-164 0 -276 104t-108 299z" />
<glyph unicode="6" horiz-adv-x="1000" d="M107 558v316q0 271 135 437t339 166q66 0 127 -17t111 -46l-39 -149q-45 27 -91 41t-107 14q-122 0 -197.5 -117.5t-75.5 -314.5v-41q50 57 118 88.5t149 31.5q165 0 260.5 -136t95.5 -349q0 -220 -110 -361.5t-288 -141.5q-187 0 -307 153t-120 426zM309 546 q0 -196 63 -305t162 -109q90 0 143 101.5t53 248.5q0 148 -54.5 242t-149.5 94q-77 0 -132.5 -37t-84.5 -101v-134z" />
<glyph unicode="7" horiz-adv-x="1000" d="M66 1300v156h850v-156q-209 -278 -286.5 -532.5t-109.5 -628.5l-13 -139h-202l12 139q33 352 131.5 634t270.5 527h-653z" />
<glyph unicode="8" horiz-adv-x="1000" d="M89 392q0 123 63 216.5t171 138.5q-94 42 -148 128.5t-54 200.5q0 191 104 296t274 105q169 0 275 -105t106 -296q0 -115 -55 -201.5t-149 -128.5q107 -45 170.5 -138.5t63.5 -215.5q0 -200 -113.5 -306.5t-295.5 -106.5q-185 0 -298.5 106.5t-113.5 306.5zM292 399 q0 -125 56.5 -195.5t152.5 -70.5q91 0 149 71t58 195q0 120 -59 195.5t-150 75.5q-92 0 -149.5 -75t-57.5 -196zM324 1071q0 -113 48 -180t129 -67q79 0 127 67t48 180q0 110 -49 180t-128 70q-80 0 -127.5 -67.5t-47.5 -182.5z" />
<glyph unicode="9" horiz-adv-x="1000" d="M78 957q0 223 114.5 371.5t283.5 148.5q189 0 303.5 -144t114.5 -415v-380q0 -266 -126 -412.5t-325 -146.5q-62 0 -130 15.5t-126 44.5l27 148q53 -29 107.5 -41.5t121.5 -12.5q111 0 179.5 102.5t68.5 295.5v71q-42 -71 -103 -107.5t-133 -36.5q-174 0 -275.5 134.5 t-101.5 364.5zM281 957q0 -154 51.5 -250.5t143.5 -96.5q78 0 132.5 44.5t82.5 114.5v169q0 188 -56 285.5t-156 97.5q-85 0 -141.5 -105t-56.5 -259z" />
<glyph unicode=":" horiz-adv-x="476" d="M137 0v203h204v-203h-204zM137 878v203h204v-203h-204z" />
<glyph unicode=";" horiz-adv-x="470" d="M91 -271l59 302v183h189v-190l-127 -295h-121zM134 879v203h204v-203h-204z" />
<glyph unicode="&#x3c;" horiz-adv-x="898" d="M61 477v151l711 374v-192l-496 -243l-64 -14v-6l64 -14l496 -240v-192z" />
<glyph unicode="=" horiz-adv-x="1003" d="M130 390v160h732v-160h-732zM130 808v160h732v-160h-732z" />
<glyph unicode="&#x3e;" horiz-adv-x="916" d="M114 101v189l516 247l63 13v6l-63 15l-516 243v188l731 -374v-151z" />
<glyph unicode="?" horiz-adv-x="857" d="M49 1109q-3 173 100.5 270.5t266.5 97.5q177 0 277.5 -105t100.5 -286q0 -130 -60.5 -236t-160.5 -209q-49 -51 -61.5 -97.5t-12.5 -135.5h-203q1 133 28 191t121 151q71 90 108.5 162.5t37.5 170.5q0 110 -45.5 171.5t-129.5 61.5q-70 0 -120 -56.5t-50 -156.5h-195z M295 0v198h208v-198h-208z" />
<glyph unicode="@" horiz-adv-x="1635" d="M89 478q16 425 223 684.5t544 259.5q340 0 520 -245t166 -668q-8 -216 -109.5 -373t-301.5 -157q-69 0 -118 45t-68 127q-43 -86 -104 -128.5t-142 -42.5q-119 0 -182.5 120t-47.5 316q21 255 125 409.5t252 154.5q96 0 154.5 -26.5t128.5 -80.5l-3 -3h5l-46 -577 q-7 -115 17 -157.5t63 -42.5q108 0 172.5 117t72.5 299q15 376 -124.5 586t-433.5 210q-272 0 -438.5 -227t-178.5 -600q-16 -370 132.5 -590.5t425.5 -220.5q77 0 157 21t136 55l32 -107q-59 -42 -150.5 -65.5t-178.5 -23.5q-343 0 -529.5 249.5t-170.5 681.5zM637 416 q-10 -142 18.5 -221.5t92.5 -79.5q56 0 102 31t83 112v14.5t2 20.5l42 536q-24 11 -49 17.5t-51 6.5q-106 0 -164.5 -109t-75.5 -328z" />
<glyph unicode="A" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM386 529h371l-182 636h-6z" />
<glyph unicode="B" horiz-adv-x="1122" d="M141 0v1456h406q206 0 321.5 -98t115.5 -294q0 -104 -52.5 -183.5t-145.5 -116.5q118 -26 181.5 -123.5t63.5 -228.5q0 -201 -113.5 -306.5t-313.5 -105.5h-463zM344 154h260q108 0 166.5 66.5t58.5 190.5q0 123 -50 195.5t-154 72.5h-281v-525zM344 825h223 q100 0 157 60.5t57 174.5q0 120 -59.5 180t-174.5 60h-203v-475z" />
<glyph unicode="C" horiz-adv-x="1084" d="M94 525v404q0 258 126.5 403t337.5 145q214 0 329 -117t118 -342l-3 -6h-192q-3 159 -63 234t-189 75q-125 0 -194 -101t-69 -288v-407q0 -190 70.5 -291t198.5 -101q126 0 184.5 73.5t60.5 235.5h193l3 -6q-1 -218 -116 -337.5t-325 -119.5q-214 0 -342 144t-128 402z " />
<glyph unicode="D" horiz-adv-x="1154" d="M141 0v1456h400q232 0 378.5 -175t146.5 -450v-207q0 -276 -146.5 -450t-378.5 -174h-400zM344 154h190q153 0 241.5 131t88.5 339v209q0 206 -88.5 336.5t-241.5 130.5h-190v-1146z" />
<glyph unicode="E" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829z" />
<glyph unicode="F" horiz-adv-x="1020" d="M141 0v1456h831v-156h-628v-498h541v-155h-541v-647h-203z" />
<glyph unicode="G" horiz-adv-x="1198" d="M102 514v432q0 253 133 392t353 139q223 0 341 -112.5t126 -315.5l-2 -6h-192q-5 136 -71.5 207t-198.5 71q-133 0 -210 -95.5t-77 -277.5v-434q0 -186 82.5 -283.5t224.5 -97.5q104 0 161.5 35.5t85.5 90.5v331h-249v147h452v-530q-50 -88 -162.5 -158t-287.5 -70 q-229 0 -369 139t-140 396z" />
<glyph unicode="H" horiz-adv-x="1246" d="M141 0v1456h203v-659h558v659h202v-1456h-202v642h-558v-642h-203z" />
<glyph unicode="I" horiz-adv-x="513" d="M155 0v1456h202v-1456h-202z" />
<glyph unicode="J" horiz-adv-x="989" d="M63 402l3 6h195q0 -138 53.5 -206.5t146.5 -68.5q82 0 136 77t54 207v1039h202v-1039q0 -201 -110 -319.5t-282 -118.5q-185 0 -293 107q-105 104 -105 301v15z" />
<glyph unicode="K" horiz-adv-x="1131" d="M141 0v1456h203v-640h121l385 640h242l-458 -691l493 -765h-248l-396 653h-139v-653h-203z" />
<glyph unicode="L" horiz-adv-x="951" d="M141 0v1456h203v-1302h568v-154h-771z" />
<glyph unicode="M" horiz-adv-x="1483" d="M136 0v1456h261l340 -1188h6l341 1188h262v-1456h-201v559l18 560l-6 1l-350 -1120h-134l-349 1119l-6 -1l19 -559v-559h-201z" />
<glyph unicode="N" horiz-adv-x="1247" d="M141 0v1456h203l552 -1080l6 2v1078h202v-1456h-202l-552 1083l-6 -2v-1081h-203z" />
<glyph unicode="O" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5 t-73 -288.5v-403z" />
<glyph unicode="P" horiz-adv-x="1132" d="M141 0v1456h478q204 0 320 -121.5t116 -319.5q0 -199 -116 -320t-320 -121h-275v-574h-203zM344 730h275q115 0 174 80.5t59 202.5q0 124 -58.5 205.5t-174.5 81.5h-275v-570z" />
<glyph unicode="Q" horiz-adv-x="1212" d="M93 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -129 -35 -231t-99 -172l220 -234l-132 -111l-226 245q-50 -23 -105.5 -34t-115.5 -11q-222 0 -353 144.5t-131 403.5zM294 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403 q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403z" />
<glyph unicode="R" horiz-adv-x="1162" d="M141 0v1455h453q207 0 320 -107t113 -307q0 -114 -52.5 -199t-151.5 -133q109 -37 157.5 -125.5t48.5 -218.5v-127q0 -67 13.5 -124.5t46.5 -90.5v-23h-209q-34 33 -43.5 99.5t-9.5 140.5v123q0 122 -55.5 193t-152.5 71h-275v-627h-203zM344 782h240q123 0 181.5 66.5 t58.5 188.5q0 125 -57 194t-173 69h-250v-518z" />
<glyph unicode="S" horiz-adv-x="1087" d="M83 420l2 6h195q0 -150 78.5 -222t205.5 -72q114 0 178.5 63.5t64.5 170.5q0 103 -58 169t-203 116q-208 63 -319 164.5t-111 268.5q0 172 123.5 282.5t317.5 110.5q201 1 325 -127q120 -124 120 -297v-11l-2 -6h-195q0 127 -65.5 206.5t-184.5 79.5q-113 0 -174.5 -66.5 t-61.5 -169.5q0 -93 66 -156.5t218 -115.5q199 -62 303 -169t104 -277q0 -179 -123 -284t-323 -105q-194 -1 -340 115q-141 112 -141 312v14z" />
<glyph unicode="T" horiz-adv-x="1018" d="M35 1300v156h949v-156h-374v-1300h-203v1300h-372z" />
<glyph unicode="U" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347z" />
<glyph unicode="V" horiz-adv-x="1119" d="M24 1456h216l296 -1134l20 -85h6l21 84l297 1135h215l-438 -1456h-196z" />
<glyph unicode="W" horiz-adv-x="1551" d="M41 1456h199l197 -1038h6l248 1038h161l251 -1038h6l196 1038h199l-294 -1456h-187l-247 1034h-6l-249 -1034h-187z" />
<glyph unicode="X" horiz-adv-x="1112" d="M48 0l388 735l-378 721h237l258 -568h6l260 568h239l-379 -721l395 -735h-243l-269 582h-6l-268 -582h-240z" />
<glyph unicode="Y" horiz-adv-x="1100" d="M23 1456h227l297 -707h6l298 707h225l-428 -932v-524h-202v537z" />
<glyph unicode="Z" horiz-adv-x="1010" d="M79 0v125l621 1176h-617v155h836v-121l-624 -1181h644v-154h-860z" />
<glyph unicode="[" horiz-adv-x="503" d="M127 -319v1991h353v-153h-148v-1686h148v-152h-353z" />
<glyph unicode="\" horiz-adv-x="736" d="M25 1456h197l515 -1581h-197z" />
<glyph unicode="]" horiz-adv-x="503" d="M17 -167h150v1686h-150v153h355v-1991h-355v152z" />
<glyph unicode="^" horiz-adv-x="758" d="M53 729l253 727h145l252 -727h-170l-143 444l-10 48h-6l-10 -48l-140 -444h-171z" />
<glyph unicode="_" horiz-adv-x="793" d="M10 0h772v-152h-772v152z" />
<glyph unicode="`" horiz-adv-x="591" d="M80 1472l2 5h227l169 -266h-170z" />
<glyph unicode="a" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6v11q0 117 100 211q105 98 271 98q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="b" d="M116 0v1560h203v-592q42 65 102 99.5t139 34.5q171 0 264 -137.5t93 -366.5v-147q0 -215 -93 -343.5t-262 -128.5q-85 0 -148.5 37.5t-106.5 110.5l-15 -127h-176zM319 275q27 -66 75 -102.5t117 -36.5q107 0 155.5 85t48.5 230v147q0 156 -49.5 251t-156.5 95 q-68 0 -115.5 -40.5t-74.5 -108.5v-520z" />
<glyph unicode="c" horiz-adv-x="921" d="M75 465v149q0 212 107.5 350t308.5 138q165 0 267 -110q100 -106 99 -273v-10l-3 -6h-182q0 108 -49.5 175.5t-131.5 67.5q-116 0 -164.5 -94t-48.5 -238v-149q0 -146 48.5 -239t165.5 -93q76 0 128 58.5t52 156.5h182l2 -6v-11q0 -146 -104 -247q-108 -105 -260 -105 q-202 0 -309.5 137t-107.5 349z" />
<glyph unicode="d" d="M78 507v21q0 259 93.5 416.5t263.5 157.5q76 0 135.5 -34t102.5 -98v590h202v-1560h-177l-15 124q-43 -71 -105.5 -108t-143.5 -37q-169 0 -262.5 144t-93.5 384zM281 507q0 -171 49 -271t155 -100q66 0 112.5 36t75.5 101v526q-29 67 -75.5 106t-110.5 39 q-106 0 -156 -115t-50 -301v-21z" />
<glyph unicode="e" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM284 644h381v41q0 115 -46 188t-135 73q-88 0 -141 -85.5 t-59 -216.5z" />
<glyph unicode="f" horiz-adv-x="623" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140z" />
<glyph unicode="g" horiz-adv-x="994" d="M78 451v133q0 233 95.5 375.5t265.5 142.5q82 0 144 -38.5t106 -111.5l15 130h175v-1077q0 -208 -110.5 -325t-308.5 -117q-68 0 -145.5 21t-138.5 57l43 152q51 -31 112 -48.5t127 -17.5q111 0 164.5 71t53.5 208v98q-43 -62 -102.5 -93.5t-136.5 -31.5 q-169 0 -264 129.5t-95 342.5zM281 451q0 -144 50 -229.5t157 -85.5q66 0 112.5 34t75.5 96v539q-30 64 -76 101.5t-110 37.5q-106 0 -157.5 -100t-51.5 -260v-133z" />
<glyph unicode="h" d="M113 0v1560h203v-623q45 78 111 121.5t147 43.5q146 0 227 -108t81 -332v-662h-203v664q0 149 -43.5 214.5t-129.5 65.5q-62 0 -110.5 -35.5t-79.5 -97.5v-811h-203z" />
<glyph unicode="i" horiz-adv-x="462" d="M129 0v1082h203v-1082h-203zM129 1366v194h203v-194h-203z" />
<glyph unicode="j" horiz-adv-x="467" d="M-64 -419l11 155q16 -6 36.5 -10t38.5 -4q53 0 84 50.5t31 153.5v1156h203v-1156q0 -174 -78.5 -268.5t-219.5 -94.5q-30 0 -54 4.5t-52 13.5zM137 1366v194h203v-194h-203z" />
<glyph unicode="k" horiz-adv-x="922" d="M117 0v1560h202v-909h83l239 431h237l-314 -488l359 -594h-236l-282 496h-86v-496h-202z" />
<glyph unicode="l" horiz-adv-x="462" d="M129 0v1560h203v-1560h-203z" />
<glyph unicode="m" horiz-adv-x="1525" d="M116 0v1082h185l11 -147q44 80 112 123.5t159 43.5q89 0 153 -49.5t97 -150.5q42 94 112 147t166 53q138 0 217.5 -113.5t79.5 -345.5v-643h-203v644q0 166 -41 233t-121 67q-69 0 -115.5 -52.5t-67.5 -139.5q-1 8 1 -25.5t2 -48.5v-678h-202v644q0 161 -42 230.5 t-122 69.5q-64 0 -109 -35.5t-70 -98.5v-810h-202z" />
<glyph unicode="n" d="M114 0v1082h186l11 -160q45 85 114 132.5t156 47.5q142 0 221 -105t79 -326v-671h-203v669q0 151 -43 213t-130 62q-62 0 -110 -38.5t-78 -104.5v-801h-203z" />
<glyph unicode="o" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95 t-54 -242v-138z" />
<glyph unicode="p" d="M116 -416v1498h181l13 -124q43 69 105 106.5t144 37.5q169 0 263 -142t94 -376v-133q0 -214 -94 -343t-261 -129q-79 0 -139 31t-103 91v-517h-203zM319 259q27 -61 73 -93.5t113 -32.5q105 0 156.5 87.5t51.5 230.5v133q0 159 -52.5 259.5t-156.5 100.5q-65 0 -111 -37 t-74 -101v-547z" />
<glyph unicode="q" d="M78 451v133q0 234 94 376t263 142q79 0 139.5 -36t104.5 -104l15 120h176v-1498h-203v513q-43 -58 -101 -88t-132 -30q-169 0 -262.5 129t-93.5 343zM281 451q0 -144 49 -231t155 -87q63 0 108 32t74 91v561q-28 60 -73 94.5t-107 34.5q-106 0 -156 -100.5t-50 -261.5 v-133z" />
<glyph unicode="r" horiz-adv-x="633" d="M116 0v1082h185l15 -163q34 86 89 134.5t127 48.5q20 0 41 -3.5t33 -8.5l-24 -179l-95 5q-63 0 -104.5 -38t-63.5 -107v-771h-203z" />
<glyph unicode="s" horiz-adv-x="891" d="M69 318l2 6h189q4 -105 58 -151.5t134 -46.5q79 0 123.5 40.5t44.5 104.5q0 63 -41.5 106.5t-156.5 95.5q-167 65 -247.5 138.5t-80.5 190.5q0 125 98.5 212.5t258.5 87.5q167 0 266 -94q95 -91 95 -225v-11l-2 -6h-195q0 77 -43.5 132.5t-120.5 55.5q-76 0 -118.5 -43 t-42.5 -101q0 -62 36.5 -98t157.5 -94q170 -61 252.5 -138.5t82.5 -198.5q0 -134 -102 -218t-268 -84q-179 -1 -282 101q-98 97 -98 225v13z" />
<glyph unicode="t" horiz-adv-x="628" d="M32 937v145h141v269h202v-269h169v-145h-169v-644q0 -84 25 -119.5t65 -35.5q24 0 44.5 3t48.5 9l21 -140q-34 -14 -76.5 -22.5t-87.5 -8.5q-115 0 -178.5 75.5t-63.5 238.5v644h-141z" />
<glyph unicode="u" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351z" />
<glyph unicode="v" horiz-adv-x="892" d="M34 1082h210l186 -757l17 -84h6l17 84l184 757h209l-324 -1082h-179z" />
<glyph unicode="w" horiz-adv-x="1308" d="M41 1082h194l146 -725h6l192 725h146l195 -731h6l143 731h194l-248 -1082h-167l-194 719h-6l-191 -719h-168z" />
<glyph unicode="x" horiz-adv-x="892" d="M35 0l296 548l-287 534h230l166 -395h6l170 395h232l-287 -534l297 -548h-231l-177 408h-6l-178 -408h-231z" />
<glyph unicode="y" horiz-adv-x="892" d="M22 1082h220l178 -709l15 -71h6l208 780h221l-379 -1250q-38 -112 -103 -190.5t-187 -78.5q-25 0 -53.5 5.5t-56.5 12.5l22 150q11 -2 30 -4t30 -2q59 0 93.5 50.5t53.5 119.5l36 110z" />
<glyph unicode="z" horiz-adv-x="865" d="M76 0v128l474 797h-464v157h690v-126l-478 -802h499v-154h-721z" />
<glyph unicode="{" horiz-adv-x="594" d="M55 535v146q83 0 123.5 61.5t40.5 174.5v215q0 171 69.5 290.5t233.5 174.5l39 -114q-83 -36 -117.5 -126.5t-34.5 -224.5v-215q0 -106 -40 -186.5t-121 -122.5q81 -44 121 -125t40 -186v-212q0 -134 34.5 -223t118.5 -126l-40 -115q-164 55 -233.5 174.5t-69.5 289.5 v212q0 112 -40.5 175t-123.5 63z" />
<glyph unicode="|" horiz-adv-x="446" d="M155 -270v1726h137v-1726h-137z" />
<glyph unicode="}" horiz-adv-x="594" d="M30 -264q83 37 119 126.5t36 222.5v212q0 108 41 188.5t126 121.5q-85 40 -126 120.5t-41 189.5v215q0 133 -35.5 223.5t-118.5 127.5l40 114q163 -55 233 -174.5t70 -290.5v-215q0 -113 39.5 -174.5t124.5 -61.5v-146q-84 0 -124 -63t-40 -175v-212q0 -170 -70 -289.5 t-233 -174.5z" />
<glyph unicode="~" horiz-adv-x="1165" d="M108 466q0 141 72 239t185 98q72 0 135.5 -35.5t132.5 -105.5q44 -52 80.5 -75t77.5 -23q50 0 86.5 58t36.5 143l143 -20q0 -142 -74 -242.5t-185 -100.5q-73 0 -134.5 34t-131.5 108q-47 50 -83.5 74t-77.5 24q-51 0 -86 -56t-35 -140z" />
<glyph unicode="&#xa1;" horiz-adv-x="473" d="M129 869v213h205v-213h-205zM130 -374v970h203v-970h-203z" />
<glyph unicode="&#xa2;" horiz-adv-x="991" d="M97 465v149q0 186 84 317.5t244 162.5v224h163v-223q134 -25 215 -130.5t81 -261.5h-190q0 108 -49.5 175.5t-131.5 67.5q-116 0 -164.5 -94t-48.5 -238v-149q0 -146 48.5 -239t165.5 -93q76 0 128 58.5t52 156.5h183l3 -5q2 -133 -81.5 -232.5t-210.5 -124.5v-231h-163 v232q-160 30 -244 161t-84 317z" />
<glyph unicode="&#xa3;" horiz-adv-x="1034" d="M77 618v155h135l-8 263q0 205 98 323t263 118q175 0 270.5 -107t92.5 -282l-3 -6h-195q0 123 -46 181t-119 58t-115.5 -75t-42.5 -210l9 -263h328v-155h-322l5 -141q0 -93 -24 -177.5t-69 -145.5h629v-154h-832v154h7q42 13 63 113t21 206l-5 145h-140z" />
<glyph unicode="&#xa4;" horiz-adv-x="1290" d="M90 92l129 147q-48 78 -73.5 172t-25.5 197q0 107 27 203t79 176l-136 157l116 120l129 -149q67 57 146.5 88t166.5 31q86 0 165.5 -31.5t147.5 -89.5l132 152l116 -121l-139 -160q49 -81 76 -176.5t27 -199.5q0 -102 -25 -194.5t-71 -170.5l132 -151l-116 -119l-121 139 q-68 -64 -151 -98t-173 -34q-91 0 -173.5 33.5t-150.5 96.5l-118 -136zM273 608q0 -198 109.5 -336.5t265.5 -138.5q154 0 263 138.5t109 336.5q0 196 -109 334t-263 138q-156 0 -265.5 -138t-109.5 -334z" />
<glyph unicode="&#xa5;" horiz-adv-x="1070" d="M31 1456h226l273 -632h6l272 632h226l-350 -730h247v-155h-300v-137h300v-155h-300v-279h-203v279h-304v155h304v137h-304v155h256z" />
<glyph unicode="&#xa6;" horiz-adv-x="442" d="M123 -270v784h190v-784h-190zM123 698v758h190v-758h-190z" />
<glyph unicode="&#xa7;" horiz-adv-x="1091" d="M88 546q0 91 42 160.5t121 110.5q-67 50 -100 120.5t-33 171.5q0 166 116.5 267t310.5 101q201 0 313.5 -111.5t108.5 -312.5l-2 -6h-194q0 118 -60 196t-166 78q-112 0 -168 -59t-56 -151q0 -97 52.5 -147.5t216.5 -106.5q209 -66 305 -154.5t96 -258.5 q0 -93 -43.5 -162t-122.5 -108q68 -51 102.5 -120.5t34.5 -171.5q0 -172 -115.5 -269t-310.5 -97q-191 0 -320 101.5t-124 320.5l2 6l194 2q0 -144 72.5 -209.5t175.5 -65.5q104 0 163.5 58.5t59.5 150.5q0 90 -56.5 140.5t-214.5 108.5q-205 64 -302.5 154.5t-97.5 262.5z M291 556q0 -101 52.5 -152.5t218.5 -111.5q29 -10 58 -20.5t58 -20.5q53 22 83 70t30 113q0 92 -58 146.5t-217 116.5q-36 10 -66.5 20.5t-56.5 22.5q-52 -22 -77 -70t-25 -114z" />
<glyph unicode="&#xa8;" horiz-adv-x="940" d="M151 1271v185h208v-185h-208zM580 1271v185h207v-185h-207z" />
<glyph unicode="&#xa9;" horiz-adv-x="1440" d="M88 729q0 315 182.5 531t444.5 216q261 0 444.5 -216t183.5 -531q0 -316 -184 -533t-444 -217q-261 0 -444 217t-183 533zM190 729q0 -271 153.5 -457t371.5 -186t371.5 186t153.5 457q0 268 -153.5 453t-371.5 185q-219 0 -372 -185t-153 -453zM397 669v119 q0 173 83 280t224 107q137 0 214.5 -79.5t74.5 -228.5l-3 -6h-121q0 102 -42 150t-123 48q-86 0 -132.5 -75t-46.5 -195v-120q0 -123 46.5 -197.5t132.5 -74.5q82 0 123 47t41 152h121l3 -6q3 -150 -74 -229t-214 -79q-141 0 -224 106.5t-83 280.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="788" d="M107 919q0 109 71 168t208 59h118v56q0 71 -25.5 110t-75.5 39q-58 0 -90 -31.5t-32 -88.5l-133 12l-1 6q-5 98 66.5 163t189.5 65q112 0 178 -71t66 -205v-315q0 -51 5 -95t17 -86h-144q-7 22 -11.5 47t-7.5 53q-27 -50 -74.5 -82t-113.5 -32q-100 0 -155.5 61.5 t-55.5 166.5zM249 923q0 -53 25.5 -81.5t77.5 -28.5q45 0 91 33t61 73v124h-117q-66 0 -102 -35.5t-36 -84.5z" />
<glyph unicode="&#xab;" horiz-adv-x="857" d="M81 507v19l243 384h139l-210 -394l210 -394h-139zM387 507v19l243 384h139l-210 -394l210 -394h-139z" />
<glyph unicode="&#xac;" horiz-adv-x="972" d="M115 649v143h704v-414h-162v271h-542z" />
<glyph unicode="&#xad;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#xae;" horiz-adv-x="1441" d="M87 729q0 315 183 531t445 216q261 0 444 -216t183 -531q0 -316 -183.5 -533t-443.5 -217q-262 0 -445 217t-183 533zM189 729q0 -271 153.5 -457t372.5 -186q217 0 370.5 186t153.5 457q0 268 -153.5 453t-370.5 185q-219 0 -372.5 -185t-153.5 -453zM459 316v850h245 q133 0 209 -65.5t76 -189.5q0 -63 -29.5 -109.5t-85.5 -77.5q58 -27 84.5 -80.5t26.5 -128.5v-56q0 -42 3 -74t11 -53v-16h-129q-8 21 -9.5 61.5t-1.5 82.5v54q0 76 -30.5 111t-99.5 35h-144v-344h-126zM585 776h131q62 0 105 35t43 97q0 77 -36 110t-124 33h-119v-275z" />
<glyph unicode="&#xaf;" horiz-adv-x="879" d="M125 1324v132h635v-132h-635z" />
<glyph unicode="&#xb0;" horiz-adv-x="706" d="M122 1216q0 106 68.5 183.5t164.5 77.5q93 0 161 -77.5t68 -183.5q0 -108 -67.5 -182.5t-161.5 -74.5q-96 0 -164.5 74.5t-68.5 182.5zM239 1216q0 -59 33.5 -98.5t82.5 -39.5q47 0 79.5 39t32.5 99t-32.5 100.5t-79.5 40.5q-49 0 -82.5 -40.5t-33.5 -100.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="986" d="M90 716v157h320v407h182v-407h308v-157h-308v-414h-182v414h-320zM123 21v155h706v-155h-706z" />
<glyph unicode="&#xb2;" horiz-adv-x="745" d="M106 1236q-5 100 67.5 171.5t194.5 71.5q117 0 182.5 -63t65.5 -179q0 -78 -43.5 -140.5t-141.5 -159.5l-122 -144l2 -5h311v-121h-513v121l260 267q55 60 72 99t17 84q0 53 -22.5 85.5t-69.5 32.5q-53 0 -80.5 -35t-27.5 -91h-150z" />
<glyph unicode="&#xb3;" horiz-adv-x="747" d="M97 885l2 6h149q0 -52 30 -83.5t84 -31.5q55 0 87.5 31t32.5 85q0 64 -31 94.5t-91 30.5h-102v113h102q56 0 83 30t27 85q0 48 -27.5 79t-81.5 31q-48 0 -75.5 -27.5t-27.5 -72.5h-148l-2 6q-6 97 67.5 157t183.5 60q124 0 196.5 -59.5t72.5 -168.5q0 -56 -30.5 -102 t-83.5 -72q60 -23 92.5 -71t32.5 -117q0 -110 -75.5 -171.5t-200.5 -61.5q-116 0 -193.5 59t-72.5 171z" />
<glyph unicode="&#xb4;" horiz-adv-x="615" d="M112 1212l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xb5;" horiz-adv-x="1042" d="M132 -416v1498h202v-626q0 -185 43.5 -253.5t126.5 -68.5q75 0 122 36t73 105v807h202v-1082h-186l-6 88q-38 -53 -89.5 -81t-116.5 -28q-53 0 -94.5 15t-74.5 49v-459h-202z" />
<glyph unicode="&#xb6;" horiz-adv-x="896" d="M62 988q0 207 109.5 337.5t306.5 130.5h275v-1456h-203v520h-72q-197 0 -306.5 129.5t-109.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="505" d="M143 606v214h205v-214h-205z" />
<glyph unicode="&#xb8;" horiz-adv-x="464" d="M100 -132l26 134h150l-10 -58q56 -10 92.5 -50.5t36.5 -121.5q0 -98 -72.5 -156t-205.5 -58l-6 113q53 0 85.5 25t32.5 76q0 50 -29 69.5t-100 26.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="491" d="M92 1328v126l268 23v-812h-159v666z" />
<glyph unicode="&#xba;" horiz-adv-x="806" d="M109 1025v117q0 148 79.5 241.5t211.5 93.5q133 0 212 -93.5t79 -241.5v-117q0 -149 -78.5 -241.5t-210.5 -92.5q-134 0 -213.5 92.5t-79.5 241.5zM252 1025q0 -95 38 -153t112 -58q71 0 109 58t38 153v117q0 92 -38.5 150.5t-110.5 58.5t-110 -58.5t-38 -150.5v-117z " />
<glyph unicode="&#xbb;" horiz-adv-x="857" d="M85 155l209 395l-209 396h139l243 -386v-19l-243 -386h-139zM402 155l209 395l-209 396h139l243 -386v-19l-243 -386h-139z" />
<glyph unicode="&#xbc;" horiz-adv-x="1318" d="M134 1327v126l268 23v-812h-159v666zM254 184l601 1138l104 -63l-601 -1138zM639 250l358 551h158v-524h98v-122h-98v-155h-157v155h-351zM804 277h194v321l-6 1l-11 -19z" />
<glyph unicode="&#xbd;" horiz-adv-x="1383" d="M127 1327v126l268 23v-812h-159v666zM258 184l601 1138l104 -63l-601 -1138zM752 569q-5 100 67.5 171.5t194.5 71.5q117 0 182.5 -63t65.5 -179q0 -78 -43.5 -140.5t-141.5 -159.5l-122 -144l2 -5h311v-121h-513v121l260 267q55 60 72 99t17 84q0 53 -22.5 85.5 t-69.5 32.5q-53 0 -80.5 -35t-27.5 -91h-150z" />
<glyph unicode="&#xbe;" horiz-adv-x="1485" d="M100 886l2 6h149q0 -52 30 -83.5t84 -31.5q55 0 87.5 31t32.5 85q0 64 -31 94.5t-91 30.5h-102v113h102q56 0 83 30t27 85q0 48 -27.5 79t-81.5 31q-48 0 -75.5 -27.5t-27.5 -72.5h-148l-2 6q-6 97 67.5 157t183.5 60q124 0 196.5 -59.5t72.5 -168.5q0 -56 -30.5 -102 t-83.5 -72q60 -23 92.5 -71t32.5 -117q0 -110 -75.5 -171.5t-200.5 -61.5q-116 0 -193.5 59t-72.5 171zM425 184l601 1138l104 -63l-601 -1138zM799 250l358 551h158v-524h98v-122h-98v-155h-157v155h-351zM964 277h194v321l-6 1l-11 -19z" />
<glyph unicode="&#xbf;" horiz-adv-x="879" d="M87 -3q0 128 59.5 234t159.5 209q48 50 61.5 96.5t13.5 136.5h203q-2 -134 -29 -192t-121 -150q-72 -92 -108.5 -163.5t-36.5 -167.5q0 -110 45 -171.5t129 -61.5q70 0 120 56t51 157h195l2 -6q2 -173 -102 -270.5t-266 -97.5q-177 0 -276.5 104.5t-99.5 286.5zM377 883 v199h208v-199h-208z" />
<glyph unicode="&#xc0;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM291 1822l2 5h227l169 -266h-170zM386 529h371l-182 636h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM386 529h371l-182 636h-6zM486 1558l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xc2;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM305 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM386 529h371l-182 636h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM282 1630q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5zM386 529h371l-182 636h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM271 1617v185h208v-185h-208zM386 529h371l-182 636h-6zM700 1617v185h207v-185h-207z" />
<glyph unicode="&#xc5;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM386 529h371l-182 636h-6zM408 1734q0 78 53 131t128 53q74 0 126 -53t52 -131q0 -80 -51.5 -130.5t-126.5 -50.5q-76 0 -128.5 51t-52.5 130zM501 1734q0 -41 25.5 -68.5t62.5 -27.5q36 0 60 27t24 69 q0 43 -24 71t-60 28q-37 0 -62.5 -28.5t-25.5 -70.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1639" d="M3 0l703 1456h832v-157h-544l17 -467h458v-155h-453l18 -522h556v-155h-752l-13 361h-416l-164 -361h-242zM487 531h332l-24 665l-5 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1084" d="M94 525v404q0 258 126.5 403t337.5 145q214 0 329 -117t118 -342l-3 -6h-192q-3 159 -63 234t-189 75q-125 0 -194 -101t-69 -288v-407q0 -190 70.5 -291t198.5 -101q126 0 184.5 73.5t60.5 235.5h193l3 -6q-1 -218 -116 -337.5t-325 -119.5q-214 0 -342 144t-128 402z M459 -137l26 134h150l-10 -58q56 -10 92.5 -50.5t36.5 -121.5q0 -98 -72.5 -156t-205.5 -58l-6 113q53 0 85.5 25t32.5 76q0 50 -29 69.5t-100 26.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM231 1822l2 5h227l169 -266h-170z" />
<glyph unicode="&#xc9;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM426 1558l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xca;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM245 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xcb;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM211 1617v185h208v-185h-208zM640 1617v185h207v-185h-207z" />
<glyph unicode="&#xcc;" horiz-adv-x="513" d="M-39 1822l2 5h227l169 -266h-170zM155 0v1456h202v-1456h-202z" />
<glyph unicode="&#xcd;" horiz-adv-x="513" d="M154 1558l172 266h226l2 -5l-238 -261h-162zM155 0v1456h202v-1456h-202z" />
<glyph unicode="&#xce;" horiz-adv-x="513" d="M-25 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM155 0v1456h202v-1456h-202z" />
<glyph unicode="&#xcf;" horiz-adv-x="513" d="M-59 1617v185h208v-185h-208zM155 0v1456h202v-1456h-202zM370 1617v185h207v-185h-207z" />
<glyph unicode="&#xd0;" horiz-adv-x="1184" d="M44 670v141h127v645h400q232 0 378.5 -175t146.5 -450v-207q0 -276 -146.5 -450t-378.5 -174h-400v670h-127zM374 154h190q153 0 241.5 131t88.5 339v209q0 206 -88.5 336.5t-241.5 130.5h-190v-489h225v-141h-225v-516z" />
<glyph unicode="&#xd1;" horiz-adv-x="1247" d="M141 0v1456h203l552 -1080l6 2v1078h202v-1456h-202l-552 1083l-6 -2v-1081h-203zM316 1630q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM282 1843l2 5h227l169 -266h-170zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5 t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403z" />
<glyph unicode="&#xd3;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5 t-73 -288.5v-403zM477 1579l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xd4;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5 t-73 -288.5v-403zM296 1620v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xd5;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM273 1651q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49 t-113 49q-33 0 -56 -33.5t-23 -82.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403z" />
<glyph unicode="&#xd6;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM262 1638v185h208v-185h-208zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5 t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403zM691 1638v185h207v-185h-207z" />
<glyph unicode="&#xd7;" horiz-adv-x="977" d="M76 344l293 339l-291 336l125 119l280 -324l281 324l125 -119l-292 -336l295 -339l-125 -119l-284 326l-283 -326z" />
<glyph unicode="&#xd8;" horiz-adv-x="1202" d="M93 527v400q0 258 131.5 404t352.5 146q91 0 170 -26t141 -75l68 136h121l-110 -219q50 -70 76.5 -162.5t26.5 -203.5v-400q0 -259 -134 -403.5t-359 -144.5q-69 0 -129.5 14t-111.5 42l-63 -125h-120l95 189q-75 70 -115 178.5t-40 249.5zM294 527q0 -76 11 -136 t33 -100l6 -1l458 915q-38 55 -95 83.5t-130 28.5q-137 0 -210 -98.5t-73 -288.5v-403zM413 189q32 -27 73 -39.5t91 -12.5q140 0 215.5 98.5t75.5 291.5v403q0 37 -3.5 70.5t-8.5 58.5l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM284 1822l2 5h227l169 -266h-170z" />
<glyph unicode="&#xda;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM479 1558l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xdb;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM298 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xdc;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM264 1617v185h208v-185h-208zM693 1617v185h207v-185h-207z" />
<glyph unicode="&#xdd;" horiz-adv-x="1100" d="M23 1456h227l297 -707h6l298 707h225l-428 -932v-524h-202v537zM450 1554l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xde;" horiz-adv-x="1055" d="M133 0v1456h203v-290h211q205 0 319.5 -119t114.5 -309q0 -192 -114.5 -310.5t-319.5 -118.5h-211v-309h-203zM336 464h211q116 0 173.5 79t57.5 193q0 115 -57.5 195t-173.5 80h-211v-547z" />
<glyph unicode="&#xdf;" horiz-adv-x="1079" d="M124 0v1088q0 215 103 335t275 120q143 0 236 -86.5t93 -246.5q0 -111 -49.5 -215.5t-49.5 -173.5q0 -76 136.5 -218t136.5 -283q0 -170 -93 -255.5t-259 -85.5q-69 0 -140 20t-104 50l40 154q35 -28 87 -49.5t106 -21.5q79 0 120.5 49.5t41.5 131.5q0 86 -137.5 226 t-137.5 280q0 88 52 194.5t52 184.5q0 85 -41 138t-94 53q-78 0 -125 -79.5t-47 -223.5v-1086h-202z" />
<glyph unicode="&#xe0;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM174 1500l2 5h227l169 -266h-170zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5zM369 1236l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xe2;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM188 1277v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM165 1308q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221 h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM154 1295v185h208v-185h-208zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5zM583 1295v185h207v-185h-207z" />
<glyph unicode="&#xe5;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5zM291 1412q0 78 53 131t128 53q74 0 126 -53t52 -131q0 -80 -51.5 -130.5t-126.5 -50.5q-76 0 -128.5 51t-52.5 130zM384 1412 q0 -41 25.5 -68.5t62.5 -27.5q36 0 60 27t24 69q0 43 -24 71t-60 28q-37 0 -62.5 -28.5t-25.5 -70.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1479" d="M53 304q0 158 102.5 246t297.5 88h176v78q0 109 -40 169.5t-114 60.5q-80 0 -126.5 -54.5t-46.5 -134.5l-194 16l-2 6q-5 139 97.5 231t272.5 92q92 0 164.5 -33.5t119.5 -97.5q53 63 124.5 97t156.5 34q179 0 278.5 -128.5t99.5 -350.5v-124h-583q1 -166 61 -266 t185 -100q83 0 139 26.5t119 76.5l59 -132q-47 -48 -133 -86.5t-198 -38.5t-198.5 45t-142.5 129q-49 -75 -139 -124.5t-215 -49.5q-153 0 -236.5 87t-83.5 238zM256 300q0 -80 39 -126.5t118 -46.5q57 0 119.5 40t96.5 92v242h-174q-94 0 -146.5 -58.5t-52.5 -142.5z M839 639h380v30q0 124 -44 200.5t-134 76.5q-91 0 -141.5 -84t-60.5 -223z" />
<glyph unicode="&#xe7;" horiz-adv-x="921" d="M75 465v149q0 212 107.5 350t308.5 138q164 0 266.5 -109.5t99.5 -283.5l-3 -6h-182q0 108 -49.5 175.5t-131.5 67.5q-116 0 -164.5 -94t-48.5 -238v-149q0 -146 48.5 -239t165.5 -93q76 0 128 58.5t52 156.5h182l2 -6q4 -153 -103.5 -258t-260.5 -105q-202 0 -309.5 137 t-107.5 349zM372 -137l26 134h150l-10 -58q56 -10 92.5 -50.5t36.5 -121.5q0 -98 -72.5 -156t-205.5 -58l-6 113q53 0 85.5 25t32.5 76q0 50 -29 69.5t-100 26.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM177 1501l2 5h227l169 -266h-170zM284 644h381v41 q0 115 -46 188t-135 73q-88 0 -141 -85.5t-59 -216.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM284 644h381v41q0 115 -46 188t-135 73q-88 0 -141 -85.5 t-59 -216.5zM372 1237l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xea;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM191 1278v23l222 232h122l226 -233v-22h-164l-123 151 l-122 -151h-161zM284 644h381v41q0 115 -46 188t-135 73q-88 0 -141 -85.5t-59 -216.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM157 1296v185h208v-185h-208zM284 644h381v41q0 115 -46 188 t-135 73q-88 0 -141 -85.5t-59 -216.5zM586 1296v185h207v-185h-207z" />
<glyph unicode="&#xec;" horiz-adv-x="468" d="M-64 1479l2 5h227l169 -266h-170zM129 0v1082h203v-1082h-203z" />
<glyph unicode="&#xed;" horiz-adv-x="468" d="M129 0v1082h203v-1082h-203zM129 1215l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xee;" horiz-adv-x="468" d="M-50 1256v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM129 0v1082h203v-1082h-203z" />
<glyph unicode="&#xef;" horiz-adv-x="468" d="M-84 1274v185h208v-185h-208zM129 0v1082h203v-1082h-203zM345 1274v185h207v-185h-207z" />
<glyph unicode="&#xf0;" horiz-adv-x="1039" d="M60 462q0 230 114.5 368t303.5 138q69 0 130 -27t104 -73l4 4q-16 94 -50.5 173t-82.5 142l-218 -146l-64 94l202 135q-35 28 -71.5 50.5t-73.5 39.5l63 157q66 -25 126.5 -60.5t112.5 -81.5l195 130l63 -94l-179 -120q97 -120 150 -285t53 -369v-87q0 -251 -127 -411 t-318 -160q-192 0 -314.5 138.5t-122.5 344.5zM263 462q0 -132 64.5 -230t172.5 -98t173.5 117t65.5 299v89q0 7 -0.5 21.5t-0.5 21.5q-30 58 -91.5 96.5t-148.5 38.5q-110 0 -172.5 -101t-62.5 -254z" />
<glyph unicode="&#xf1;" d="M114 0v1082h186l11 -160q45 85 114 132.5t156 47.5q142 0 221 -105t79 -326v-671h-203v669q0 151 -43 213t-130 62q-62 0 -110 -38.5t-78 -104.5v-801h-203zM189 1308q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155 t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5z" />
<glyph unicode="&#xf2;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM201 1500l2 5h227l169 -266h-170zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5 t-163.5 95.5q-110 0 -164 -95t-54 -242v-138z" />
<glyph unicode="&#xf3;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95 t-54 -242v-138zM396 1236l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xf4;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM215 1277v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM279 471q0 -148 54 -243t165 -95 q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95t-54 -242v-138z" />
<glyph unicode="&#xf5;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM192 1308q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63 q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95t-54 -242v-138z" />
<glyph unicode="&#xf6;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM181 1295v185h208v-185h-208zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5 t-163.5 95.5q-110 0 -164 -95t-54 -242v-138zM610 1295v185h207v-185h-207z" />
<glyph unicode="&#xf7;" horiz-adv-x="1005" d="M64 608v171h858v-171h-858zM392 188v195h205v-195h-205zM392 995v195h205v-195h-205z" />
<glyph unicode="&#xf8;" horiz-adv-x="996" d="M76 471v138q0 215 112.5 354t308.5 139q45 0 87 -8.5t80 -24.5l60 144h121l-85 -204q76 -66 117 -170t41 -230v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-42 0 -80.5 7t-73.5 20l-60 -145h-121l83 200q-83 64 -126.5 170.5t-43.5 239.5zM279 471q0 -67 10 -122.5 t32 -91.5h6l273 659q-22 14 -48 22t-55 8q-110 0 -164 -95t-54 -242v-138zM406 155q20 -11 42.5 -16.5t49.5 -5.5q108 0 162.5 95t54.5 243v138q0 58 -9 108.5t-25 85.5l-6 1z" />
<glyph unicode="&#xf9;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM199 1479l2 5h227l169 -266h-170z" />
<glyph unicode="&#xfa;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM394 1215l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xfb;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM213 1256v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xfc;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM179 1274v185h208v-185h-208zM608 1274v185h207v-185h-207z" />
<glyph unicode="&#xfd;" horiz-adv-x="892" d="M22 1082h220l178 -709l15 -71h6l208 780h221l-379 -1250q-38 -112 -103 -190.5t-187 -78.5q-25 0 -53.5 5.5t-56.5 12.5l22 150q11 -2 30 -4t30 -2q59 0 93.5 50.5t53.5 119.5l36 110zM343 1215l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xfe;" horiz-adv-x="1006" d="M120 0v1560h203v-590q42 64 102.5 98t138.5 34q169 0 263 -142t94 -376v-133q0 -214 -94 -343t-261 -129q-79 0 -139 31t-103 91v-517h-203v416h-1zM324 259q27 -61 73 -93.5t113 -32.5q105 0 156.5 87.5t51.5 230.5v133q0 159 -52.5 259.5t-156.5 100.5q-65 0 -111 -37 t-74 -101v-547z" />
<glyph unicode="&#xff;" horiz-adv-x="892" d="M22 1082h220l178 -709l15 -71h6l208 780h221l-379 -1250q-38 -112 -103 -190.5t-187 -78.5q-25 0 -53.5 5.5t-56.5 12.5l22 150q11 -2 30 -4t30 -2q59 0 93.5 50.5t53.5 119.5l36 110zM130 1274v185h208v-185h-208zM559 1274v185h207v-185h-207z" />
<glyph unicode="&#x152;" horiz-adv-x="1681" d="M93 576v304q0 265 136 431t356 166q58 0 118.5 -6t128.5 -15h759v-156h-620v-469h540v-155h-540v-522h626v-154h-765q-78 -10 -133.5 -15.5t-112.5 -5.5q-219 0 -356 166t-137 431zM296 576q0 -210 77.5 -326t212.5 -116q46 0 92 3.5t90 10.5v1160q-45 6 -90.5 10 t-92.5 4q-135 0 -212 -115.5t-77 -324.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1584" d="M84 526v27q0 241 112 395t307 154q104 0 186.5 -46.5t138.5 -130.5q54 84 132.5 130.5t172.5 46.5q184 0 283 -129.5t99 -347.5v-126h-581q2 -161 62.5 -263.5t172.5 -102.5q85 0 144.5 26.5t114.5 77.5l64 -126q-51 -58 -137 -95t-199 -37q-104 0 -188 45.5t-140 129.5 q-55 -84 -137 -129.5t-186 -45.5q-197 0 -309 152.5t-112 394.5zM286 526q0 -172 54.5 -282.5t164.5 -110.5q108 0 162.5 110.5t54.5 282.5v27q0 170 -54.5 281.5t-164.5 111.5q-109 0 -163 -112t-54 -281v-27zM938 644h377v28q0 120 -46.5 197t-135.5 77q-80 0 -131.5 -84 t-63.5 -218z" />
<glyph unicode="&#x178;" horiz-adv-x="1100" d="M23 1456h227l297 -707h6l298 707h225l-428 -932v-524h-202v537zM235 1613v185h208v-185h-208zM664 1613v185h207v-185h-207z" />
<glyph unicode="&#x2c6;" horiz-adv-x="853" d="M137 1252v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#x2dc;" horiz-adv-x="841" d="M112 1276q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="959" />
<glyph unicode="&#x2001;" horiz-adv-x="1918" />
<glyph unicode="&#x2002;" horiz-adv-x="959" />
<glyph unicode="&#x2003;" horiz-adv-x="1918" />
<glyph unicode="&#x2004;" horiz-adv-x="639" />
<glyph unicode="&#x2005;" horiz-adv-x="479" />
<glyph unicode="&#x2006;" horiz-adv-x="319" />
<glyph unicode="&#x2007;" horiz-adv-x="319" />
<glyph unicode="&#x2008;" horiz-adv-x="239" />
<glyph unicode="&#x2009;" horiz-adv-x="383" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#x2011;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#x2012;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#x2013;" horiz-adv-x="1213" d="M150 649v155h918v-155h-918z" />
<glyph unicode="&#x2014;" horiz-adv-x="1425" d="M128 649v155h1130v-155h-1130z" />
<glyph unicode="&#x2018;" horiz-adv-x="360" d="M63 1040v182l133 338h100l-51 -339v-181h-182z" />
<glyph unicode="&#x2019;" horiz-adv-x="360" d="M67 1041l50 329v190h183v-188l-133 -331h-100z" />
<glyph unicode="&#x201a;" horiz-adv-x="358" d="M63 -239l50 265v239h183v-225l-126 -279h-107z" />
<glyph unicode="&#x201c;" horiz-adv-x="635" d="M63 1040v182l133 338h100l-51 -339v-181h-182zM337 1040v182l133 338h100l-51 -339v-181h-182z" />
<glyph unicode="&#x201d;" horiz-adv-x="642" d="M66 1041l50 329v190h183v-188l-133 -331h-100zM345 1041l50 329v190h183v-188l-133 -331h-100z" />
<glyph unicode="&#x201e;" horiz-adv-x="623" d="M63 -219l50 294v208h176v-199l-132 -303h-94zM333 -219l50 300v202h176v-199l-132 -303h-94z" />
<glyph unicode="&#x2022;" horiz-adv-x="644" d="M129 721v72q0 87 52.5 143t140.5 56q89 0 142 -56t53 -143v-72q0 -89 -52.5 -143.5t-140.5 -54.5q-89 0 -142 54.5t-53 143.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1240" d="M142 0v203h204v-203h-204zM528 0v203h204v-203h-204zM900 0v203h204v-203h-204z" />
<glyph unicode="&#x202f;" horiz-adv-x="383" />
<glyph unicode="&#x2039;" horiz-adv-x="547" d="M99 541v19l243 384h139l-210 -394l210 -394h-139z" />
<glyph unicode="&#x203a;" horiz-adv-x="538" d="M80 155l209 395l-209 396h139l243 -386v-19l-243 -386h-139z" />
<glyph unicode="&#x205f;" horiz-adv-x="479" />
<glyph unicode="&#x20ac;" horiz-adv-x="948" d="M71 491v155h126v141h-126v155h126v23q0 223 123 367.5t323 144.5q50 0 99 -8t106 -23l-17 -160q-45 16 -92.5 25.5t-95.5 9.5q-113 0 -178 -100.5t-65 -253.5v-25h391v-155h-391v-141h391v-155h-391v-9q0 -150 66 -249.5t178 -99.5q49 0 96 8.5t91 25.5l17 -157 q-48 -15 -100 -23t-104 -8q-200 0 -323.5 142t-123.5 361v9h-126z" />
<glyph unicode="&#x2122;" horiz-adv-x="1104" d="M92 1371v85h331v-85h-117v-453h-99v453h-115zM485 917v539h116l118 -392h6l119 392h110v-539h-92v318l-6 1l-108 -319h-52l-112 331h-6v-331h-93z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1085" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM752 0v1560h203v-1560h-203z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1648" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM652 937v145h141v111q0 186 97.5 287t271.5 101q62 0 124.5 -15.5t135.5 -44.5l-31 -158 q-50 22 -102 35.5t-113 13.5q-92 0 -136 -55t-44 -164v-111h183v-145h-183v-937h-203v937h-141zM1315 0v1082h203v-1082h-203z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1708" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM670 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149 q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM1375 0v1560h203v-1560h-203z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'roboto_condensedregular';
src: url('RobotoCondensed-Regular-webfont.eot');
src: url('RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('RobotoCondensed-Regular-webfont.woff') format('woff'),
url('RobotoCondensed-Regular-webfont.ttf') format('truetype'),
url('RobotoCondensed-Regular-webfont.svg#roboto_condensedregular') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'roboto_condenseditalic';
}
</style>
<title>Roboto Condensed Italic Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Condensed Italic </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Condensed Italic</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,644 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condenseditalic" horiz-adv-x="960" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="436" />
<glyph unicode="&#xfb01;" horiz-adv-x="992" d="M80 0l187 937h-134l29 145h134l23 111q39 198 150 293t283 95q56 0 115 -16t122 -44l-61 -158q-43 22 -90.5 35.5t-105.5 13.5q-82 0 -137 -56.5t-75 -162.5l-23 -111h171l-29 -145h-171l-187 -937h-201zM579 0l216 1082h201l-216 -1082h-201z" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="436" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="26" />
<glyph unicode="&#x9;" horiz-adv-x="26" />
<glyph unicode=" " horiz-adv-x="436" />
<glyph unicode="&#x09;" horiz-adv-x="436" />
<glyph unicode="&#xa0;" horiz-adv-x="436" />
<glyph unicode="!" horiz-adv-x="468" d="M50 0l41 204h200l-41 -204h-200zM146 485l194 971h201l-194 -971h-201z" />
<glyph unicode="&#x22;" horiz-adv-x="578" d="M181 1057l40 245l42 258h150l-40 -249l-97 -254h-95zM445 1057l41 252l41 251h149l-40 -249l-97 -254h-94z" />
<glyph unicode="#" horiz-adv-x="1028" d="M56 410l26 130h206l129 368h-200l26 132h220l145 416h136l-145 -416h178l145 416h136l-145 -416h169l-26 -132h-189l-128 -368h183l-26 -130h-203l-142 -410h-137l143 410h-178l-143 -410h-136l143 410h-187zM424 540h178l129 368h-178z" />
<glyph unicode="$" horiz-adv-x="965" d="M92 432h200q-26 -164 18 -229t129 -65q82 0 143 65t77 167q16 99 -17 159.5t-130 115.5q-160 70 -229.5 167.5t-41.5 269.5q27 169 125 271t242 120l34 212h129l-35 -215q130 -26 191 -145t31 -311h-201q22 141 -8.5 222t-107.5 81t-130.5 -66t-69.5 -167 q-16 -100 16 -158.5t134 -116.5q160 -73 228 -169.5t41 -267.5q-29 -175 -128.5 -273.5t-250.5 -115.5l-31 -193h-128l31 194q-138 19 -216.5 128.5t-44.5 319.5z" />
<glyph unicode="%" horiz-adv-x="1299" d="M232 1099l15 77q27 136 112.5 218.5t207.5 82.5q112 0 168.5 -88t31.5 -213l-15 -77q-28 -136 -112.5 -217.5t-206.5 -81.5q-113 0 -170 87t-31 212zM247 176l801 1138l89 -63l-799 -1138zM373 1099q-16 -79 4.5 -129t79.5 -50q53 0 95.5 53t58.5 126l15 77q15 79 -5 130 t-78 51q-53 0 -97 -54t-58 -127zM661 279l15 78q27 135 112.5 217.5t207.5 82.5q113 0 169 -87.5t31 -212.5l-15 -78q-28 -137 -112 -218.5t-206 -81.5q-113 0 -170.5 87.5t-31.5 212.5zM803 279q-16 -79 5.5 -129.5t78.5 -50.5q55 0 96.5 52.5t57.5 127.5l15 78 q16 80 -5 130t-79 50q-53 0 -96.5 -53.5t-57.5 -126.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1132" d="M58 383q20 126 93 214.5t209 186.5q-50 99 -69 178.5t-5 162.5q27 172 126.5 262t248.5 90q128 0 199.5 -90.5t51.5 -217.5q-17 -100 -69 -169.5t-143 -135.5l-110 -84l213 -388l6 1q38 57 65.5 129t41.5 153h162q-22 -136 -69.5 -243t-123.5 -191l133 -241h-234l-55 101 q-81 -60 -164.5 -91t-170.5 -31q-176 0 -270.5 112.5t-65.5 291.5zM262 388q-18 -114 24 -184.5t138 -70.5q56 0 117.5 23.5t119.5 69.5l-234 430l-22 -17q-73 -72 -104 -134.5t-39 -116.5zM475 1127q-8 -52 4.5 -105.5t43.5 -117.5l108 79q55 40 79.5 84t32.5 97 q10 66 -18.5 111.5t-88.5 45.5t-104 -56.5t-57 -137.5z" />
<glyph unicode="'" horiz-adv-x="315" d="M181 1055l42 266l39 239h148l-37 -226l-98 -279h-94z" />
<glyph unicode="(" horiz-adv-x="588" d="M138 574l2 16q63 395 231 667.5t333 365.5l6 -1l18 -107q-121 -102 -237 -344t-170 -579l-3 -20q-57 -350 -18 -583t129 -344l-52 -103h-6q-134 93 -214.5 371t-18.5 661z" />
<glyph unicode=")" horiz-adv-x="591" d="M-98 -356q120 103 237.5 346.5t171.5 580.5l3 20q55 347 14 584t-126 345l54 102h6q133 -91 216 -374.5t23 -658.5l-2 -16q-64 -396 -233.5 -666.5t-336.5 -364.5h-6z" />
<glyph unicode="*" horiz-adv-x="782" d="M167 1080l71 140l230 -119l60 355h142l-83 -361l272 121l15 -141l-280 -100l113 -278l-133 -87l-93 295l-208 -289l-99 84l228 284z" />
<glyph unicode="+" horiz-adv-x="987" d="M104 600l35 174h323l87 432h195l-87 -432h324l-35 -174h-323l-91 -454h-195l91 454h-324z" />
<glyph unicode="," horiz-adv-x="392" d="M-86 -271l117 302l37 183h187l-38 -190l-184 -295h-119z" />
<glyph unicode="-" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="." horiz-adv-x="489" d="M50 0l41 203h201l-41 -203h-201z" />
<glyph unicode="/" horiz-adv-x="672" d="M-98 -125l774 1581h157l-774 -1581h-157z" />
<glyph unicode="0" horiz-adv-x="965" d="M123 563l65 329q60 300 191 442.5t313 142.5q166 0 245.5 -154.5t24.5 -430.5l-65 -329q-61 -301 -191 -442.5t-311 -141.5q-167 0 -247.5 153.5t-24.5 430.5zM304 229.5q29 -95.5 120 -89.5l6 -1q80 -5 151 98t110 298l77 386q42 211 13.5 304.5t-118.5 88.5l-6 1 q-81 4 -152 -98t-110 -296l-77 -386q-43 -210 -14 -305.5z" />
<glyph unicode="1" horiz-adv-x="965" d="M302 1234l26 131l487 92l-291 -1459h-200l251 1255z" />
<glyph unicode="2" horiz-adv-x="965" d="M30 0l22 135l465 526q113 136 162.5 225.5t64.5 174.5q19 120 -14.5 190t-112.5 70q-95 0 -160 -81t-86 -217h-192l-2 6q26 195 152 321.5t313 126.5q164 0 248.5 -113.5t55.5 -296.5q-22 -131 -99.5 -248t-219.5 -270l-317 -390l3 -5h524l-25 -154h-782z" />
<glyph unicode="3" horiz-adv-x="965" d="M68 392h200q-20 -120 21 -189.5t127 -69.5q87 0 151.5 70t85.5 197q22 142 -16 203.5t-138 61.5h-135l18 111l7 42h135q90 0 144.5 68t73.5 182q19 123 -14.5 188t-121.5 65q-75 0 -138 -68t-80 -177h-190l-2 6q24 176 145.5 285.5t285.5 109.5q167 0 256 -108.5 t59 -302.5q-17 -101 -79.5 -189t-159.5 -133q95 -43 132 -134.5t19 -207.5q-33 -205 -160.5 -314t-304.5 -109q-157 0 -255 109t-66 304z" />
<glyph unicode="4" horiz-adv-x="965" d="M47 342l17 114l701 1000h205l-192 -959h146l-31 -155h-146l-68 -342h-200l68 342h-500zM268 497h310l131 656l-6 2l-22 -34z" />
<glyph unicode="5" horiz-adv-x="965" d="M106 387l197 4q-21 -128 16.5 -193t117.5 -65q88 0 150 88.5t87 241.5q24 151 -10 237t-125 86q-76 0 -123 -38t-74 -111l-170 17l195 802h625l-27 -167h-458l-105 -432q41 38 90.5 62.5t107.5 26.5q166 2 238.5 -127.5t36.5 -353.5q-36 -225 -154 -355.5t-308 -130.5 q-151 0 -245 105.5t-62 302.5z" />
<glyph unicode="6" horiz-adv-x="965" d="M124 558l51 316q45 281 199 442t353 161q61 0 118 -17t99 -46l-62 -149q-37 27 -79 41t-100 14q-110 0 -202.5 -118.5t-123.5 -313.5l-5 -32q56 52 125 81.5t144 29.5q152 0 224 -137t38 -348q-37 -228 -162.5 -365.5t-298.5 -137.5t-267.5 154.5t-50.5 424.5zM322 546 q-33 -203 8.5 -308.5t135.5 -105.5q80 0 146.5 102.5t90.5 247.5q25 154 -10.5 245t-124.5 91q-70 0 -128 -37t-97 -100z" />
<glyph unicode="7" horiz-adv-x="965" d="M206 1300l25 156h813l-25 -156q-244 -277 -355.5 -528t-204.5 -633l-35 -139h-199l33 139q88 353 226 634.5t340 526.5h-618z" />
<glyph unicode="8" horiz-adv-x="965" d="M83 392q27 133 105 225t191 133q-80 45 -116 130.5t-13 195.5q40 204 157.5 302.5t284.5 98.5q151 0 236 -106.5t48 -294.5q-25 -123 -94 -208.5t-168 -125.5q90 -47 133 -139t20 -211q-43 -213 -168.5 -313t-304.5 -100q-166 0 -258.5 108t-52.5 305zM286 399 q-27 -133 11 -199.5t128 -66.5q79 0 149 72t95 194q25 128 -14 199.5t-124 71.5q-80 0 -151 -76.5t-94 -194.5zM450 1071q-24 -120 6.5 -183.5t106.5 -63.5q68 0 127.5 68t82.5 179q23 116 -8 183t-104 67q-70 0 -129.5 -68.5t-81.5 -181.5z" />
<glyph unicode="9" horiz-adv-x="965" d="M120 39l50 148q47 -29 96 -41.5t113 -12.5q99 0 182 103.5t114 294.5l10 63q-50 -68 -112.5 -102t-130.5 -34q-160 0 -238.5 136t-41.5 363q37 232 168.5 376t295.5 144q175 0 264 -145.5t47 -413.5l-61 -380q-44 -276 -186 -417.5t-335 -141.5q-57 0 -121 15.5 t-114 44.5zM363 957q-26 -160 6.5 -253.5t118.5 -93.5q70 0 128.5 45t96.5 116l27 167q31 196 -5 289.5t-131 93.5q-75 0 -146 -106t-95 -258z" />
<glyph unicode=":" horiz-adv-x="471" d="M50 0l41 203h201l-41 -203h-201zM226 878l41 203h201l-41 -203h-201z" />
<glyph unicode=";" horiz-adv-x="465" d="M-48 -271l117 302l37 183h187l-38 -190l-184 -295h-119zM222 879l41 203h201l-41 -203h-201z" />
<glyph unicode="&#x3c;" horiz-adv-x="866" d="M73 477l21 104l10 47l751 374l-38 -192l-518 -243l-65 -14v-6l59 -14l421 -240l-39 -192z" />
<glyph unicode="=" horiz-adv-x="967" d="M122 390l32 160h699l-32 -160h-699zM206 808l32 160h699l-32 -160h-699z" />
<glyph unicode="&#x3e;" horiz-adv-x="884" d="M47 101l38 189l539 247l64 13v6l-57 15l-442 243l38 188l623 -374l-9 -45l-12 -62l-9 -45z" />
<glyph unicode="?" horiz-adv-x="831" d="M187 1109q31 173 150 270.5t276 97.5q160 0 240.5 -106.5t45.5 -284.5q-28 -139 -102.5 -237.5t-197.5 -207.5q-56 -51 -77.5 -98t-38.5 -135h-201q27 133 65 190.5t147 151.5q85 91 134.5 163t69.5 170q22 117 -8 175t-109 58q-60 0 -120 -57.5t-80 -155.5h-192zM199 0 l40 198h205l-40 -198h-205z" />
<glyph unicode="@" horiz-adv-x="1569" d="M100 478q100 425 349 684.5t571 259.5q303 0 436 -249.5t37 -663.5q-51 -216 -179 -373t-321 -157q-62 0 -101 46t-42 129q-58 -87 -125 -130.5t-143 -43.5q-106 0 -146 121.5t13 314.5q72 255 201.5 409.5t270.5 154.5q86 0 142 -28t110 -79l-3 -3h4l-159 -577 q-30 -116 -16 -158t50 -35l6 -1q91 -5 178 113.5t131 296.5q90 376 -1 586t-370 210q-242 0 -453.5 -231t-295.5 -596q-90 -370 6.5 -590.5t359.5 -220.5q69 0 152.5 21.5t142.5 54.5l9 -107q-65 -42 -157 -65.5t-175 -23.5q-307 0 -444 253.5t-38 677.5zM587.5 194 q10.5 -79 70.5 -79q49 0 99.5 31.5t102.5 111.5q1 7 3 15l5 20l147 537q-19 11 -40.5 17t-46.5 6q-94 0 -174.5 -111t-138.5 -326q-38 -143 -27.5 -222z" />
<glyph unicode="A" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1z" />
<glyph unicode="B" horiz-adv-x="1083" d="M53 0l291 1456h391q185 0 281 -100q69 -72 69 -191q0 -47 -10 -101q-23 -111 -87.5 -188.5t-161.5 -111.5q108 -26 148 -123q25 -59 24 -131q0 -46 -10 -98q-43 -214 -169 -313t-322 -99h-444zM285 154h243q94 0 164.5 67.5t95.5 189.5q12 59 12 106q0 55 -18 93 q-32 68 -128 69h-264zM419 825h217q84 3 149.5 64.5t87.5 170.5q9 47 9 85q0 64 -26 99q-42 56 -152 56h-190z" />
<glyph unicode="C" horiz-adv-x="1077" d="M132 603l52 260q58 293 201 453.5t347 160.5q196 1 304 -135q86 -108 86 -274q0 -43 -6 -90h-199q5 44 5 82q0 106 -36 172q-50 90 -174 89q-108 0 -197.5 -128t-129.5 -328l-52 -262q-20 -99 -20 -180q-1 -95 27 -163q52 -128 178 -127q109 0 177.5 79t116.5 247h192 l2 -6q-58 -227 -182 -350.5t-323 -123.5q-195 0 -309 180q-77 122 -77 283q0 76 17 161z" />
<glyph unicode="D" horiz-adv-x="1110" d="M53 0l291 1456h351q211 0 336 -183q88 -129 88 -298q0 -72 -16 -152l-42 -207q-59 -297 -214 -456.5t-378 -159.5h-416zM285 154h209q130 0 227.5 126.5t139.5 335.5l42 210q16 81 16 150q0 113 -43 194q-69 130 -218 130h-144z" />
<glyph unicode="E" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794z" />
<glyph unicode="F" horiz-adv-x="983" d="M53 0l291 1456h795l-31 -156h-594l-100 -498h511l-31 -155h-511l-129 -647h-201z" />
<glyph unicode="G" horiz-adv-x="1152" d="M118 514l86 432q53 270 204 400.5t367 130.5q199 0 296 -115q73 -86 73 -220q0 -45 -8 -94l-2 -5h-191q7 43 7 80q0 78 -32 127q-48 71 -171 71q-117 0 -212 -97t-130 -276l-87 -434q-16 -82 -16 -146q0 -91 33 -144q57 -91 194 -91q90 0 154 36.5t100 89.5l66 331h-231 l29 147h432l-106 -530q-65 -87 -186.5 -157.5t-288.5 -70.5q-205 0 -318 141q-78 98 -78 248q0 68 16 146z" />
<glyph unicode="H" horiz-adv-x="1198" d="M53 0l291 1456h201l-132 -659h521l132 659h199l-291 -1456h-199l128 642h-521l-128 -642h-201z" />
<glyph unicode="I" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200z" />
<glyph unicode="J" horiz-adv-x="954" d="M56 408h201q-14 -67 -14 -116q0 -60 20 -95q36 -64 124 -64q71 0 138.5 78t93.5 206l208 1039h200l-208 -1039q-43 -215 -168.5 -326.5t-294.5 -111.5q-167 0 -255 111q-59 74 -59 192q0 58 14 126z" />
<glyph unicode="K" horiz-adv-x="1027" d="M41 0l291 1456h201l-127 -632h116l433 632h260l-560 -724l284 -732h-230l-230 654h-107l-130 -654h-201z" />
<glyph unicode="L" horiz-adv-x="919" d="M53 0l291 1456h201l-260 -1302h538l-31 -154h-739z" />
<glyph unicode="M" horiz-adv-x="1423" d="M48 0l291 1456h258l79 -1186l6 -1l554 1187h259l-291 -1456h-199l112 559l126 541l-6 2l-546 -1102h-132l-105 1099h-6l-89 -540l-112 -559h-199z" />
<glyph unicode="N" horiz-adv-x="1199" d="M53 0l291 1456h201l302 -1065l6 1l212 1064h200l-291 -1456h-200l-301 1069l-6 -1l-213 -1068h-201z" />
<glyph unicode="O" horiz-adv-x="1152" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183q82 -127 82 -293q0 -73 -16 -154l-50 -251q-59 -293 -213 -455t-372 -162q-200 -1 -314 181q-77 124 -78 287q0 76 17 160zM331 607q-18 -92 -18 -168q0 -101 33 -175q58 -126 191 -127q122 0 217 126t137 333 l51 253q17 86 17 158q1 107 -37 183q-62 127 -202 127q-117 0 -207 -125.5t-131 -330.5z" />
<glyph unicode="P" horiz-adv-x="1093" d="M53 0l291 1456h460q182 0 274 -124q66 -88 67 -210q0 -50 -12 -107q-42 -212 -174 -326.5t-331 -114.5h-259l-115 -574h-201zM400 730h259q99 0 174 82.5t99 200.5q11 53 11 98q0 65 -23 111q-38 78 -147 78h-259z" />
<glyph unicode="Q" horiz-adv-x="1167" d="M133 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183q82 -127 82 -293q0 -73 -16 -154l-50 -251q-33 -161 -95 -284t-149 -202l154 -220l-152 -111l-160 233q-43 -16 -89 -24.5t-94 -8.5q-201 0 -314 181q-78 124 -78 287q0 76 17 160zM333 607q-18 -92 -18 -168 q0 -103 33 -175q58 -127 191 -127q122 0 217 126t137 333l51 253q17 86 17 158q0 107 -37 183q-63 127 -202 127q-117 0 -207 -125.5t-131 -330.5z" />
<glyph unicode="R" horiz-adv-x="1118" d="M53 0l291 1455h435q185 0 277 -109q65 -77 66 -196q0 -50 -12 -109q-25 -123 -91.5 -206.5t-172.5 -128.5q93 -40 124 -128q17 -50 17 -111q0 -48 -10 -102l-25 -127q-14 -64 -14 -116v-10q2 -56 28 -89l-5 -23h-207q-23 29 -23 82q0 8 1 17q4 66 20 141l25 123 q10 52 10 93q-1 64 -23 104q-38 68 -128 67h-257l-125 -627h-201zM410 782h224q107 0 178.5 68t95.5 187q11 54 11 97q0 62 -23 100q-39 66 -148 66h-234z" />
<glyph unicode="S" horiz-adv-x="1034" d="M107 420l2 5h193q-11 -53 -10 -95q0 -89 46 -133q70 -64 185 -64q77 0 146.5 57.5t86.5 142.5q8 40 8 74q0 65 -29 108q-44 65 -178 132q-190 77 -272 181q-56 71 -56 181q0 51 12 111q34 173 158 265t297 92q190 0 292 -120q73 -86 73 -216q0 -52 -12 -112h-201 q9 46 9 85q0 76 -33 128q-50 79 -159 79q-77 0 -141.5 -58.5t-80.5 -140.5q-9 -43 -9 -79q0 -63 28 -102q42 -61 191 -132q185 -77 263 -182q52 -71 52 -180q0 -52 -12 -112q-36 -178 -160.5 -267t-303.5 -89q-187 -1 -311 107q-88 77 -88 214q0 55 14 120z" />
<glyph unicode="T" horiz-adv-x="979" d="M213 1300l31 156h904l-31 -156h-353l-260 -1300h-200l260 1300h-351z" />
<glyph unicode="U" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-13 -66 -14 -118q1 -78 31 -122q50 -74 163 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-184 1 -288 123q-72 85 -73 219q0 58 14 126z" />
<glyph unicode="V" horiz-adv-x="1080" d="M191 1456h213l96 -1134l6 -79l6 -1l31 79l460 1135h212l-649 -1456h-193z" />
<glyph unicode="W" horiz-adv-x="1487" d="M207 1456h196l20 -1023l6 -1l394 1024h159l70 -1024h6l346 1024h196l-511 -1456h-185l-67 1020l-6 1l-396 -1021h-184z" />
<glyph unicode="X" horiz-adv-x="1073" d="M-19 0l485 735l-243 721h234l149 -567l6 -1l332 568h236l-474 -721l256 -735h-240l-156 581h-6l-342 -581h-237z" />
<glyph unicode="Y" horiz-adv-x="1061" d="M233 1456h224l137 -694l6 -1l417 695h223l-594 -934l-104 -522h-199l108 539z" />
<glyph unicode="Z" horiz-adv-x="953" d="M18 0l2 125l745 1176h-515l31 155h743l-24 -121l-750 -1181h583l-31 -154h-784z" />
<glyph unicode="[" horiz-adv-x="495" d="M4 -319l319 1991h341l-25 -153h-138l-270 -1686h138l-24 -152h-341z" />
<glyph unicode="\" horiz-adv-x="715" d="M234 1456h194l175 -1581h-195z" />
<glyph unicode="]" horiz-adv-x="495" d="M-99 -319l24 152h141l270 1686h-141l25 153h344l-319 -1991h-344z" />
<glyph unicode="^" horiz-adv-x="734" d="M115 729l386 727h143l95 -727h-167l-45 444v42l-6 1l-17 -43l-220 -444h-169z" />
<glyph unicode="_" horiz-adv-x="769" d="M-100 -152l30 152h738l-30 -152h-738z" />
<glyph unicode="`" horiz-adv-x="580" d="M242 1477h230l118 -266h-166z" />
<glyph unicode="a" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q8 43 8 78q-1 50 -17 80q-28 52 -105 52q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96q57 -68 57 -173q0 -44 -10 -95l-101 -502q-13 -66 -17 -122q-2 -25 -2 -50 q0 -32 3 -64h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117t-149.5 -45q-121 0 -183 88q-42 60 -42 145q0 39 9 85zM261 298q-7 -32 -6 -58q0 -36 13 -62q23 -42 84 -43q61 0 124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144z" />
<glyph unicode="b" d="M29 0l312 1560h201l-113 -560q49 50 107 76t124 26q154 0 222 -168q39 -96 39 -221q0 -93 -22 -202l-4 -21q-52 -257 -156.5 -384t-269.5 -127q-73 0 -131 40.5t-93 112.5l-42 -132h-174zM282 261q15 -60 55 -92.5t106 -32.5q94 0 155.5 92.5t96.5 261.5l4 21 q24 121 24 212q0 58 -10 104q-25 117 -128 117q-58 0 -108.5 -44.5t-90.5 -117.5z" />
<glyph unicode="c" horiz-adv-x="889" d="M80 465l24 149q35 219 158.5 353.5t318.5 134.5q152 0 235 -111q62 -83 62 -203q0 -40 -7 -85h-187q6 38 6 71q0 64 -23 106q-35 66 -111 66q-104 0 -166.5 -95t-84.5 -237l-24 -149q-11 -68 -10 -124q-1 -68 15 -118q30 -90 140 -90q68 0 127 58.5t75 156.5h179l2 -6 q-23 -159 -140.5 -261t-266.5 -102q-186 1 -270 139q-61 100 -61 235q0 53 9 112z" />
<glyph unicode="d" d="M98 527l5 21q55 277 163 415.5t273 138.5q67 0 122 -32.5t91 -92.5l117 583h200l-312 -1560h-175l8 96q-52 -58 -114 -87.5t-132 -29.5q-150 0 -222 157q-43 95 -43 217q0 81 19 174zM291 241q29 -105 129 -105q55 0 104 39t89 107l106 530q-17 61 -55.5 96.5t-98.5 35.5 q-92 0 -158.5 -107.5t-102.5 -288.5l-5 -21q-21 -101 -21 -179q0 -61 13 -107z" />
<glyph unicode="e" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134t247 -127q54 -89 55 -218q0 -55 -10 -118l-22 -140h-550l-7 -43q-9 -53 -9 -99q0 -79 27 -135q42 -88 150 -89q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135q-68 99 -68 236q0 51 9 106zM316 644 h351l7 41q7 46 7 84q-1 62 -19 106q-30 71 -114 71q-78 0 -141.5 -86t-90.5 -216z" />
<glyph unicode="f" horiz-adv-x="607" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201z" />
<glyph unicode="g" d="M15 -359l73 152q42 -31 96.5 -48.5t116.5 -17.5q97 0 166 78.5t97 214.5l11 55q-49 -48 -106 -72t-121 -24q-151 0 -224 157q-44 96 -44 220q0 80 18 171l5 21q54 276 163.5 415t275.5 139q74 0 132 -37t92 -105l38 122h173l-212 -1063q-46 -224 -173.5 -340t-320.5 -116 q-61 0 -133.5 21.5t-122.5 56.5zM292 242q30 -106 131 -106q57 0 105.5 37.5t87.5 105.5l107 536q-17 60 -55.5 94.5t-99.5 34.5q-92 0 -160 -108t-104 -288l-5 -21q-20 -99 -20 -175q0 -63 13 -110z" />
<glyph unicode="h" d="M26 0l312 1560h201l-121 -602l5 -4q52 71 121 109.5t146 38.5q130 0 190 -110q35 -63 34 -163q0 -74 -18 -167l-132 -662h-201l133 664q17 86 17 143q-1 49 -13 77q-28 60 -109 60q-54 0 -107 -37t-96 -100l-161 -807h-201z" />
<glyph unicode="i" horiz-adv-x="455" d="M42 0l216 1082h200l-216 -1082h-200zM315 1366l39 194h200l-39 -194h-200z" />
<glyph unicode="j" horiz-adv-x="459" d="M-222 -419l42 155q15 -6 33.5 -10t34.5 -4q47 0 87 51.5t60 152.5l231 1156h200l-231 -1156q-38 -185 -129 -274t-229 -89q-26 0 -49.5 4.5t-49.5 13.5zM319 1369l38 191h201l-38 -191h-201z" />
<glyph unicode="k" horiz-adv-x="893" d="M30 0l312 1560h200l-182 -909h78l305 431h227l3 -5l-388 -481l220 -596h-233l-163 496h-80l-99 -496h-200z" />
<glyph unicode="l" horiz-adv-x="455" d="M42 0l312 1560h200l-312 -1560h-200z" />
<glyph unicode="m" horiz-adv-x="1462" d="M30 0l216 1082h183l-17 -136q56 76 128.5 116t159.5 40q77 0 128.5 -49t65.5 -146q58 93 135 144t170 51q123 0 179 -116q31 -64 32 -163q0 -79 -20 -180l-129 -643h-201l129 644q21 106 21 171q0 43 -10 68q-24 61 -101 61q-59 0 -113.5 -54.5t-93.5 -141.5 q-4 -28 -6 -41.5t-5 -28.5l-136 -678h-200l129 644q20 100 20 163q0 46 -10 73q-24 64 -101 64q-56 0 -105 -38t-89 -104l-160 -802h-199z" />
<glyph unicode="n" d="M27 0l216 1082h184l-19 -149q59 82 132.5 125.5t156.5 43.5q127 0 185 -107q33 -61 34 -159q0 -72 -19 -165l-134 -671h-201l134 669q17 87 17 143q-1 48 -13 75q-26 57 -110 57q-54 0 -106.5 -39.5t-96.5 -107.5l-159 -797h-201z" />
<glyph unicode="o" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140q64 -101 65 -241q0 -53 -10 -112l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-180 0 -270 139q-64 100 -65 239q0 54 10 114zM283 471q-10 -64 -11 -118q0 -75 21 -128q35 -92 139 -92q96 0 163 96t91 242 l22 138q10 62 10 114q0 75 -20 130q-34 93 -137 93q-99 0 -166 -96t-90 -241z" />
<glyph unicode="p" d="M-54 -416l299 1498h180l-9 -94q50 56 111.5 85t131.5 29q152 0 221 -170q39 -98 39 -225q0 -92 -21 -199l-5 -21q-51 -255 -156 -381.5t-268 -126.5q-71 0 -127 30t-93 86l-102 -511h-201zM279 246q17 -55 55.5 -84t102.5 -29q92 0 157 94.5t98 259.5l5 21q23 113 23 201 q0 64 -12 115q-29 120 -129 120q-54 0 -102.5 -40t-87.5 -107z" />
<glyph unicode="q" d="M98 527l5 21q55 277 163 415.5t273 138.5q71 0 127.5 -34t91.5 -97l36 111h174l-299 -1498h-201l99 495q-49 -49 -105 -74.5t-118 -25.5q-150 0 -222 157q-43 95 -43 217q0 81 19 174zM291 240q29 -107 129 -107q53 0 99.5 35t84.5 98l113 564q-18 54 -56 85t-96 31 q-92 0 -158.5 -108.5t-102.5 -289.5l-5 -21q-21 -101 -21 -180q0 -61 13 -107z" />
<glyph unicode="r" horiz-adv-x="616" d="M29 0l216 1082h183l-15 -144l5 -3q45 79 104 123t127 44q18 0 37.5 -3t31.5 -9l-60 -179l-91 5q-54 0 -100.5 -39t-82.5 -109l-154 -768h-201z" />
<glyph unicode="s" horiz-adv-x="860" d="M51 319l2 5h188q-3 -26 -3 -48q0 -68 32 -104q42 -46 117 -46q70 0 118.5 41t59.5 104q2 16 2 30q0 45 -23 77q-31 42 -131 95q-149 64 -215 138q-51 57 -51 141q0 24 4 50q21 129 128.5 214.5t262.5 85.5q153 0 236 -96q63 -73 63 -171q0 -31 -6 -64l-2 -5h-193 q3 22 3 43q0 52 -22 91q-31 54 -102 54q-67 0 -115.5 -44t-56.5 -100q-3 -18 -3 -34q0 -40 20 -64q28 -34 133 -94q153 -60 219 -138q51 -60 51 -147q0 -25 -4 -52q-23 -139 -132 -220.5t-270 -81.5q-165 0 -251 103q-65 78 -65 175q0 30 6 62z" />
<glyph unicode="t" horiz-adv-x="612" d="M137 937l29 145h133l54 269h200l-54 -269h159l-29 -145h-159l-128 -644q-10 -48 -9 -79q0 -28 7 -44q16 -32 55 -32q21 0 42 3t48 9l-8 -140q-36 -14 -78 -22.5t-86 -8.5q-105 1 -155 77q-30 46 -29 122q0 51 13 115l128 644h-133z" />
<glyph unicode="u" d="M114 443l127 639h200l-128 -641q-22 -109 -22 -175q0 -42 9 -66q23 -64 98 -64q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115q-34 64 -34 166q0 80 21 183z" />
<glyph unicode="v" horiz-adv-x="863" d="M140 1082h208l52 -757l2 -76h6l27 76l292 757h207l-481 -1082h-177z" />
<glyph unicode="w" horiz-adv-x="1256" d="M174 1082h191l-7 -711l6 -2l321 713h144l38 -719l6 -1l276 720h192l-452 -1082h-164l-39 708l-6 2l-321 -710h-166z" />
<glyph unicode="x" horiz-adv-x="863" d="M-32 0l368 548l-187 534h227l89 -394l6 -1l220 395h229l-357 -534l193 -548h-228l-98 407l-6 1l-228 -408h-228z" />
<glyph unicode="y" horiz-adv-x="863" d="M-77 -419l52 150q11 -2 28.5 -4t27.5 -2q51 0 96.5 52.5t75.5 117.5l55 108l-102 1079h218l23 -709l1 -60l6 -1l346 770h218l-610 -1250q-57 -111 -135.5 -190t-195.5 -79q-23 0 -50.5 5.5t-53.5 12.5z" />
<glyph unicode="z" horiz-adv-x="836" d="M-7 0l26 128l607 797h-440l31 157h660l-25 -126l-613 -802h472l-31 -154h-687z" />
<glyph unicode="{" horiz-adv-x="578" d="M73 541l18 116l5 30q75 0 124.5 62.5t67.5 173.5l34 215q28 177 112 292.5t248 166.5l6 -1l19 -107q-83 -36 -129.5 -126.5t-67.5 -224.5l-34 -215q-18 -111 -69.5 -191t-136.5 -121q69 -44 96 -125t11 -183l-34 -212q-23 -139 -5.5 -225.5t91.5 -123.5l-59 -115 q-148 55 -195.5 175t-19.5 289l34 212q18 116 -9.5 177t-106.5 61z" />
<glyph unicode="|" horiz-adv-x="440" d="M40 -270l276 1726h135l-276 -1726h-135z" />
<glyph unicode="}" horiz-adv-x="578" d="M-77 -264q83 37 130 126.5t70 222.5l34 212q17 113 69.5 193t141.5 119q-74 41 -101.5 121.5t-10.5 186.5l34 215q22 138 3.5 226t-90.5 125l58 114q147 -55 194.5 -174.5t20.5 -290.5l-34 -215q-19 -117 8.5 -176.5t107.5 -59.5l-6 -37l-17 -109q-76 0 -125.5 -64 t-66.5 -174l-34 -212q-29 -175 -113 -291t-247 -167l-6 1z" />
<glyph unicode="~" horiz-adv-x="1119" d="M112 466q23 147 106.5 242t192.5 95q65 0 122.5 -36.5t110.5 -104.5q33 -52 63.5 -75t69.5 -23q45 0 88.5 58.5t57.5 142.5l138 -20q-24 -147 -110 -245t-193 -98q-68 0 -122.5 34.5t-108.5 107.5q-35 50 -66 74t-69 24q-45 0 -88.5 -56.5t-56.5 -139.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="467" d="M-32 -374l194 970h201l-194 -970h-201zM217 869l42 213h201l-42 -213h-201z" />
<glyph unicode="&#xa2;" horiz-adv-x="957" d="M101 465l24 149q31 201 139 332t278 152l45 220h161l-47 -231q108 -34 161 -137t30 -247h-187q18 112 -17 177.5t-111 65.5q-104 0 -166.5 -95t-84.5 -237l-24 -149q-24 -152 5.5 -242t139.5 -90q68 0 127 58.5t75 156.5h179l3 -6q-21 -143 -120 -241t-231 -117l-45 -229 h-161l47 237q-134 37 -191 166.5t-29 306.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="998" d="M46 0l31 154h6q41 13 80 112.5t61 206.5l24 145h-130l30 155h126l45 263q44 219 158.5 330t275.5 111q157 0 234 -109.5t42 -285.5h-201q26 131 -5.5 185t-100.5 54q-63 0 -119.5 -76t-82.5 -209l-44 -263h308l-30 -155h-304l-23 -141q-20 -98 -59 -181t-93 -142h597 l-31 -154h-795z" />
<glyph unicode="&#xa4;" horiz-adv-x="1240" d="M23 92l158 152q-32 79 -39 171.5t14 192.5q21 112 65.5 209t107.5 176l-95 151l139 120l89 -142q74 54 156.5 83t166.5 29q77 0 145.5 -33t122.5 -92l159 156l91 -121l-170 -165q32 -80 40 -174.5t-12 -196.5q-22 -107 -63.5 -200.5t-98.5 -170.5l93 -145l-138 -119 l-83 132q-77 -61 -163 -93t-174 -32q-81 0 -152 34.5t-124 98.5l-143 -139zM307 608q-43 -211 32.5 -343t225.5 -132q136 0 271.5 140t174.5 335q41 209 -34 340.5t-223 131.5q-137 0 -273 -140t-174 -332z" />
<glyph unicode="&#xa5;" horiz-adv-x="1032" d="M96 284l31 155h286l26 132h-286l31 155h241l-185 730h223l129 -621l6 -1l378 622h223l-478 -730h232l-31 -155h-282l-26 -132h282l-31 -155h-282l-57 -284h-201l57 284h-286z" />
<glyph unicode="&#xa6;" horiz-adv-x="436" d="M-18 -270l157 784h188l-157 -784h-188zM176 698l151 758h188l-151 -758h-188z" />
<glyph unicode="&#xa7;" horiz-adv-x="1052" d="M-10 -56l200 2q-31 -155 22.5 -215t153.5 -60q90 0 160 59.5t89 149.5q18 95 -23 142.5t-182 106.5q-183 63 -257.5 154t-40.5 263q19 97 72.5 166t135.5 108q-53 50 -70.5 119.5t3.5 169.5q35 177 163.5 272.5t318.5 95.5q180 0 272 -114.5t52 -315.5h-200 q25 125 -14.5 199.5t-140.5 74.5q-97 0 -165 -60t-85 -150q-21 -103 17.5 -149.5t184.5 -104.5q186 -66 259.5 -154.5t40.5 -258.5q-20 -99 -73.5 -167t-135.5 -106q53 -50 70.5 -119t-1.5 -170q-37 -183 -163.5 -274.5t-317.5 -91.5q-173 0 -281 103.5t-64 324.5zM315 556 q-22 -107 16 -154.5t184 -109.5q27 -10 51.5 -20t47.5 -19q53 22 91 70t51 111q19 98 -23 149t-182 114q-32 10 -57.5 20t-46.5 21q-51 -23 -85.5 -71t-46.5 -111z" />
<glyph unicode="&#xa8;" horiz-adv-x="914" d="M283 1271l30 185h202l-30 -185h-202zM693 1271l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xa9;" horiz-adv-x="1383" d="M135 729q52 327 258.5 537t459.5 210q239 0 384 -217.5t96 -529.5q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385 218.5t-94 531.5zM235 729q-46 -281 70 -462t326 -181q199 0 379 187.5t223 455.5q44 279 -72 458.5t-325 179.5q-200 0 -379.5 -186.5t-221.5 -451.5z M419 669l19 119q28 179 123.5 283t232.5 104q126 0 190.5 -81.5t41.5 -232.5h-127q16 106 -15 152t-109 46q-77 0 -134.5 -76t-76.5 -194l-19 -120q-21 -128 11 -200t114 -72q74 0 121.5 47.5t63.5 151.5h119l2 -6q-22 -156 -107 -232t-218 -76q-130 0 -195 107.5t-37 279.5 z" />
<glyph unicode="&#xaa;" horiz-adv-x="762" d="M205 920q23 115 101 170.5t212 55.5h108l12 56q15 75 -1 112t-62 37q-50 0 -88 -32t-49 -88l-127 12l-2 6q17 104 96.5 166t194.5 62q101 0 153 -72.5t26 -203.5l-63 -314q-11 -54 -15 -96.5t-1 -84.5h-141q-2 24 -1.5 48.5t3.5 49.5q-37 -49 -88 -80.5t-113 -31.5 q-89 0 -132.5 62.5t-22.5 165.5zM346 924q-12 -56 6 -83t67 -27q37 0 88 33t74 72l25 124h-108q-57 0 -100 -35.5t-52 -83.5z" />
<glyph unicode="&#xab;" horiz-adv-x="831" d="M98 508l1 6l1 7l1 6l308 384h136l-277 -395l120 -393h-136zM392 508l1 6l1 7l1 6l308 384h136l-277 -395l120 -393h-136z" />
<glyph unicode="&#xac;" horiz-adv-x="938" d="M160 649l28 143h672l-28 -143h-1l-53 -271h-159l53 271h-512z" />
<glyph unicode="&#xad;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#xae;" horiz-adv-x="1384" d="M134 729q52 327 259 537t460 210q239 0 384 -217.5t96 -529.5q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385.5 218.5t-94.5 531.5zM234 729q-46 -281 70 -462t327 -181q199 0 378.5 187.5t222.5 455.5q44 279 -71.5 458.5t-324.5 179.5q-201 0 -380.5 -186.5 t-221.5 -451.5zM421 316l136 850h236q123 0 187 -66t45 -189q-11 -65 -46.5 -111.5t-95.5 -76.5q51 -28 68.5 -81.5t6.5 -126.5l-9 -56q-7 -43 -9 -74.5t2 -52.5l-2 -16h-126q-4 22 0.5 63.5t11.5 80.5l8 54q12 79 -10 112.5t-88 33.5h-136l-55 -344h-124zM618 776h123 q59 0 104.5 35t55.5 97q13 80 -15 111.5t-112 31.5h-112z" />
<glyph unicode="&#xaf;" horiz-adv-x="857" d="M268 1324l21 132h610l-21 -132h-610z" />
<glyph unicode="&#xb0;" horiz-adv-x="685" d="M279 1216q22 113 102 187t173 74q84 0 136.5 -78.5t31.5 -182.5q-23 -115 -101 -186t-170 -71q-86 0 -140 75.5t-32 181.5zM394 1216q-13 -63 10.5 -100.5t70.5 -37.5q41 0 80.5 39.5t51.5 98.5q13 64 -9.5 102.5t-67.5 38.5q-43 0 -84 -41t-52 -100z" />
<glyph unicode="&#xb1;" horiz-adv-x="953" d="M63 21l31 155h673l-31 -155h-673zM137 716l25 157h301l66 407h180l-66 -407h292l-25 -157h-292l-66 -414h-180l66 414h-301z" />
<glyph unicode="&#xb2;" horiz-adv-x="723" d="M157 667l24 121l301 267q64 60 87.5 99t32.5 84q11 56 -3 87t-58 31q-45 0 -79.5 -36t-44.5 -90h-147l-2 6q16 107 98 175t201 68q105 0 158.5 -64t31.5 -178q-17 -84 -67.5 -141t-169.5 -159l-142 -143l3 -6h291l-24 -121h-491z" />
<glyph unicode="&#xb3;" horiz-adv-x="724" d="M188 886l2 5h149q-12 -55 9.5 -85t72.5 -30q47 0 85 31.5t49 84.5q13 68 -9 96.5t-79 28.5h-98l16 79l7 34h98q48 0 80.5 30.5t43.5 84.5q10 51 -9 80.5t-69 29.5q-41 0 -74 -28t-41 -72h-145l-2 6q16 104 96 160.5t188 56.5q111 0 172.5 -60.5t40.5 -167.5 q-12 -61 -50.5 -106.5t-94.5 -69.5q51 -24 73.5 -72t9.5 -114q-24 -118 -106.5 -175.5t-204.5 -57.5q-105 0 -171 59.5t-39 171.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="605" d="M237 1212l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xb5;" horiz-adv-x="1007" d="M-38 -416l299 1498h200l-125 -626q-40 -199 -13.5 -260.5t107.5 -61.5q66 0 118.5 38t90.5 109l160 801h200l-216 -1082h-184l10 77q-45 -49 -98 -73.5t-114 -24.5q-46 0 -82.5 16t-60.5 49l-92 -460h-200z" />
<glyph unicode="&#xb6;" horiz-adv-x="868" d="M176 988q43 220 170.5 344t318.5 124h268l-291 -1456h-201l104 520h-67q-175 0 -259 132t-43 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="496" d="M177 606l43 214h200l-43 -214h-200z" />
<glyph unicode="&#xb8;" horiz-adv-x="454" d="M-54 -435l16 106q45 0 81 25.5t46 75.5q10 53 -12 71t-88 25l51 134h148l-21 -58q50 -10 76 -51t10 -121q-21 -104 -99 -158t-203 -52z" />
<glyph unicode="&#xb9;" horiz-adv-x="482" d="M244 665l133 666l-102 -3l25 126l263 23l-162 -812h-157z" />
<glyph unicode="&#xba;" horiz-adv-x="779" d="M228 1026l23 117q32 156 124 245t222 89q119 0 180 -95t32 -239l-23 -117q-32 -158 -123.5 -246t-220.5 -88q-120 0 -182 94t-32 240zM369 1026q-20 -100 4 -155.5t94 -55.5q61 0 110.5 59.5t68.5 151.5l23 117q20 96 -4.5 152t-92.5 56q-62 0 -112 -60t-68 -148z" />
<glyph unicode="&#xbb;" horiz-adv-x="831" d="M31 155l276 395l-118 396h136l154 -386l-2 -6h1l-3 -13l-308 -386h-136zM337 155l276 395l-118 396h136l154 -386l-2 -6h1l-3 -13l-308 -386h-136z" />
<glyph unicode="&#xbc;" horiz-adv-x="1267" d="M198 184l801 1138l89 -63l-799 -1138zM284 664l133 666l-102 -3l25 126l263 23l-162 -812h-157zM568 155l11 95l450 551h156l-105 -524h91l-24 -122h-91l-31 -155h-155l31 155h-333zM745 277h180l63 316l-5 3l-12 -16z" />
<glyph unicode="&#xbd;" horiz-adv-x="1335" d="M201 184l801 1138l89 -63l-799 -1138zM277 664l133 666l-102 -3l25 126l263 23l-162 -812h-157zM639 0l24 121l301 267q64 60 87.5 99t32.5 84q11 56 -3 87t-58 31q-45 0 -79.5 -36t-44.5 -90h-147l-2 6q16 107 98 175t201 68q105 0 158.5 -64t31.5 -178 q-17 -84 -67.5 -141t-169.5 -159l-142 -143l3 -6h291l-24 -121h-491z" />
<glyph unicode="&#xbe;" horiz-adv-x="1429" d="M190 887l2 5h149q-12 -55 9.5 -85t72.5 -30q47 0 85 31.5t49 84.5q13 68 -9 96.5t-79 28.5h-98l16 79l7 34h98q48 0 80.5 30.5t43.5 84.5q10 51 -9 80.5t-69 29.5q-41 0 -74 -28t-41 -72h-145l-2 6q16 104 96 160.5t188 56.5q111 0 172.5 -60.5t40.5 -167.5 q-12 -61 -50.5 -106.5t-94.5 -69.5q51 -24 73.5 -72t9.5 -114q-24 -118 -106.5 -175.5t-204.5 -57.5q-105 0 -171 59.5t-39 171.5zM360 184l801 1138l89 -63l-799 -1138zM719 155l11 95l450 551h156l-105 -524h91l-24 -122h-91l-31 -155h-155l31 155h-333zM896 277h180 l63 316l-5 3l-12 -16z" />
<glyph unicode="&#xbf;" horiz-adv-x="853" d="M2 -3q27 137 101 235t197 208q56 50 77.5 96.5t40.5 136.5h201q-29 -134 -67 -192t-147 -150q-85 -91 -134 -163t-68 -168q-24 -117 5.5 -175t109.5 -58q60 0 120.5 57t81.5 156h192l2 -6q-33 -173 -152.5 -270.5t-275.5 -97.5q-160 0 -239.5 106.5t-44.5 284.5zM457 883 l39 199h204l-39 -199h-204z" />
<glyph unicode="&#xc0;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM548 1827h230l118 -266h-166z" />
<glyph unicode="&#xc1;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM698 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xc2;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM530 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xc3;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM517 1630q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34 t-34.5 -82z" />
<glyph unicode="&#xc4;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM501 1617l30 185h202l-30 -185h-202zM911 1617l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xc5;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM656 1734q16 83 76.5 133.5t135.5 50.5q67 0 109 -54t27 -130q-17 -85 -76 -133t-133 -48q-69 0 -112 51.5t-27 129.5zM747 1734q-9 -44 10 -70t55 -26q33 0 62 27t38 69 q9 46 -8 72.5t-53 26.5q-33 0 -64.5 -28.5t-39.5 -70.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1576" d="M-79 0l959 1456h801l-31 -157h-516l-78 -467h434l-31 -155h-429l-87 -522h527l-31 -155h-722l60 361h-389l-228 -361h-239zM495 531h310l109 652l-5 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1041" d="M132 603l52 260q58 293 201 453.5t347 160.5q196 0 304 -135.5t80 -363.5h-199q18 164 -31.5 253.5t-173.5 89.5q-108 0 -197.5 -128t-129.5 -328l-52 -262q-44 -215 7.5 -342.5t177.5 -127.5q109 0 177.5 79t116.5 247h192l2 -6q-58 -227 -182 -350.5t-323 -123.5 q-196 0 -309.5 180t-59.5 444zM284 -440l16 106q45 0 81 25.5t46 75.5q10 53 -12 71t-88 25l51 134h148l-21 -58q50 -10 76 -51t10 -121q-21 -104 -99 -158t-203 -52z" />
<glyph unicode="&#xc8;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM487 1827h230l118 -266h-166z" />
<glyph unicode="&#xc9;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM637 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xca;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM469 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xcb;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM440 1617l30 185h202l-30 -185h-202zM850 1617l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xcc;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM231 1827h230l118 -266h-166z" />
<glyph unicode="&#xcd;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM379 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xce;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM213 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xcf;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM184 1617l30 185h202l-30 -185h-202zM594 1617l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xd0;" horiz-adv-x="1140" d="M83 0l134 670h-120l28 141h120l129 645h351q211 0 336 -183t72 -450l-42 -207q-59 -297 -214 -456.5t-378 -159.5h-416zM315 154h209q130 0 227.5 126.5t139.5 335.5l42 210q42 214 -27 344t-218 130h-144l-98 -489h210l-28 -141h-210z" />
<glyph unicode="&#xd1;" horiz-adv-x="1199" d="M53 0l291 1456h201l302 -1065l6 1l212 1064h200l-291 -1456h-200l-301 1069l-6 -1l-213 -1068h-201zM546 1630q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49 q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xd2;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM541 1848h230l118 -266h-166z" />
<glyph unicode="&#xd3;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM691 1579l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xd4;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM523 1620l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xd5;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM510 1651q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xd6;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM494 1638l30 185h202l-30 -185h-202zM904 1638l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xd7;" horiz-adv-x="945" d="M61 344l347 338l-211 337l147 119l202 -322l331 322l99 -119l-346 -337l213 -338l-147 -119l-204 323l-332 -323z" />
<glyph unicode="&#xd8;" horiz-adv-x="1157" d="M47 -90l133 196q-58 72 -76.5 178.5t9.5 242.5l80 400q55 275 205.5 412.5t366.5 137.5q81 0 150.5 -27t120.5 -78l95 140h118l-153 -226q34 -71 42.5 -161.5t-12.5 -197.5l-80 -400q-56 -276 -208.5 -412t-371.5 -136q-62 0 -116 15t-98 45l-87 -129h-118zM292.5 391 q-2.5 -59 7.5 -96l6 -2l619 914q-23 56 -71.5 83t-120.5 27q-119 0 -211.5 -100.5t-129.5 -286.5l-81 -403q-16 -77 -18.5 -136zM351 185q25 -25 61.5 -36.5t84.5 -11.5q122 0 216.5 100.5t132.5 289.5l81 403q7 35 11 66t4 52l-5 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM537 1827h230l118 -266h-166z" />
<glyph unicode="&#xda;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM687 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xdb;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM519 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z " />
<glyph unicode="&#xdc;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM490 1617l30 185h202l-30 -185h-202zM900 1617l30 185h202l-30 -185h-202z " />
<glyph unicode="&#xdd;" horiz-adv-x="1061" d="M233 1456h224l137 -694l6 -1l417 695h223l-594 -934l-104 -522h-199l108 539zM662 1554l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xde;" horiz-adv-x="1016" d="M45 0l291 1456h201l-58 -290h196q183 0 275 -121.5t56 -306.5q-41 -204 -171.5 -316.5t-330.5 -112.5h-196l-62 -309h-201zM339 464h196q100 0 173.5 80.5t95.5 191.5q24 121 -13.5 198t-146.5 77h-196z" />
<glyph unicode="&#xdf;" horiz-adv-x="1042" d="M37 0l218 1088q45 230 165.5 342.5t290.5 112.5q129 0 205 -87.5t45 -245.5q-25 -123 -92 -223t-80 -166q-17 -85 84 -223.5t74 -277.5q-37 -182 -139 -261.5t-267 -79.5q-61 0 -126.5 20t-90.5 50l70 154q28 -28 72 -49.5t95 -21.5q68 0 118.5 50.5t67.5 130.5 q19 95 -84 231t-75 275q19 98 89.5 200.5t86.5 178.5q18 91 -10 141t-79 50q-68 0 -130.5 -80.5t-90.5 -222.5l-217 -1086h-200z" />
<glyph unicode="&#xe0;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM370 1505h230l118 -266h-166z" />
<glyph unicode="&#xe1;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM520 1236l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xe2;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM352 1277l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xe3;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM339 1308q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61 q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xe4;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM323 1295l30 185h202l-30 -185h-202zM733 1295l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xe5;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM478 1412q16 83 76.5 133.5t135.5 50.5q67 0 109 -54t27 -130q-17 -85 -76 -133t-133 -48q-69 0 -112 51.5t-27 129.5zM569 1412 q-9 -44 10 -70t55 -26q33 0 62 27t38 69q9 46 -8 72.5t-53 26.5q-33 0 -64.5 -28.5t-39.5 -70.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1420" d="M30 304q33 168 146.5 251t303.5 83h163l16 78q23 116 -1.5 173t-94.5 57q-69 0 -125.5 -55.5t-71.5 -133.5l-188 16l-1 6q25 149 138.5 236t279.5 87q80 0 142 -32t97 -93q63 61 138 93t159 32q160 0 234.5 -131t32.5 -348l-25 -124h-552q-35 -174 1 -270t156 -96 q74 0 136 27.5t129 75.5l32 -132q-53 -47 -143.5 -86t-198.5 -39q-100 0 -173.5 46.5t-112.5 131.5q-62 -76 -158.5 -127t-217.5 -51q-137 0 -204 89t-37 236zM230 300q-17 -85 9.5 -129t100.5 -44q50 0 117.5 40t110.5 91l48 243h-162q-82 0 -145 -59.5t-79 -141.5z M856 644l3 -5h344l6 30q26 131 1 204t-110 73q-79 0 -144 -84.5t-100 -217.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="889" d="M80 465l24 149q35 219 158.5 353.5t318.5 134.5q152 0 235 -111t55 -288h-187q18 112 -17 177.5t-111 65.5q-104 0 -166.5 -95t-84.5 -237l-24 -149q-24 -152 5.5 -242t139.5 -90q68 0 127 58.5t75 156.5h179l2 -6q-23 -159 -140.5 -261t-266.5 -102q-186 0 -270.5 138.5 t-51.5 347.5zM217 -440l16 106q45 0 81 25.5t46 75.5q10 53 -12 71t-88 25l51 134h148l-21 -58q50 -10 76 -51t10 -121q-21 -104 -99 -158t-203 -52z" />
<glyph unicode="&#xe8;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM316 644h351l7 41q19 119 -11.5 190t-114.5 71 q-78 0 -141.5 -86t-90.5 -216zM335 1506h230l118 -266h-166z" />
<glyph unicode="&#xe9;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM316 644h351l7 41q19 119 -11.5 190t-114.5 71 q-78 0 -141.5 -86t-90.5 -216zM485 1237l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xea;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM316 644h351l7 41q19 119 -11.5 190t-114.5 71 q-78 0 -141.5 -86t-90.5 -216zM317 1278l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xeb;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM288 1296l30 185h202l-30 -185h-202zM316 644h351l7 41 q19 119 -11.5 190t-114.5 71q-78 0 -141.5 -86t-90.5 -216zM698 1296l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xec;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM141 1484h230l118 -266h-166z" />
<glyph unicode="&#xed;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM289 1215l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xee;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM123 1256l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xef;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM94 1274l30 185h202l-30 -185h-202zM504 1274l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xf0;" horiz-adv-x="1002" d="M67 462q49 245 183 375.5t318 130.5q62 0 116 -29.5t87 -79.5l5 4q5 103 -10.5 184t-49.5 142l-240 -148l-44 94l223 137q-27 26 -58 47.5t-66 40.5l93 157q58 -25 108 -60t92 -81l210 129l43 -94l-194 -119q69 -120 87 -285.5t-23 -369.5l-17 -87q-54 -268 -204 -419.5 t-336 -151.5q-172 0 -268 140.5t-55 342.5zM268 462q-28 -140 12.5 -234t143.5 -94q94 0 182 119t124 297l18 89q4 22 5 29t3 17q-16 57 -66.5 94.5t-132.5 37.5q-94 0 -176.5 -103t-112.5 -252z" />
<glyph unicode="&#xf1;" d="M27 0l216 1082h184l-19 -149q59 82 132.5 125.5t156.5 43.5q127 0 185 -107t15 -324l-134 -671h-201l134 669q31 161 4.5 218t-110.5 57q-54 0 -106.5 -39.5t-96.5 -107.5l-159 -797h-201zM361 1308q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5 t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xf2;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M358 1505h230l118 -266h-166z" />
<glyph unicode="&#xf3;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M508 1236l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xf4;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M340 1277l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xf5;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M327 1308q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xf6;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M311 1295l30 185h202l-30 -185h-202zM721 1295l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xf7;" horiz-adv-x="969" d="M103 608l34 171h818l-34 -171h-818zM329 193l39 195h201l-39 -195h-201zM490 999l39 195h201l-39 -195h-201z" />
<glyph unicode="&#xf8;" horiz-adv-x="961" d="M47 -139l126 212q-63 66 -87 169t-3 229l22 138q35 224 163 358.5t318 134.5q49 0 92.5 -12t80.5 -34l93 157h119l-135 -226q53 -68 72 -165.5t1 -212.5l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-43 0 -81.5 9t-71.5 25l-90 -152h-118zM272 354.5 q0 -52.5 11 -86.5l6 -1l378 636q-20 20 -46.5 31.5t-59.5 11.5q-99 0 -166 -96t-90 -241l-22 -138q-11 -64 -11 -116.5zM342 159q17 -13 39.5 -19.5t50.5 -6.5q96 0 163 96t91 242l22 138q7 49 9 91.5t-2 71.5l-6 2z" />
<glyph unicode="&#xf9;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM389 1484h230l118 -266h-166z" />
<glyph unicode="&#xfa;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM539 1215l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xfb;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM371 1256l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xfc;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM342 1274l30 185h202l-30 -185h-202zM752 1274l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xfd;" horiz-adv-x="863" d="M-77 -419l52 150q11 -2 28.5 -4t27.5 -2q51 0 96.5 52.5t75.5 117.5l55 108l-102 1079h218l23 -709l1 -60l6 -1l346 770h218l-610 -1250q-57 -111 -135.5 -190t-195.5 -79q-23 0 -50.5 5.5t-53.5 12.5zM490 1215l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xfe;" horiz-adv-x="971" d="M-49 -416l83 416l16 83l200 999l96 478h200l-112 -557q49 48 106.5 73.5t123.5 25.5q152 0 220.5 -170t18.5 -424l-5 -21q-51 -255 -156 -381.5t-268 -126.5q-71 0 -127 30t-93 86l-102 -511h-201zM284 246q17 -55 56 -84t102 -29q92 0 157 94.5t98 259.5l5 21 q39 196 10.5 316t-128.5 120q-54 0 -102 -40t-88 -107z" />
<glyph unicode="&#xff;" horiz-adv-x="863" d="M-77 -419l52 150q11 -2 28.5 -4t27.5 -2q51 0 96.5 52.5t75.5 117.5l55 108l-102 1079h218l23 -709l1 -60l6 -1l346 770h218l-610 -1250q-57 -111 -135.5 -190t-195.5 -79q-23 0 -50.5 5.5t-53.5 12.5zM293 1274l30 185h202l-30 -185h-202zM703 1274l30 185h202l-30 -185 h-202z" />
<glyph unicode="&#x152;" horiz-adv-x="1616" d="M124 576l61 304q56 282 215.5 439.5t374.5 157.5q51 0 110.5 -6t119.5 -15h725l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-731q-76 -10 -130 -15.5t-107 -5.5q-197 0 -301 168.5t-52 428.5zM324 576q-45 -223 5 -332.5t179 -109.5q42 0 86 3 t86 10l232 1161q-40 6 -82.5 10t-85.5 4q-119 0 -218.5 -117t-140.5 -323z" />
<glyph unicode="&#x153;" horiz-adv-x="1517" d="M105 526l6 27q51 257 185 403t324 146q91 0 158.5 -45.5t107.5 -126.5q68 83 152.5 127.5t176.5 44.5q165 0 239 -132t32 -345l-25 -126h-550q-32 -170 4 -268t143 -98q75 0 140 27t126 77l37 -126q-59 -58 -149 -95t-198 -37q-92 0 -161 44t-109 125 q-69 -83 -156.5 -126t-189.5 -43q-176 0 -258.5 155t-34.5 392zM296.5 238q28.5 -105 132.5 -105q94 0 169.5 112.5t109.5 280.5l6 27q35 181 7 287t-132 106q-94 0 -170 -114t-108 -279l-6 -27q-37 -183 -8.5 -288zM945 644h347l5 28q25 127 -1.5 200.5t-111.5 73.5 q-69 0 -134.5 -85.5t-104.5 -216.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1061" d="M233 1456h224l137 -694l6 -1l417 695h223l-594 -934l-104 -522h-199l108 539zM465 1613l30 185h202l-30 -185h-202zM875 1613l30 185h202l-30 -185h-202z" />
<glyph unicode="&#x2c6;" horiz-adv-x="831" d="M301 1252l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#x2dc;" horiz-adv-x="818" d="M248 1276q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#x2000;" horiz-adv-x="959" />
<glyph unicode="&#x2001;" horiz-adv-x="1918" />
<glyph unicode="&#x2002;" horiz-adv-x="959" />
<glyph unicode="&#x2003;" horiz-adv-x="1918" />
<glyph unicode="&#x2004;" horiz-adv-x="639" />
<glyph unicode="&#x2005;" horiz-adv-x="479" />
<glyph unicode="&#x2006;" horiz-adv-x="319" />
<glyph unicode="&#x2007;" horiz-adv-x="319" />
<glyph unicode="&#x2008;" horiz-adv-x="239" />
<glyph unicode="&#x2009;" horiz-adv-x="383" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#x2011;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#x2012;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#x2013;" horiz-adv-x="1167" d="M208 649l40 155h875l-40 -155h-875z" />
<glyph unicode="&#x2014;" horiz-adv-x="1368" d="M202 649l49 155h1077l-49 -155h-1077z" />
<glyph unicode="&#x2018;" horiz-adv-x="357" d="M187 1040l36 182l198 338h98l-116 -339l-36 -181h-180z" />
<glyph unicode="&#x2019;" horiz-adv-x="357" d="M191 1041l113 329l38 190h181l-38 -188l-196 -331h-98z" />
<glyph unicode="&#x201a;" horiz-adv-x="356" d="M-69 -239l101 265l48 239h181l-45 -225l-180 -279h-105z" />
<glyph unicode="&#x201c;" horiz-adv-x="625" d="M187 1040l36 182l198 338h98l-116 -339l-36 -181h-180zM454 1040l36 182l198 338h98l-116 -339l-36 -181h-180z" />
<glyph unicode="&#x201d;" horiz-adv-x="632" d="M190 1041l113 329l38 190h181l-38 -188l-196 -331h-98zM462 1041l113 329l38 190h181l-38 -188l-196 -331h-98z" />
<glyph unicode="&#x201e;" horiz-adv-x="614" d="M-65 -219l107 294l42 208h174l-40 -199l-191 -303h-92zM198 -219l108 300l41 202h174l-40 -199l-191 -303h-92z" />
<glyph unicode="&#x2022;" horiz-adv-x="629" d="M187 721l15 72q18 93 78.5 146t146.5 53q81 0 123.5 -56.5t25.5 -142.5l-15 -72q-19 -95 -78.5 -146.5t-146.5 -51.5q-81 0 -124 55.5t-25 142.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1200" d="M53 0l41 203h201l-41 -203h-201zM424 0l41 203h201l-41 -203h-201zM781 0l41 203h201l-41 -203h-201z" />
<glyph unicode="&#x202f;" horiz-adv-x="383" />
<glyph unicode="&#x2039;" horiz-adv-x="533" d="M124 542l1 6l1 7l1 6l308 384h136l-277 -395l120 -393h-136z" />
<glyph unicode="&#x203a;" horiz-adv-x="524" d="M27 155l276 395l-118 396h136l154 -386l-2 -6h1l-3 -13l-308 -386h-136z" />
<glyph unicode="&#x205f;" horiz-adv-x="479" />
<glyph unicode="&#x20ac;" horiz-adv-x="916" d="M86 491l30 155h118l29 141h-117l30 155h118l5 23q47 239 190 375.5t339 136.5q44 0 92 -8.5t98 -22.5l-49 -160q-40 16 -83 25.5t-89 9.5q-98 0 -182.5 -102.5t-114.5 -251.5l-5 -25h367l-30 -155h-368l-30 -141h368l-30 -155h-367l-2 -9q-33 -161 9 -255t149 -94 q44 0 92.5 8.5t91.5 25.5l-14 -157q-49 -15 -100 -23t-101 -8q-180 0 -275.5 144t-52.5 359l2 9h-118z" />
<glyph unicode="&#x2122;" horiz-adv-x="1064" d="M282 1371l17 85h316l-17 -85h-111l-90 -453h-96l90 453h-109zM566 917l108 539h113l33 -391l6 -1l189 392h107l-108 -539h-89l62 310l-6 2l-163 -312h-50l-40 325l-6 1l-65 -326h-91z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1062" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM649 0l312 1560h200l-312 -1560h-200z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1599" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM687 0l187 937h-134l29 145h134l23 111q39 198 150 293t283 95q56 0 115 -16 t122 -44l-61 -158q-43 22 -90.5 35.5t-105.5 13.5q-82 0 -137 -56.5t-75 -162.5l-23 -111h171l-29 -145h-171l-187 -937h-201zM1186 0l216 1082h201l-216 -1082h-201z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1669" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM704 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88 q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM1256 0l312 1560h200l-312 -1560h-200z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'roboto_condenseditalic';
src: url('RobotoCondensed-Italic-webfont.eot');
src: url('RobotoCondensed-Italic-webfont.eot?#iefix') format('embedded-opentype'),
url('RobotoCondensed-Italic-webfont.woff') format('woff'),
url('RobotoCondensed-Italic-webfont.ttf') format('truetype'),
url('RobotoCondensed-Italic-webfont.svg#roboto_condenseditalic') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'robotoitalic';
}
</style>
<title>Roboto Italic Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Italic </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Italic</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,642 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotoitalic" horiz-adv-x="1096" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="485" />
<glyph unicode="&#xfb01;" horiz-adv-x="1075" d="M100 0l187 936h-157l29 146h157l24 117q38 194 155.5 288t300.5 94q58 0 119.5 -16t134.5 -45l-66 -160q-42 21 -96 36t-111 15q-102 0 -163 -53t-81 -159l-24 -117h195l-29 -146h-195l-187 -936h-193zM645 0l216 1082h194l-216 -1082h-194z" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="485" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph unicode=" " horiz-adv-x="485" />
<glyph unicode="&#x09;" horiz-adv-x="485" />
<glyph unicode="&#xa0;" horiz-adv-x="485" />
<glyph unicode="!" horiz-adv-x="521" d="M81 0l41 204h191l-41 -204h-191zM175 478l195 978h194l-195 -978h-194z" />
<glyph unicode="&#x22;" horiz-adv-x="642" d="M191 1040l39 240l45 280h154l-44 -270l-100 -250h-94zM487 1040l39 248l44 272h155l-44 -270l-101 -250h-93z" />
<glyph unicode="#" horiz-adv-x="1197" d="M67 410l28 140h243l134 348h-236l28 142h262l160 416h147l-159 -416h229l160 416h147l-159 -416h180l-28 -142h-207l-133 -348h201l-28 -140h-227l-157 -410h-148l157 410h-229l-157 -410h-147l157 410h-218zM486 550h229l133 348h-229z" />
<glyph unicode="$" horiz-adv-x="1085" d="M105 429h193q-26 -160 31.5 -222.5t161.5 -62.5q113 0 190.5 62.5t95.5 169.5q15 92 -32.5 154.5t-172.5 112.5q-178 61 -258 163t-53 272q27 171 130.5 272.5t261.5 121.5l35 221h154l-36 -223q147 -26 215 -146t37 -317h-192q22 141 -20 222.5t-144 81.5 q-101 0 -166 -62.5t-81 -167.5q-16 -100 29.5 -158.5t180.5 -112.5q180 -66 256 -164.5t49 -267.5q-29 -178 -139.5 -277t-282.5 -117l-30 -192h-154l30 192q-151 20 -237 128.5t-52 316.5z" />
<glyph unicode="%" horiz-adv-x="1401" d="M236 1099l15 77q27 135 119 218t223 83q120 0 183.5 -88t38.5 -213l-15 -77q-28 -135 -119 -217t-221 -82q-121 0 -185.5 87.5t-38.5 211.5zM275 177l890 1138l93 -67l-890 -1138zM378 1099q-16 -79 10 -128t96 -49q61 0 110 52t64 125l15 77q15 79 -11 129t-93 50 q-63 0 -112.5 -53.5t-63.5 -125.5zM724 279l15 78q27 135 119 217.5t223 82.5q120 0 183.5 -88t38.5 -212l-15 -78q-28 -136 -119.5 -218t-220.5 -82q-121 0 -185.5 87.5t-38.5 212.5zM866 279q-16 -79 10 -128.5t96 -49.5q61 0 110 52.5t64 125.5l15 78q15 78 -11 128 t-93 50q-63 0 -112.5 -53t-63.5 -125z" />
<glyph unicode="&#x26;" horiz-adv-x="1199" d="M54 392q20 126 99 214.5t227 181.5q-59 99 -82.5 177t-9.5 160q27 175 132 263.5t268 88.5q143 0 225 -92t63 -218q-17 -102 -77 -170.5t-172 -145.5l-110 -78l245 -403q48 65 81 141.5t47 161.5h172q-23 -137 -76 -246t-138 -197l140 -230h-231l-59 98 q-84 -58 -177.5 -88.5t-188.5 -30.5q-196 0 -302 116t-76 297zM247 392q-19 -117 33.5 -188t175.5 -71q63 0 131 24.5t132 70.5l-261 433l-39 -27q-93 -68 -128.5 -130t-43.5 -112zM481 1127q-9 -54 7 -110t55 -123l137 92q59 38 84 82t35 99q10 64 -27 109.5t-108 45.5 q-70 0 -120 -57t-63 -138z" />
<glyph unicode="'" horiz-adv-x="345" d="M195 1055l41 265l39 240h154l-36 -223l-105 -282h-93z" />
<glyph unicode="(" horiz-adv-x="647" d="M150 582l2 9q65 410 256 679t374 365l6 -1l18 -115q-143 -108 -274.5 -344t-186.5 -582l-2 -13q-59 -361 -3.5 -588t166.5 -347l-53 -108l-6 1q-149 93 -255 371.5t-42 672.5z" />
<glyph unicode=")" horiz-adv-x="653" d="M-118 -355q141 106 274 346.5t190 588.5l2 13q56 356 -3 588t-162 347l55 108l6 -1q146 -94 252.5 -373t44.5 -671l-2 -9q-66 -410 -257.5 -678.5t-373.5 -366.5l-6 1z" />
<glyph unicode="*" horiz-adv-x="834" d="M160 1071l79 154l248 -111l58 342h157l-78 -348l290 110l15 -156l-294 -89l122 -270l-148 -96l-106 287l-216 -279l-110 93l235 274z" />
<glyph unicode="+" horiz-adv-x="1091" d="M114 605l36 178h369l85 423h193l-85 -423h366l-36 -178h-365l-92 -459h-193l92 459h-370z" />
<glyph unicode="," horiz-adv-x="387" d="M-92 -258l129 316l32 163h194l-34 -173l-208 -306h-113z" />
<glyph unicode="-" horiz-adv-x="529" d="M59 538l30 154h457l-30 -154h-457z" />
<glyph unicode="." horiz-adv-x="527" d="M69 0l40 202h191l-40 -202h-191z" />
<glyph unicode="/" horiz-adv-x="805" d="M-92 -125l882 1581h162l-880 -1581h-164z" />
<glyph unicode="0" horiz-adv-x="1082" d="M134 555l69 345q59 296 201 436.5t346 140.5q188 0 280 -152t38 -425l-69 -345q-60 -297 -200.5 -436.5t-345.5 -139.5q-187 0 -280.5 151.5t-38.5 424.5zM319 515q-40 -201 3 -291.5t162 -90.5q109 0 192.5 98t121.5 284l85 427q40 201 -2.5 290.5t-161.5 89.5 q-109 0 -193.5 -97.5t-121.5 -282.5z" />
<glyph unicode="1" horiz-adv-x="1085" d="M320 1241l25 123l521 92l-291 -1456h-193l249 1245z" />
<glyph unicode="2" horiz-adv-x="1085" d="M42 0l22 135l528 530q141 142 195.5 226.5t69.5 172.5q18 112 -27 185t-139 73q-133 0 -213.5 -78.5t-102.5 -216.5h-184l-2 6q27 195 167 319.5t359 124.5q176 0 270 -115.5t66 -290.5q-20 -124 -101.5 -239.5t-224.5 -255.5l-420 -416l2 -6h643l-25 -154h-883z" />
<glyph unicode="3" horiz-adv-x="1085" d="M88 379l2 5h186q-19 -120 32 -185.5t163 -65.5q108 0 184.5 68.5t98.5 200.5q23 141 -21.5 202t-168.5 61h-164l18 113l7 41h164q113 0 173.5 66t79.5 182q20 129 -25 192t-154 63q-100 0 -175.5 -68t-92.5 -179h-184l-2 6q22 171 154.5 283.5t323.5 112.5 q182 0 280 -108.5t67 -305.5q-16 -95 -79.5 -183t-173.5 -134q111 -45 148 -137t20 -203q-34 -207 -172 -317t-330 -110q-180 0 -286.5 108.5t-72.5 291.5z" />
<glyph unicode="4" horiz-adv-x="1085" d="M36 336l22 111l796 1009h203l-193 -966h183l-31 -154h-183l-67 -336h-192l67 336h-605zM275 495l3 -5h394l133 668l-6 2l-19 -36z" />
<glyph unicode="5" horiz-adv-x="1085" d="M139 378l2 5h175q-20 -123 31 -186.5t150 -63.5q107 0 186.5 89t103.5 240q22 146 -26.5 233t-161.5 87q-100 0 -154 -35.5t-86 -106.5l-158 17l206 799h681l-28 -175h-517l-109 -409q46 34 101 56.5t119 24.5q189 2 275.5 -131t50.5 -358q-37 -227 -166 -356t-341 -129 q-166 0 -268 102t-66 297z" />
<glyph unicode="6" horiz-adv-x="1085" d="M146 571l45 278q46 291 218.5 459.5t392.5 168.5q68 0 135.5 -17.5t105.5 -42.5l-64 -151q-40 25 -87 40.5t-114 15.5q-139 0 -250 -126t-142 -325l-2 -13q67 52 147.5 80.5t167.5 28.5q174 0 264 -136t57 -341q-37 -234 -173 -372.5t-331 -138.5q-193 0 -304 156.5 t-66 435.5zM335 552q-34 -209 26.5 -314t178.5 -105q104 0 183 103.5t103 253.5q24 149 -26.5 239.5t-167.5 90.5q-89 0 -160.5 -40.5t-117.5 -107.5z" />
<glyph unicode="7" horiz-adv-x="1085" d="M215 1301l25 155h920l-25 -155q-300 -311 -419 -549t-215 -595l-41 -157h-193l41 157q93 344 248 615t390 529h-731z" />
<glyph unicode="8" horiz-adv-x="1085" d="M94 394q26 133 113 225t215 133q-91 44 -133.5 129t-20.5 195q41 206 168.5 303.5t314.5 97.5q168 0 265 -106t60 -295q-25 -123 -100.5 -207.5t-185.5 -123.5q105 -47 157.5 -139.5t29.5 -211.5q-44 -216 -183 -315.5t-340 -99.5q-188 0 -294 108t-66 307zM288 398 q-27 -132 26.5 -198.5t170.5 -66.5q103 0 189.5 72t111.5 193q25 128 -30 201t-166 73q-104 0 -191.5 -78t-110.5 -196zM460 1072q-24 -119 21 -182t142 -63q87 0 162 68t97 177q23 115 -22.5 182.5t-139.5 67.5q-88 0 -163 -69.5t-97 -180.5z" />
<glyph unicode="9" horiz-adv-x="1085" d="M139 38l53 149q51 -29 108 -41.5t131 -12.5q126 0 225 110t134 323l4 25q-55 -67 -127 -100.5t-154 -33.5q-191 0 -289 133t-60 368q38 237 182.5 378t321.5 141q206 0 310 -144t60 -418l-55 -347q-48 -297 -203 -443t-373 -146q-69 0 -142 14.5t-126 44.5zM357 958 q-26 -163 22 -254.5t159 -91.5q95 0 170 48t116 121l25 154q31 200 -18.5 293.5t-180.5 93.5q-93 0 -180.5 -103t-112.5 -261z" />
<glyph unicode=":" horiz-adv-x="502" d="M70 0l40 202h191l-40 -202h-191zM246 880l40 202h191l-40 -202h-191z" />
<glyph unicode=";" horiz-adv-x="510" d="M-42 -258l129 316l32 163h194l-34 -173l-208 -306h-113zM247 880l40 202h191l-40 -202h-191z" />
<glyph unicode="&#x3c;" horiz-adv-x="976" d="M82 486l22 108l8 41l834 378l-41 -201l-559 -233l-86 -18v-6l77 -19l468 -228l-41 -201z" />
<glyph unicode="=" horiz-adv-x="1083" d="M143 407l33 164h775l-33 -164h-775zM227 823l32 164h775l-32 -164h-775z" />
<glyph unicode="&#x3e;" horiz-adv-x="1008" d="M65 107l40 196l599 238l86 18v6l-77 19l-505 234l39 195l722 -378l-8 -40l-14 -69l-8 -40z" />
<glyph unicode="?" horiz-adv-x="921" d="M198 1122q30 161 158.5 258t298.5 97q173 0 261 -102t53 -279q-27 -137 -107.5 -234t-222.5 -221q-60 -54 -79 -97t-37 -134h-194q30 145 64 200.5t149 148.5q125 132 170 188t63 144q22 113 -17.5 166.5t-135.5 53.5q-77 0 -148 -50.5t-89 -144.5h-185zM246 0l42 208 h200l-42 -208h-200z" />
<glyph unicode="@" horiz-adv-x="1710" d="M121 478q102 423 368 688t612 265q328 0 477.5 -254.5t49.5 -674.5q-51 -214 -185 -368.5t-342 -154.5q-63 0 -105.5 42t-50.5 117q-63 -80 -136.5 -119.5t-162.5 -39.5q-108 0 -151 122.5t11 314.5q73 259 210.5 415.5t290.5 156.5q92 0 152 -27.5t116 -78.5l-4 -4h6 l-164 -585q-31 -110 -12 -151.5t66 -41.5q104 0 198.5 116t135.5 286q92 382 -13.5 595.5t-414.5 213.5q-266 0 -493.5 -235t-313.5 -598q-92 -376 18.5 -594.5t399.5 -218.5q77 0 168.5 21.5t155.5 56.5l15 -107q-72 -42 -173.5 -65.5t-192.5 -23.5q-331 0 -484 253.5 t-52 677.5zM655 200q14 -74 80 -74q77 0 152 51q31 22 61 57q5 28 14 59l151 540q-21 11 -45 17.5t-51 6.5q-108 0 -192.5 -111.5t-145.5 -329.5q-38 -142 -24 -216z" />
<glyph unicode="A" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2z" />
<glyph unicode="B" horiz-adv-x="1233" d="M86 0l291 1456h448q199 0 306 -100q78 -73 79 -197q0 -45 -11 -97q-21 -103 -92 -177t-174 -110q117 -27 167 -129q32 -66 31 -145q0 -43 -9 -90q-43 -213 -181 -312t-350 -99h-505zM310 154h312q113 0 197.5 67.5t109.5 187.5q10 53 10 96q-1 67 -25 109q-40 69 -158 69 h-341zM446 837h295q90 0 167.5 61.5t98.5 167.5q8 39 8 72q1 71 -37 108q-54 55 -184 55h-255z" />
<glyph unicode="C" horiz-adv-x="1214" d="M149 607l52 260q57 289 215.5 449.5t390.5 160.5q215 1 340 -137q103 -113 102 -280q0 -36 -4 -74l-2 -5h-187q1 21 1 40q0 129 -58 209q-67 92 -214 92q-138 0 -244.5 -128.5t-145.5 -324.5l-53 -262q-15 -75 -15 -141q-1 -116 47 -200q74 -132 230 -133q134 0 212.5 76 t132.5 238h185l2 -6q-61 -214 -197 -338t-356 -124q-219 -1 -353 183q-96 131 -96 303q0 68 15 142z" />
<glyph unicode="D" horiz-adv-x="1265" d="M86 0l291 1456h382q253 0 403 -184q110 -136 110 -318q0 -66 -14 -137l-39 -198q-61 -301 -234 -460t-443 -159h-456zM310 154h263q171 0 291 128.5t162 336.5l40 201q13 67 13 127q0 130 -64 221q-94 133 -287 133h-189z" />
<glyph unicode="E" horiz-adv-x="1125" d="M86 0l291 1456h893l-31 -155h-700l-94 -471h616l-31 -155h-616l-104 -521h711l-31 -154h-904z" />
<glyph unicode="F" horiz-adv-x="1121" d="M86 0l291 1456h900l-31 -155h-707l-101 -502h613l-31 -155h-613l-128 -644h-193z" />
<glyph unicode="G" horiz-adv-x="1308" d="M144 578l60 300q55 282 233 440.5t417 158.5q214 0 322 -123q96 -107 96 -270q0 -22 -2 -46l-3 -6h-185v13q0 123 -54 198q-58 79 -205 79q-141 0 -264.5 -127t-160.5 -315l-60 -302q-15 -72 -15 -133q0 -114 52 -193q79 -119 243 -119q104 0 186 33.5t120 74.5l66 331 h-288l31 155h481l-106 -534q-65 -81 -198 -147.5t-323 -66.5q-228 0 -361 169q-97 122 -97 291q0 66 15 139z" />
<glyph unicode="H" horiz-adv-x="1370" d="M86 0l291 1456h193l-132 -658h642l132 658h193l-291 -1456h-193l128 643h-642l-128 -643h-193z" />
<glyph unicode="I" horiz-adv-x="552" d="M93 0l291 1456h194l-291 -1456h-194z" />
<glyph unicode="J" horiz-adv-x="1061" d="M58 396l3 5h186q-11 -54 -11 -97q0 -70 30 -109q48 -62 164 -62q92 0 171.5 74.5t104.5 195.5l210 1053h193l-210 -1053q-42 -208 -177 -316t-323 -108q-184 0 -285 108q-69 75 -69 195q0 53 13 114z" />
<glyph unicode="K" horiz-adv-x="1154" d="M60 0l291 1456h194l-127 -633h142l535 633h237l2 -5l-654 -726l385 -725h-220l-332 658h-128l-131 -658h-194z" />
<glyph unicode="L" horiz-adv-x="1042" d="M86 0l291 1456h193l-260 -1302h637l-31 -154h-830z" />
<glyph unicode="M" horiz-adv-x="1686" d="M86 0l291 1456h247l186 -1182l5 -1l659 1183h246l-291 -1456h-193l115 576l134 573l-5 2l-659 -1151h-128l-198 1148h-6l-95 -572l-115 -576h-193z" />
<glyph unicode="N" horiz-adv-x="1370" d="M86 0l291 1456h193l413 -1110l6 1l222 1109h194l-291 -1456h-194l-413 1112l-6 -1l-222 -1111h-193z" />
<glyph unicode="O" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185q102 -135 102 -310q0 -64 -14 -134l-52 -260q-58 -287 -230.5 -448t-420.5 -161q-224 0 -357 184q-96 132 -96 304q0 67 15 140zM338 607q-15 -75 -16 -139q0 -118 52 -200q79 -128 241 -128 q154 0 269.5 123.5t156.5 324.5l52 262q14 70 14 130q-1 122 -57 208q-84 128 -255 127q-144 0 -254.5 -124t-149.5 -322z" />
<glyph unicode="P" horiz-adv-x="1236" d="M86 0l291 1456h525q202 0 306 -122q76 -89 75 -216q0 -47 -10 -98q-43 -211 -183.5 -323.5t-361.5 -112.5h-333l-116 -584h-193zM426 738h333q124 0 210.5 81t110.5 199q8 43 8 80q0 74 -32 126q-50 78 -185 77h-332z" />
<glyph unicode="Q" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185q102 -135 102 -310q0 -64 -14 -134l-52 -260q-32 -157 -100.5 -279t-167.5 -201l175 -211l-157 -120l-190 236q-50 -16 -103 -25t-108 -9q-224 0 -357 184q-96 132 -96 304q0 67 15 140zM338 607 q-15 -75 -15 -139q0 -118 51 -200q79 -128 241 -128q154 0 269.5 123.5t156.5 324.5l52 262q14 70 14 130q0 122 -57 208q-84 127 -255 127q-144 0 -254.5 -124t-149.5 -322z" />
<glyph unicode="R" horiz-adv-x="1273" d="M86 0l291 1455h495q208 0 310 -108q74 -78 75 -204q0 -48 -11 -102q-25 -121 -95.5 -202t-186.5 -128q98 -41 133 -129q21 -52 21 -117q0 -44 -10 -94l-27 -137q-12 -57 -12 -101q0 -13 1 -23q4 -52 31 -86l-5 -24h-199q-27 31 -27 87v12q3 65 18 137l27 133q9 43 9 80 q0 69 -31 113q-47 68 -152 69h-335l-126 -631h-194zM437 786h282q140 0 224.5 65.5t110.5 191.5q9 44 9 81q0 71 -33 113q-50 64 -189 64h-301z" />
<glyph unicode="S" horiz-adv-x="1167" d="M117 423l2 6h185q-9 -45 -9 -82q1 -101 67 -149q92 -66 239 -65q101 0 184 57t101 144q7 33 7 63q-1 72 -41 119q-56 67 -227 130q-209 70 -299 174q-62 73 -63 190q0 51 12 110q34 174 167.5 265.5t325.5 91.5q214 1 332 -119q86 -87 87 -220q0 -50 -13 -107l-2 -5h-186 q8 38 8 72q0 85 -49 143q-68 81 -208 81q-99 0 -175.5 -57.5t-93.5 -142.5q-8 -40 -8 -74q0 -69 34 -109q51 -60 232 -129q214 -78 302 -180q62 -72 63 -187q0 -50 -12 -107q-36 -182 -172 -269.5t-337 -87.5q-216 1 -360 109q-107 80 -106 225q0 51 13 110z" />
<glyph unicode="T" horiz-adv-x="1124" d="M210 1301l31 155h1054l-31 -155h-431l-260 -1301h-193l260 1301h-430z" />
<glyph unicode="U" horiz-adv-x="1300" d="M148 469l197 987h193l-197 -987q-12 -61 -13 -110q0 -93 45 -146q68 -80 212 -80q140 0 252 86.5t145 249.5l197 987h193l-197 -987q-51 -254 -216.5 -372t-404.5 -118q-210 1 -332 129q-87 92 -88 237q0 58 14 124z" />
<glyph unicode="V" horiz-adv-x="1235" d="M196 1456h208l168 -1094l13 -109l6 -1l48 110l518 1094h209l-736 -1456h-165z" />
<glyph unicode="W" horiz-adv-x="1689" d="M218 1456h192l48 -952l-4 -168l5 -1l62 169l395 952h170l93 -952l6 -173l6 -1l54 174l348 952h192l-556 -1456h-172l-100 1010l-4 120l-5 1l-41 -121l-428 -1010h-172z" />
<glyph unicode="X" horiz-adv-x="1219" d="M-3 0l553 734l-311 722h231l214 -568l398 568h234l-543 -722l318 -734h-230l-223 578l-407 -578h-234z" />
<glyph unicode="Y" horiz-adv-x="1194" d="M238 1456h220l198 -717l6 -1l486 718h219l-660 -943l-103 -513h-192l105 526z" />
<glyph unicode="Z" horiz-adv-x="1078" d="M35 0l9 146l823 1155h-614l31 155h832l-28 -141l-828 -1161h683l-31 -154h-877z" />
<glyph unicode="[" horiz-adv-x="531" d="M15 -312l316 1976h366l-25 -155h-172l-266 -1666h172l-25 -155h-366z" />
<glyph unicode="\" horiz-adv-x="802" d="M246 1456h182l249 -1581h-182z" />
<glyph unicode="]" horiz-adv-x="531" d="M-103 -312l25 155h173l266 1666h-173l25 155h366l-316 -1976h-366z" />
<glyph unicode="^" horiz-adv-x="807" d="M121 729l423 727h130l132 -727h-177l-66 419l-1 60l-6 1l-25 -61l-231 -419h-179z" />
<glyph unicode="_" horiz-adv-x="882" d="M-107 -154l31 154h864l-31 -154h-864z" />
<glyph unicode="`" horiz-adv-x="613" d="M241 1477h231l118 -266h-153z" />
<glyph unicode="a" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q6 33 6 60q0 57 -28 93q-42 52 -140 53q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q160 0 254 -96q69 -70 69 -181q0 -40 -9 -86l-104 -521q-13 -61 -18 -113q-2 -26 -2.5 -52.5t2.5 -52.5h-199 q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5t-173.5 -47.5q-149 1 -219 89q-49 61 -48 151q0 40 9 85zM283 300q-5 -26 -5 -48q0 -42 20 -68q31 -40 113 -40q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140z" />
<glyph unicode="b" d="M51 0l312 1560h193l-115 -576q57 57 128 87.5t154 30.5q175 0 259 -173q53 -109 54 -250q0 -83 -19 -178l-4 -21q-50 -249 -169 -375t-306 -126q-85 0 -156 48t-113 131l-51 -158h-167zM303 295q24 -71 78 -113.5t139 -42.5q118 0 193 90.5t107 250.5l4 21q18 90 18 165 q0 88 -24 154q-46 122 -177 122q-72 0 -133.5 -46t-109.5 -123z" />
<glyph unicode="c" horiz-adv-x="1024" d="M108 520l7 42q37 239 177.5 389.5t363.5 150.5q172 0 270 -112q75 -86 74 -202q0 -36 -7 -74l-2 -5h-175q4 26 4 50q0 71 -38 121q-51 67 -150 67q-136 0 -217 -113t-106 -272l-7 -42q-11 -68 -11 -126q0 -88 25 -154q41 -108 185 -107q86 0 164.5 61t92.5 148h173l2 -6 q-20 -146 -156 -251.5t-300 -105.5q-212 0 -309 156q-70 113 -70 264q0 58 10 121z" />
<glyph unicode="d" d="M113 520l4 21q55 279 176.5 420t312.5 141q83 0 150.5 -34.5t110.5 -97.5l118 590h193l-312 -1560h-166l7 104q-60 -62 -132.5 -93.5t-156.5 -31.5q-174 0 -262 156q-58 103 -59 237q0 70 16 148zM307 520q-15 -73 -15 -133q0 -83 28 -143q48 -104 180 -105 q71 0 127.5 39.5t103.5 112.5l102 511q-26 64 -78.5 102t-130.5 38q-120 0 -198.5 -108.5t-114.5 -292.5z" />
<glyph unicode="e" horiz-adv-x="1021" d="M111 520l7 44q38 240 189.5 389t327.5 149q199 0 285 -133q62 -95 62 -234q0 -55 -10 -117l-20 -123h-652q-6 -49 -6 -92q0 -103 36 -172q52 -98 180 -98q88 0 165 29.5t134 77.5l55 -128q-61 -57 -156 -95t-222 -38q-204 -1 -308 151q-77 111 -77 269q0 58 10 121z M336 655l3 -6h445l4 26q6 38 6 71q0 74 -29 126q-42 76 -154 75q-84 0 -162.5 -84t-112.5 -208z" />
<glyph unicode="f" horiz-adv-x="672" d="M137 0l187 936h-156l29 146h156l28 137q36 184 137.5 273t257.5 89q30 0 62 -6t69 -15l-52 -150q-16 4 -39 7t-48 3q-74 0 -124.5 -52.5t-69.5 -148.5l-28 -137h205l-29 -146h-205l-187 -936h-193z" />
<glyph unicode="g" horiz-adv-x="1095" d="M56 -357l79 153q41 -30 108 -48.5t134 -18.5q121 0 200.5 75.5t106.5 209.5l15 74q-57 -54 -126 -81.5t-148 -27.5q-174 0 -265 157q-60 103 -60 238q0 69 16 146l4 21q55 278 178.5 419.5t314.5 141.5q89 0 159 -39t113 -111l42 130h164l-213 -1068 q-45 -224 -180.5 -337.5t-351.5 -113.5q-68 0 -151.5 22t-138.5 58zM309 520q-14 -70 -14 -130q0 -84 29 -146q50 -105 182 -105q71 0 128.5 40.5t105.5 115.5l101 504q-27 65 -80 104t-131 39q-120 0 -200.5 -109.5t-116.5 -291.5z" />
<glyph unicode="h" d="M51 0l312 1560h193l-122 -609q67 73 148.5 112t172.5 39q152 0 226 -106q47 -68 48 -178q0 -63 -16 -140l-136 -678h-193l136 680q12 59 12 104q0 63 -23 98q-39 60 -146 60q-67 0 -136 -39.5t-124 -105.5l-159 -797h-193z" />
<glyph unicode="i" horiz-adv-x="496" d="M66 0l216 1082h193l-216 -1082h-193zM338 1359l40 201h193l-40 -201h-193z" />
<glyph unicode="j" horiz-adv-x="509" d="M-219 -419l44 155q13 -5 37 -8.5t37 -3.5q55 0 99 44.5t64 142.5l234 1171h193l-234 -1171q-36 -178 -131.5 -263t-242.5 -85q-27 0 -51 4.5t-49 13.5zM347 1363l39 197h194l-39 -197h-194z" />
<glyph unicode="k" horiz-adv-x="992" d="M52 0l312 1560h193l-181 -904h117l347 426h224l2 -5l-431 -487l270 -590h-227l-215 499h-118l-100 -499h-193z" />
<glyph unicode="l" horiz-adv-x="496" d="M66 0l312 1560h193l-312 -1560h-193z" />
<glyph unicode="m" horiz-adv-x="1671" d="M52 0l216 1082h172l-13 -129q63 72 146 110.5t183 38.5q91 0 153.5 -49t82.5 -146q64 92 152 143.5t194 51.5q143 0 214 -116q44 -71 44 -183q0 -70 -17 -156l-129 -647h-194l130 649q16 83 16 141q0 62 -18 92q-35 60 -137 60q-82 0 -155 -72.5t-106 -177.5q-1 -2 -1 -3 v-2l-137 -687h-194l130 649q15 77 15 132q0 62 -19 96q-36 65 -136 65q-76 0 -136 -38.5t-103 -106.5l-160 -797h-193z" />
<glyph unicode="n" d="M51 0l216 1082h173l-17 -149q66 82 149.5 125.5t179.5 43.5q153 0 227 -104q47 -66 47 -176q0 -62 -15 -139l-137 -683h-193l136 679q13 67 13 115q0 60 -21 92q-38 56 -148 56q-70 0 -139 -42.5t-121 -113.5l-157 -786h-193z" />
<glyph unicode="o" d="M111 529l3 22q40 250 183.5 400.5t354.5 150.5q202 0 302 -156q73 -114 73 -271q0 -59 -10 -124l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-203 0 -303 156q-72 112 -72 267q0 60 11 127zM304 529q-11 -69 -11 -127q1 -94 29 -160q46 -108 177 -109q122 0 208 113.5 t113 282.5l3 22q10 66 10 122q0 95 -29 164q-47 110 -176 110q-123 0 -208.5 -114t-112.5 -282z" />
<glyph unicode="p" d="M-32 -416l299 1498h166l-7 -107q60 62 134.5 94.5t160.5 32.5q175 0 259 -173q54 -109 54 -250q0 -83 -19 -178l-4 -21q-50 -250 -168.5 -375.5t-305.5 -125.5q-87 0 -156.5 33t-114.5 96l-105 -524h-193zM297 267q26 -63 78 -98.5t133 -35.5q119 0 198 93.5t112 253.5 l4 21q17 84 17 155q0 93 -29 162q-49 124 -180 124q-67 0 -124 -39t-103 -107z" />
<glyph unicode="q" d="M113 520l4 21q55 279 176.5 420t312.5 141q84 0 152 -33t111 -96l36 109h166l-299 -1498h-193l99 495q-56 -49 -121.5 -74.5t-138.5 -25.5q-174 0 -262 156q-59 103 -59 237q0 70 16 148zM307 520q-15 -73 -15 -134q0 -84 28 -146q48 -107 179 -107q64 0 117.5 36.5 t99.5 102.5l111 553q-28 57 -78.5 89.5t-123.5 32.5q-120 0 -199 -111t-115 -295z" />
<glyph unicode="r" horiz-adv-x="679" d="M51 0l216 1082h173l-12 -145q56 79 126.5 122t151.5 43q20 0 43.5 -3.5t34.5 -7.5l-62 -183l-106 6q-66 0 -121.5 -37.5t-96.5 -105.5l-154 -771h-193z" />
<glyph unicode="s" horiz-adv-x="1010" d="M90 329l2 6h185q-2 -19 -2 -37q0 -76 47 -116q58 -48 146 -49q91 0 153.5 43t73.5 111q2 15 2 29q0 47 -29 79q-38 41 -158 72q-178 43 -260 117q-66 59 -65 151q0 23 4 49q22 137 141 227.5t289 90.5t262 -98q72 -76 72 -177q0 -28 -6 -58l-3 -6h-185q3 16 3 30 q0 55 -35 99q-44 56 -132 55q-90 0 -146 -46.5t-66 -110.5q-3 -16 -2 -31q-1 -45 25 -71q34 -35 157 -65q185 -43 266 -119q65 -61 64 -155q0 -23 -3 -48q-24 -149 -146 -235.5t-300 -86.5q-186 0 -284 106q-76 82 -76 184q0 29 6 60z" />
<glyph unicode="t" horiz-adv-x="684" d="M143 936l29 146h158l53 261h193l-53 -261h187l-29 -146h-187l-131 -657q-7 -35 -7 -61q0 -32 12 -48q22 -28 71 -29q23 0 55.5 4.5t51.5 9.5l-1 -135q-29 -18 -82.5 -29.5t-105.5 -11.5q-105 0 -161 74q-36 48 -37 128q0 44 11 98l131 657h-158z" />
<glyph unicode="u" d="M136 444l127 638h193l-128 -640q-20 -97 -19 -160q0 -56 15 -84q33 -60 133 -59q89 0 161.5 44t122.5 122l155 777h193l-216 -1082h-173l17 148q-64 -83 -145.5 -126t-178.5 -43q-155 0 -229 115q-46 71 -46 186q0 73 18 164z" />
<glyph unicode="v" horiz-adv-x="972" d="M151 1082h198l111 -763l3 -64l6 -1l25 65l348 763h197l-542 -1082h-145z" />
<glyph unicode="w" horiz-adv-x="1452" d="M175 1082h192l26 -688l-4 -115l6 -2l46 117l336 688h154l63 -688l-1 -134l6 -1l52 135l291 688h192l-508 -1082h-155l-58 659l-6 176l-6 1l-75 -177l-320 -659h-155z" />
<glyph unicode="x" horiz-adv-x="972" d="M-23 0l421 547l-239 535h222l139 -399l270 399h225l-410 -535l245 -547h-221l-149 409l-280 -409h-223z" />
<glyph unicode="y" horiz-adv-x="972" d="M-68 -421l51 155q-14 1 29 -2t53 -3q52 0 104.5 60t84.5 120l66 113l-161 1060h216l67 -681l5 -123l6 -1l402 805h215l-670 -1248q-62 -109 -150 -190t-208 -81q-21 0 -56 5.5t-54 10.5z" />
<glyph unicode="z" horiz-adv-x="972" d="M8 0l28 138l693 783l-2 5h-529l31 156h766l-26 -134l-700 -789l2 -5h569l-31 -154h-801z" />
<glyph unicode="{" horiz-adv-x="660" d="M80 543l9 59l14 88q93 0 152 62.5t77 173.5l33 206q28 177 122.5 292.5t284.5 167.5l6 -2l19 -110q-105 -35 -161 -125t-77 -223l-33 -206q-18 -110 -70.5 -190t-141.5 -123q72 -47 100.5 -127t12.5 -180l-33 -205q-22 -137 4.5 -224t122.5 -123l-58 -118 q-174 55 -232.5 174.5t-30.5 290.5l33 205q18 116 -18.5 176.5t-134.5 60.5z" />
<glyph unicode="|" horiz-adv-x="489" d="M54 -270l276 1726h155l-276 -1726h-155z" />
<glyph unicode="}" horiz-adv-x="660" d="M-83 -246q105 36 160.5 125.5t77.5 221.5l33 205q17 112 73 191.5t152 120.5q-80 43 -111.5 123t-14.5 185l33 206q21 137 -6 225t-121 123l59 117q173 -55 230.5 -174.5t30.5 -290.5l-33 -206q-19 -117 17.5 -176.5t136.5 -59.5l-5 -33l-13 -82l-5 -32q-95 0 -154 -63.5 t-76 -173.5l-33 -205q-29 -176 -123 -292t-282 -168l-6 2z" />
<glyph unicode="~" horiz-adv-x="1302" d="M128 474q22 141 117 235t220 94q78 0 145 -35.5t133 -103.5q46 -51 86.5 -74t87.5 -23q58 0 112.5 57.5t66.5 133.5l133 -18q-23 -142 -119 -240.5t-220 -98.5q-80 0 -145 33.5t-132 106.5q-47 48 -87.5 72t-86.5 24q-59 0 -112.5 -53.5t-64.5 -127.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="489" d="M-23 -374l196 978h194l-196 -978h-194zM229 876l41 206h190l-41 -206h-190z" />
<glyph unicode="&#xa2;" horiz-adv-x="1054" d="M116 520l7 42q33 214 151 359t305 174l45 223h194l-46 -230q126 -34 191 -138t43 -241h-182q17 104 -34 171t-150 67q-136 0 -217 -113t-106 -272l-7 -42q-27 -172 14 -279.5t185 -107.5q86 0 164.5 61t92.5 148h174l2 -6q-18 -131 -131.5 -231t-259.5 -121l-46 -229 h-194l48 242q-148 44 -211 188.5t-32 334.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1124" d="M45 0l31 154h9q45 13 85 110.5t61 201.5l24 149h-147l31 155h142l44 270q43 217 168.5 327t304.5 110q176 0 265.5 -107t51.5 -275l-2 -5h-188q25 126 -20.5 179t-137.5 53q-83 0 -152.5 -75.5t-95.5 -206.5l-45 -270h384l-31 -155h-379l-25 -149q-19 -95 -48 -175 t-66 -137h680l-32 -154h-912z" />
<glyph unicode="&#xa4;" horiz-adv-x="1361" d="M38 112l162 145q-33 76 -41 165.5t12 185.5q21 107 65 201t107 172l-102 144l164 139l98 -138q79 52 167 80t179 28q83 0 158 -31.5t135 -87.5l167 150l109 -140l-174 -158q34 -77 43 -168.5t-10 -190.5q-21 -104 -62 -194t-99 -164l99 -138l-164 -139l-91 127 q-82 -59 -174.5 -89.5t-187.5 -30.5q-87 0 -164.5 33t-136.5 96l-150 -135zM349 608q-41 -200 41.5 -326.5t242.5 -126.5q144 0 285.5 134t178.5 319q39 198 -43 324t-240 126q-146 0 -287.5 -133.5t-177.5 -316.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1169" d="M107 293l32 155h344l26 135h-344l32 155h285l-245 718h221l196 -649l456 649h220l-530 -718h285l-32 -155h-351l-26 -135h351l-32 -155h-351l-58 -293h-193l58 293h-344z" />
<glyph unicode="&#xa6;" horiz-adv-x="481" d="M-1 -270l158 792h193l-158 -792h-193zM193 698l151 758h193l-151 -758h-193z" />
<glyph unicode="&#xa7;" horiz-adv-x="1183" d="M-8 -69l2 5l187 2q-32 -154 41.5 -216t200.5 -62q115 0 202 60.5t106 149.5q19 96 -35.5 143.5t-233.5 111.5q-210 63 -296 156t-50 270q19 97 75.5 166.5t144.5 109.5q-52 50 -69.5 118.5t2.5 164.5q35 176 177.5 271.5t356.5 95.5q204 0 310 -113.5t62 -312.5l-2 -5 h-186q25 125 -30.5 200.5t-184.5 75.5q-123 0 -207.5 -61t-101.5 -149q-21 -106 29.5 -151.5t236.5 -104.5q213 -68 298 -159t50 -266q-20 -100 -77 -169t-145 -108q53 -50 71 -117.5t-1 -164.5q-37 -183 -177 -275t-356 -92q-196 0 -321.5 104t-78.5 322zM310 553 q-22 -106 28 -153.5t233 -108.5q41 -13 74.5 -25.5t63.5 -24.5q68 21 115 71t61 116q18 96 -36 146.5t-229 114.5q-42 12 -77 24t-66 26q-67 -21 -111 -70t-56 -116z" />
<glyph unicode="&#xa8;" horiz-adv-x="968" d="M295 1256l32 200h210l-32 -200h-210zM732 1256l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xa9;" horiz-adv-x="1497" d="M131 729q52 327 276.5 537t503.5 210q263 0 426 -218t114 -529q-53 -328 -277.5 -539t-501.5 -211q-265 0 -428.5 218.5t-112.5 531.5zM248 729q-45 -276 84 -452.5t359 -176.5q217 0 409 183t235 446q43 274 -85.5 449.5t-357.5 175.5q-218 0 -410.5 -182.5 t-233.5 -442.5zM443 669l19 119q28 179 132 283t255 104q142 0 214.5 -80t45.5 -228l-2 -5h-143q15 99 -18.5 140.5t-117.5 41.5q-82 0 -141 -71.5t-77 -183.5l-19 -120q-20 -122 15 -189.5t121 -67.5q80 0 128.5 43.5t64.5 140.5h141l2 -6q-21 -156 -114 -232t-243 -76 q-144 0 -217.5 107.5t-45.5 279.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="864" d="M214 920q23 117 112 173.5t243 56.5h123l11 52q14 67 -5.5 99t-71.5 32q-55 0 -95 -27.5t-49 -75.5l-155 13l-2 6q16 104 106 166t223 62q118 0 180.5 -72t36.5 -204l-63 -314q-11 -52 -13.5 -94t1.5 -87h-170q-3 21 -3 45.5t3 50.5q-41 -48 -98.5 -79t-128.5 -31 q-103 0 -154.5 62.5t-30.5 165.5zM384 924q-10 -48 10.5 -70.5t74.5 -22.5q41 0 97 29.5t81 64.5l23 111h-123q-62 0 -108 -33.5t-55 -78.5z" />
<glyph unicode="&#xab;" horiz-adv-x="913" d="M109 541l1 6l3 13l353 389h143l-315 -399l155 -398h-143zM422 541l1 6l3 13l353 389h143l-315 -399l155 -398h-143z" />
<glyph unicode="&#xac;" horiz-adv-x="1070" d="M165 637l33 165h780l-15 -76l-70 -351h-194l52 262h-586z" />
<glyph unicode="&#xad;" horiz-adv-x="529" d="M59 538l30 154h457l-30 -154h-457z" />
<glyph unicode="&#xae;" horiz-adv-x="1497" d="M132 729q52 327 276.5 537t502.5 210q264 0 427 -218t114 -529q-53 -328 -278 -539t-502 -211q-265 0 -428 218.5t-112 531.5zM249 729q-45 -276 83.5 -452.5t358.5 -176.5q217 0 408.5 183t234.5 446q43 274 -85.5 449.5t-356.5 175.5q-219 0 -410.5 -182t-232.5 -443z M448 316l136 850h264q136 0 209.5 -66t53.5 -191q-11 -64 -49 -110.5t-103 -77.5q57 -27 77 -80t9 -126l-9 -56q-7 -42 -8.5 -74t4.5 -53l-2 -16h-149q-5 22 -0.5 63.5t11.5 80.5l8 54q12 75 -13 107.5t-95 32.5h-144l-54 -338h-146zM669 784h136q60 1 105.5 32.5t55.5 87.5 q11 76 -19.5 104t-119.5 28h-118z" />
<glyph unicode="&#xaf;" horiz-adv-x="903" d="M262 1310l23 146h677l-23 -146h-677z" />
<glyph unicode="&#xb0;" horiz-adv-x="718" d="M280 1216q22 113 107 187t186 74q90 0 147 -78.5t36 -182.5q-23 -115 -105 -186t-181 -71q-93 0 -152.5 75.5t-37.5 181.5zM407 1216q-12 -58 14 -92.5t75 -34.5q43 0 83.5 36.5t51.5 90.5q11 58 -13.5 94t-70.5 36q-45 0 -87.5 -38t-52.5 -92z" />
<glyph unicode="&#xb1;" horiz-adv-x="1032" d="M69 5l31 155h776l-31 -155h-776zM141 702l25 154h350l66 411h173l-66 -411h329l-25 -154h-329l-66 -413h-173l66 413h-350z" />
<glyph unicode="&#xb2;" horiz-adv-x="822" d="M167 667l26 130l331 262q75 59 102.5 96.5t36.5 80.5q10 53 -8.5 82.5t-71.5 29.5q-56 0 -97.5 -32.5t-50.5 -81.5h-156l-2 6q15 105 106 172t226 67q119 0 181.5 -65t40.5 -179q-18 -86 -66.5 -137t-185.5 -160l-162 -135l2 -6h327l-26 -130h-553z" />
<glyph unicode="&#xb3;" horiz-adv-x="828" d="M198 882l2 6h160q-10 -49 17.5 -76t85.5 -27q60 0 106 30t55 77q13 66 -13.5 92.5t-92.5 26.5h-124l17 87l8 39h124q55 0 92 29.5t47 79.5q9 46 -18 73.5t-89 27.5q-46 0 -83 -24.5t-44 -63.5h-159l-2 6q15 101 104 157t210 56q128 0 199 -60.5t50 -168.5 q-12 -60 -54 -105t-105 -69q58 -25 84.5 -72.5t14.5 -112.5q-24 -119 -118.5 -177t-234.5 -58q-112 0 -189 58.5t-50 168.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="628" d="M253 1212l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xb5;" d="M-22 -416l299 1498h192l-125 -623l1 1q-41 -203 -5.5 -265t132.5 -62q83 0 146 38t108 109l160 802h193l-216 -1082h-174l12 95q-51 -58 -114.5 -87t-138.5 -29q-62 0 -108.5 16.5t-77.5 53.5l-92 -465h-192z" />
<glyph unicode="&#xb6;" horiz-adv-x="950" d="M174 988q43 220 187 344t364 124h268l-291 -1456h-193l104 520h-75q-203 0 -304 132t-60 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="517" d="M194 624l42 212h190l-42 -212h-190z" />
<glyph unicode="&#xb8;" horiz-adv-x="485" d="M-46 -428l14 102q61 0 106 24.5t55 73.5q10 51 -17.5 68.5t-107.5 24.5l57 135h137l-22 -52q56 -11 86.5 -52t15.5 -121q-21 -102 -102.5 -155t-216.5 -51z" />
<glyph unicode="&#xb9;" horiz-adv-x="534" d="M258 665l131 655h-116l27 134l290 23l-162 -812h-170z" />
<glyph unicode="&#xba;" horiz-adv-x="879" d="M235 1025l23 117q31 157 136 246t254 89q139 0 213 -95t45 -240l-23 -117q-32 -158 -135.5 -246t-254.5 -88q-138 0 -212.5 94.5t-45.5 239.5zM404 1025q-19 -92 10 -142.5t107 -50.5q69 0 123 54t71 139l23 117q18 89 -11.5 140t-106.5 51q-70 0 -123.5 -54.5 t-69.5 -136.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="913" d="M51 152l314 398l-154 399h143l196 -389l-2 -6h1l-3 -13l-352 -389h-143zM376 152l314 398l-154 399h143l196 -389l-2 -6h1l-3 -13l-352 -389h-143z" />
<glyph unicode="&#xbc;" horiz-adv-x="1498" d="M272 185l890 1138l93 -67l-890 -1138zM342 664l131 655h-116l27 134l290 23l-162 -812h-170zM690 152l13 102l501 547h168l-104 -519h114l-26 -130h-114l-30 -152h-166l30 152h-386zM889 287l2 -5h211l61 305l-5 2l-14 -18z" />
<glyph unicode="&#xbd;" horiz-adv-x="1617" d="M285 185l890 1138l93 -67l-890 -1138zM342 664l131 655h-116l27 134l290 23l-162 -812h-170zM789 0l26 130l331 262q75 59 102.5 96.5t36.5 80.5q10 53 -8.5 82.5t-71.5 29.5q-56 0 -97.5 -32.5t-50.5 -81.5h-156l-2 6q15 105 106 172t226 67q119 0 181.5 -65t40.5 -179 q-18 -86 -66.5 -137t-185.5 -160l-162 -135l2 -6h327l-26 -130h-553z" />
<glyph unicode="&#xbe;" horiz-adv-x="1675" d="M212 883l2 6h160q-10 -49 17.5 -76t85.5 -27q60 0 106 30t55 77q13 66 -13.5 92.5t-92.5 26.5h-124l17 87l8 39h124q55 0 92 29.5t47 79.5q9 46 -18 73.5t-89 27.5q-46 0 -83 -24.5t-44 -63.5h-159l-2 6q15 101 104 157t210 56q128 0 199 -60.5t50 -168.5 q-12 -60 -54 -105t-105 -69q58 -25 84.5 -72.5t14.5 -112.5q-24 -119 -118.5 -177t-234.5 -58q-112 0 -189 58.5t-50 168.5zM441 185l890 1138l93 -67l-890 -1138zM863 152l13 102l501 547h168l-104 -519h114l-26 -130h-114l-30 -152h-166l30 152h-386zM1062 287l2 -5h211 l61 305l-5 2l-14 -18z" />
<glyph unicode="&#xbf;" horiz-adv-x="959" d="M24 -13q27 136 107 232t223 222q59 53 78.5 96.5t37.5 134.5h193q-31 -146 -64.5 -201.5t-146.5 -147.5q-124 -129 -170.5 -186.5t-63.5 -144.5q-23 -113 16.5 -166.5t136.5 -53.5q76 0 147 50.5t90 144.5h184l2 -6q-31 -161 -159.5 -258t-296.5 -97q-174 0 -261.5 102 t-52.5 279zM506 874l42 209h200l-42 -209h-200z" />
<glyph unicode="&#xc0;" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2zM633 1826h231l118 -266h-153z" />
<glyph unicode="&#xc1;" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2zM817 1557l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xc2;" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2zM619 1601l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xc3;" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2zM591 1628q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5q-62 0 -127.5 46.5t-113.5 46.5q-37 0 -70 -33 t-40 -78z" />
<glyph unicode="&#xc4;" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2zM586 1605l32 200h210l-32 -200h-210zM1023 1605l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xc5;" horiz-adv-x="1270" d="M-52 0l816 1456h164l225 -1456h-197l-51 375h-558l-203 -375h-196zM437 540h445l-88 647l-6 2zM737 1734q18 90 85 144t152 54q76 0 124.5 -57.5t32.5 -140.5q-19 -92 -85 -143t-150 -51q-78 0 -127.5 55t-31.5 139zM836 1734q-10 -46 13.5 -75t64.5 -29q37 0 73 30 t45 74q9 48 -13 77.5t-63 29.5q-38 0 -75 -31.5t-45 -75.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1805" d="M-104 0l1110 1456h913l-31 -155h-643l-75 -466h549l-31 -155h-543l-85 -526h656l-31 -154h-842l56 350h-510l-257 -350h-236zM520 529h408l112 696l-6 3z" />
<glyph unicode="&#xc7;" horiz-adv-x="1214" d="M149 607l52 260q57 289 215.5 449.5t390.5 160.5q215 0 340 -137.5t98 -353.5l-2 -5h-187q10 158 -57 249.5t-214 91.5q-138 0 -244.5 -128.5t-145.5 -324.5l-53 -262q-42 -209 32.5 -341.5t229.5 -132.5q134 0 212.5 76t132.5 238h185l2 -6q-61 -214 -197 -338 t-356 -124q-219 0 -353 183.5t-81 444.5zM380 -436l14 102q61 0 106 24.5t55 73.5q10 51 -17.5 68.5t-107.5 24.5l57 135h137l-22 -52q56 -11 86.5 -52t15.5 -121q-21 -102 -102.5 -155t-216.5 -51z" />
<glyph unicode="&#xc8;" horiz-adv-x="1125" d="M86 0l291 1456h893l-31 -155h-700l-94 -471h616l-31 -155h-616l-104 -521h711l-31 -154h-904zM549 1826h231l118 -266h-153z" />
<glyph unicode="&#xc9;" horiz-adv-x="1125" d="M86 0l291 1456h893l-31 -155h-700l-94 -471h616l-31 -155h-616l-104 -521h711l-31 -154h-904zM733 1557l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xca;" horiz-adv-x="1125" d="M86 0l291 1456h893l-31 -155h-700l-94 -471h616l-31 -155h-616l-104 -521h711l-31 -154h-904zM535 1601l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xcb;" horiz-adv-x="1125" d="M86 0l291 1456h893l-31 -155h-700l-94 -471h616l-31 -155h-616l-104 -521h711l-31 -154h-904zM502 1605l32 200h210l-32 -200h-210zM939 1605l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xcc;" horiz-adv-x="552" d="M93 0l291 1456h194l-291 -1456h-194zM236 1826h231l118 -266h-153z" />
<glyph unicode="&#xcd;" horiz-adv-x="552" d="M93 0l291 1456h194l-291 -1456h-194zM418 1557l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xce;" horiz-adv-x="552" d="M93 0l291 1456h194l-291 -1456h-194zM222 1601l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xcf;" horiz-adv-x="552" d="M93 0l291 1456h194l-291 -1456h-194zM189 1605l32 200h210l-32 -200h-210zM626 1605l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xd0;" horiz-adv-x="1295" d="M90 663l31 155h158l128 638h382q254 0 403.5 -184.5t95.5 -454.5l-39 -198q-61 -301 -234 -460t-443 -159h-456l132 663h-158zM340 154h263q171 0 291 128.5t162 336.5l40 201q43 215 -51 348t-287 133h-189l-97 -483h249l-31 -155h-249z" />
<glyph unicode="&#xd1;" horiz-adv-x="1370" d="M86 0l291 1456h193l413 -1110l6 1l222 1109h194l-291 -1456h-194l-413 1112l-6 -1l-222 -1111h-193zM599 1628q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5q-62 0 -127.5 46.5t-113.5 46.5 q-37 0 -70 -33t-40 -78z" />
<glyph unicode="&#xd2;" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185t88 -444l-52 -260q-58 -287 -230.5 -448t-420.5 -161q-224 0 -357 184t-81 444zM338 607q-43 -212 36 -339.5t241 -127.5q154 0 269.5 123.5t156.5 324.5l52 262q42 210 -42.5 337.5t-255.5 127.5 q-144 0 -254.5 -124t-149.5 -322zM620 1847h231l118 -266h-153z" />
<glyph unicode="&#xd3;" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185t88 -444l-52 -260q-58 -287 -230.5 -448t-420.5 -161q-224 0 -357 184t-81 444zM338 607q-43 -212 36 -339.5t241 -127.5q154 0 269.5 123.5t156.5 324.5l52 262q42 210 -42.5 337.5t-255.5 127.5 q-144 0 -254.5 -124t-149.5 -322zM804 1578l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xd4;" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185t88 -444l-52 -260q-58 -287 -230.5 -448t-420.5 -161q-224 0 -357 184t-81 444zM338 607q-43 -212 36 -339.5t241 -127.5q154 0 269.5 123.5t156.5 324.5l52 262q42 210 -42.5 337.5t-255.5 127.5 q-144 0 -254.5 -124t-149.5 -322zM606 1622l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xd5;" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185t88 -444l-52 -260q-58 -287 -230.5 -448t-420.5 -161q-224 0 -357 184t-81 444zM338 607q-43 -212 36 -339.5t241 -127.5q154 0 269.5 123.5t156.5 324.5l52 262q42 210 -42.5 337.5t-255.5 127.5 q-144 0 -254.5 -124t-149.5 -322zM578 1649q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5q-62 0 -127.5 46.5t-113.5 46.5q-37 0 -70 -33t-40 -78z" />
<glyph unicode="&#xd6;" horiz-adv-x="1311" d="M145 607l52 260q57 286 223.5 448t406.5 162q232 0 371 -185t88 -444l-52 -260q-58 -287 -230.5 -448t-420.5 -161q-224 0 -357 184t-81 444zM338 607q-43 -212 36 -339.5t241 -127.5q154 0 269.5 123.5t156.5 324.5l52 262q42 210 -42.5 337.5t-255.5 127.5 q-144 0 -254.5 -124t-149.5 -322zM573 1626l32 200h210l-32 -200h-210zM1010 1626l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xd7;" horiz-adv-x="1032" d="M71 351l371 333l-239 335l149 126l235 -331l368 331l98 -126l-373 -335l237 -333l-148 -126l-234 328l-366 -328z" />
<glyph unicode="&#xd8;" horiz-adv-x="1311" d="M35 -94l183 244q-61 85 -81.5 200t7.5 248l51 259q57 284 237 452t422 168q82 0 154.5 -26t129.5 -73l105 139h144l-170 -227q57 -85 76 -196.5t-6 -236.5l-51 -259q-58 -284 -244 -451.5t-437 -167.5q-75 0 -140 22t-117 64l-119 -159h-144zM319.5 441 q0.5 -71 19.5 -120l6 -1l687 916q-38 38 -91 58.5t-119 20.5q-145 0 -270 -130.5t-163 -325.5l-52 -261q-18 -86 -17.5 -157zM404 206q33 -33 79 -49.5t104 -16.5q156 0 286 130t170 328l52 261q15 78 14.5 144t-15.5 114l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1300" d="M148 469l197 987h193l-197 -987q-36 -176 32 -256t212 -80q140 0 252 86.5t145 249.5l197 987h193l-197 -987q-51 -254 -216.5 -372t-404.5 -118q-211 0 -332.5 128.5t-73.5 361.5zM612 1826h231l118 -266h-153z" />
<glyph unicode="&#xda;" horiz-adv-x="1300" d="M148 469l197 987h193l-197 -987q-36 -176 32 -256t212 -80q140 0 252 86.5t145 249.5l197 987h193l-197 -987q-51 -254 -216.5 -372t-404.5 -118q-211 0 -332.5 128.5t-73.5 361.5zM796 1557l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xdb;" horiz-adv-x="1300" d="M148 469l197 987h193l-197 -987q-36 -176 32 -256t212 -80q140 0 252 86.5t145 249.5l197 987h193l-197 -987q-51 -254 -216.5 -372t-404.5 -118q-211 0 -332.5 128.5t-73.5 361.5zM598 1601l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xdc;" horiz-adv-x="1300" d="M148 469l197 987h193l-197 -987q-36 -176 32 -256t212 -80q140 0 252 86.5t145 249.5l197 987h193l-197 -987q-51 -254 -216.5 -372t-404.5 -118q-211 0 -332.5 128.5t-73.5 361.5zM565 1605l32 200h210l-32 -200h-210zM1002 1605l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xdd;" horiz-adv-x="1194" d="M238 1456h220l198 -717l6 -1l486 718h219l-660 -943l-103 -513h-192l105 526zM740 1556l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xde;" horiz-adv-x="1134" d="M69 0l291 1456h193l-59 -293h244q203 0 307.5 -120.5t68.5 -304.5q-41 -202 -183 -313.5t-363 -111.5h-244l-62 -313h-193zM355 467h243q124 0 211.5 80t109.5 189q24 121 -26.5 197t-185.5 76h-241l-2 3z" />
<glyph unicode="&#xdf;" horiz-adv-x="1148" d="M46 0l216 1082q47 237 179.5 355t309.5 118q143 0 225 -87.5t49 -251.5q-26 -129 -107 -234.5t-92 -160.5q-18 -91 114 -229.5t105 -275.5q-36 -178 -146 -257.5t-283 -79.5q-72 0 -153 21t-109 50l74 159q34 -29 89 -52.5t111 -23.5q91 0 148 48t73 125 q18 94 -114 233.5t-102 283.5q17 89 105.5 196t103.5 181q20 100 -15.5 150.5t-97.5 50.5q-90 0 -167.5 -84.5t-107.5 -234.5l-216 -1082h-192z" />
<glyph unicode="&#xe0;" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q20 101 -22 153.5t-140 52.5q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q161 0 254.5 -95.5t59.5 -267.5l-104 -521q-13 -61 -18 -113t0 -105h-199q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5 t-173.5 -47.5q-148 0 -218.5 88.5t-39.5 236.5zM283 300q-16 -77 15 -116.5t113 -39.5q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140zM418 1504h231l118 -266h-153z" />
<glyph unicode="&#xe1;" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q20 101 -22 153.5t-140 52.5q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q161 0 254.5 -95.5t59.5 -267.5l-104 -521q-13 -61 -18 -113t0 -105h-199q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5 t-173.5 -47.5q-148 0 -218.5 88.5t-39.5 236.5zM283 300q-16 -77 15 -116.5t113 -39.5q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140zM602 1235l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xe2;" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q20 101 -22 153.5t-140 52.5q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q161 0 254.5 -95.5t59.5 -267.5l-104 -521q-13 -61 -18 -113t0 -105h-199q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5 t-173.5 -47.5q-148 0 -218.5 88.5t-39.5 236.5zM283 300q-16 -77 15 -116.5t113 -39.5q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140zM404 1279l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xe3;" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q20 101 -22 153.5t-140 52.5q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q161 0 254.5 -95.5t59.5 -267.5l-104 -521q-13 -61 -18 -113t0 -105h-199q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5 t-173.5 -47.5q-148 0 -218.5 88.5t-39.5 236.5zM283 300q-16 -77 15 -116.5t113 -39.5q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140zM376 1306q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5 q-62 0 -127.5 46.5t-113.5 46.5q-37 0 -70 -33t-40 -78z" />
<glyph unicode="&#xe4;" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q20 101 -22 153.5t-140 52.5q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q161 0 254.5 -95.5t59.5 -267.5l-104 -521q-13 -61 -18 -113t0 -105h-199q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5 t-173.5 -47.5q-148 0 -218.5 88.5t-39.5 236.5zM283 300q-16 -77 15 -116.5t113 -39.5q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140zM371 1283l32 200h210l-32 -200h-210zM808 1283l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xe5;" horiz-adv-x="1060" d="M91 304q32 165 162.5 247.5t334.5 82.5h185l21 107q20 101 -22 153.5t-140 52.5q-84 0 -152 -49.5t-81 -115.5h-183l-2 6q20 125 150 219.5t310 94.5q161 0 254.5 -95.5t59.5 -267.5l-104 -521q-13 -61 -18 -113t0 -105h-199q0 49 2 80.5t7 64.5q-67 -71 -153.5 -118.5 t-173.5 -47.5q-148 0 -218.5 88.5t-39.5 236.5zM283 300q-16 -77 15 -116.5t113 -39.5q81 0 165 47t130 111l40 199h-191q-99 0 -178 -61t-94 -140zM522 1412q18 90 85 144t152 54q76 0 124.5 -57.5t32.5 -140.5q-19 -92 -85 -143t-150 -51q-78 0 -127.5 55t-31.5 139z M621 1412q-10 -46 13.5 -75t64.5 -29q37 0 73 30t45 74q9 48 -13 77.5t-63 29.5q-38 0 -75 -31.5t-45 -75.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1618" d="M32 304q33 168 154.5 249.5t331.5 81.5h209l17 85q22 113 -12 170t-123 57q-86 0 -154.5 -55.5t-83.5 -132.5l-179 18l-2 6q24 147 146 233t304 86q96 0 169 -38.5t109 -111.5q73 73 163 111.5t186 38.5q188 0 276 -132.5t44 -355.5l-24 -119h-661q-30 -171 22 -266.5 t196 -95.5q89 0 162 29.5t150 76.5l37 -138q-55 -43 -152 -82.5t-228 -39.5q-118 0 -205.5 49.5t-134.5 140.5q-68 -80 -184 -135t-267 -55q-148 0 -222 89t-44 236zM225 300q-16 -79 19 -123t124 -44q64 0 150 44t138 100l43 216h-207q-100 0 -176 -57.5t-91 -135.5z M940 646l3 -6h456l6 31q26 129 -12 202.5t-157 73.5q-95 0 -176.5 -85.5t-119.5 -215.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1024" d="M108 520l7 42q37 239 177.5 389.5t363.5 150.5q172 0 269.5 -112.5t67.5 -275.5l-2 -5h-175q17 104 -34 171t-150 67q-136 0 -217 -113t-106 -272l-7 -42q-27 -172 14 -279.5t185 -107.5q86 0 164.5 61t92.5 148h173l2 -6q-20 -146 -156 -251.5t-300 -105.5 q-212 0 -309 156t-60 385zM263 -436l14 102q61 0 106 24.5t55 73.5q10 51 -17.5 68.5t-107.5 24.5l57 135h137l-22 -52q56 -11 86.5 -52t15.5 -121q-21 -102 -102.5 -155t-216.5 -51z" />
<glyph unicode="&#xe8;" horiz-adv-x="1021" d="M111 520l7 44q38 240 189.5 389t327.5 149q199 0 285 -133t52 -351l-20 -123h-652q-22 -166 30.5 -264t179.5 -98q88 0 165 29.5t134 77.5l55 -128q-61 -57 -156 -95t-222 -38q-204 0 -308.5 151.5t-66.5 389.5zM336 655l3 -6h445l4 26q19 121 -23 196.5t-154 75.5 q-84 0 -162.5 -84t-112.5 -208zM382 1505h231l118 -266h-153z" />
<glyph unicode="&#xe9;" horiz-adv-x="1021" d="M111 520l7 44q38 240 189.5 389t327.5 149q199 0 285 -133t52 -351l-20 -123h-652q-22 -166 30.5 -264t179.5 -98q88 0 165 29.5t134 77.5l55 -128q-61 -57 -156 -95t-222 -38q-204 0 -308.5 151.5t-66.5 389.5zM336 655l3 -6h445l4 26q19 121 -23 196.5t-154 75.5 q-84 0 -162.5 -84t-112.5 -208zM566 1236l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xea;" horiz-adv-x="1021" d="M111 520l7 44q38 240 189.5 389t327.5 149q199 0 285 -133t52 -351l-20 -123h-652q-22 -166 30.5 -264t179.5 -98q88 0 165 29.5t134 77.5l55 -128q-61 -57 -156 -95t-222 -38q-204 0 -308.5 151.5t-66.5 389.5zM336 655l3 -6h445l4 26q19 121 -23 196.5t-154 75.5 q-84 0 -162.5 -84t-112.5 -208zM368 1280l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xeb;" horiz-adv-x="1021" d="M111 520l7 44q38 240 189.5 389t327.5 149q199 0 285 -133t52 -351l-20 -123h-652q-22 -166 30.5 -264t179.5 -98q88 0 165 29.5t134 77.5l55 -128q-61 -57 -156 -95t-222 -38q-204 0 -308.5 151.5t-66.5 389.5zM335 1284l32 200h210l-32 -200h-210zM336 655l3 -6h445 l4 26q19 121 -23 196.5t-154 75.5q-84 0 -162.5 -84t-112.5 -208zM772 1284l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xec;" horiz-adv-x="497" d="M60 0l216 1082h194l-216 -1082h-194zM135 1483h231l118 -266h-153z" />
<glyph unicode="&#xed;" horiz-adv-x="497" d="M60 0l216 1082h194l-216 -1082h-194zM317 1214l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xee;" horiz-adv-x="497" d="M60 0l216 1082h194l-216 -1082h-194zM121 1258l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xef;" horiz-adv-x="497" d="M60 0l216 1082h194l-216 -1082h-194zM88 1262l32 200h210l-32 -200h-210zM525 1262l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xf0;" horiz-adv-x="1129" d="M76 466q48 243 203 377.5t357 134.5q72 0 135.5 -34t102.5 -89l4 4q5 104 -16.5 187t-63.5 146l-286 -157l-55 102l259 142q-29 22 -62 40.5t-69 33.5l90 164q65 -22 121 -56.5t103 -81.5l241 132l55 -102l-225 -123q74 -121 94.5 -287t-18.5 -366l-20 -98 q-52 -261 -214 -408.5t-368 -147.5q-191 0 -300 142t-68 345zM270 466q-28 -140 26.5 -236.5t182.5 -96.5q112 0 215.5 115.5t138.5 286.5l20 100l9 53q-19 58 -84.5 96.5t-172.5 38.5q-109 0 -207.5 -106t-127.5 -251z" />
<glyph unicode="&#xf1;" d="M51 0l216 1082h173l-17 -149q66 82 149.5 125.5t179.5 43.5q153 0 227 -104t32 -315l-137 -683h-193l136 679q30 152 -8 207.5t-148 55.5q-70 0 -139 -42.5t-121 -113.5l-157 -786h-193zM396 1306q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5 t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5q-62 0 -127.5 46.5t-113.5 46.5q-37 0 -70 -33t-40 -78z" />
<glyph unicode="&#xf2;" d="M111 529l3 22q40 250 183.5 400.5t354.5 150.5q202 0 302.5 -156.5t62.5 -394.5l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-202 0 -302.5 156t-61.5 394zM304 529q-29 -179 17.5 -287.5t177.5 -108.5q122 0 208 113.5t113 282.5l3 22q28 176 -19 286t-176 110 q-123 0 -208.5 -114t-112.5 -282zM404 1504h231l118 -266h-153z" />
<glyph unicode="&#xf3;" d="M111 529l3 22q40 250 183.5 400.5t354.5 150.5q202 0 302.5 -156.5t62.5 -394.5l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-202 0 -302.5 156t-61.5 394zM304 529q-29 -179 17.5 -287.5t177.5 -108.5q122 0 208 113.5t113 282.5l3 22q28 176 -19 286t-176 110 q-123 0 -208.5 -114t-112.5 -282zM588 1235l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xf4;" d="M111 529l3 22q40 250 183.5 400.5t354.5 150.5q202 0 302.5 -156.5t62.5 -394.5l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-202 0 -302.5 156t-61.5 394zM304 529q-29 -179 17.5 -287.5t177.5 -108.5q122 0 208 113.5t113 282.5l3 22q28 176 -19 286t-176 110 q-123 0 -208.5 -114t-112.5 -282zM390 1279l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#xf5;" d="M111 529l3 22q40 250 183.5 400.5t354.5 150.5q202 0 302.5 -156.5t62.5 -394.5l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-202 0 -302.5 156t-61.5 394zM304 529q-29 -179 17.5 -287.5t177.5 -108.5q122 0 208 113.5t113 282.5l3 22q28 176 -19 286t-176 110 q-123 0 -208.5 -114t-112.5 -282zM362 1306q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5q-62 0 -127.5 46.5t-113.5 46.5q-37 0 -70 -33t-40 -78z" />
<glyph unicode="&#xf6;" d="M111 529l3 22q40 250 183.5 400.5t354.5 150.5q202 0 302.5 -156.5t62.5 -394.5l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-202 0 -302.5 156t-61.5 394zM304 529q-29 -179 17.5 -287.5t177.5 -108.5q122 0 208 113.5t113 282.5l3 22q28 176 -19 286t-176 110 q-123 0 -208.5 -114t-112.5 -282zM357 1283l32 200h210l-32 -200h-210zM794 1283l32 200h210l-32 -200h-210z" />
<glyph unicode="&#xf7;" horiz-adv-x="1099" d="M105 597l38 188h928l-38 -188h-928zM391 180l41 203h191l-41 -203h-191zM555 999l40 203h191l-40 -203h-191z" />
<glyph unicode="&#xf8;" d="M75 -135l142 215q-73 73 -101 190t-5 259l3 22q40 250 183.5 400.5t354.5 150.5q57 0 108 -14.5t93 -40.5l107 162h125l-153 -232q61 -76 83 -186t2 -240l-3 -22q-41 -251 -184.5 -400.5t-354.5 -149.5q-50 0 -94 10.5t-81 29.5l-101 -154h-124zM293 367.5 q4 -72.5 28 -117.5l6 -1l431 653q-25 22 -57.5 33.5t-72.5 11.5q-123 0 -208.5 -114t-112.5 -282l-3 -22q-15 -89 -11 -161.5zM393 159q21 -13 47.5 -19.5t58.5 -6.5q122 0 208 113.5t113 282.5l3 22q11 75 10 137t-16 105l-6 2z" />
<glyph unicode="&#xf9;" d="M136 444l127 638h193l-128 -640q-37 -184 -4 -243.5t133 -59.5q89 0 161.5 44t122.5 122l155 777h193l-216 -1082h-173l17 148q-64 -83 -145.5 -126t-178.5 -43q-155 0 -229.5 115t-27.5 350zM435 1483h231l118 -266h-153z" />
<glyph unicode="&#xfa;" d="M136 444l127 638h193l-128 -640q-37 -184 -4 -243.5t133 -59.5q89 0 161.5 44t122.5 122l155 777h193l-216 -1082h-173l17 148q-64 -83 -145.5 -126t-178.5 -43q-155 0 -229.5 115t-27.5 350zM619 1214l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xfb;" d="M136 444l127 638h193l-128 -640q-37 -184 -4 -243.5t133 -59.5q89 0 161.5 44t122.5 122l155 777h193l-216 -1082h-173l17 148q-64 -83 -145.5 -126t-178.5 -43q-155 0 -229.5 115t-27.5 350zM421 1258l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z " />
<glyph unicode="&#xfc;" d="M136 444l127 638h193l-128 -640q-37 -184 -4 -243.5t133 -59.5q89 0 161.5 44t122.5 122l155 777h193l-216 -1082h-173l17 148q-64 -83 -145.5 -126t-178.5 -43q-155 0 -229.5 115t-27.5 350zM388 1262l32 200h210l-32 -200h-210zM825 1262l32 200h210l-32 -200h-210z " />
<glyph unicode="&#xfd;" horiz-adv-x="972" d="M-68 -421l51 155q-14 1 29 -2t53 -3q52 0 104.5 60t84.5 120l66 113l-161 1060h216l67 -681l5 -123l6 -1l402 805h215l-670 -1248q-62 -109 -150 -190t-208 -81q-21 0 -56 5.5t-54 10.5zM558 1214l211 266h224l2 -6l-295 -260h-142z" />
<glyph unicode="&#xfe;" horiz-adv-x="1118" d="M-22 -416l83 416l16 83l200 999l96 478h193l-114 -570q58 54 128.5 83t150.5 29q175 0 259.5 -173t34.5 -428l-4 -21q-50 -250 -168.5 -375.5t-305.5 -125.5q-87 0 -157.5 33t-114.5 96l-21 -108l-83 -416h-193zM307 267q26 -63 78 -98.5t133 -35.5q119 0 198 93.5 t112 253.5l4 21q38 194 -11.5 317.5t-180.5 123.5q-67 0 -124 -39t-103 -106z" />
<glyph unicode="&#xff;" horiz-adv-x="972" d="M-68 -421l51 155q-14 1 29 -2t53 -3q52 0 104.5 60t84.5 120l66 113l-161 1060h216l67 -681l5 -123l6 -1l402 805h215l-670 -1248q-62 -109 -150 -190t-208 -81q-21 0 -56 5.5t-54 10.5zM327 1262l32 200h210l-32 -200h-210zM764 1262l32 200h210l-32 -200h-210z" />
<glyph unicode="&#x152;" horiz-adv-x="1839" d="M131 576l61 304q56 282 229.5 439.5t411.5 157.5q59 0 127.5 -6t136.5 -15h829l-31 -155h-700l-94 -471h616l-31 -155h-616l-104 -521h711l-31 -154h-840q-87 -10 -147.5 -15.5t-122.5 -5.5q-219 0 -338 168.5t-67 428.5zM324 576q-46 -228 19.5 -335t223.5 -107 q48 0 100.5 4t104.5 12l231 1156q-49 7 -99 11.5t-102 4.5q-144 0 -259.5 -115.5t-157.5 -324.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1729" d="M117 529l4 22q51 256 199 403.5t360 147.5q110 0 192 -53.5t125 -148.5q79 97 180 149.5t204 52.5q192 0 276.5 -134.5t42.5 -349.5l-25 -123h-652q-29 -169 19 -265.5t177 -96.5q85 0 164.5 29.5t138.5 77.5l49 -128q-64 -57 -160.5 -95t-222.5 -38q-112 0 -196 51.5 t-128 144.5q-77 -96 -180 -146t-226 -50q-196 0 -292.5 157t-48.5 393zM310 529q-37 -183 5.5 -289.5t173.5 -106.5q119 0 211 114t126 282l4 22q36 180 -7.5 288t-173.5 108q-119 0 -210.5 -115t-124.5 -281zM1065 655l3 -6h445l5 26q24 123 -15.5 197.5t-152.5 74.5 q-81 0 -163 -84.5t-122 -207.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1194" d="M238 1456h220l198 -717l6 -1l486 718h219l-660 -943l-103 -513h-192l105 526zM509 1604l32 200h210l-32 -200h-210zM946 1604l32 200h210l-32 -200h-210z" />
<glyph unicode="&#x2c6;" horiz-adv-x="933" d="M330 1252l6 26l279 237h114l185 -238l-5 -25h-156l-104 148l-163 -148h-156z" />
<glyph unicode="&#x2dc;" horiz-adv-x="932" d="M269 1275q15 96 80.5 163t152.5 67q48 0 120 -47t121 -47q36 0 69.5 32.5t41.5 79.5l99 -32q-16 -97 -82 -160.5t-151 -63.5q-62 0 -127.5 46.5t-113.5 46.5q-37 0 -70 -33t-40 -78z" />
<glyph unicode="&#x2000;" horiz-adv-x="966" />
<glyph unicode="&#x2001;" horiz-adv-x="1932" />
<glyph unicode="&#x2002;" horiz-adv-x="966" />
<glyph unicode="&#x2003;" horiz-adv-x="1932" />
<glyph unicode="&#x2004;" horiz-adv-x="644" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="386" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="529" d="M59 538l30 154h457l-30 -154h-457z" />
<glyph unicode="&#x2011;" horiz-adv-x="529" d="M59 538l30 154h457l-30 -154h-457z" />
<glyph unicode="&#x2012;" horiz-adv-x="529" d="M59 538l30 154h457l-30 -154h-457z" />
<glyph unicode="&#x2013;" horiz-adv-x="1327" d="M233 648l40 155h1009l-40 -155h-1009z" />
<glyph unicode="&#x2014;" horiz-adv-x="1553" d="M256 648l50 155h1241l-49 -155h-1242z" />
<glyph unicode="&#x2018;" horiz-adv-x="406" d="M197 1020l37 184l226 356h94l-128 -362l-36 -178h-193z" />
<glyph unicode="&#x2019;" horiz-adv-x="406" d="M197 1021l124 343l39 196h194l-39 -193l-224 -346h-94z" />
<glyph unicode="&#x201a;" horiz-adv-x="406" d="M-58 -255l110 263l48 241h193l-45 -223l-212 -281h-94z" />
<glyph unicode="&#x201c;" horiz-adv-x="719" d="M197 1020l37 184l226 356h94l-128 -362l-36 -178h-193zM510 1020l37 184l226 356h94l-128 -362l-36 -178h-193z" />
<glyph unicode="&#x201d;" horiz-adv-x="727" d="M197 1021l124 343l39 196h194l-39 -193l-224 -346h-94zM518 1021l124 343l39 196h194l-39 -193l-224 -346h-94z" />
<glyph unicode="&#x201e;" horiz-adv-x="702" d="M-55 -239l122 325l39 194h193l-37 -184l-223 -335h-94zM240 -239l124 333l37 186h193l-37 -184l-223 -335h-94z" />
<glyph unicode="&#x2022;" horiz-adv-x="661" d="M193 733l12 60q18 93 81.5 146.5t153.5 53.5q84 0 128.5 -57t27.5 -143l-12 -60q-20 -95 -82.5 -146.5t-153.5 -51.5q-83 0 -128 56t-27 142z" />
<glyph unicode="&#x2026;" horiz-adv-x="1302" d="M69 0l40 202h191l-40 -202h-191zM482 0l40 202h191l-40 -202h-191zM876 0l40 202h191l-40 -202h-191z" />
<glyph unicode="&#x202f;" horiz-adv-x="386" />
<glyph unicode="&#x2039;" horiz-adv-x="583" d="M128 541l1 6l3 13l353 389h143l-315 -399l155 -398h-143z" />
<glyph unicode="&#x203a;" horiz-adv-x="583" d="M31 152l314 398l-154 399h143l196 -389l-2 -6h1l-3 -13l-352 -389h-143z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1024" d="M90 481l30 155h133l27 136h-133l31 155h133l3 15q52 260 210 397.5t378 137.5q52 0 108 -8.5t113 -22.5l-51 -159q-47 16 -97.5 25.5t-103.5 9.5q-124 0 -227 -104.5t-136 -273.5l-4 -17h451l-31 -155h-451l-27 -136h451l-30 -155h-451q-32 -154 26 -251t194 -97 q50 0 105.5 8.5t106.5 25.5l-12 -157q-57 -15 -115.5 -23t-115.5 -8q-203 0 -314 146.5t-68 355.5h-133z" />
<glyph unicode="&#x2122;" horiz-adv-x="1207" d="M292 1374l16 82h357l-16 -82h-135l-90 -455h-90l90 455h-132zM630 919l107 537h111l70 -388l6 -2l227 390h105l-107 -537h-89l67 336l-6 2l-205 -338h-47l-73 350h-6l-70 -350h-90z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1168" d="M137 0l187 936h-156l29 146h156l28 137q36 184 137.5 273t257.5 89q30 0 62 -6t69 -15l-52 -150q-16 4 -39 7t-48 3q-74 0 -124.5 -52.5t-69.5 -148.5l-28 -137h205l-29 -146h-205l-187 -936h-193zM738 0l312 1560h193l-312 -1560h-193z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1747" d="M137 0l187 936h-156l29 146h156l28 137q36 184 137.5 273t257.5 89q30 0 62 -6t69 -15l-52 -150q-16 4 -39 7t-48 3q-74 0 -124.5 -52.5t-69.5 -148.5l-28 -137h205l-29 -146h-205l-187 -936h-193zM772 0l187 936h-157l29 146h157l24 117q38 194 155.5 288t300.5 94 q58 0 119.5 -16t134.5 -45l-66 -160q-42 21 -96 36t-111 15q-102 0 -163 -53t-81 -159l-24 -117h195l-29 -146h-195l-187 -936h-193zM1317 0l216 1082h194l-216 -1082h-194z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1840" d="M137 0l187 936h-156l29 146h156l28 137q36 184 137.5 273t257.5 89q30 0 62 -6t69 -15l-52 -150q-16 4 -39 7t-48 3q-74 0 -124.5 -52.5t-69.5 -148.5l-28 -137h205l-29 -146h-205l-187 -936h-193zM809 0l187 936h-156l29 146h156l28 137q36 184 137.5 273t257.5 89 q30 0 62 -6t69 -15l-52 -150q-16 4 -39 7t-48 3q-74 0 -124.5 -52.5t-69.5 -148.5l-28 -137h205l-29 -146h-205l-187 -936h-193zM1410 0l312 1560h193l-312 -1560h-193z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

View File

@ -0,0 +1,129 @@
/*Notes about grid:
Columns: 12
Grid Width: 825px
Column Width: 55px
Gutter Width: 15px
-------------------------------*/
.section {margin-bottom: 18px;
}
.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.section {*zoom: 1;}
.section .firstcolumn,
.section .firstcol {margin-left: 0;}
/* Border on left hand side of a column. */
.border {
padding-left: 7px;
margin-left: 7px;
border-left: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
padding-left: 42px;
margin-left: 42px;
border-left: 1px solid #eee;
}
/* The Grid Classes */
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
{margin-left: 15px;float: left;display: inline; overflow: hidden;}
.width1, .grid1, .span-1 {width: 55px;}
.width1_2cols,.grid1_2cols {width: 20px;}
.width1_3cols,.grid1_3cols {width: 8px;}
.width1_4cols,.grid1_4cols {width: 2px;}
.input_width1 {width: 49px;}
.width2, .grid2, .span-2 {width: 125px;}
.width2_3cols,.grid2_3cols {width: 31px;}
.width2_4cols,.grid2_4cols {width: 20px;}
.input_width2 {width: 119px;}
.width3, .grid3, .span-3 {width: 195px;}
.width3_2cols,.grid3_2cols {width: 90px;}
.width3_4cols,.grid3_4cols {width: 37px;}
.input_width3 {width: 189px;}
.width4, .grid4, .span-4 {width: 265px;}
.width4_3cols,.grid4_3cols {width: 78px;}
.input_width4 {width: 259px;}
.width5, .grid5, .span-5 {width: 335px;}
.width5_2cols,.grid5_2cols {width: 160px;}
.width5_3cols,.grid5_3cols {width: 101px;}
.width5_4cols,.grid5_4cols {width: 72px;}
.input_width5 {width: 329px;}
.width6, .grid6, .span-6 {width: 405px;}
.width6_4cols,.grid6_4cols {width: 90px;}
.input_width6 {width: 399px;}
.width7, .grid7, .span-7 {width: 475px;}
.width7_2cols,.grid7_2cols {width: 230px;}
.width7_3cols,.grid7_3cols {width: 148px;}
.width7_4cols,.grid7_4cols {width: 107px;}
.input_width7 {width: 469px;}
.width8, .grid8, .span-8 {width: 545px;}
.width8_3cols,.grid8_3cols {width: 171px;}
.input_width8 {width: 539px;}
.width9, .grid9, .span-9 {width: 615px;}
.width9_2cols,.grid9_2cols {width: 300px;}
.width9_4cols,.grid9_4cols {width: 142px;}
.input_width9 {width: 609px;}
.width10, .grid10, .span-10 {width: 685px;}
.width10_3cols,.grid10_3cols {width: 218px;}
.width10_4cols,.grid10_4cols {width: 160px;}
.input_width10 {width: 679px;}
.width11, .grid11, .span-11 {width: 755px;}
.width11_2cols,.grid11_2cols {width: 370px;}
.width11_3cols,.grid11_3cols {width: 241px;}
.width11_4cols,.grid11_4cols {width: 177px;}
.input_width11 {width: 749px;}
.width12, .grid12, .span-12 {width: 825px;}
.input_width12 {width: 819px;}
/* Subdivided grid spaces */
.emptycols_left1, .prepend-1 {padding-left: 70px;}
.emptycols_right1, .append-1 {padding-right: 70px;}
.emptycols_left2, .prepend-2 {padding-left: 140px;}
.emptycols_right2, .append-2 {padding-right: 140px;}
.emptycols_left3, .prepend-3 {padding-left: 210px;}
.emptycols_right3, .append-3 {padding-right: 210px;}
.emptycols_left4, .prepend-4 {padding-left: 280px;}
.emptycols_right4, .append-4 {padding-right: 280px;}
.emptycols_left5, .prepend-5 {padding-left: 350px;}
.emptycols_right5, .append-5 {padding-right: 350px;}
.emptycols_left6, .prepend-6 {padding-left: 420px;}
.emptycols_right6, .append-6 {padding-right: 420px;}
.emptycols_left7, .prepend-7 {padding-left: 490px;}
.emptycols_right7, .append-7 {padding-right: 490px;}
.emptycols_left8, .prepend-8 {padding-left: 560px;}
.emptycols_right8, .append-8 {padding-right: 560px;}
.emptycols_left9, .prepend-9 {padding-left: 630px;}
.emptycols_right9, .append-9 {padding-right: 630px;}
.emptycols_left10, .prepend-10 {padding-left: 700px;}
.emptycols_right10, .append-10 {padding-right: 700px;}
.emptycols_left11, .prepend-11 {padding-left: 770px;}
.emptycols_right11, .append-11 {padding-right: 770px;}
.pull-1 {margin-left: -70px;}
.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
.pull-2 {margin-left: -140px;}
.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
.pull-3 {margin-left: -210px;}
.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
.pull-4 {margin-left: -280px;}
.push-4 {margin-right: -280px;margin-left: 18px;float: right;}

View File

@ -0,0 +1,396 @@
@import url('grid_12-825-55-15.css');
/*
CSS Reset by Eric Meyer - Released under Public Domain
http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td
{margin: 0;padding: 0;border: 0;outline: 0;
font-size: 100%;vertical-align: baseline;
background: transparent;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}
body {
color: #000;
background-color: #dcdcdc;
}
a {
text-decoration: none;
color: #1883ba;
}
h1{
font-size: 32px;
font-weight: normal;
font-style: normal;
margin-bottom: 18px;
}
h2{
font-size: 18px;
}
#container {
width: 865px;
margin: 0px auto;
}
#header {
padding: 20px;
font-size: 36px;
background-color: #000;
color: #fff;
}
#header span {
color: #666;
}
#main_content {
background-color: #fff;
padding: 60px 20px 20px;
}
#footer p {
margin: 0;
padding-top: 10px;
padding-bottom: 50px;
color: #333;
font: 10px Arial, sans-serif;
}
.tabs {
width: 100%;
height: 31px;
background-color: #444;
}
.tabs li {
float: left;
margin: 0;
overflow: hidden;
background-color: #444;
}
.tabs li a {
display: block;
color: #fff;
text-decoration: none;
font: bold 11px/11px 'Arial';
text-transform: uppercase;
padding: 10px 15px;
border-right: 1px solid #fff;
}
.tabs li a:hover {
background-color: #00b3ff;
}
.tabs li.active a {
color: #000;
background-color: #fff;
}
div.huge {
font-size: 300px;
line-height: 1em;
padding: 0;
letter-spacing: -.02em;
overflow: hidden;
}
div.glyph_range {
font-size: 72px;
line-height: 1.1em;
}
.size10{ font-size: 10px; }
.size11{ font-size: 11px; }
.size12{ font-size: 12px; }
.size13{ font-size: 13px; }
.size14{ font-size: 14px; }
.size16{ font-size: 16px; }
.size18{ font-size: 18px; }
.size20{ font-size: 20px; }
.size24{ font-size: 24px; }
.size30{ font-size: 30px; }
.size36{ font-size: 36px; }
.size48{ font-size: 48px; }
.size60{ font-size: 60px; }
.size72{ font-size: 72px; }
.size90{ font-size: 90px; }
.psample_row1 { height: 120px;}
.psample_row1 { height: 120px;}
.psample_row2 { height: 160px;}
.psample_row3 { height: 160px;}
.psample_row4 { height: 160px;}
.psample {
overflow: hidden;
position: relative;
}
.psample p {
line-height: 1.3em;
display: block;
overflow: hidden;
margin: 0;
}
.psample span {
margin-right: .5em;
}
.white_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
position: absolute;
bottom: 0;
}
.black_blend {
width: 100%;
height: 61px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
position: absolute;
bottom: 0;
}
.fullreverse {
background: #000 !important;
color: #fff !important;
margin-left: -20px;
padding-left: 20px;
margin-right: -20px;
padding-right: 20px;
padding: 20px;
margin-bottom:0;
}
.sample_table td {
padding-top: 3px;
padding-bottom:5px;
padding-left: 5px;
vertical-align: middle;
line-height: 1.2em;
}
.sample_table td:first-child {
background-color: #eee;
text-align: right;
padding-right: 5px;
padding-left: 0;
padding: 5px;
font: 11px/12px "Courier New", Courier, mono;
}
code {
white-space: pre;
background-color: #eee;
display: block;
padding: 10px;
margin-bottom: 18px;
overflow: auto;
}
.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;}
.box {
padding: 18px;
margin-bottom: 18px;
background: #eee;
}
.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;}
#bodycomparison {
position: relative;
overflow: hidden;
font-size: 72px;
height: 90px;
white-space: nowrap;
}
#bodycomparison div{
font-size: 72px;
line-height: 90px;
display: inline;
margin: 0 15px 0 0;
padding: 0;
}
#bodycomparison div span{
font: 10px Arial;
position: absolute;
left: 0;
}
#xheight {
float: none;
position: absolute;
color: #d9f3ff;
font-size: 72px;
line-height: 90px;
}
.fontbody {
position: relative;
}
.arialbody{
font-family: Arial;
position: relative;
}
.verdanabody{
font-family: Verdana;
position: relative;
}
.georgiabody{
font-family: Georgia;
position: relative;
}
/* @group Layout page
*/
#layout h1 {
font-size: 36px;
line-height: 42px;
font-weight: normal;
font-style: normal;
}
#layout h2 {
font-size: 24px;
line-height: 23px;
font-weight: normal;
font-style: normal;
}
#layout h3 {
font-size: 22px;
line-height: 1.4em;
margin-top: 1em;
font-weight: normal;
font-style: normal;
}
#layout p.byline {
font-size: 12px;
margin-top: 18px;
line-height: 12px;
margin-bottom: 0;
}
#layout p {
font-size: 14px;
line-height: 21px;
margin-bottom: .5em;
}
#layout p.large{
font-size: 18px;
line-height: 26px;
}
#layout .sidebar p{
font-size: 12px;
line-height: 1.4em;
}
#layout p.caption {
font-size: 10px;
margin-top: -16px;
margin-bottom: 18px;
}
/* @end */
/* @group Glyphs */
#glyph_chart div{
background-color: #d9f3ff;
color: black;
float: left;
font-size: 36px;
height: 1.2em;
line-height: 1.2em;
margin-bottom: 1px;
margin-right: 1px;
text-align: center;
width: 1.2em;
position: relative;
padding: .6em .2em .2em;
}
#glyph_chart div p {
position: absolute;
left: 0;
top: 0;
display: block;
text-align: center;
font: bold 9px Arial, sans-serif;
background-color: #3a768f;
width: 100%;
color: #fff;
padding: 2px 0;
}
#glyphs h1 {
font-family: Arial, sans-serif;
}
/* @end */
/* @group Installing */
#installing {
font: 13px Arial, sans-serif;
}
#installing p,
#glyphs p{
line-height: 1.2em;
margin-bottom: 18px;
font: 13px Arial, sans-serif;
}
#installing h3{
font-size: 15px;
margin-top: 18px;
}
/* @end */
#rendering h1 {
font-family: Arial, sans-serif;
}
.render_table td {
font: 11px "Courier New", Courier, mono;
vertical-align: middle;
}

View File

@ -0,0 +1,12 @@
@font-face {
font-family: 'robotoitalic';
src: url('Roboto-Italic-webfont.eot');
src: url('Roboto-Italic-webfont.eot?#iefix') format('embedded-opentype'),
url('Roboto-Italic-webfont.woff') format('woff'),
url('Roboto-Italic-webfont.ttf') format('truetype'),
url('Roboto-Italic-webfont.svg#robotoitalic') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -0,0 +1,372 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;}
if(typeof param.defaultContent=="number")
{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}
$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();}
function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none")
{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}}
$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);
</script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'robotolight';
}
</style>
<title>Roboto Light Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Roboto Light </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Roboto Light</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>&copy;2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,641 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotolight" horiz-adv-x="1140" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="498" />
<glyph unicode="&#xfb01;" horiz-adv-x="1100" d="M48 984v98h180v138q0 172 95 266.5t264 94.5q67 0 136 -15t140 -44l-20 -103q-61 25 -118 39t-130 14q-122 0 -184.5 -65t-62.5 -187v-138h253v-98h-253v-984h-120v984h-180zM808 0v1082h120v-1082h-120z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="498" />
<glyph unicode=" " horiz-adv-x="498" />
<glyph unicode="&#x09;" horiz-adv-x="498" />
<glyph unicode="&#xa0;" horiz-adv-x="498" />
<glyph unicode="!" horiz-adv-x="462" d="M158 0v167h142v-167h-142zM169 478v978h119v-978h-119z" />
<glyph unicode="&#x22;" horiz-adv-x="588" d="M127 1083l3 255v222h102v-216l-33 -261h-72zM366 1083l4 258v219h101v-216l-33 -261h-72z" />
<glyph unicode="#" horiz-adv-x="1270" d="M67 410v93h272l83 441h-279v96h297l79 416h100l-79 -416h314l79 416h100l-79 -416h229v-96h-247l-83 -441h255v-93h-273l-77 -410h-100l77 410h-313l-77 -410h-100l77 410h-255zM439 503h314l83 441h-314z" />
<glyph unicode="$" horiz-adv-x="1135" d="M120 412l3 6h112q0 -177 101 -255t244 -78q148 0 234.5 77.5t86.5 196.5q0 110 -72 180t-254 135q-208 66 -308 159t-100 262q0 162 100 264t272 116v202h102v-202q175 -16 271 -131t94 -311l-3 -5h-112q0 152 -80 247t-224 95q-148 0 -224.5 -77.5t-76.5 -195.5 q0 -114 68 -183.5t261 -133.5q207 -69 306.5 -160.5t99.5 -258.5q0 -166 -104 -265.5t-280 -113.5v-190h-101v189q-181 11 -300.5 115.5t-115.5 315.5z" />
<glyph unicode="%" horiz-adv-x="1514" d="M110 1099v77q0 127 78.5 214t206.5 87q127 0 205.5 -87t78.5 -214v-77q0 -126 -78 -212.5t-204 -86.5q-129 0 -208 86.5t-79 212.5zM206 1099q0 -88 49.5 -150t141.5 -62q89 0 137.5 62t48.5 150v77q0 88 -49 151t-139 63t-139.5 -63t-49.5 -151v-77zM386 169l711 1138 l74 -48l-711 -1138zM842 278v78q0 126 78.5 213t206.5 87q127 0 206 -87t79 -213v-78q0 -126 -78.5 -212.5t-204.5 -86.5q-129 0 -208 86.5t-79 212.5zM939 278q0 -88 49 -150t141 -62q89 0 137.5 62t48.5 150v78q0 91 -49 152t-139 61t-139 -61.5t-49 -151.5v-78z" />
<glyph unicode="&#x26;" horiz-adv-x="1260" d="M91 371q0 120 72.5 216.5t209.5 196.5l15 11q-81 100 -120 182.5t-39 169.5q0 158 89 244t244 86q144 0 228.5 -81t84.5 -204q0 -90 -45 -155t-130 -130l-159 -122l412 -481q49 71 76 159t27 188h110q0 -128 -36.5 -235.5t-105.5 -194.5l185 -216l-2 -5h-137l-122 141 q-85 -78 -186 -120t-218 -42q-209 0 -331 107t-122 285zM211 371q0 -124 85.5 -207.5t247.5 -83.5q92 0 179.5 36t157.5 103l-414 482l-8.5 8.5t-5.5 7.5l-47 -36q-116 -94 -155.5 -170t-39.5 -140zM349 1149q0 -66 31.5 -137t96.5 -151l177 132q58 45 82.5 94t24.5 105 q0 79 -52.5 131t-146.5 52q-102 0 -157.5 -65t-55.5 -161z" />
<glyph unicode="'" horiz-adv-x="348" d="M116 1090l8 266v204h102v-195l-38 -275h-72z" />
<glyph unicode="(" horiz-adv-x="640" d="M140 573v15q0 363 139 651t310 386l6 -1l26 -73q-145 -103 -253 -366t-108 -594v-20q0 -331 108 -594t253 -370l-26 -70h-6q-173 100 -311 382t-138 654z" />
<glyph unicode=")" horiz-adv-x="652" d="M18 -393q144 102 252.5 367t108.5 597v20q0 329 -110.5 595.5t-250.5 368.5l26 70h6q170 -98 309 -386t139 -651v-15q0 -372 -138 -654t-310 -382h-6z" />
<glyph unicode="*" horiz-adv-x="869" d="M29 1108l32 101l332 -123l-4 370h104l-8 -373l324 127l33 -101l-333 -115l223 -294l-85 -63l-214 305l-204 -303l-85 61l217 300z" />
<glyph unicode="+" horiz-adv-x="1156" d="M75 628v112h434v466h121v-466h443v-112h-443v-482h-121v482h-434z" />
<glyph unicode="," horiz-adv-x="392" d="M83 -258l69 279v167h119v-170l-106 -276h-82z" />
<glyph unicode="-" horiz-adv-x="586" d="M49 570v101h479v-101h-479z" />
<glyph unicode="." horiz-adv-x="489" d="M167 0v164h137v-164h-137z" />
<glyph unicode="/" horiz-adv-x="813" d="M30 -125l608 1581h108l-607 -1581h-109z" />
<glyph unicode="0" horiz-adv-x="1194" d="M135 565v325q0 281 122 434t339 153t340 -153t123 -434v-325q0 -282 -122 -434t-339 -152q-216 0 -339.5 152.5t-123.5 433.5zM255 547q0 -222 88.5 -344.5t254.5 -122.5t253.5 122t87.5 345v363q0 224 -88 344.5t-255 120.5t-254 -120.5t-87 -344.5v-363z" />
<glyph unicode="1" horiz-adv-x="1135" d="M188 1288v84l490 88v-1467h-120v1338z" />
<glyph unicode="2" horiz-adv-x="1135" d="M111 1043q-5 182 118 308t333 126q188 0 301 -108t113 -290q0 -120 -75.5 -243.5t-210.5 -275.5l-401 -454l2 -5h750v-101h-904v92l477 541q132 149 186.5 249.5t54.5 192.5q0 136 -76.5 218t-216.5 82q-166 0 -252 -92t-86 -246h-111z" />
<glyph unicode="3" horiz-adv-x="1135" d="M104 389l2 6h112q0 -139 96.5 -227t249.5 -88q155 0 242 80.5t87 230.5q0 153 -91 226.5t-260 73.5h-139v102h139q159 0 241 79.5t82 204.5q0 136 -77 217t-229 81q-140 0 -229.5 -82.5t-89.5 -217.5h-112l-2 6q-5 170 119 283t314 113q195 0 310.5 -107t115.5 -297 q0 -103 -64 -193.5t-180 -134.5q136 -39 203.5 -131.5t67.5 -218.5q0 -194 -125.5 -305t-322.5 -111q-191 0 -328 108.5t-132 301.5z" />
<glyph unicode="4" horiz-adv-x="1135" d="M69 368v68l671 1020h131v-987h228v-101h-228v-368h-119v368h-683zM211 469h541v830l-6 2l-51 -109z" />
<glyph unicode="5" horiz-adv-x="1135" d="M174 377l2 6h107q0 -147 83.5 -225t222.5 -78q162 0 242.5 98t80.5 284q0 163 -80.5 261.5t-225.5 98.5q-140 0 -213.5 -44.5t-106.5 -134.5l-97 16l81 797h707v-111h-605l-54 -519q55 50 121 77t179 30q186 3 300 -125t114 -344q0 -221 -110.5 -353t-332.5 -132 q-180 0 -300 100.5t-115 297.5z" />
<glyph unicode="6" horiz-adv-x="1135" d="M152 540v367q0 252 143 411t352 159q75 0 148 -17t130 -49l-31 -98q-57 32 -113 47t-134 15q-162 0 -268.5 -126t-106.5 -331v-129q60 78 153 125t206 47q196 0 310 -135t114 -352q0 -215 -122.5 -355t-318.5 -140q-201 0 -331.5 150t-130.5 411zM272 531q0 -209 96 -330 t246 -121q146 0 233.5 114.5t87.5 279.5q0 175 -85 282t-243 107q-121 0 -211.5 -63t-123.5 -162v-107z" />
<glyph unicode="7" horiz-adv-x="1135" d="M77 1354v102h955v-102q-236 -280 -361 -568.5t-167 -663.5l-11 -122h-120l11 122q42 370 174 669.5t350 562.5h-831z" />
<glyph unicode="8" horiz-adv-x="1135" d="M100 386q0 129 79 224.5t212 136.5q-115 40 -182.5 128t-67.5 206q0 188 118.5 292t307.5 104q188 0 308.5 -104.5t120.5 -291.5q0 -118 -69 -206.5t-184 -128.5q133 -41 213.5 -136.5t80.5 -223.5q0 -196 -131 -301.5t-337 -105.5q-210 0 -339.5 105t-129.5 302z M219 385q0 -143 97 -224t253 -81q152 0 250 81.5t98 223.5q0 138 -100 224.5t-250 86.5q-152 0 -250 -86.5t-98 -224.5zM260 1082q0 -129 86.5 -206.5t222.5 -77.5q133 0 220 77.5t87 206.5q0 126 -88.5 209.5t-220.5 83.5q-135 0 -221 -80t-86 -213z" />
<glyph unicode="9" horiz-adv-x="1135" d="M89 958q0 221 127.5 370t315.5 149q211 0 338 -137.5t127 -399.5v-429q0 -253 -134 -392.5t-352 -139.5q-78 0 -156.5 15t-149.5 46l22 100q68 -32 134.5 -46t149.5 -14q166 0 264 111t98 318v146q-53 -92 -142.5 -142t-199.5 -50q-199 0 -320.5 138t-121.5 357zM213 958 q0 -168 86 -281t232 -113q130 0 217.5 66.5t124.5 164.5v154q0 207 -90.5 316.5t-245.5 109.5q-141 0 -232.5 -122t-91.5 -295z" />
<glyph unicode=":" horiz-adv-x="434" d="M154 0v164h137v-164h-137zM154 916v164h137v-164h-137z" />
<glyph unicode=";" horiz-adv-x="438" d="M106 -258l69 279v167h119v-170l-106 -276h-82zM158 918v164h137v-164h-137z" />
<glyph unicode="&#x3c;" horiz-adv-x="1047" d="M77 501v97l827 378v-126l-614 -272l-108 -28v-6l108 -28l614 -268v-126z" />
<glyph unicode="=" horiz-adv-x="1147" d="M149 422v106h834v-106h-834zM149 833v106h834v-106h-834z" />
<glyph unicode="&#x3e;" horiz-adv-x="1061" d="M124 122v124l632 274l108 27v6l-108 29l-632 271v123l845 -378v-97z" />
<glyph unicode="?" horiz-adv-x="930" d="M81 1122q-3 165 104 260t273 95q179 0 280.5 -101t101.5 -273q0 -135 -66.5 -239.5t-188.5 -218.5q-62 -53 -75.5 -99t-13.5 -142h-119q1 131 22 182.5t114 136.5q108 112 157.5 187.5t49.5 191.5q0 128 -68 198t-194 70q-118 0 -190 -68.5t-73 -185.5h-112zM373 0v154 h139v-154h-139z" />
<glyph unicode="@" horiz-adv-x="1870" d="M122 478q18 424 252.5 683t609.5 259q391 0 587.5 -241.5t179.5 -665.5q-10 -216 -117 -375t-313 -159q-78 0 -130.5 51t-69.5 142q-53 -96 -131 -144.5t-180 -48.5q-131 0 -199 120t-49 317q23 254 141 407.5t286 153.5q94 0 151 -26.5t126 -81.5l-2 -2h3l-50 -574 q-10 -132 30 -180t95 -48q142 0 224.5 124.5t93.5 323.5q18 389 -150 604.5t-530 215.5q-323 0 -533 -235.5t-227 -619.5q-19 -379 163.5 -612.5t519.5 -233.5q88 0 178 22t152 57l31 -75q-64 -41 -167 -65t-198 -24q-380 0 -588 249.5t-189 681.5zM672 416 q-16 -155 26 -247t138 -92q86 0 156.5 43t122.5 157v8.5t1 7.5l47 544q-32 23 -71 36t-87 13q-134 0 -222 -119t-111 -351z" />
<glyph unicode="A" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM346 513h588l-290 788h-6z" />
<glyph unicode="B" horiz-adv-x="1269" d="M191 0v1456h425q227 0 353.5 -95.5t126.5 -287.5q0 -112 -63.5 -195t-172.5 -115q133 -24 216 -125t83 -233q0 -195 -126.5 -300t-338.5 -105h-503zM310 101h384q161 0 253 79.5t92 222.5q0 131 -83.5 215t-242.5 84h-403v-601zM310 803h335q158 0 244.5 69.5t86.5 204.5 q0 138 -92 207.5t-268 69.5h-306v-551z" />
<glyph unicode="C" horiz-adv-x="1313" d="M132 609v237q0 278 149 454.5t392 176.5q232 0 368 -123t155 -346l-2 -6h-112q-24 181 -124.5 277t-284.5 96q-191 0 -306.5 -148t-115.5 -379v-239q0 -234 115.5 -381.5t306.5 -147.5q184 0 285 94t124 281h112l2 -6q-19 -219 -156 -344.5t-367 -125.5 q-243 0 -392 175.5t-149 454.5z" />
<glyph unicode="D" horiz-adv-x="1344" d="M191 0v1456h423q267 0 441 -178t174 -457v-187q0 -280 -174 -457t-441 -177h-423zM310 101h304q216 0 355.5 151t139.5 382v190q0 228 -140 379t-355 151h-304v-1253z" />
<glyph unicode="E" horiz-adv-x="1180" d="M191 0v1456h917v-102h-798v-547h701v-102h-701v-604h803v-101h-922z" />
<glyph unicode="F" horiz-adv-x="1181" d="M191 0v1456h929v-102h-810v-569h708v-103h-708v-682h-119z" />
<glyph unicode="G" horiz-adv-x="1401" d="M146 600v267q0 270 154.5 440t400.5 170q235 0 367.5 -117.5t153.5 -305.5l-2 -6h-111q-26 146 -123 236.5t-285 90.5q-196 0 -315.5 -142t-119.5 -364v-269q0 -228 127 -374t332 -146q145 0 246.5 40.5t138.5 88.5v380h-387v102h507v-518q-49 -71 -178.5 -132.5 t-326.5 -61.5q-254 0 -416.5 173t-162.5 448z" />
<glyph unicode="H" horiz-adv-x="1448" d="M191 0v1456h119v-684h828v684h119v-1456h-119v670h-828v-670h-119z" />
<glyph unicode="I" horiz-adv-x="554" d="M217 0v1456h120v-1456h-120z" />
<glyph unicode="J" horiz-adv-x="1127" d="M82 395l2 6h112q0 -158 84 -239.5t240 -81.5q133 0 219 90.5t86 242.5v1043h120v-1043q0 -199 -118.5 -316.5t-306.5 -117.5q-205 0 -324 106q-114 102 -114 294v16z" />
<glyph unicode="K" horiz-adv-x="1308" d="M191 0v1456h119v-670h199l573 670h135l2 -5l-602 -711l645 -735l-2 -5h-142l-608 685h-200v-685h-119z" />
<glyph unicode="L" horiz-adv-x="1079" d="M191 0v1456h120v-1355h720v-101h-840z" />
<glyph unicode="M" horiz-adv-x="1775" d="M191 0v1456h157l535 -1282h6l537 1282h158v-1456h-119v643l10 637l-6 2l-541 -1282h-83l-540 1276l-6 -1l11 -632v-643h-119z" />
<glyph unicode="N" horiz-adv-x="1454" d="M191 0v1456h120l827 -1250l6 1v1249h119v-1456h-119l-827 1252l-6 -1v-1251h-120z" />
<glyph unicode="O" horiz-adv-x="1378" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -282 -154.5 -456t-414.5 -174q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380 v-239z" />
<glyph unicode="P" horiz-adv-x="1267" d="M191 0v1456h501q229 0 354.5 -116.5t125.5 -308.5q0 -194 -125.5 -310t-354.5 -116h-382v-605h-119zM310 707h382q180 0 270.5 91.5t90.5 230.5q0 140 -90 232.5t-271 92.5h-382v-647z" />
<glyph unicode="Q" horiz-adv-x="1379" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -164 -54.5 -295.5t-155.5 -214.5l250 -236l-83 -75l-264 249q-59 -29 -124.5 -43.5t-137.5 -14.5q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5 t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380v-239z" />
<glyph unicode="R" horiz-adv-x="1348" d="M188 0v1455h493q234 0 359 -102.5t125 -299.5q0 -116 -67 -207.5t-189 -133.5q135 -34 194.5 -121.5t59.5 -219.5v-137q0 -68 16 -122t53 -88v-24h-122q-37 36 -52 101t-15 135v133q0 134 -86.5 211.5t-241.5 77.5h-408v-658h-119zM307 760h359q197 0 288 79.5t91 214.5 q0 144 -90.5 221.5t-273.5 77.5h-374v-593z" />
<glyph unicode="S" horiz-adv-x="1231" d="M100 408l2 6h110q0 -170 127 -252t299 -82q173 0 279.5 76t106.5 201q0 119 -89 194.5t-310 133.5q-239 60 -362 156t-123 259q0 167 137.5 272t353.5 105q225 0 363 -125q134 -121 134 -295v-10l-3 -6h-110q0 146 -103.5 240t-280.5 94q-175 0 -273.5 -78t-98.5 -194 q0 -110 91 -183.5t314 -129.5q235 -60 357.5 -162t122.5 -269q0 -174 -142.5 -277t-363.5 -103q-218 -1 -380 109q-158 106 -158 308v12z" />
<glyph unicode="T" horiz-adv-x="1213" d="M45 1354v102h1122v-102h-501v-1354h-120v1354h-501z" />
<glyph unicode="U" horiz-adv-x="1374" d="M167 469v987h120v-987q0 -186 110 -287.5t287 -101.5q180 0 293 101t113 288v987h119v-987q0 -238 -145.5 -364t-379.5 -126q-231 0 -374 126.5t-143 363.5z" />
<glyph unicode="V" horiz-adv-x="1263" d="M32 1456h130l438 -1210l29 -97h6l29 97l437 1210h130l-543 -1456h-113z" />
<glyph unicode="W" horiz-adv-x="1834" d="M57 1456h123l265 -1044l44 -223l6 -1l55 224l308 1044h113l308 -1044l53 -225l6 1l47 224l263 1044h122l-374 -1456h-113l-327 1117l-38 153h-6l-37 -153l-330 -1117h-114z" />
<glyph unicode="X" horiz-adv-x="1256" d="M59 0l500 738l-485 718h145l409 -622l411 622h145l-484 -718l500 -738h-143l-427 642l-426 -642h-145z" />
<glyph unicode="Y" horiz-adv-x="1244" d="M33 1456h139l448 -809l451 809h139l-531 -924v-532h-119v539z" />
<glyph unicode="Z" horiz-adv-x="1224" d="M95 0v92l858 1262h-831v102h977v-87l-861 -1268h893v-101h-1036z" />
<glyph unicode="[" horiz-adv-x="491" d="M163 -312v1976h330v-102h-210v-1772h210v-102h-330z" />
<glyph unicode="\" horiz-adv-x="807" d="M48 1456h117l608 -1581h-117z" />
<glyph unicode="]" horiz-adv-x="491" d="M0 -210h211v1772h-211v102h331v-1976h-331v102z" />
<glyph unicode="^" horiz-adv-x="852" d="M77 729l299 727h90l298 -727h-116l-196 484l-30 106h-6l-30 -106l-193 -484h-116z" />
<glyph unicode="_" horiz-adv-x="884" d="M1 0h881v-101h-881v101z" />
<glyph unicode="`" horiz-adv-x="585" d="M93 1471l2 5h154l202 -266h-117z" />
<glyph unicode="a" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6v12q0 114 110 204q116 96 297 96q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241q-163 0 -260.5 -69.5t-97.5 -172.5z" />
<glyph unicode="b" d="M157 0v1560h120v-648q54 91 138 140.5t200 49.5q195 0 305 -155.5t110 -414.5v-21q0 -243 -110 -387.5t-303 -144.5q-119 0 -205 47.5t-139 136.5l-13 -163h-103zM277 288q40 -94 119.5 -149.5t197.5 -55.5q157 0 236 116t79 312v21q0 207 -80 336.5t-237 129.5 q-125 0 -201.5 -62t-113.5 -159v-489z" />
<glyph unicode="c" horiz-adv-x="1061" d="M97 520v42q0 236 121 388t340 152q178 0 296 -105q115 -102 115 -265v-11l-2 -6h-107q0 130 -87.5 207.5t-214.5 77.5q-174 0 -257.5 -124.5t-83.5 -313.5v-42q0 -192 83 -316t259 -124q119 0 210 68t91 189h106l2 -6v-11q0 -142 -120 -240q-125 -101 -289 -101 q-221 0 -341.5 151.5t-120.5 389.5z" />
<glyph unicode="d" d="M111 511v21q0 259 109.5 414.5t305.5 155.5q113 0 196 -48t138 -136v642h119v-1560h-106l-10 157q-54 -86 -139 -132t-200 -46q-194 0 -303.5 144.5t-109.5 387.5zM231 511q0 -196 78.5 -312t236.5 -116q116 0 193.5 52t120.5 144v508q-41 94 -116 152.5t-196 58.5 q-158 0 -237.5 -129.5t-79.5 -336.5v-21z" />
<glyph unicode="e" horiz-adv-x="1055" d="M92 509v55q0 232 133.5 385t323.5 153q199 0 313 -126t114 -336v-102h-764v-29q0 -183 97 -306t255 -123q112 0 191 31t135 89l51 -82q-61 -64 -154.5 -101.5t-222.5 -37.5q-203 0 -337.5 150t-134.5 380zM221 644l2 -5h634v30q0 141 -83 236t-225 95q-133 0 -223 -101.5 t-105 -254.5z" />
<glyph unicode="f" horiz-adv-x="673" d="M66 984v98h179v158q0 163 81.5 252t228.5 89q33 0 67 -5t69 -14l-15 -99q-24 6 -49.5 9.5t-59.5 3.5q-98 0 -150 -62t-52 -174v-158h258v-98h-258v-984h-120v984h-179z" />
<glyph unicode="g" horiz-adv-x="1141" d="M111 511v21q0 259 110.5 414.5t307.5 155.5q115 0 199 -50.5t139 -142.5l14 173h101v-1068q0 -209 -115.5 -330t-321.5 -121q-78 0 -166 19t-154 52l31 101q64 -32 135 -48.5t152 -16.5q158 0 238.5 91t80.5 253v136q-55 -82 -139 -126.5t-196 -44.5q-195 0 -305.5 145 t-110.5 387zM231 511q0 -195 80 -311.5t238 -116.5q116 0 193.5 53t119.5 146v502q-39 94 -114.5 154t-196.5 60q-158 0 -239 -130t-81 -336v-21z" />
<glyph unicode="h" d="M158 0v1560h120v-663q54 97 144 151t210 54q171 0 262.5 -106t91.5 -329v-667h-120v669q0 176 -69.5 252.5t-191.5 76.5q-123 0 -205.5 -64.5t-121.5 -171.5v-762h-120z" />
<glyph unicode="i" horiz-adv-x="465" d="M173 0v1082h119v-1082h-119zM173 1392v168h119v-168h-119z" />
<glyph unicode="j" horiz-adv-x="484" d="M-115 -418l13 101q16 -5 44 -10t49 -5q89 0 139 61.5t50 181.5v1171h119v-1171q0 -167 -80 -257.5t-222 -90.5q-30 0 -56.5 5t-55.5 14zM174 1396v164h119v-164h-119z" />
<glyph unicode="k" horiz-adv-x="1006" d="M159 0v1560h120v-930h126l402 452h140l2 -5l-433 -488l478 -584l-3 -5h-137l-437 527h-138v-527h-120z" />
<glyph unicode="l" horiz-adv-x="465" d="M173 0v1560h119v-1560h-119z" />
<glyph unicode="m" horiz-adv-x="1815" d="M152 0v1082h107l11 -179q52 95 138.5 147t206.5 52q124 0 207.5 -60t119.5 -183q49 114 139.5 178.5t220.5 64.5q173 0 267 -115t94 -356v-631h-120v633q0 200 -70.5 282.5t-196.5 82.5q-139 0 -215 -87t-94 -223q0 -7 0.5 -20t0.5 -19v-649h-121v633q0 196 -71.5 280.5 t-196.5 84.5q-127 0 -201.5 -64.5t-104.5 -173.5v-760h-121z" />
<glyph unicode="n" d="M158 0v1082h106l11 -189q52 100 140.5 154.5t209.5 54.5q176 0 268 -107.5t92 -335.5v-659h-120v658q0 186 -69.5 263t-197.5 77q-126 0 -205.5 -66.5t-114.5 -176.5v-755h-120z" />
<glyph unicode="o" d="M91 524v33q0 239 131 392t347 153q217 0 348 -153t131 -392v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-218 0 -349 152.5t-131 392.5zM211 524q0 -188 95 -316t265 -128q167 0 262.5 128t95.5 316v33q0 185 -96 314t-264 129t-263 -129t-95 -314v-33z" />
<glyph unicode="p" d="M157 -416v1498h101l15 -168q54 90 139.5 139t201.5 49q195 0 305 -155.5t110 -414.5v-21q0 -243 -110 -387.5t-303 -144.5q-114 0 -199.5 43t-139.5 123v-561h-120zM277 271q41 -89 118.5 -140t193.5 -51q157 0 238.5 118t81.5 313v21q0 206 -82 336t-240 130 q-121 0 -196.5 -57.5t-113.5 -149.5v-520z" />
<glyph unicode="q" d="M111 511v21q0 259 109.5 414.5t305.5 155.5q111 0 194.5 -46.5t137.5 -132.5l12 159h104v-1498h-119v558q-55 -79 -138 -121t-193 -42q-194 0 -303.5 144.5t-109.5 387.5zM231 511q0 -196 78.5 -313.5t236.5 -117.5q112 0 188.5 50.5t120.5 137.5v530 q-41 89 -116.5 145.5t-190.5 56.5q-158 0 -237.5 -130.5t-79.5 -337.5v-21z" />
<glyph unicode="r" horiz-adv-x="697" d="M158 0v1082h105l15 -180v-12q47 100 126 156t188 56q23 0 44.5 -3.5t35.5 -7.5l-16 -112l-89 6q-113 0 -185.5 -63.5t-103.5 -174.5v-747h-120z" />
<glyph unicode="s" horiz-adv-x="1043" d="M110 297l2 6h110q7 -117 95.5 -170t208.5 -53q130 0 205 57t75 138q0 76 -62.5 133t-225.5 93q-194 42 -286.5 111t-92.5 195q0 124 104.5 209.5t276.5 85.5q183 0 290 -90q102 -86 102 -215v-12l-2 -6h-111q0 89 -75.5 155t-203.5 66q-131 0 -196.5 -56.5t-65.5 -132.5 q0 -75 56.5 -124t225.5 -86q193 -43 289 -117.5t96 -202.5q0 -135 -109.5 -218.5t-289.5 -83.5q-198 0 -310 94q-107 89 -106 211v13z" />
<glyph unicode="t" horiz-adv-x="680" d="M38 984v98h187v277h121v-277h238v-98h-238v-705q0 -106 38.5 -150.5t102.5 -44.5q29 0 56.5 2.5t63.5 8.5l18 -89q-30 -13 -73 -20t-86 -7q-114 0 -177.5 72t-63.5 228v705h-187z" />
<glyph unicode="u" d="M154 455v627h120v-629q0 -198 67.5 -284t191.5 -86q136 0 217 61t113 168v770h120v-1082h-106l-10 177q-52 -95 -140 -146.5t-208 -51.5q-171 0 -268 116t-97 360z" />
<glyph unicode="v" horiz-adv-x="1002" d="M44 1082h124l298 -811l35 -127h6l38 127l294 811h124l-411 -1082h-96z" />
<glyph unicode="w" horiz-adv-x="1550" d="M65 1082h124l202 -731l41 -193h6l51 193l230 731h103l230 -731l52 -198h6l45 198l197 731h124l-315 -1082h-102l-240 740l-47 187h-6l-48 -187l-236 -740h-103z" />
<glyph unicode="x" horiz-adv-x="1002" d="M50 0l383 551l-367 531h141l291 -442l293 442h142l-367 -531l382 -551h-140l-308 461l-308 -461h-142z" />
<glyph unicode="y" horiz-adv-x="1002" d="M35 1082h133l297 -789l38 -129h6l327 918h134l-470 -1255q-42 -110 -109 -187t-196 -77q-21 0 -51 4.5t-44 9.5l14 100q12 -2 38.5 -4.5t38.5 -2.5q78 0 125 55.5t80 142.5l57 146z" />
<glyph unicode="z" horiz-adv-x="1002" d="M90 0v88l652 891h-632v103h783v-89l-655 -892h703v-101h-851z" />
<glyph unicode="{" horiz-adv-x="676" d="M68 543v104q118 0 174.5 67t56.5 190v228q0 171 77.5 290.5t260.5 174.5l26 -79q-127 -41 -185.5 -142t-58.5 -244v-228q0 -110 -45.5 -191t-138.5 -118q93 -39 138.5 -120.5t45.5 -190.5v-226q0 -143 59.5 -241.5t187.5 -140.5l-29 -80q-183 55 -260.5 173.5 t-77.5 288.5v226q0 122 -56.5 190.5t-174.5 68.5z" />
<glyph unicode="|" horiz-adv-x="452" d="M178 -270v1726h101v-1726h-101z" />
<glyph unicode="}" horiz-adv-x="676" d="M9 -324q127 42 187 140.5t60 241.5v226q0 112 47 193t146 117q-99 35 -146 116t-47 194v228q0 144 -58.5 244.5t-185.5 141.5l26 79q182 -55 260 -174.5t78 -290.5v-228q0 -122 56 -189.5t175 -67.5v-104q-119 0 -175 -68.5t-56 -190.5v-226q0 -170 -77.5 -288.5 t-260.5 -173.5z" />
<glyph unicode="~" horiz-adv-x="1402" d="M143 474q0 131 79 222t202 91q87 0 160.5 -37t162.5 -113q63 -57 116.5 -82.5t110.5 -25.5q77 0 131 64t54 162l98 -15q0 -129 -81 -223t-202 -94q-88 0 -160.5 35.5t-160.5 114.5q-64 54 -118.5 80.5t-110.5 26.5q-79 0 -131.5 -60.5t-52.5 -160.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="452" d="M145 898v184h142v-184h-142zM156 -374v978h120v-978h-120z" />
<glyph unicode="&#xa2;" horiz-adv-x="1115" d="M122 520v42q0 217 103 364.5t292 171.5v220h120v-219q158 -17 259.5 -119t98.5 -259l-3 -6h-107q0 130 -87.5 207.5t-214.5 77.5q-174 0 -257.5 -124.5t-83.5 -313.5v-42q0 -192 83 -316t259 -124q119 0 210 68t91 189h107l2 -6q4 -137 -102 -234t-255 -115v-227h-120 v228q-190 23 -292.5 170.5t-102.5 366.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1170" d="M67 642v102h203l-11 296q0 204 106 320.5t284 116.5q187 0 281 -103.5t91 -277.5l-3 -6h-112q0 148 -68.5 216.5t-188.5 68.5q-125 0 -197.5 -88t-72.5 -247l11 -296h450v-102h-447l7 -176q0 -107 -25.5 -204t-71.5 -161h769v-101h-941v101h10q70 15 105 130t35 235 l-7 176h-207z" />
<glyph unicode="&#xa4;" horiz-adv-x="1481" d="M109 60l159 161q-60 81 -92 179t-32 208q0 112 34.5 214t98.5 184l-168 171l85 87l167 -170q78 67 175 103.5t204 36.5q106 0 203 -37.5t176 -104.5l170 173l86 -88l-171 -175q62 -82 96 -182.5t34 -211.5q0 -108 -32 -206t-90 -178l163 -164l-86 -87l-158 160 q-80 -74 -180.5 -113.5t-210.5 -39.5q-111 0 -211.5 39.5t-179.5 112.5l-155 -158zM257 608q0 -215 141.5 -366t341.5 -151q198 0 339.5 151t141.5 366q0 213 -141.5 363.5t-339.5 150.5q-200 0 -341.5 -150.5t-141.5 -363.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1223" d="M45 1456h139l423 -723l424 723h139l-455 -751h371v-102h-421v-175h421v-102h-421v-326h-119v326h-416v102h416v175h-416v102h370z" />
<glyph unicode="&#xa6;" horiz-adv-x="444" d="M159 -270v771h120v-771h-120zM159 698v758h120v-758h-120z" />
<glyph unicode="&#xa7;" horiz-adv-x="1239" d="M108 -70l2 6l112 2q0 -173 113 -252t271 -79q163 0 255.5 70.5t92.5 181.5q0 106 -77 166t-292 121q-243 61 -360 149.5t-117 255.5q0 98 58.5 169t164.5 105q-90 49 -134 119.5t-44 175.5q0 161 128 259t343 98q222 0 346.5 -111.5t120.5 -313.5l-2 -6h-112 q0 141 -94 235t-259 94q-173 0 -262 -71t-89 -181q0 -114 74 -173t299 -122q247 -65 360 -148.5t113 -248.5q0 -98 -61 -168.5t-171 -103.5q94 -50 141 -120.5t47 -177.5q0 -166 -127.5 -261t-341.5 -95q-213 0 -358 102.5t-140 322.5zM228 553q0 -116 79 -175t323 -127 q34 -10 65 -19t60 -18q115 13 179.5 71.5t64.5 142.5q0 108 -85 170.5t-318 130.5q-40 9 -75.5 19.5t-66.5 22.5q-112 -14 -169 -73t-57 -145z" />
<glyph unicode="&#xa8;" horiz-adv-x="959" d="M162 1299v157h174v-157h-174zM632 1299v157h173v-157h-173z" />
<glyph unicode="&#xa9;" horiz-adv-x="1637" d="M107 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM192 729q0 -279 182.5 -471.5t442.5 -192.5q257 0 440.5 192.5t183.5 471.5q0 277 -183 468.5t-441 191.5q-260 0 -442.5 -191.5t-182.5 -468.5z M474 669v119q0 172 91 279.5t242 107.5q147 0 230 -79t79 -228l-2 -6h-91q0 113 -55 168t-161 55q-110 0 -172 -83.5t-62 -212.5v-120q0 -132 61.5 -214.5t172.5 -82.5q107 0 161 54t54 170h91l2 -6q4 -150 -78.5 -229t-229.5 -79q-151 0 -242 106.5t-91 280.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="906" d="M135 920q0 105 79 163t229 58h182v61q0 85 -41 131.5t-120 46.5q-92 0 -142.5 -37.5t-50.5 -108.5l-99 9l-2 6q-5 98 77 163t217 65q123 0 196.5 -71.5t73.5 -204.5v-314q0 -48 6 -92.5t20 -88.5h-111q-9 25 -14.5 52.5t-7.5 55.5q-37 -53 -98.5 -87.5t-144.5 -34.5 q-119 0 -184 61t-65 167zM243 924q0 -66 39.5 -101.5t121.5 -35.5q70 0 135.5 38t85.5 85v147h-181q-96 0 -148.5 -38.5t-52.5 -94.5z" />
<glyph unicode="&#xab;" horiz-adv-x="933" d="M123 541v19l295 379h105l-276 -389l276 -388h-105zM432 541v19l295 379h105l-276 -389l276 -388h-105z" />
<glyph unicode="&#xac;" horiz-adv-x="1117" d="M124 670v106h812v-390h-120v284h-692z" />
<glyph unicode="&#xad;" horiz-adv-x="586" d="M49 570v101h479v-101h-479z" />
<glyph unicode="&#xae;" horiz-adv-x="1642" d="M102 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -207.5 -533t-502.5 -217q-296 0 -503 217t-207 533zM187 729q0 -279 183 -471.5t442 -192.5q258 0 441 192.5t183 471.5q0 277 -183 468.5t-441 191.5q-259 0 -442 -191.5t-183 -468.5zM552 316v850 h258q147 0 226 -63t79 -185q0 -68 -36.5 -117.5t-104.5 -79.5q68 -25 98 -78t30 -128v-56q0 -40 4 -73t13 -54v-16h-102q-10 21 -12 61.5t-2 82.5v54q0 84 -38 121t-127 37h-188v-356h-98zM650 763h181q79 0 132.5 40.5t53.5 112.5q0 85 -46 122t-161 37h-160v-312z" />
<glyph unicode="&#xaf;" horiz-adv-x="874" d="M106 1359v97h670v-97h-670z" />
<glyph unicode="&#xb0;" horiz-adv-x="774" d="M143 1227q0 102 72 176t173 74q99 0 170.5 -74t71.5 -176q0 -104 -71 -175.5t-171 -71.5q-101 0 -173 72t-72 175zM233 1227q0 -68 44.5 -112t110.5 -44q65 0 108.5 44t43.5 112t-43.5 113.5t-108.5 45.5q-66 0 -110.5 -46t-44.5 -113z" />
<glyph unicode="&#xb1;" horiz-adv-x="1086" d="M85 728v101h414v438h110v-438h392v-101h-392v-439h-110v439h-414zM193 48v102h835v-102h-835z" />
<glyph unicode="&#xb2;" horiz-adv-x="835" d="M118 667v90l315 282q77 71 104 115.5t27 91.5q0 64 -39 103t-118 39q-87 0 -134 -42t-47 -108h-100l-2 6q-6 97 72.5 166t210.5 69q124 0 195 -60.5t71 -173.5q0 -75 -47 -136t-150 -158l-214 -188l2 -6h423v-90h-569z" />
<glyph unicode="&#xb3;" horiz-adv-x="852" d="M120 882l2 6h101q0 -63 51 -103t135 -40q90 0 140.5 38t50.5 103q0 75 -46.5 109.5t-139.5 34.5h-122v89h122q88 0 130.5 35t42.5 99q0 59 -45 96.5t-133 37.5q-75 0 -124.5 -35.5t-49.5 -93.5h-99l-2 6q-6 94 74.5 154t200.5 60q132 0 209 -58.5t77 -166.5 q0 -58 -35.5 -105t-98.5 -72q72 -22 110 -70.5t38 -119.5q0 -109 -83.5 -170t-216.5 -61q-121 0 -207.5 58.5t-81.5 168.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="576" d="M116 1212l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xb5;" d="M162 -416v1498h119v-633q0 -207 71 -288t192 -81q137 0 212 59.5t103 170.5v772h120v-1082h-103l-11 155q-48 -85 -126 -130.5t-187 -45.5q-88 0 -157 30t-114 96v-521h-119z" />
<glyph unicode="&#xb6;" horiz-adv-x="973" d="M82 988q0 207 129.5 337.5t362.5 130.5h226v-1456h-120v520h-106q-233 0 -362.5 129.5t-129.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="503" d="M166 624v180h155v-180h-155z" />
<glyph unicode="&#xb8;" horiz-adv-x="498" d="M98 -357q90 0 151.5 30.5t61.5 89.5q0 57 -41.5 79.5t-145.5 30.5l29 127h93l-12 -64q79 -9 127.5 -48.5t48.5 -122.5q0 -91 -79 -145.5t-226 -54.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="511" d="M87 1361v93l257 23v-812h-109v703z" />
<glyph unicode="&#xba;" horiz-adv-x="922" d="M135 1026v116q0 148 87.5 241.5t235.5 93.5t236 -93.5t88 -241.5v-116q0 -149 -87.5 -241.5t-234.5 -92.5q-149 0 -237 92.5t-88 241.5zM243 1026q0 -107 54.5 -173t162.5 -66q103 0 158.5 66.5t55.5 172.5v116q0 104 -56 171t-160 67t-159.5 -67t-55.5 -171v-116z" />
<glyph unicode="&#xbb;" horiz-adv-x="928" d="M130 162l276 388l-276 389h105l295 -379v-19l-295 -379h-105zM445 162l276 388l-276 389h105l295 -379v-19l-295 -379h-105z" />
<glyph unicode="&#xbc;" horiz-adv-x="1561" d="M160 1360v93l257 23v-812h-109v703zM326 177l711 1138l74 -48l-711 -1138zM771 237l429 564h113v-541h153v-90h-153v-170h-108v170h-430zM900 260h305v402l-6 1l-25 -43z" />
<glyph unicode="&#xbd;" horiz-adv-x="1567" d="M160 1360v93l257 23v-812h-109v703zM338 177l711 1138l74 -48l-711 -1138zM912 0v90l315 282q77 71 104 115.5t27 91.5q0 64 -39 103t-118 39q-87 0 -134 -42t-47 -108h-100l-2 6q-6 97 72.5 166t210.5 69q124 0 195 -60.5t71 -173.5q0 -75 -47 -136t-150 -158l-214 -188 l2 -6h423v-90h-569z" />
<glyph unicode="&#xbe;" horiz-adv-x="1712" d="M145 883l2 6h101q0 -63 51 -103t135 -40q90 0 140.5 38t50.5 103q0 75 -46.5 109.5t-139.5 34.5h-122v89h122q88 0 130.5 35t42.5 99q0 59 -45 96.5t-133 37.5q-75 0 -124.5 -35.5t-49.5 -93.5h-99l-2 6q-6 94 74.5 154t200.5 60q132 0 209 -58.5t77 -166.5 q0 -58 -35.5 -105t-98.5 -72q72 -22 110 -70.5t38 -119.5q0 -109 -83.5 -170t-216.5 -61q-121 0 -207.5 58.5t-81.5 168.5zM533 177l711 1138l74 -48l-711 -1138zM980 237l429 564h113v-541h153v-90h-153v-170h-108v170h-430zM1109 260h305v402l-6 1l-25 -43z" />
<glyph unicode="&#xbf;" horiz-adv-x="958" d="M108 -20q0 133 66 237.5t189 219.5q61 52 75 98.5t14 142.5h120q-2 -131 -23.5 -183t-113.5 -136q-109 -113 -158 -188.5t-49 -189.5q0 -128 67.5 -198t194.5 -70q117 0 189 68.5t74 185.5h112l2 -6q2 -165 -105 -260t-272 -95q-180 0 -281 101t-101 273zM436 928v155 h139v-155h-139z" />
<glyph unicode="&#xc0;" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM346 513h588l-290 788h-6zM370 1822l2 5h154l202 -266h-117z" />
<glyph unicode="&#xc1;" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM346 513h588l-290 788h-6zM583 1557l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xc2;" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM346 513h588l-290 788h-6zM382 1601v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xc3;" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM313 1622q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89zM346 513h588l-290 788h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM341 1641v157h174v-157h-174zM346 513h588l-290 788h-6zM811 1641v157h173v-157h-173z" />
<glyph unicode="&#xc5;" horiz-adv-x="1279" d="M32 0l553 1456h113l549 -1456h-124l-150 406h-667l-150 -406h-124zM346 513h588l-290 788h-6zM487 1730q0 69 49.5 117.5t119.5 48.5q68 0 117 -48.5t49 -117.5q0 -71 -48.5 -117t-117.5 -46q-71 0 -120 46t-49 117zM565 1730q0 -39 26.5 -65t64.5 -26q37 0 62.5 25.5 t25.5 65.5t-25.5 66.5t-62.5 26.5q-38 0 -64.5 -27t-26.5 -66z" />
<glyph unicode="&#xc6;" horiz-adv-x="1865" d="M17 0l881 1456h864v-102h-694l23 -545h589v-102h-585l26 -606h702v-101h-817l-17 389h-597l-229 -389h-146zM459 502h526l-35 839l-6 1l-15 -44z" />
<glyph unicode="&#xc7;" horiz-adv-x="1313" d="M132 609v237q0 278 149 454.5t392 176.5q232 0 368 -123t155 -346l-2 -6h-112q-24 181 -124.5 277t-284.5 96q-191 0 -306.5 -148t-115.5 -379v-239q0 -234 115.5 -381.5t306.5 -147.5q184 0 285 94t124 281h112l2 -6q-19 -219 -156 -344.5t-367 -125.5 q-243 0 -392 175.5t-149 454.5zM580 -365q90 0 151.5 30.5t61.5 89.5q0 57 -41.5 79.5t-145.5 30.5l29 127h93l-12 -64q79 -9 127.5 -48.5t48.5 -122.5q0 -91 -79 -145.5t-226 -54.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1180" d="M191 0v1456h917v-102h-798v-547h701v-102h-701v-604h803v-101h-922zM335 1822l2 5h154l202 -266h-117z" />
<glyph unicode="&#xc9;" horiz-adv-x="1180" d="M191 0v1456h917v-102h-798v-547h701v-102h-701v-604h803v-101h-922zM548 1557l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xca;" horiz-adv-x="1180" d="M191 0v1456h917v-102h-798v-547h701v-102h-701v-604h803v-101h-922zM347 1601v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xcb;" horiz-adv-x="1180" d="M191 0v1456h917v-102h-798v-547h701v-102h-701v-604h803v-101h-922zM306 1641v157h174v-157h-174zM776 1641v157h173v-157h-173z" />
<glyph unicode="&#xcc;" horiz-adv-x="554" d="M-9 1822l2 5h154l202 -266h-117zM217 0v1456h120v-1456h-120z" />
<glyph unicode="&#xcd;" horiz-adv-x="554" d="M202 1557l207 266h147l3 -6l-249 -260h-108zM217 0v1456h120v-1456h-120z" />
<glyph unicode="&#xce;" horiz-adv-x="554" d="M3 1601v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110zM217 0v1456h120v-1456h-120z" />
<glyph unicode="&#xcf;" horiz-adv-x="554" d="M-38 1641v157h174v-157h-174zM217 0v1456h120v-1456h-120zM432 1641v157h173v-157h-173z" />
<glyph unicode="&#xd0;" horiz-adv-x="1374" d="M68 689v102h153v665h423q267 0 441 -178t174 -457v-187q0 -280 -174 -457t-441 -177h-423v689h-153zM340 101h304q216 0 355.5 151t139.5 382v190q0 228 -140 379t-355 151h-304v-563h340v-102h-340v-588z" />
<glyph unicode="&#xd1;" horiz-adv-x="1454" d="M191 0v1456h120l827 -1250l6 1v1249h119v-1456h-119l-827 1252l-6 -1v-1251h-120zM382 1622q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89z" />
<glyph unicode="&#xd2;" horiz-adv-x="1378" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -282 -154.5 -456t-414.5 -174q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380 v-239zM398 1843l2 5h154l202 -266h-117z" />
<glyph unicode="&#xd3;" horiz-adv-x="1378" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -282 -154.5 -456t-414.5 -174q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380 v-239zM611 1578l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xd4;" horiz-adv-x="1378" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -282 -154.5 -456t-414.5 -174q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380 v-239zM410 1622v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xd5;" horiz-adv-x="1378" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -282 -154.5 -456t-414.5 -174q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380 v-239zM341 1643q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89z" />
<glyph unicode="&#xd6;" horiz-adv-x="1378" d="M124 609v237q0 281 152 456t408 175q260 0 415 -175t155 -456v-237q0 -282 -154.5 -456t-414.5 -174q-256 0 -408.5 174t-152.5 456zM244 609q0 -238 116.5 -382t324.5 -144q213 0 331.5 143.5t118.5 382.5v239q0 236 -119.5 380t-331.5 144q-208 0 -324 -144t-116 -380 v-239zM369 1662v157h174v-157h-174zM839 1662v157h173v-157h-173z" />
<glyph unicode="&#xd7;" horiz-adv-x="1072" d="M93 318l358 365l-343 350l79 80l342 -350l343 350l79 -80l-343 -350l358 -365l-79 -79l-358 364l-357 -364z" />
<glyph unicode="&#xd8;" horiz-adv-x="1379" d="M124 609v237q0 281 152 456t408 175q109 0 201.5 -33t165.5 -95l96 156h104l-136 -222q67 -84 103 -195.5t36 -241.5v-237q0 -282 -154.5 -456t-414.5 -174q-92 0 -171.5 23.5t-144.5 68.5l-96 -155h-104l131 212q-86 84 -131 207.5t-45 273.5zM244 609 q0 -118 29.5 -214.5t85.5 -160.5l6 -1l627 1021q-58 57 -135.5 87.5t-172.5 30.5q-208 0 -324 -144t-116 -380v-239zM426 164q51 -40 116.5 -60.5t142.5 -20.5q213 0 331.5 143.5t118.5 382.5v239q0 97 -21.5 180.5t-60.5 144.5h-6z" />
<glyph unicode="&#xd9;" horiz-adv-x="1374" d="M167 469v987h120v-987q0 -186 110 -287.5t287 -101.5q180 0 293 101t113 288v987h119v-987q0 -238 -145.5 -364t-379.5 -126q-231 0 -374 126.5t-143 363.5zM409 1822l2 5h154l202 -266h-117z" />
<glyph unicode="&#xda;" horiz-adv-x="1374" d="M167 469v987h120v-987q0 -186 110 -287.5t287 -101.5q180 0 293 101t113 288v987h119v-987q0 -238 -145.5 -364t-379.5 -126q-231 0 -374 126.5t-143 363.5zM622 1557l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xdb;" horiz-adv-x="1374" d="M167 469v987h120v-987q0 -186 110 -287.5t287 -101.5q180 0 293 101t113 288v987h119v-987q0 -238 -145.5 -364t-379.5 -126q-231 0 -374 126.5t-143 363.5zM421 1601v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xdc;" horiz-adv-x="1374" d="M167 469v987h120v-987q0 -186 110 -287.5t287 -101.5q180 0 293 101t113 288v987h119v-987q0 -238 -145.5 -364t-379.5 -126q-231 0 -374 126.5t-143 363.5zM380 1641v157h174v-157h-174zM850 1641v157h173v-157h-173z" />
<glyph unicode="&#xdd;" horiz-adv-x="1244" d="M33 1456h139l448 -809l451 809h139l-531 -924v-532h-119v539zM545 1550l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xde;" horiz-adv-x="1214" d="M183 0v1456h120v-304h324q221 0 345 -115.5t124 -298.5q0 -185 -124 -299.5t-345 -114.5h-324v-324h-120zM303 425h324q173 0 261 92t88 219q0 130 -88 222.5t-261 92.5h-324v-626z" />
<glyph unicode="&#xdf;" horiz-adv-x="1200" d="M151 0v1082q0 204 102.5 317t273.5 113q140 0 232 -79.5t92 -222.5q0 -109 -61.5 -215.5t-61.5 -184.5q0 -86 184 -228t184 -287q0 -153 -110 -234.5t-266 -81.5q-86 0 -176.5 23.5t-129.5 56.5l34 101q41 -31 114.5 -55.5t143.5 -24.5q125 0 197.5 60t72.5 155 q0 99 -184 240.5t-184 276.5q0 93 63 201.5t63 190.5q0 92 -60 149.5t-137 57.5q-121 0 -193.5 -85.5t-72.5 -243.5v-1082h-120z" />
<glyph unicode="&#xe0;" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6q-6 121 110.5 216.5t296.5 95.5q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241q-163 0 -260.5 -69.5t-97.5 -172.5zM255 1501l2 5h154l202 -266h-117z" />
<glyph unicode="&#xe1;" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6q-6 121 110.5 216.5t296.5 95.5q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241q-163 0 -260.5 -69.5t-97.5 -172.5zM468 1236l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xe2;" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6q-6 121 110.5 216.5t296.5 95.5q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241q-163 0 -260.5 -69.5t-97.5 -172.5zM267 1280v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xe3;" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6q-6 121 110.5 216.5t296.5 95.5q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM198 1301q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241 q-163 0 -260.5 -69.5t-97.5 -172.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6q-6 121 110.5 216.5t296.5 95.5q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241q-163 0 -260.5 -69.5t-97.5 -172.5zM226 1320v157h174v-157h-174zM696 1320v157h173v-157h-173z" />
<glyph unicode="&#xe5;" horiz-adv-x="1101" d="M103 288q0 150 129.5 240t349.5 90h239v134q0 116 -74.5 182t-208.5 66q-125 0 -207.5 -63t-82.5 -154l-110 1l-2 6q-6 121 110.5 216.5t296.5 95.5q179 0 288 -91t109 -261v-532q0 -57 6.5 -111t21.5 -107h-125q-12 55 -17 95t-5 81q-60 -85 -160 -141t-225 -56 q-158 0 -245.5 84t-87.5 225zM222 284q0 -88 60.5 -143.5t167.5 -55.5q129 0 228 60.5t143 154.5v226h-241q-163 0 -260.5 -69.5t-97.5 -172.5zM372 1409q0 69 49.5 117.5t119.5 48.5q68 0 117 -48.5t49 -117.5q0 -71 -48.5 -117t-117.5 -46q-71 0 -120 46t-49 117z M450 1409q0 -39 26.5 -65t64.5 -26q37 0 62.5 25.5t25.5 65.5t-25.5 66.5t-62.5 26.5q-38 0 -64.5 -27t-26.5 -66z" />
<glyph unicode="&#xe6;" horiz-adv-x="1732" d="M77 293q0 158 113 248.5t326 90.5h262v88q0 134 -63 207t-187 73q-135 0 -213.5 -67t-78.5 -168l-110 12l-2 6q-5 138 106.5 228.5t297.5 90.5q124 0 212.5 -54t128.5 -157q61 99 156.5 155t209.5 56q200 0 311.5 -124t111.5 -340v-100h-754v-29q0 -191 89.5 -310 t271.5 -119q103 0 181.5 32.5t142.5 86.5l47 -87q-60 -55 -148.5 -94t-222.5 -39q-138 0 -241 55.5t-163 157.5q-49 -87 -159.5 -150t-269.5 -63q-170 0 -262.5 84.5t-92.5 229.5zM197 289q0 -97 65 -153.5t187 -56.5q102 0 197.5 53.5t131.5 115.5v288h-260 q-155 0 -238 -71t-83 -176zM912 641l2 -5h625v31q0 146 -77.5 239.5t-226.5 93.5q-138 0 -224 -101.5t-99 -257.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1061" d="M97 520v42q0 236 121 388t340 152q178 0 296.5 -105t114.5 -276l-2 -6h-107q0 130 -87.5 207.5t-214.5 77.5q-174 0 -257.5 -124.5t-83.5 -313.5v-42q0 -192 83 -316t259 -124q119 0 210 68t91 189h106l2 -6q5 -150 -120 -251t-289 -101q-221 0 -341.5 151.5 t-120.5 389.5zM444 -365q90 0 151.5 30.5t61.5 89.5q0 57 -41.5 79.5t-145.5 30.5l29 127h93l-12 -64q79 -9 127.5 -48.5t48.5 -122.5q0 -91 -79 -145.5t-226 -54.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1055" d="M92 509v55q0 232 133.5 385t323.5 153q199 0 313 -126t114 -336v-102h-764v-29q0 -183 97 -306t255 -123q112 0 191 31t135 89l51 -82q-61 -64 -154.5 -101.5t-222.5 -37.5q-203 0 -337.5 150t-134.5 380zM221 644l2 -5h634v30q0 141 -83 236t-225 95q-133 0 -223 -101.5 t-105 -254.5zM274 1501l2 5h154l202 -266h-117z" />
<glyph unicode="&#xe9;" horiz-adv-x="1055" d="M92 509v55q0 232 133.5 385t323.5 153q199 0 313 -126t114 -336v-102h-764v-29q0 -183 97 -306t255 -123q112 0 191 31t135 89l51 -82q-61 -64 -154.5 -101.5t-222.5 -37.5q-203 0 -337.5 150t-134.5 380zM221 644l2 -5h634v30q0 141 -83 236t-225 95q-133 0 -223 -101.5 t-105 -254.5zM487 1236l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xea;" horiz-adv-x="1055" d="M92 509v55q0 232 133.5 385t323.5 153q199 0 313 -126t114 -336v-102h-764v-29q0 -183 97 -306t255 -123q112 0 191 31t135 89l51 -82q-61 -64 -154.5 -101.5t-222.5 -37.5q-203 0 -337.5 150t-134.5 380zM221 644l2 -5h634v30q0 141 -83 236t-225 95q-133 0 -223 -101.5 t-105 -254.5zM286 1280v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xeb;" horiz-adv-x="1055" d="M92 509v55q0 232 133.5 385t323.5 153q199 0 313 -126t114 -336v-102h-764v-29q0 -183 97 -306t255 -123q112 0 191 31t135 89l51 -82q-61 -64 -154.5 -101.5t-222.5 -37.5q-203 0 -337.5 150t-134.5 380zM221 644l2 -5h634v30q0 141 -83 236t-225 95q-133 0 -223 -101.5 t-105 -254.5zM245 1320v157h174v-157h-174zM715 1320v157h173v-157h-173z" />
<glyph unicode="&#xec;" horiz-adv-x="456" d="M-58 1479l2 5h154l202 -266h-117zM168 0v1082h120v-1082h-120z" />
<glyph unicode="&#xed;" horiz-adv-x="456" d="M153 1214l207 266h147l3 -6l-249 -260h-108zM168 0v1082h120v-1082h-120z" />
<glyph unicode="&#xee;" horiz-adv-x="456" d="M-46 1258v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110zM168 0v1082h120v-1082h-120z" />
<glyph unicode="&#xef;" horiz-adv-x="456" d="M-87 1299v157h174v-157h-174zM168 0v1082h120v-1082h-120zM383 1299v157h173v-157h-173z" />
<glyph unicode="&#xf0;" horiz-adv-x="1191" d="M99 455q0 235 130 372.5t348 137.5q104 0 193 -40t143 -107l4 5q-18 131 -68 234t-126 182l-308 -176l-50 74l287 164q-45 33 -94.5 61t-103.5 51l39 104q77 -30 144 -68t124 -85l257 147l51 -74l-241 -138q111 -120 169 -288.5t58 -387.5v-88q0 -245 -137 -400.5 t-344 -155.5q-208 0 -341.5 137t-133.5 339zM219 455q0 -149 97 -261t262 -112q158 0 257.5 127.5t99.5 325.5v90q0 9 -0.5 27.5t-0.5 28.5q-38 76 -128 128t-229 52q-173 0 -265.5 -115t-92.5 -291z" />
<glyph unicode="&#xf1;" d="M158 0v1082h106l11 -189q52 100 140.5 154.5t209.5 54.5q176 0 268 -107.5t92 -335.5v-659h-120v658q0 186 -69.5 263t-197.5 77q-126 0 -205.5 -66.5t-114.5 -176.5v-755h-120zM233 1300q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20 q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89z" />
<glyph unicode="&#xf2;" d="M91 524v33q0 239 131 392t347 153q217 0 348 -153t131 -392v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-218 0 -349 152.5t-131 392.5zM211 524q0 -188 95 -316t265 -128q167 0 262.5 128t95.5 316v33q0 185 -96 314t-264 129t-263 -129t-95 -314v-33zM294 1500l2 5h154 l202 -266h-117z" />
<glyph unicode="&#xf3;" d="M91 524v33q0 239 131 392t347 153q217 0 348 -153t131 -392v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-218 0 -349 152.5t-131 392.5zM211 524q0 -188 95 -316t265 -128q167 0 262.5 128t95.5 316v33q0 185 -96 314t-264 129t-263 -129t-95 -314v-33zM507 1235l207 266 h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xf4;" d="M91 524v33q0 239 131 392t347 153q217 0 348 -153t131 -392v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-218 0 -349 152.5t-131 392.5zM211 524q0 -188 95 -316t265 -128q167 0 262.5 128t95.5 316v33q0 185 -96 314t-264 129t-263 -129t-95 -314v-33zM306 1279v21 l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xf5;" d="M91 524v33q0 239 131 392t347 153q217 0 348 -153t131 -392v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-218 0 -349 152.5t-131 392.5zM211 524q0 -188 95 -316t265 -128q167 0 262.5 128t95.5 316v33q0 185 -96 314t-264 129t-263 -129t-95 -314v-33zM237 1300 q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89z" />
<glyph unicode="&#xf6;" d="M91 524v33q0 239 131 392t347 153q217 0 348 -153t131 -392v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-218 0 -349 152.5t-131 392.5zM211 524q0 -188 95 -316t265 -128q167 0 262.5 128t95.5 316v33q0 185 -96 314t-264 129t-263 -129t-95 -314v-33zM265 1319v157h174 v-157h-174zM735 1319v157h173v-157h-173z" />
<glyph unicode="&#xf7;" horiz-adv-x="1164" d="M72 644v116h998v-116h-998zM506 212v160h142v-160h-142zM506 1010v160h142v-160h-142z" />
<glyph unicode="&#xf8;" horiz-adv-x="1141" d="M91 524v33q0 239 131 392t347 153q60 0 114 -12.5t102 -36.5l79 161h93l-101 -207q91 -72 141.5 -189t50.5 -261v-33q0 -240 -130.5 -392.5t-346.5 -152.5q-55 0 -104.5 10.5t-94.5 30.5l-78 -160h-93l99 202q-100 70 -154.5 190.5t-54.5 271.5zM211 524q0 -112 35 -206 t100 -149h6l385 787q-36 21 -78.5 32.5t-89.5 11.5q-168 0 -263 -129t-95 -314v-33zM418 114q33 -17 71.5 -25.5t81.5 -8.5q167 0 262.5 128t95.5 316v33q0 102 -32 192t-89 147h-6z" />
<glyph unicode="&#xf9;" d="M154 455v627h120v-629q0 -198 67.5 -284t191.5 -86q136 0 217 61t113 168v770h120v-1082h-106l-10 177q-52 -95 -140 -146.5t-208 -51.5q-171 0 -268 116t-97 360zM292 1479l2 5h154l202 -266h-117z" />
<glyph unicode="&#xfa;" d="M154 455v627h120v-629q0 -198 67.5 -284t191.5 -86q136 0 217 61t113 168v770h120v-1082h-106l-10 177q-52 -95 -140 -146.5t-208 -51.5q-171 0 -268 116t-97 360zM505 1214l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xfb;" d="M154 455v627h120v-629q0 -198 67.5 -284t191.5 -86q136 0 217 61t113 168v770h120v-1082h-106l-10 177q-52 -95 -140 -146.5t-208 -51.5q-171 0 -268 116t-97 360zM304 1258v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#xfc;" d="M154 455v627h120v-629q0 -198 67.5 -284t191.5 -86q136 0 217 61t113 168v770h120v-1082h-106l-10 177q-52 -95 -140 -146.5t-208 -51.5q-171 0 -268 116t-97 360zM263 1299v157h174v-157h-174zM733 1299v157h173v-157h-173z" />
<glyph unicode="&#xfd;" horiz-adv-x="1002" d="M35 1082h133l297 -789l38 -129h6l327 918h134l-470 -1255q-42 -110 -109 -187t-196 -77q-21 0 -51 4.5t-44 9.5l14 100q12 -2 38.5 -4.5t38.5 -2.5q78 0 125 55.5t80 142.5l57 146zM439 1214l207 266h147l3 -6l-249 -260h-108z" />
<glyph unicode="&#xfe;" horiz-adv-x="1151" d="M161 -416v1976h120v-640q54 87 138.5 134.5t198.5 47.5q195 0 305 -155.5t110 -414.5v-21q0 -243 -110 -387.5t-303 -144.5q-114 0 -199.5 43t-139.5 123v-561h-120zM281 271q41 -89 118.5 -140t193.5 -51q157 0 238.5 118t81.5 313v21q0 206 -82 336t-240 130 q-121 0 -196.5 -57.5t-113.5 -149.5v-520z" />
<glyph unicode="&#xff;" horiz-adv-x="1002" d="M35 1082h133l297 -789l38 -129h6l327 918h134l-470 -1255q-42 -110 -109 -187t-196 -77q-21 0 -51 4.5t-44 9.5l14 100q12 -2 38.5 -4.5t38.5 -2.5q78 0 125 55.5t80 142.5l57 146zM197 1299v157h174v-157h-174zM667 1299v157h173v-157h-173z" />
<glyph unicode="&#x152;" horiz-adv-x="1913" d="M108 576v304q0 264 148.5 430.5t387.5 166.5q75 0 152 -6t161 -15h862v-102h-798v-547h701v-102h-701v-604h803v-101h-867q-97 -10 -167.5 -15.5t-143.5 -5.5q-239 0 -388.5 166t-149.5 431zM228 576q0 -228 113.5 -361.5t304.5 -133.5q66 0 131.5 3.5t124.5 11.5v1264 q-60 7 -125 11t-133 4q-192 0 -304 -132t-112 -361v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1892" d="M94 524v33q0 239 131 392t347 153q146 0 255.5 -72.5t168.5 -199.5q59 125 166 198.5t234 73.5q199 0 313 -126t114 -336v-102h-764v-29q0 -183 97 -306t255 -123q112 0 190.5 31t134.5 89l52 -82q-61 -64 -154.5 -101.5t-222.5 -37.5q-139 0 -248.5 71.5t-168.5 197.5 q-58 -126 -167 -197.5t-253 -71.5q-218 0 -349 152.5t-131 392.5zM214 524q0 -188 95 -316t265 -128q167 0 262 128t95 316v33q0 185 -95.5 314t-263.5 129t-263 -129t-95 -314v-33zM1068 644l2 -5h633v30q0 141 -82.5 236t-224.5 95q-133 0 -223 -101.5t-105 -254.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1244" d="M33 1456h139l448 -809l451 809h139l-531 -924v-532h-119v539zM303 1634v157h174v-157h-174zM773 1634v157h173v-157h-173z" />
<glyph unicode="&#x2c6;" horiz-adv-x="880" d="M160 1252v21l227 221h98l230 -224v-18h-112l-167 168l-166 -168h-110z" />
<glyph unicode="&#x2dc;" horiz-adv-x="892" d="M102 1281q0 86 54 144.5t137 58.5q65 0 147 -55t135 -55q46 0 79 36t33 91l80 -20q0 -88 -55 -146t-137 -58q-74 0 -151 55t-131 55q-47 0 -79 -35t-32 -89z" />
<glyph unicode="&#x2000;" horiz-adv-x="948" />
<glyph unicode="&#x2001;" horiz-adv-x="1896" />
<glyph unicode="&#x2002;" horiz-adv-x="948" />
<glyph unicode="&#x2003;" horiz-adv-x="1896" />
<glyph unicode="&#x2004;" horiz-adv-x="632" />
<glyph unicode="&#x2005;" horiz-adv-x="474" />
<glyph unicode="&#x2006;" horiz-adv-x="316" />
<glyph unicode="&#x2007;" horiz-adv-x="316" />
<glyph unicode="&#x2008;" horiz-adv-x="237" />
<glyph unicode="&#x2009;" horiz-adv-x="379" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="586" d="M49 570v101h479v-101h-479z" />
<glyph unicode="&#x2011;" horiz-adv-x="586" d="M49 570v101h479v-101h-479z" />
<glyph unicode="&#x2012;" horiz-adv-x="586" d="M49 570v101h479v-101h-479z" />
<glyph unicode="&#x2013;" horiz-adv-x="1414" d="M165 686v102h1086v-102h-1086z" />
<glyph unicode="&#x2014;" horiz-adv-x="1667" d="M136 686v102h1336v-102h-1336z" />
<glyph unicode="&#x2018;" horiz-adv-x="364" d="M91 1074v174l111 312h71l-63 -312v-174h-119z" />
<glyph unicode="&#x2019;" horiz-adv-x="364" d="M91 1074l63 304v182h119v-179l-111 -307h-71z" />
<glyph unicode="&#x201a;" horiz-adv-x="353" d="M91 -211l52 266v204h119v-194l-100 -276h-71z" />
<glyph unicode="&#x201c;" horiz-adv-x="612" d="M91 1074v174l111 312h71l-63 -312v-174h-119zM338 1074v174l111 312h71l-63 -312v-174h-119z" />
<glyph unicode="&#x201d;" horiz-adv-x="617" d="M91 1074l63 304v182h119v-179l-111 -307h-71zM343 1074l63 304v182h119v-179l-111 -307h-71z" />
<glyph unicode="&#x201e;" horiz-adv-x="593" d="M91 -202l51 295v181h120v-175l-100 -301h-71zM330 -202l52 299v177h120v-175l-100 -301h-72z" />
<glyph unicode="&#x2022;" horiz-adv-x="662" d="M146 717v65q0 78 50.5 128.5t134.5 50.5q85 0 135.5 -50.5t50.5 -128.5v-65q0 -79 -50.5 -128t-134.5 -49q-85 0 -135.5 49t-50.5 128z" />
<glyph unicode="&#x2026;" horiz-adv-x="1313" d="M188 0v164h137v-164h-137zM598 0v164h137v-164h-137zM990 0v164h137v-164h-137z" />
<glyph unicode="&#x202f;" horiz-adv-x="379" />
<glyph unicode="&#x2039;" horiz-adv-x="609" d="M108 541v19l295 379h105l-276 -389l276 -388h-105z" />
<glyph unicode="&#x203a;" horiz-adv-x="609" d="M101 162l276 388l-276 389h105l295 -379v-19l-295 -379h-105z" />
<glyph unicode="&#x205f;" horiz-adv-x="474" />
<glyph unicode="&#x20ac;" horiz-adv-x="1073" d="M80 533v102h169v168h-169v102h169v37q0 244 135.5 389.5t355.5 145.5q57 0 112.5 -8t119.5 -23l-9 -106q-54 16 -110.5 25.5t-112.5 9.5q-172 0 -272 -116t-100 -315v-39h547v-102h-547v-168h547v-102h-547v-19q0 -198 101.5 -316t272.5 -118q57 0 113 8.5t108 25.5 l9 -104q-54 -15 -112.5 -23t-117.5 -8q-220 0 -356.5 145t-136.5 390v19h-169z" />
<glyph unicode="&#x2122;" horiz-adv-x="1264" d="M96 1387v69h384v-69h-152v-468h-74v468h-158zM558 919v537h94l171 -423h6l174 423h88v-537h-73v383l-6 1l-160 -384h-51l-165 399l-6 -1v-398h-72z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1138" d="M66 984v98h179v158q0 163 81.5 252t228.5 89q33 0 67 -5t69 -14l-15 -99q-24 6 -49.5 9.5t-59.5 3.5q-98 0 -150 -62t-52 -174v-158h258v-98h-258v-984h-120v984h-179zM846 0v1560h119v-1560h-119z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1773" d="M66 984v98h179v158q0 163 81.5 252t228.5 89q33 0 67 -5t69 -14l-15 -99q-24 6 -49.5 9.5t-59.5 3.5q-98 0 -150 -62t-52 -174v-158h258v-98h-258v-984h-120v984h-179zM721 984v98h180v138q0 172 95 266.5t264 94.5q67 0 136 -15t140 -44l-20 -103q-61 25 -118 39 t-130 14q-122 0 -184.5 -65t-62.5 -187v-138h253v-98h-253v-984h-120v984h-180zM1481 0v1082h120v-1082h-120z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1811" d="M66 984v98h179v158q0 163 81.5 252t228.5 89q33 0 67 -5t69 -14l-15 -99q-24 6 -49.5 9.5t-59.5 3.5q-98 0 -150 -62t-52 -174v-158h258v-98h-258v-984h-120v984h-179zM739 984v98h179v158q0 163 81.5 252t228.5 89q33 0 67 -5t69 -14l-15 -99q-24 6 -49.5 9.5t-59.5 3.5 q-98 0 -150 -62t-52 -174v-158h258v-98h-258v-984h-120v984h-179zM1519 0v1560h119v-1560h-119z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More