
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_76b9fb253a75a06fb4d73eaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_656e67a6cfad556618ac39e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f4b452b11a92970a5d38c34b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_179b26b5ac1b61e03652d3f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.017000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9f9451f807502b6daaa3940a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.124000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0c628602c12c2f105f653392.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0a20d7343f51bab195cb06de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f2a9e3522ee582b49a93a4b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e40ef037ca3cbedd1adb25b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f80c423268874e0f4eaca14a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.124000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ad8a43c6a550ed5746af88e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_956a027ccdbab6e137143111.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2a55ae588b25ab93a214dac3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_42d22a5242958f816311d961.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_60c7d2cca71583801600f9b0.woff2')format("woff");}.fff{font-family:fff;line-height:1.124000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6ad0afe8bb952e412265f2e7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_008501ec43a39b64bb7ef8af.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_dae1165187479d18cc2cea98.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6e94a8970867fb99e93ccd26.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a245d4c2ab70339df111e414.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_17ee53633e6151740be854cf.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.124000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_48accc9aa5c5e15a14a9e6e5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8fdc701ef26cea06efc2c65c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_296c72e5a9181c1b0e2b0be3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.921450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0d742b48c42b9a3f2d712bfe.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_1f57e7cb04d25d8d62b649b3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.124000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_0c3ab641e37fd8816b4f6e56.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.800018px;}
.v4{vertical-align:-15.600037px;}
.v6{vertical-align:-8.504640px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.208000px;}
.v1{vertical-align:21.779663px;}
.v2{vertical-align:25.740051px;}
.v8{vertical-align:36.666000px;}
.v9{vertical-align:39.024000px;}
.v5{vertical-align:51.000000px;}
.ls94{letter-spacing:-5.011776px;}
.ls7c{letter-spacing:-3.398976px;}
.ls3b{letter-spacing:-2.646000px;}
.ls82{letter-spacing:-2.534976px;}
.ls68{letter-spacing:-2.442960px;}
.ls48{letter-spacing:-2.400000px;}
.ls85{letter-spacing:-2.246400px;}
.ls13{letter-spacing:-2.184000px;}
.ls1f{letter-spacing:-1.949220px;}
.ls6e{letter-spacing:-1.716000px;}
.ls6a{letter-spacing:-1.670400px;}
.ls20{letter-spacing:-1.560000px;}
.ls2c{letter-spacing:-1.404780px;}
.ls6f{letter-spacing:-1.266720px;}
.ls61{letter-spacing:-1.260000px;}
.ls31{letter-spacing:-1.248780px;}
.ls26{letter-spacing:-1.170000px;}
.ls71{letter-spacing:-1.079148px;}
.lsb{letter-spacing:-0.945000px;}
.ls74{letter-spacing:-0.899640px;}
.ls8c{letter-spacing:-0.882000px;}
.ls15{letter-spacing:-0.858000px;}
.ls1a{letter-spacing:-0.840600px;}
.ls70{letter-spacing:-0.835200px;}
.ls7{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.779220px;}
.ls60{letter-spacing:-0.755370px;}
.ls46{letter-spacing:-0.720000px;}
.ls90{letter-spacing:-0.705012px;}
.ls36{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.693000px;}
.ls6d{letter-spacing:-0.678600px;}
.ls8{letter-spacing:-0.660000px;}
.ls7f{letter-spacing:-0.646800px;}
.ls56{letter-spacing:-0.621180px;}
.ls17{letter-spacing:-0.599400px;}
.ls80{letter-spacing:-0.587412px;}
.ls8b{letter-spacing:-0.575424px;}
.ls12{letter-spacing:-0.546000px;}
.ls7e{letter-spacing:-0.518400px;}
.ls42{letter-spacing:-0.479520px;}
.ls23{letter-spacing:-0.468000px;}
.ls18{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.390000px;}
.ls63{letter-spacing:-0.382800px;}
.ls73{letter-spacing:-0.359640px;}
.ls9{letter-spacing:-0.330000px;}
.ls5f{letter-spacing:-0.315000px;}
.ls25{letter-spacing:-0.312000px;}
.ls81{letter-spacing:-0.294000px;}
.ls35{letter-spacing:-0.240000px;}
.ls76{letter-spacing:-0.235200px;}
.ls14{letter-spacing:-0.234780px;}
.ls66{letter-spacing:-0.180600px;}
.ls2f{letter-spacing:-0.156000px;}
.ls59{letter-spacing:-0.126000px;}
.ls92{letter-spacing:-0.117600px;}
.ls91{letter-spacing:-0.115200px;}
.ls72{letter-spacing:-0.084000px;}
.lse{letter-spacing:-0.078780px;}
.ls5d{letter-spacing:-0.063630px;}
.ls19{letter-spacing:-0.060600px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.029388px;}
.ls93{letter-spacing:0.058176px;}
.ls2a{letter-spacing:0.078780px;}
.ls75{letter-spacing:0.115200px;}
.ls8e{letter-spacing:0.117600px;}
.ls4b{letter-spacing:0.126420px;}
.ls45{letter-spacing:0.144480px;}
.ls16{letter-spacing:0.156000px;}
.ls64{letter-spacing:0.168000px;}
.ls2e{letter-spacing:0.173416px;}
.ls37{letter-spacing:0.207690px;}
.ls77{letter-spacing:0.230400px;}
.ls21{letter-spacing:0.234780px;}
.ls78{letter-spacing:0.235200px;}
.lsd{letter-spacing:0.252000px;}
.ls83{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.298574px;}
.ls32{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.312000px;}
.ls1{letter-spacing:0.347367px;}
.ls1d{letter-spacing:0.347458px;}
.ls6{letter-spacing:0.348007px;}
.ls7b{letter-spacing:0.352800px;}
.ls4a{letter-spacing:0.378000px;}
.ls3f{letter-spacing:0.384000px;}
.ls27{letter-spacing:0.390000px;}
.ls7d{letter-spacing:0.411600px;}
.ls49{letter-spacing:0.419580px;}
.ls65{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.428466px;}
.ls40{letter-spacing:0.432000px;}
.ls62{letter-spacing:0.441000px;}
.ls67{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.468000px;}
.ls8a{letter-spacing:0.470400px;}
.ls41{letter-spacing:0.479520px;}
.ls24{letter-spacing:0.504000px;}
.ls47{letter-spacing:0.528000px;}
.ls86{letter-spacing:0.529200px;}
.ls52{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.546000px;}
.ls87{letter-spacing:0.575424px;}
.ls8f{letter-spacing:0.587412px;}
.ls1b{letter-spacing:0.599400px;}
.ls28{letter-spacing:0.624000px;}
.ls5c{letter-spacing:0.629370px;}
.ls89{letter-spacing:0.646800px;}
.ls34{letter-spacing:0.660000px;}
.ls44{letter-spacing:0.672480px;}
.ls84{letter-spacing:0.690624px;}
.ls1e{letter-spacing:0.702000px;}
.ls3e{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.731973px;}
.ls53{letter-spacing:0.755370px;}
.ls43{letter-spacing:0.768480px;}
.ls2b{letter-spacing:0.779220px;}
.ls38{letter-spacing:0.780000px;}
.ls39{letter-spacing:0.786660px;}
.ls3d{letter-spacing:0.816000px;}
.ls5a{letter-spacing:0.819000px;}
.ls96{letter-spacing:0.823788px;}
.ls51{letter-spacing:0.858000px;}
.ls3c{letter-spacing:0.864480px;}
.ls6c{letter-spacing:0.900000px;}
.ls69{letter-spacing:0.935220px;}
.ls33{letter-spacing:0.960600px;}
.ls54{letter-spacing:1.008630px;}
.ls29{letter-spacing:1.014000px;}
.ls6b{letter-spacing:1.020000px;}
.ls8d{letter-spacing:1.058988px;}
.ls55{letter-spacing:1.071000px;}
.ls50{letter-spacing:1.092780px;}
.ls79{letter-spacing:1.117200px;}
.ls95{letter-spacing:1.152000px;}
.ls5b{letter-spacing:1.197000px;}
.ls58{letter-spacing:1.323000px;}
.ls88{letter-spacing:1.324224px;}
.ls4e{letter-spacing:1.326000px;}
.ls57{letter-spacing:1.574370px;}
.ls4f{letter-spacing:1.638000px;}
.ls5e{letter-spacing:1.764000px;}
.ls4d{letter-spacing:1.793220px;}
.ls4c{letter-spacing:1.872000px;}
.ls4{letter-spacing:1.889377px;}
.ls5{letter-spacing:1.889927px;}
.ls7a{letter-spacing:2.528400px;}
.ls0{letter-spacing:2.880000px;}
.ls3a{letter-spacing:111.762000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws102{word-spacing:-19.389690px;}
.wsa6{word-spacing:-17.892000px;}
.ws103{word-spacing:-17.228400px;}
.wsaa{word-spacing:-16.680000px;}
.ws43{word-spacing:-16.146000px;}
.wse6{word-spacing:-15.834000px;}
.ws108{word-spacing:-15.758988px;}
.ws131{word-spacing:-15.523788px;}
.ws10a{word-spacing:-15.287412px;}
.ws107{word-spacing:-15.229200px;}
.ws104{word-spacing:-15.052800px;}
.ws141{word-spacing:-14.935200px;}
.ws20{word-spacing:-14.880000px;}
.ws109{word-spacing:-14.817600px;}
.ws106{word-spacing:-14.406000px;}
.ws6f{word-spacing:-14.208480px;}
.ws105{word-spacing:-14.112588px;}
.ws10b{word-spacing:-13.994988px;}
.ws130{word-spacing:-13.477824px;}
.ws85{word-spacing:-12.816000px;}
.ws8d{word-spacing:-12.720000px;}
.ws8b{word-spacing:-12.672480px;}
.wsa9{word-spacing:-10.668000px;}
.ws76{word-spacing:-10.626420px;}
.ws75{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.179000px;}
.wsa7{word-spacing:-9.536940px;}
.wse5{word-spacing:-9.500400px;}
.ws7c{word-spacing:-9.000000px;}
.wse7{word-spacing:-8.912280px;}
.wsec{word-spacing:-8.640360px;}
.ws7a{word-spacing:-8.280000px;}
.wsd3{word-spacing:-7.736040px;}
.wsa8{word-spacing:-7.447200px;}
.wse8{word-spacing:-6.994800px;}
.wse9{word-spacing:-6.750852px;}
.wsd4{word-spacing:-6.159600px;}
.ws118{word-spacing:-4.204800px;}
.ws7f{word-spacing:-4.133220px;}
.ws119{word-spacing:-3.822000px;}
.ws18{word-spacing:-3.042000px;}
.ws45{word-spacing:-2.963220px;}
.ws56{word-spacing:-2.808000px;}
.ws12{word-spacing:-2.652000px;}
.wsaf{word-spacing:-2.646630px;}
.ws6{word-spacing:-2.583000px;}
.wsb{word-spacing:-2.574000px;}
.ws41{word-spacing:-2.418780px;}
.ws132{word-spacing:-2.361600px;}
.ws24{word-spacing:-2.340000px;}
.ws9{word-spacing:-2.331000px;}
.ws11{word-spacing:-2.262780px;}
.ws5{word-spacing:-2.205000px;}
.ws26{word-spacing:-2.184000px;}
.ws133{word-spacing:-2.175600px;}
.ws30{word-spacing:-2.105220px;}
.ws1b{word-spacing:-2.100000px;}
.wsa5{word-spacing:-2.040000px;}
.ws1c{word-spacing:-1.980000px;}
.ws16{word-spacing:-1.949220px;}
.wsc3{word-spacing:-1.890000px;}
.ws49{word-spacing:-1.872000px;}
.ws1f{word-spacing:-1.860600px;}
.ws44{word-spacing:-1.793220px;}
.ws23{word-spacing:-1.716000px;}
.wsc4{word-spacing:-1.638000px;}
.ws60{word-spacing:-1.560000px;}
.ws5a{word-spacing:-1.499400px;}
.ws13f{word-spacing:-1.497600px;}
.ws21{word-spacing:-1.482000px;}
.ws4f{word-spacing:-1.404780px;}
.wsc1{word-spacing:-1.386000px;}
.ws10c{word-spacing:-1.382400px;}
.wsf0{word-spacing:-1.379400px;}
.ws140{word-spacing:-1.351812px;}
.ws3b{word-spacing:-1.326000px;}
.ws10e{word-spacing:-1.293600px;}
.wsb3{word-spacing:-1.260000px;}
.ws55{word-spacing:-1.248780px;}
.ws10d{word-spacing:-1.234800px;}
.ws1d{word-spacing:-1.200000px;}
.ws2b{word-spacing:-1.170000px;}
.wscf{word-spacing:-1.140000px;}
.wsb8{word-spacing:-1.134630px;}
.ws12c{word-spacing:-1.117200px;}
.wsf{word-spacing:-1.092780px;}
.ws89{word-spacing:-1.056000px;}
.ws137{word-spacing:-1.037376px;}
.ws17{word-spacing:-1.014000px;}
.ws2c{word-spacing:-0.935220px;}
.wsbd{word-spacing:-0.882630px;}
.ws62{word-spacing:-0.858000px;}
.ws86{word-spacing:-0.816000px;}
.ws19{word-spacing:-0.779220px;}
.ws8a{word-spacing:-0.768480px;}
.wsbe{word-spacing:-0.755370px;}
.ws88{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.719400px;}
.ws4b{word-spacing:-0.702000px;}
.ws11c{word-spacing:-0.690624px;}
.ws39{word-spacing:-0.660000px;}
.ws4{word-spacing:-0.629370px;}
.ws87{word-spacing:-0.624000px;}
.ws84{word-spacing:-0.599400px;}
.ws120{word-spacing:-0.575424px;}
.wsc5{word-spacing:-0.567000px;}
.wsa1{word-spacing:-0.546000px;}
.wsae{word-spacing:-0.540000px;}
.ws8c{word-spacing:-0.528000px;}
.ws34{word-spacing:-0.504000px;}
.ws123{word-spacing:-0.470400px;}
.wsd{word-spacing:-0.468000px;}
.wsd2{word-spacing:-0.462000px;}
.ws8f{word-spacing:-0.419580px;}
.ws129{word-spacing:-0.411600px;}
.ws91{word-spacing:-0.378000px;}
.ws5d{word-spacing:-0.360000px;}
.ws13e{word-spacing:-0.352800px;}
.ws36{word-spacing:-0.312000px;}
.ws94{word-spacing:-0.294000px;}
.ws11b{word-spacing:-0.288000px;}
.wsce{word-spacing:-0.252000px;}
.ws115{word-spacing:-0.235200px;}
.ws53{word-spacing:-0.234780px;}
.ws66{word-spacing:-0.207690px;}
.ws128{word-spacing:-0.176988px;}
.ws127{word-spacing:-0.173376px;}
.ws40{word-spacing:-0.156000px;}
.ws93{word-spacing:-0.126420px;}
.ws11e{word-spacing:-0.117600px;}
.ws2a{word-spacing:-0.078780px;}
.ws1{word-spacing:0.000000px;}
.ws134{word-spacing:0.059388px;}
.wse0{word-spacing:0.078780px;}
.wsf1{word-spacing:0.084000px;}
.ws61{word-spacing:0.156000px;}
.ws13a{word-spacing:0.176988px;}
.wsd0{word-spacing:0.180600px;}
.ws14{word-spacing:0.234780px;}
.ws3c{word-spacing:0.312000px;}
.wsb5{word-spacing:0.315000px;}
.ws5c{word-spacing:0.360000px;}
.ws12d{word-spacing:0.411600px;}
.ws6c{word-spacing:0.468000px;}
.ws90{word-spacing:0.599400px;}
.ws32{word-spacing:0.624000px;}
.ws139{word-spacing:0.646800px;}
.ws3{word-spacing:0.660000px;}
.ws138{word-spacing:0.690624px;}
.wsa{word-spacing:0.702000px;}
.wsfc{word-spacing:0.720000px;}
.ws2f{word-spacing:0.779220px;}
.ws2{word-spacing:0.792000px;}
.ws5f{word-spacing:0.840600px;}
.ws28{word-spacing:0.858000px;}
.wsfb{word-spacing:0.899640px;}
.wsf8{word-spacing:0.935220px;}
.wsc9{word-spacing:0.945000px;}
.ws29{word-spacing:1.014000px;}
.wsc7{word-spacing:1.071000px;}
.ws31{word-spacing:1.092780px;}
.wscd{word-spacing:1.140000px;}
.wsa3{word-spacing:1.170000px;}
.ws46{word-spacing:1.248780px;}
.ws113{word-spacing:1.293600px;}
.wsf5{word-spacing:1.296000px;}
.wsc{word-spacing:1.404780px;}
.ws124{word-spacing:1.439424px;}
.ws8{word-spacing:1.448370px;}
.wsfa{word-spacing:1.482000px;}
.ws4d{word-spacing:1.499400px;}
.ws1a{word-spacing:1.560000px;}
.ws65{word-spacing:1.638000px;}
.ws69{word-spacing:1.716000px;}
.ws4c{word-spacing:1.793220px;}
.ws6d{word-spacing:1.872000px;}
.ws11d{word-spacing:1.900800px;}
.ws4a{word-spacing:1.949220px;}
.wsee{word-spacing:2.028000px;}
.ws12a{word-spacing:2.073600px;}
.wsca{word-spacing:2.079000px;}
.ws33{word-spacing:2.105220px;}
.ws116{word-spacing:2.131200px;}
.ws12b{word-spacing:2.175600px;}
.ws54{word-spacing:2.184000px;}
.ws11f{word-spacing:2.233812px;}
.ws15{word-spacing:2.262780px;}
.ws7d{word-spacing:2.340000px;}
.ws8e{word-spacing:2.400000px;}
.wsd9{word-spacing:2.418780px;}
.ws12f{word-spacing:2.470188px;}
.wse{word-spacing:2.496000px;}
.wsc8{word-spacing:2.519370px;}
.ws11a{word-spacing:2.534976px;}
.wsdc{word-spacing:2.574000px;}
.ws13b{word-spacing:2.592000px;}
.ws83{word-spacing:2.646000px;}
.ws27{word-spacing:2.652000px;}
.ws5e{word-spacing:2.700000px;}
.ws12e{word-spacing:2.707200px;}
.ws6e{word-spacing:2.730000px;}
.ws6b{word-spacing:2.808000px;}
.ws13d{word-spacing:2.822400px;}
.wsb0{word-spacing:2.835000px;}
.ws2e{word-spacing:2.886000px;}
.wsc0{word-spacing:2.898630px;}
.ws111{word-spacing:2.940000px;}
.ws25{word-spacing:2.963220px;}
.ws57{word-spacing:3.042000px;}
.ws63{word-spacing:3.119220px;}
.wse4{word-spacing:3.179400px;}
.ws80{word-spacing:3.198000px;}
.ws10f{word-spacing:3.225600px;}
.ws5b{word-spacing:3.240000px;}
.ws101{word-spacing:3.276780px;}
.ws110{word-spacing:3.292800px;}
.wsa2{word-spacing:3.354000px;}
.ws114{word-spacing:3.398976px;}
.ws7{word-spacing:3.464370px;}
.ws13{word-spacing:3.510000px;}
.ws81{word-spacing:3.666000px;}
.ws3f{word-spacing:3.744000px;}
.ws3a{word-spacing:3.822000px;}
.ws52{word-spacing:3.900000px;}
.wscb{word-spacing:3.906000px;}
.ws51{word-spacing:3.977220px;}
.ws50{word-spacing:4.056000px;}
.wse2{word-spacing:4.079400px;}
.ws4e{word-spacing:4.212000px;}
.ws9f{word-spacing:4.289220px;}
.ws67{word-spacing:4.368000px;}
.wse3{word-spacing:4.440600px;}
.wse1{word-spacing:4.446780px;}
.wsc6{word-spacing:4.599000px;}
.ws7e{word-spacing:4.602780px;}
.ws48{word-spacing:4.758000px;}
.ws10{word-spacing:4.914000px;}
.ws9e{word-spacing:4.992000px;}
.ws135{word-spacing:5.011776px;}
.ws2d{word-spacing:5.070000px;}
.ws58{word-spacing:5.147220px;}
.wsc2{word-spacing:5.292000px;}
.ws35{word-spacing:5.382000px;}
.wsdf{word-spacing:5.460780px;}
.ws82{word-spacing:5.616780px;}
.ws59{word-spacing:5.694000px;}
.ws38{word-spacing:5.772780px;}
.ws47{word-spacing:5.850000px;}
.wsd6{word-spacing:5.928000px;}
.ws6a{word-spacing:6.006000px;}
.wscc{word-spacing:6.047370px;}
.ws3d{word-spacing:6.084000px;}
.ws121{word-spacing:6.220800px;}
.wsbb{word-spacing:6.237000px;}
.ws122{word-spacing:6.291012px;}
.wsff{word-spacing:6.552000px;}
.ws125{word-spacing:6.624576px;}
.ws37{word-spacing:6.630780px;}
.ws126{word-spacing:6.644988px;}
.ws68{word-spacing:6.708000px;}
.wsfe{word-spacing:6.786780px;}
.ws22{word-spacing:6.864000px;}
.wsd5{word-spacing:6.942000px;}
.wsf9{word-spacing:7.176000px;}
.ws112{word-spacing:7.232400px;}
.wsef{word-spacing:7.254000px;}
.wsa4{word-spacing:7.331220px;}
.wsda{word-spacing:7.410000px;}
.wsbf{word-spacing:7.434000px;}
.wsb1{word-spacing:7.685370px;}
.ws42{word-spacing:7.878000px;}
.wsf7{word-spacing:7.920000px;}
.wsb9{word-spacing:7.938630px;}
.wsa0{word-spacing:8.268000px;}
.wsdd{word-spacing:8.501220px;}
.wsd1{word-spacing:8.567580px;}
.wsde{word-spacing:8.736000px;}
.wsd7{word-spacing:9.282000px;}
.wsf6{word-spacing:9.396000px;}
.wsdb{word-spacing:9.438000px;}
.ws64{word-spacing:9.671220px;}
.wsd8{word-spacing:9.750000px;}
.wsfd{word-spacing:9.828780px;}
.ws3e{word-spacing:10.140000px;}
.wsb2{word-spacing:10.332000px;}
.ws9d{word-spacing:10.608000px;}
.ws100{word-spacing:10.685220px;}
.wsb4{word-spacing:10.836000px;}
.ws9c{word-spacing:10.998780px;}
.ws136{word-spacing:11.347776px;}
.wsba{word-spacing:12.222000px;}
.ws9a{word-spacing:13.260000px;}
.wsb7{word-spacing:13.545000px;}
.ws117{word-spacing:14.288400px;}
.ws92{word-spacing:14.447580px;}
.ws13c{word-spacing:14.700000px;}
.wsb6{word-spacing:15.686370px;}
.ws9b{word-spacing:16.302000px;}
.wsbc{word-spacing:17.324370px;}
.ws99{word-spacing:17.862000px;}
.ws98{word-spacing:18.876000px;}
.wsad{word-spacing:29.358000px;}
.ws79{word-spacing:30.276000px;}
.ws7b{word-spacing:32.508000px;}
.wsed{word-spacing:49.031996px;}
.ws71{word-spacing:52.705451px;}
.ws96{word-spacing:52.725109px;}
.ws78{word-spacing:78.666000px;}
.ws72{word-spacing:79.813451px;}
.ws77{word-spacing:95.760000px;}
.wsf4{word-spacing:115.956000px;}
.ws74{word-spacing:153.204469px;}
.wsf2{word-spacing:164.378302px;}
.wsea{word-spacing:164.378851px;}
.ws73{word-spacing:203.180651px;}
.ws97{word-spacing:203.181109px;}
.ws70{word-spacing:225.126251px;}
.ws95{word-spacing:225.127189px;}
.wsac{word-spacing:473.593800px;}
.wsab{word-spacing:570.235800px;}
.wseb{word-spacing:1060.200000px;}
.wsf3{word-spacing:1180.080058px;}
._2a{margin-left:-33.940426px;}
._14{margin-left:-28.704000px;}
._2e{margin-left:-27.144000px;}
._2d{margin-left:-24.960000px;}
._29{margin-left:-23.173261px;}
._15{margin-left:-21.684000px;}
._10{margin-left:-20.436000px;}
._1b{margin-left:-19.188000px;}
._12{margin-left:-17.238000px;}
._16{margin-left:-16.224000px;}
._18{margin-left:-14.459400px;}
._1a{margin-left:-12.958244px;}
._1f{margin-left:-11.760000px;}
._9{margin-left:-8.795700px;}
._f{margin-left:-7.677600px;}
._0{margin-left:-5.760000px;}
._d{margin-left:-4.697400px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-1.920000px;}
._6{width:1.003200px;}
._7{width:2.038800px;}
._8{width:3.187500px;}
._5{width:4.612800px;}
._19{width:6.171600px;}
._2f{width:8.410867px;}
._25{width:11.512200px;}
._11{width:13.071063px;}
._35{width:14.302346px;}
._e{width:15.318043px;}
._34{width:17.596773px;}
._17{width:19.141160px;}
._a{width:20.279405px;}
._13{width:22.499360px;}
._33{width:26.688000px;}
._32{width:38.184595px;}
._26{width:92.484000px;}
._22{width:98.126144px;}
._28{width:105.336000px;}
._27{width:114.366000px;}
._1e{width:182.037109px;}
._30{width:185.099463px;}
._2b{width:192.571800px;}
._31{width:198.854417px;}
._3{width:216.777026px;}
._21{width:239.130944px;}
._24{width:346.768760px;}
._23{width:364.500960px;}
._1d{width:376.681560px;}
._2c{width:379.795800px;}
._20{width:422.619344px;}
._1c{width:463.275023px;}
._c{width:566.736123px;}
._b{width:1377.023952px;}
._4{width:1379.895048px;}
.fc2{color:transparent;}
.fc1{color:rgb(65,129,179);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:34.800000px;}
.fsd{font-size:36.000000px;}
.fse{font-size:36.540000px;}
.fs3{font-size:38.280000px;}
.fsc{font-size:42.000000px;}
.fs6{font-size:45.240000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:57.600000px;}
.fsb{font-size:58.500000px;}
.fs10{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:69.000000px;}
.fs5{font-size:78.000000px;}
.fs1{font-size:132.000000px;}
.yf5{bottom:-361.671469px;}
.y10f{bottom:-361.669958px;}
.yf7{bottom:-356.841469px;}
.y111{bottom:-356.839958px;}
.yf8{bottom:-340.744969px;}
.y112{bottom:-340.743458px;}
.yf3{bottom:-337.521469px;}
.y10d{bottom:-337.519958px;}
.yf6{bottom:-329.751469px;}
.y110{bottom:-329.749958px;}
.yf4{bottom:-324.816469px;}
.y10e{bottom:-324.814958px;}
.yf9{bottom:-321.372469px;}
.y113{bottom:-321.370958px;}
.y0{bottom:0.000000px;}
.y1{bottom:20.729550px;}
.y102{bottom:21.359730px;}
.y101{bottom:34.117230px;}
.y100{bottom:46.874730px;}
.yff{bottom:59.632230px;}
.yfe{bottom:72.389730px;}
.yfd{bottom:88.486230px;}
.y12e{bottom:102.047253px;}
.y82{bottom:102.047400px;}
.y1ed{bottom:102.738054px;}
.yc1{bottom:102.738155px;}
.y1cc{bottom:102.738215px;}
.yb2{bottom:102.738304px;}
.y2d{bottom:106.997246px;}
.y59{bottom:106.997395px;}
.y105{bottom:112.236899px;}
.ya3{bottom:117.047400px;}
.y12d{bottom:121.997246px;}
.y81{bottom:121.997395px;}
.y2c{bottom:122.149796px;}
.y194{bottom:122.149944px;}
.yb1{bottom:122.688297px;}
.y104{bottom:122.739899px;}
.yc0{bottom:122.988069px;}
.y1f4{bottom:122.988155px;}
.y1cb{bottom:122.988185px;}
.y1ec{bottom:122.988219px;}
.y183{bottom:132.047400px;}
.yf2{bottom:136.569456px;}
.ya2{bottom:136.997395px;}
.y2b{bottom:137.149796px;}
.y193{bottom:142.099949px;}
.y58{bottom:143.238155px;}
.y1f3{bottom:143.238170px;}
.y1eb{bottom:143.238189px;}
.ybf{bottom:143.238234px;}
.y103{bottom:147.937230px;}
.y182{bottom:151.997395px;}
.y2a{bottom:152.149796px;}
.ya1{bottom:152.149944px;}
.yf1{bottom:162.084456px;}
.y57{bottom:163.488155px;}
.y1ea{bottom:163.488159px;}
.ybe{bottom:163.488204px;}
.y15c{bottom:163.488304px;}
.y29{bottom:167.149796px;}
.ya0{bottom:167.149944px;}
.y28{bottom:182.149796px;}
.y80{bottom:183.738084px;}
.y1e9{bottom:183.738129px;}
.y181{bottom:183.738144px;}
.yb0{bottom:183.738155px;}
.y56{bottom:183.738174px;}
.y1ca{bottom:183.738234px;}
.y15b{bottom:183.738334px;}
.y9f{bottom:187.099949px;}
.yf0{bottom:187.599456px;}
.y27{bottom:202.099800px;}
.y9e{bottom:202.252350px;}
.y7f{bottom:203.988054px;}
.y1e8{bottom:203.988099px;}
.y180{bottom:203.988114px;}
.y55{bottom:203.988144px;}
.y1f2{bottom:203.988159px;}
.y1c9{bottom:203.988204px;}
.y15a{bottom:203.988304px;}
.yef{bottom:213.114456px;}
.y9d{bottom:222.202354px;}
.y1e7{bottom:224.238069px;}
.y17f{bottom:224.238084px;}
.y192{bottom:224.238144px;}
.y1c8{bottom:224.238174px;}
.y7e{bottom:224.238219px;}
.ybd{bottom:229.488899px;}
.y54{bottom:230.956352px;}
.yee{bottom:238.629456px;}
.y17e{bottom:244.488054px;}
.y26{bottom:244.488099px;}
.y191{bottom:244.488144px;}
.y12c{bottom:244.488174px;}
.y7d{bottom:244.488189px;}
.y1e6{bottom:244.488234px;}
.yed{bottom:255.756317px;}
.y25{bottom:264.738069px;}
.y9c{bottom:264.738129px;}
.y12b{bottom:264.738144px;}
.y7c{bottom:264.738159px;}
.y190{bottom:264.738174px;}
.y53{bottom:264.738204px;}
.ybc{bottom:264.738219px;}
.yfb{bottom:276.040507px;}
.y159{bottom:277.225044px;}
.y9b{bottom:284.988099px;}
.y7b{bottom:284.988129px;}
.y12a{bottom:284.988144px;}
.y1c7{bottom:284.988159px;}
.y52{bottom:284.988174px;}
.ybb{bottom:284.988189px;}
.y24{bottom:284.988234px;}
.yfa{bottom:293.050507px;}
.y158{bottom:295.225022px;}
.y9a{bottom:305.238069px;}
.y7a{bottom:305.238099px;}
.y1c6{bottom:305.238129px;}
.y18f{bottom:305.238144px;}
.yba{bottom:305.238159px;}
.y129{bottom:305.238174px;}
.y23{bottom:305.238204px;}
.y51{bottom:305.238234px;}
.y157{bottom:313.225067px;}
.yfc{bottom:321.355225px;}
.y79{bottom:325.488069px;}
.y1c5{bottom:325.488099px;}
.yb9{bottom:325.488129px;}
.y128{bottom:325.488144px;}
.y22{bottom:325.488174px;}
.y50{bottom:325.488204px;}
.y99{bottom:325.488234px;}
.y156{bottom:331.225112px;}
.y1c4{bottom:345.738069px;}
.yb8{bottom:345.738099px;}
.y21{bottom:345.738144px;}
.y4f{bottom:345.738174px;}
.y98{bottom:345.738204px;}
.y78{bottom:345.738234px;}
.y155{bottom:349.225000px;}
.yb7{bottom:365.988069px;}
.y20{bottom:365.988114px;}
.y4e{bottom:365.988144px;}
.y97{bottom:365.988174px;}
.y77{bottom:365.988204px;}
.y1c3{bottom:365.988234px;}
.y154{bottom:367.225045px;}
.y153{bottom:385.225090px;}
.y1f{bottom:386.238084px;}
.y4d{bottom:386.238144px;}
.y76{bottom:386.238174px;}
.y1c2{bottom:386.238204px;}
.yb6{bottom:386.238234px;}
.y152{bottom:403.225135px;}
.y1e{bottom:406.488054px;}
.y18e{bottom:406.488084px;}
.y75{bottom:406.488144px;}
.y1c1{bottom:406.488174px;}
.y96{bottom:406.488204px;}
.y4c{bottom:406.488219px;}
.y151{bottom:421.225022px;}
.y18d{bottom:426.738054px;}
.y74{bottom:426.738144px;}
.y95{bottom:426.738174px;}
.y4b{bottom:426.738189px;}
.y1d{bottom:426.738219px;}
.y150{bottom:439.225067px;}
.y94{bottom:446.988144px;}
.y4a{bottom:446.988159px;}
.yaf{bottom:446.988174px;}
.y1c{bottom:446.988189px;}
.y18c{bottom:446.988219px;}
.y73{bottom:446.988234px;}
.y14f{bottom:457.225112px;}
.y1c0{bottom:467.238069px;}
.y49{bottom:467.238129px;}
.y93{bottom:467.238144px;}
.y1b{bottom:467.238159px;}
.y18b{bottom:467.238189px;}
.y72{bottom:467.238204px;}
.yb5{bottom:467.238234px;}
.y14e{bottom:475.225000px;}
.y48{bottom:487.488099px;}
.y1a{bottom:487.488129px;}
.yae{bottom:487.488144px;}
.y18a{bottom:487.488159px;}
.y71{bottom:487.488174px;}
.yb4{bottom:487.488204px;}
.y1bf{bottom:487.488234px;}
.y14d{bottom:493.225045px;}
.y47{bottom:507.738069px;}
.y19{bottom:507.738099px;}
.y189{bottom:507.738129px;}
.y70{bottom:507.738144px;}
.yad{bottom:507.738159px;}
.yb3{bottom:507.738174px;}
.y17d{bottom:507.738204px;}
.y14c{bottom:511.225090px;}
.y18{bottom:527.988069px;}
.y188{bottom:527.988099px;}
.yac{bottom:527.988129px;}
.y92{bottom:527.988144px;}
.y6f{bottom:527.988159px;}
.y17c{bottom:527.988174px;}
.y46{bottom:527.988234px;}
.y14b{bottom:529.225135px;}
.y14a{bottom:547.225022px;}
.y187{bottom:548.238069px;}
.yab{bottom:548.238099px;}
.y6e{bottom:548.238129px;}
.y127{bottom:548.238144px;}
.y45{bottom:548.238204px;}
.y91{bottom:548.238220px;}
.y17{bottom:548.238234px;}
.y149{bottom:565.225067px;}
.yaa{bottom:568.488069px;}
.y6d{bottom:568.488099px;}
.y17b{bottom:568.488144px;}
.y44{bottom:568.488174px;}
.y90{bottom:568.488190px;}
.y16{bottom:568.488204px;}
.y186{bottom:568.488234px;}
.yeb{bottom:578.374054px;}
.y148{bottom:583.225067px;}
.y6c{bottom:588.738069px;}
.y43{bottom:588.738144px;}
.y8f{bottom:588.738160px;}
.y15{bottom:588.738174px;}
.y185{bottom:588.738204px;}
.ya9{bottom:588.738234px;}
.y147{bottom:601.225067px;}
.y8e{bottom:608.988130px;}
.y14{bottom:608.988144px;}
.y184{bottom:608.988174px;}
.ya8{bottom:608.988204px;}
.y6b{bottom:608.988234px;}
.yea{bottom:612.715805px;}
.y164{bottom:612.741258px;}
.y42{bottom:615.706192px;}
.y146{bottom:619.225067px;}
.y163{bottom:625.498758px;}
.ye9{bottom:627.591750px;}
.y8d{bottom:629.238100px;}
.y13{bottom:629.238144px;}
.y1f1{bottom:629.238159px;}
.ya7{bottom:629.238174px;}
.y6a{bottom:629.238204px;}
.y145{bottom:637.225067px;}
.y162{bottom:638.256258px;}
.ye8{bottom:646.743300px;}
.y126{bottom:649.488069px;}
.ya6{bottom:649.488144px;}
.y12{bottom:649.488174px;}
.y17a{bottom:649.488204px;}
.y41{bottom:649.488234px;}
.y8c{bottom:649.488265px;}
.y161{bottom:654.363258px;}
.y144{bottom:655.225067px;}
.ye7{bottom:659.493300px;}
.y11{bottom:669.738144px;}
.y1f9{bottom:669.738159px;}
.y179{bottom:669.738174px;}
.y40{bottom:669.738204px;}
.y8b{bottom:669.738235px;}
.ye5{bottom:672.243234px;}
.ye6{bottom:672.243300px;}
.ye4{bottom:672.243354px;}
.y143{bottom:673.225022px;}
.y168{bottom:676.088242px;}
.ye3{bottom:687.119274px;}
.y167{bottom:688.844100px;}
.y69{bottom:689.988144px;}
.y3f{bottom:689.988174px;}
.y8a{bottom:689.988205px;}
.y142{bottom:691.225067px;}
.y166{bottom:701.599960px;}
.ye2{bottom:706.276794px;}
.y141{bottom:709.225067px;}
.y3e{bottom:710.238144px;}
.y89{bottom:710.238175px;}
.y165{bottom:714.355820px;}
.yde{bottom:719.026794px;}
.y140{bottom:727.225090px;}
.y1be{bottom:729.258735px;}
.y88{bottom:730.488145px;}
.y1f0{bottom:730.488159px;}
.y3d{bottom:730.488174px;}
.y68{bottom:730.488280px;}
.ydd{bottom:731.776743px;}
.ye1{bottom:731.776794px;}
.ya5{bottom:735.738922px;}
.y1bd{bottom:742.016235px;}
.y10c{bottom:742.818008px;}
.yec{bottom:742.819519px;}
.y10{bottom:744.112073px;}
.ydc{bottom:744.526743px;}
.ye0{bottom:744.526794px;}
.y13f{bottom:745.225135px;}
.y16a{bottom:748.369626px;}
.y87{bottom:750.738115px;}
.y3c{bottom:750.738144px;}
.y1e5{bottom:750.738175px;}
.y1f8{bottom:750.738205px;}
.y67{bottom:750.738250px;}
.ydf{bottom:757.276794px;}
.y19f{bottom:757.843843px;}
.ydb{bottom:759.402783px;}
.y13e{bottom:763.225022px;}
.y11c{bottom:764.179249px;}
.yf{bottom:764.362163px;}
.y1e4{bottom:770.988145px;}
.ya4{bottom:770.988190px;}
.y66{bottom:770.988220px;}
.y86{bottom:770.988280px;}
.y3b{bottom:776.238922px;}
.y11b{bottom:776.936749px;}
.yda{bottom:778.554303px;}
.y1d7{bottom:779.212633px;}
.y1a1{bottom:780.140259px;}
.y13d{bottom:781.225067px;}
.y11a{bottom:789.694249px;}
.y1e3{bottom:791.238115px;}
.y125{bottom:791.238145px;}
.y65{bottom:791.238190px;}
.y85{bottom:791.238250px;}
.yd8{bottom:791.304303px;}
.y1a0{bottom:792.896118px;}
.ye{bottom:798.732285px;}
.y13c{bottom:799.225067px;}
.y1d9{bottom:801.507294px;}
.y119{bottom:802.451749px;}
.yd7{bottom:804.054303px;}
.y16b{bottom:810.907624px;}
.y1a6{bottom:811.412806px;}
.y1aa{bottom:811.421806px;}
.y1b1{bottom:811.439806px;}
.y124{bottom:811.488115px;}
.y64{bottom:811.488160px;}
.y3a{bottom:811.488190px;}
.y1f7{bottom:811.488205px;}
.y84{bottom:811.488220px;}
.y178{bottom:811.488235px;}
.y1e2{bottom:811.488280px;}
.y1d8{bottom:814.263153px;}
.y118{bottom:815.209249px;}
.yd{bottom:816.732330px;}
.yd9{bottom:816.804303px;}
.y13b{bottom:817.225067px;}
.yd6{bottom:818.930343px;}
.y1a5{bottom:821.159806px;}
.y1a9{bottom:821.168806px;}
.y1ad{bottom:821.177806px;}
.y1b0{bottom:821.186806px;}
.y1b4{bottom:821.195806px;}
.y1b7{bottom:821.204806px;}
.y1ba{bottom:821.213806px;}
.y169{bottom:822.541626px;}
.y1a3{bottom:830.897806px;}
.y1a4{bottom:830.906806px;}
.y1a8{bottom:830.915806px;}
.y1ac{bottom:830.924806px;}
.y1af{bottom:830.933806px;}
.y1b3{bottom:830.942806px;}
.y1b6{bottom:830.951806px;}
.y1b9{bottom:830.960806px;}
.y1bc{bottom:830.969806px;}
.y1db{bottom:831.004190px;}
.y1dd{bottom:831.008676px;}
.y1de{bottom:831.017676px;}
.y117{bottom:831.305749px;}
.y63{bottom:831.738130px;}
.y39{bottom:831.738190px;}
.y177{bottom:831.738205px;}
.y1e1{bottom:831.738250px;}
.y123{bottom:831.738280px;}
.yc{bottom:834.732375px;}
.y13a{bottom:835.225067px;}
.yd4{bottom:840.207783px;}
.y1a2{bottom:840.644806px;}
.y1a7{bottom:840.662806px;}
.y1ab{bottom:840.671806px;}
.y1ae{bottom:840.680806px;}
.y1b2{bottom:840.689806px;}
.y1b5{bottom:840.698806px;}
.y1b8{bottom:840.707806px;}
.y1bb{bottom:840.716806px;}
.y1da{bottom:840.751190px;}
.y1dc{bottom:840.755676px;}
.y62{bottom:851.988100px;}
.y176{bottom:851.988175px;}
.y38{bottom:851.988190px;}
.y1ef{bottom:851.988205px;}
.y1e0{bottom:851.988220px;}
.y122{bottom:851.988250px;}
.y19c{bottom:852.704663px;}
.yb{bottom:852.732263px;}
.y1d4{bottom:852.811047px;}
.yd3{bottom:852.957663px;}
.y139{bottom:853.225135px;}
.y11f{bottom:855.056418px;}
.y83{bottom:857.238922px;}
.y11e{bottom:865.559418px;}
.yd2{bottom:865.707783px;}
.y16c{bottom:868.626124px;}
.ya{bottom:870.732308px;}
.y138{bottom:871.225022px;}
.y175{bottom:872.238145px;}
.y37{bottom:872.238190px;}
.y121{bottom:872.238220px;}
.y61{bottom:872.238265px;}
.y19b{bottom:878.219663px;}
.y1d3{bottom:878.326047px;}
.yd5{bottom:878.457663px;}
.y10b{bottom:879.388975px;}
.yd1{bottom:880.583823px;}
.y16d{bottom:884.355124px;}
.y9{bottom:888.732353px;}
.y137{bottom:889.225112px;}
.y11d{bottom:890.758392px;}
.y174{bottom:892.488115px;}
.y36{bottom:892.488190px;}
.y60{bottom:892.488235px;}
.yd0{bottom:899.747223px;}
.y16f{bottom:900.703624px;}
.y19a{bottom:903.734663px;}
.y1d2{bottom:903.841047px;}
.y10a{bottom:904.903975px;}
.y8{bottom:906.732398px;}
.y16e{bottom:907.129624px;}
.y136{bottom:907.225000px;}
.ycf{bottom:912.497223px;}
.y35{bottom:912.738190px;}
.y5f{bottom:912.738205px;}
.y173{bottom:912.738280px;}
.y1ee{bottom:917.988922px;}
.y7{bottom:924.732285px;}
.y135{bottom:925.225045px;}
.ycb{bottom:925.247223px;}
.yca{bottom:925.247248px;}
.y199{bottom:929.249663px;}
.y1d1{bottom:929.356047px;}
.y109{bottom:930.418975px;}
.y5e{bottom:932.988175px;}
.y1f6{bottom:932.988190px;}
.y172{bottom:932.988250px;}
.y34{bottom:932.988280px;}
.yce{bottom:937.997223px;}
.yc9{bottom:937.997248px;}
.y1df{bottom:938.238922px;}
.y15d{bottom:938.729370px;}
.y6{bottom:942.732330px;}
.y134{bottom:943.225090px;}
.ycd{bottom:950.747223px;}
.yc8{bottom:950.747248px;}
.y5d{bottom:953.238145px;}
.y1f5{bottom:953.238190px;}
.y171{bottom:953.238220px;}
.y33{bottom:953.238250px;}
.y198{bottom:954.764663px;}
.y1d0{bottom:954.871047px;}
.y108{bottom:955.933975px;}
.y15f{bottom:959.013560px;}
.y133{bottom:961.225135px;}
.ycc{bottom:963.497223px;}
.yc7{bottom:963.497248px;}
.y5c{bottom:973.488115px;}
.y5{bottom:973.488190px;}
.y32{bottom:973.488220px;}
.y15e{bottom:976.023560px;}
.y132{bottom:979.225022px;}
.yc4{bottom:980.185089px;}
.y197{bottom:980.279663px;}
.y1cf{bottom:980.386047px;}
.y107{bottom:981.448975px;}
.yc6{bottom:993.266968px;}
.y4{bottom:993.738190px;}
.y170{bottom:993.738220px;}
.y5b{bottom:993.738280px;}
.y131{bottom:997.225067px;}
.y195{bottom:997.406525px;}
.y1cd{bottom:997.512909px;}
.y106{bottom:998.575836px;}
.y160{bottom:1004.328278px;}
.yc5{bottom:1006.017008px;}
.y31{bottom:1013.988190px;}
.y5a{bottom:1013.988250px;}
.y196{bottom:1014.417938px;}
.y1ce{bottom:1014.524231px;}
.y115{bottom:1018.860026px;}
.y130{bottom:1027.980927px;}
.y120{bottom:1034.238190px;}
.y30{bottom:1034.238220px;}
.y19d{bottom:1034.700714px;}
.y1d5{bottom:1034.807098px;}
.yc3{bottom:1035.460693px;}
.y114{bottom:1035.870026px;}
.y2f{bottom:1054.488190px;}
.y12f{bottom:1062.988770px;}
.y19e{bottom:1063.005341px;}
.yc2{bottom:1063.098450px;}
.y1d6{bottom:1063.111633px;}
.y116{bottom:1064.174744px;}
.y3{bottom:1069.102110px;}
.y2{bottom:1109.602020px;}
.y2e{bottom:1215.359985px;}
.h25{height:25.200000px;}
.h9{height:25.612800px;}
.h1a{height:29.040900px;}
.h1f{height:29.064000px;}
.h1e{height:29.400000px;}
.h16{height:30.576000px;}
.h18{height:30.816000px;}
.h13{height:33.216000px;}
.h1b{height:34.272000px;}
.h11{height:35.952000px;}
.h2{height:41.088000px;}
.h19{height:41.520000px;}
.h23{height:42.912000px;}
.h6{height:43.596000px;}
.ha{height:44.160000px;}
.h5{height:45.672000px;}
.h1d{height:46.075295px;}
.hb{height:46.224000px;}
.h4{height:48.269423px;}
.h28{height:50.332800px;}
.h27{height:51.494400px;}
.h12{height:53.640000px;}
.hd{height:56.322000px;}
.h7{height:58.188000px;}
.he{height:59.488731px;}
.hf{height:59.488851px;}
.h21{height:59.488908px;}
.h8{height:59.489091px;}
.h10{height:59.489151px;}
.h22{height:59.489331px;}
.hc{height:61.686000px;}
.h20{height:65.730000px;}
.h26{height:69.804000px;}
.h24{height:69.840000px;}
.h14{height:92.088000px;}
.h15{height:92.088480px;}
.h3{height:112.992000px;}
.h17{height:333.034515px;}
.h1c{height:333.036003px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:-393.520479px;}
.w3{width:296.361008px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x25{left:-676.063065px;}
.x26{left:-650.551208px;}
.x28{left:-580.393667px;}
.x29{left:-418.518780px;}
.x2a{left:-256.943848px;}
.x27{left:-132.614399px;}
.x0{left:0.000000px;}
.xf{left:6.450439px;}
.x10{left:11.093445px;}
.x11{left:15.593445px;}
.x1a{left:31.947818px;}
.x1c{left:36.687195px;}
.x1d{left:37.767195px;}
.x1b{left:43.497818px;}
.x12{left:48.190704px;}
.x5{left:68.031452px;}
.x1e{left:69.132194px;}
.x13{left:86.925203px;}
.x1{left:102.047253px;}
.x1f{left:103.989194px;}
.x5f{left:106.148403px;}
.x2{left:110.551197px;}
.x4{left:114.803238px;}
.x62{left:119.011950px;}
.x14{left:122.079203px;}
.x63{left:125.725950px;}
.x3{left:127.559103px;}
.x20{left:139.656194px;}
.x61{left:142.233456px;}
.x64{left:151.451694px;}
.x15{left:159.207203px;}
.x21{left:174.324194px;}
.x66{left:182.512498px;}
.x65{left:183.628498px;}
.x16{left:196.104203px;}
.x22{left:213.600192px;}
.x6{left:216.850342px;}
.x23{left:219.999192px;}
.x3c{left:225.354309px;}
.x9{left:229.606200px;}
.x17{left:231.079703px;}
.x7{left:242.362198px;}
.x19{left:249.969818px;}
.x24{left:252.588192px;}
.x4b{left:254.859900px;}
.x49{left:256.717346px;}
.x18{left:267.756203px;}
.x67{left:295.696498px;}
.x5b{left:301.272887px;}
.x5d{left:307.230887px;}
.x5c{left:308.607887px;}
.xb{left:312.519619px;}
.x4a{left:346.008156px;}
.x5e{left:358.476885px;}
.x2e{left:393.520477px;}
.x2b{left:399.971558px;}
.x2c{left:404.614517px;}
.x2d{left:409.114517px;}
.x30{left:425.468982px;}
.x32{left:430.208267px;}
.x33{left:431.288267px;}
.x31{left:437.023361px;}
.x34{left:462.653266px;}
.xc{left:474.394351px;}
.x35{left:497.510266px;}
.x8{left:514.991867px;}
.x46{left:518.614517px;}
.x47{left:523.114517px;}
.x36{left:533.177266px;}
.x3e{left:540.630171px;}
.x4c{left:546.288900px;}
.x37{left:567.845266px;}
.x41{left:570.471900px;}
.x4d{left:573.567899px;}
.x4f{left:574.935899px;}
.x4e{left:580.866899px;}
.x50{left:583.125899px;}
.x42{left:599.325900px;}
.x38{left:607.121265px;}
.x40{left:611.222400px;}
.x39{left:613.520265px;}
.x52{left:618.018898px;}
.x51{left:619.557898px;}
.x43{left:627.591900px;}
.x44{left:632.957400px;}
.xd{left:635.969238px;}
.x60{left:642.415329px;}
.x2f{left:643.490982px;}
.x3a{left:646.109265px;}
.x54{left:647.538898px;}
.x53{left:653.469898px;}
.x55{left:655.728898px;}
.x45{left:658.850400px;}
.x57{left:682.908898px;}
.x56{left:690.900898px;}
.x3f{left:703.433395px;}
.x58{left:723.912898px;}
.x59{left:726.198898px;}
.x3d{left:750.147171px;}
.x48{left:756.899231px;}
.xa{left:760.298996px;}
.x5a{left:762.504897px;}
.x3b{left:766.499084px;}
.xe{left:1286.434479px;}
@media print{
.v3{vertical-align:-17.600016pt;}
.v4{vertical-align:-13.866699pt;}
.v6{vertical-align:-7.559680pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.629333pt;}
.v1{vertical-align:19.359701pt;}
.v2{vertical-align:22.880046pt;}
.v8{vertical-align:32.592000pt;}
.v9{vertical-align:34.688000pt;}
.v5{vertical-align:45.333333pt;}
.ls94{letter-spacing:-4.454912pt;}
.ls7c{letter-spacing:-3.021312pt;}
.ls3b{letter-spacing:-2.352000pt;}
.ls82{letter-spacing:-2.253312pt;}
.ls68{letter-spacing:-2.171520pt;}
.ls48{letter-spacing:-2.133333pt;}
.ls85{letter-spacing:-1.996800pt;}
.ls13{letter-spacing:-1.941333pt;}
.ls1f{letter-spacing:-1.732640pt;}
.ls6e{letter-spacing:-1.525333pt;}
.ls6a{letter-spacing:-1.484800pt;}
.ls20{letter-spacing:-1.386667pt;}
.ls2c{letter-spacing:-1.248693pt;}
.ls6f{letter-spacing:-1.125973pt;}
.ls61{letter-spacing:-1.120000pt;}
.ls31{letter-spacing:-1.110027pt;}
.ls26{letter-spacing:-1.040000pt;}
.ls71{letter-spacing:-0.959243pt;}
.lsb{letter-spacing:-0.840000pt;}
.ls74{letter-spacing:-0.799680pt;}
.ls8c{letter-spacing:-0.784000pt;}
.ls15{letter-spacing:-0.762667pt;}
.ls1a{letter-spacing:-0.747200pt;}
.ls70{letter-spacing:-0.742400pt;}
.ls7{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.692640pt;}
.ls60{letter-spacing:-0.671440pt;}
.ls46{letter-spacing:-0.640000pt;}
.ls90{letter-spacing:-0.626677pt;}
.ls36{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.616000pt;}
.ls6d{letter-spacing:-0.603200pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls7f{letter-spacing:-0.574933pt;}
.ls56{letter-spacing:-0.552160pt;}
.ls17{letter-spacing:-0.532800pt;}
.ls80{letter-spacing:-0.522144pt;}
.ls8b{letter-spacing:-0.511488pt;}
.ls12{letter-spacing:-0.485333pt;}
.ls7e{letter-spacing:-0.460800pt;}
.ls42{letter-spacing:-0.426240pt;}
.ls23{letter-spacing:-0.416000pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.346667pt;}
.ls63{letter-spacing:-0.340267pt;}
.ls73{letter-spacing:-0.319680pt;}
.ls9{letter-spacing:-0.293333pt;}
.ls5f{letter-spacing:-0.280000pt;}
.ls25{letter-spacing:-0.277333pt;}
.ls81{letter-spacing:-0.261333pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls76{letter-spacing:-0.209067pt;}
.ls14{letter-spacing:-0.208693pt;}
.ls66{letter-spacing:-0.160533pt;}
.ls2f{letter-spacing:-0.138667pt;}
.ls59{letter-spacing:-0.112000pt;}
.ls92{letter-spacing:-0.104533pt;}
.ls91{letter-spacing:-0.102400pt;}
.ls72{letter-spacing:-0.074667pt;}
.lse{letter-spacing:-0.070027pt;}
.ls5d{letter-spacing:-0.056560pt;}
.ls19{letter-spacing:-0.053867pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.026123pt;}
.ls93{letter-spacing:0.051712pt;}
.ls2a{letter-spacing:0.070027pt;}
.ls75{letter-spacing:0.102400pt;}
.ls8e{letter-spacing:0.104533pt;}
.ls4b{letter-spacing:0.112373pt;}
.ls45{letter-spacing:0.128427pt;}
.ls16{letter-spacing:0.138667pt;}
.ls64{letter-spacing:0.149333pt;}
.ls2e{letter-spacing:0.154148pt;}
.ls37{letter-spacing:0.184613pt;}
.ls77{letter-spacing:0.204800pt;}
.ls21{letter-spacing:0.208693pt;}
.ls78{letter-spacing:0.209067pt;}
.lsd{letter-spacing:0.224000pt;}
.ls83{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.265399pt;}
.ls32{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.277333pt;}
.ls1{letter-spacing:0.308770pt;}
.ls1d{letter-spacing:0.308852pt;}
.ls6{letter-spacing:0.309340pt;}
.ls7b{letter-spacing:0.313600pt;}
.ls4a{letter-spacing:0.336000pt;}
.ls3f{letter-spacing:0.341333pt;}
.ls27{letter-spacing:0.346667pt;}
.ls7d{letter-spacing:0.365867pt;}
.ls49{letter-spacing:0.372960pt;}
.ls65{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.380859pt;}
.ls40{letter-spacing:0.384000pt;}
.ls62{letter-spacing:0.392000pt;}
.ls67{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.416000pt;}
.ls8a{letter-spacing:0.418133pt;}
.ls41{letter-spacing:0.426240pt;}
.ls24{letter-spacing:0.448000pt;}
.ls47{letter-spacing:0.469333pt;}
.ls86{letter-spacing:0.470400pt;}
.ls52{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.485333pt;}
.ls87{letter-spacing:0.511488pt;}
.ls8f{letter-spacing:0.522144pt;}
.ls1b{letter-spacing:0.532800pt;}
.ls28{letter-spacing:0.554667pt;}
.ls5c{letter-spacing:0.559440pt;}
.ls89{letter-spacing:0.574933pt;}
.ls34{letter-spacing:0.586667pt;}
.ls44{letter-spacing:0.597760pt;}
.ls84{letter-spacing:0.613888pt;}
.ls1e{letter-spacing:0.624000pt;}
.ls3e{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.650643pt;}
.ls53{letter-spacing:0.671440pt;}
.ls43{letter-spacing:0.683093pt;}
.ls2b{letter-spacing:0.692640pt;}
.ls38{letter-spacing:0.693333pt;}
.ls39{letter-spacing:0.699253pt;}
.ls3d{letter-spacing:0.725333pt;}
.ls5a{letter-spacing:0.728000pt;}
.ls96{letter-spacing:0.732256pt;}
.ls51{letter-spacing:0.762667pt;}
.ls3c{letter-spacing:0.768427pt;}
.ls6c{letter-spacing:0.800000pt;}
.ls69{letter-spacing:0.831307pt;}
.ls33{letter-spacing:0.853867pt;}
.ls54{letter-spacing:0.896560pt;}
.ls29{letter-spacing:0.901333pt;}
.ls6b{letter-spacing:0.906667pt;}
.ls8d{letter-spacing:0.941323pt;}
.ls55{letter-spacing:0.952000pt;}
.ls50{letter-spacing:0.971360pt;}
.ls79{letter-spacing:0.993067pt;}
.ls95{letter-spacing:1.024000pt;}
.ls5b{letter-spacing:1.064000pt;}
.ls58{letter-spacing:1.176000pt;}
.ls88{letter-spacing:1.177088pt;}
.ls4e{letter-spacing:1.178667pt;}
.ls57{letter-spacing:1.399440pt;}
.ls4f{letter-spacing:1.456000pt;}
.ls5e{letter-spacing:1.568000pt;}
.ls4d{letter-spacing:1.593973pt;}
.ls4c{letter-spacing:1.664000pt;}
.ls4{letter-spacing:1.679447pt;}
.ls5{letter-spacing:1.679935pt;}
.ls7a{letter-spacing:2.247467pt;}
.ls0{letter-spacing:2.560000pt;}
.ls3a{letter-spacing:99.344000pt;}
.ws102{word-spacing:-17.235280pt;}
.wsa6{word-spacing:-15.904000pt;}
.ws103{word-spacing:-15.314133pt;}
.wsaa{word-spacing:-14.826667pt;}
.ws43{word-spacing:-14.352000pt;}
.wse6{word-spacing:-14.074667pt;}
.ws108{word-spacing:-14.007989pt;}
.ws131{word-spacing:-13.798923pt;}
.ws10a{word-spacing:-13.588811pt;}
.ws107{word-spacing:-13.537067pt;}
.ws104{word-spacing:-13.380267pt;}
.ws141{word-spacing:-13.275733pt;}
.ws20{word-spacing:-13.226667pt;}
.ws109{word-spacing:-13.171200pt;}
.ws106{word-spacing:-12.805333pt;}
.ws6f{word-spacing:-12.629760pt;}
.ws105{word-spacing:-12.544523pt;}
.ws10b{word-spacing:-12.439989pt;}
.ws130{word-spacing:-11.980288pt;}
.ws85{word-spacing:-11.392000pt;}
.ws8d{word-spacing:-11.306667pt;}
.ws8b{word-spacing:-11.264427pt;}
.wsa9{word-spacing:-9.482667pt;}
.ws76{word-spacing:-9.445707pt;}
.ws75{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.048000pt;}
.wsa7{word-spacing:-8.477280pt;}
.wse5{word-spacing:-8.444800pt;}
.ws7c{word-spacing:-8.000000pt;}
.wse7{word-spacing:-7.922027pt;}
.wsec{word-spacing:-7.680320pt;}
.ws7a{word-spacing:-7.360000pt;}
.wsd3{word-spacing:-6.876480pt;}
.wsa8{word-spacing:-6.619733pt;}
.wse8{word-spacing:-6.217600pt;}
.wse9{word-spacing:-6.000757pt;}
.wsd4{word-spacing:-5.475200pt;}
.ws118{word-spacing:-3.737600pt;}
.ws7f{word-spacing:-3.673973pt;}
.ws119{word-spacing:-3.397333pt;}
.ws18{word-spacing:-2.704000pt;}
.ws45{word-spacing:-2.633973pt;}
.ws56{word-spacing:-2.496000pt;}
.ws12{word-spacing:-2.357333pt;}
.wsaf{word-spacing:-2.352560pt;}
.ws6{word-spacing:-2.296000pt;}
.wsb{word-spacing:-2.288000pt;}
.ws41{word-spacing:-2.150027pt;}
.ws132{word-spacing:-2.099200pt;}
.ws24{word-spacing:-2.080000pt;}
.ws9{word-spacing:-2.072000pt;}
.ws11{word-spacing:-2.011360pt;}
.ws5{word-spacing:-1.960000pt;}
.ws26{word-spacing:-1.941333pt;}
.ws133{word-spacing:-1.933867pt;}
.ws30{word-spacing:-1.871307pt;}
.ws1b{word-spacing:-1.866667pt;}
.wsa5{word-spacing:-1.813333pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws16{word-spacing:-1.732640pt;}
.wsc3{word-spacing:-1.680000pt;}
.ws49{word-spacing:-1.664000pt;}
.ws1f{word-spacing:-1.653867pt;}
.ws44{word-spacing:-1.593973pt;}
.ws23{word-spacing:-1.525333pt;}
.wsc4{word-spacing:-1.456000pt;}
.ws60{word-spacing:-1.386667pt;}
.ws5a{word-spacing:-1.332800pt;}
.ws13f{word-spacing:-1.331200pt;}
.ws21{word-spacing:-1.317333pt;}
.ws4f{word-spacing:-1.248693pt;}
.wsc1{word-spacing:-1.232000pt;}
.ws10c{word-spacing:-1.228800pt;}
.wsf0{word-spacing:-1.226133pt;}
.ws140{word-spacing:-1.201611pt;}
.ws3b{word-spacing:-1.178667pt;}
.ws10e{word-spacing:-1.149867pt;}
.wsb3{word-spacing:-1.120000pt;}
.ws55{word-spacing:-1.110027pt;}
.ws10d{word-spacing:-1.097600pt;}
.ws1d{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-1.040000pt;}
.wscf{word-spacing:-1.013333pt;}
.wsb8{word-spacing:-1.008560pt;}
.ws12c{word-spacing:-0.993067pt;}
.wsf{word-spacing:-0.971360pt;}
.ws89{word-spacing:-0.938667pt;}
.ws137{word-spacing:-0.922112pt;}
.ws17{word-spacing:-0.901333pt;}
.ws2c{word-spacing:-0.831307pt;}
.wsbd{word-spacing:-0.784560pt;}
.ws62{word-spacing:-0.762667pt;}
.ws86{word-spacing:-0.725333pt;}
.ws19{word-spacing:-0.692640pt;}
.ws8a{word-spacing:-0.683093pt;}
.wsbe{word-spacing:-0.671440pt;}
.ws88{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.639467pt;}
.ws4b{word-spacing:-0.624000pt;}
.ws11c{word-spacing:-0.613888pt;}
.ws39{word-spacing:-0.586667pt;}
.ws4{word-spacing:-0.559440pt;}
.ws87{word-spacing:-0.554667pt;}
.ws84{word-spacing:-0.532800pt;}
.ws120{word-spacing:-0.511488pt;}
.wsc5{word-spacing:-0.504000pt;}
.wsa1{word-spacing:-0.485333pt;}
.wsae{word-spacing:-0.480000pt;}
.ws8c{word-spacing:-0.469333pt;}
.ws34{word-spacing:-0.448000pt;}
.ws123{word-spacing:-0.418133pt;}
.wsd{word-spacing:-0.416000pt;}
.wsd2{word-spacing:-0.410667pt;}
.ws8f{word-spacing:-0.372960pt;}
.ws129{word-spacing:-0.365867pt;}
.ws91{word-spacing:-0.336000pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws13e{word-spacing:-0.313600pt;}
.ws36{word-spacing:-0.277333pt;}
.ws94{word-spacing:-0.261333pt;}
.ws11b{word-spacing:-0.256000pt;}
.wsce{word-spacing:-0.224000pt;}
.ws115{word-spacing:-0.209067pt;}
.ws53{word-spacing:-0.208693pt;}
.ws66{word-spacing:-0.184613pt;}
.ws128{word-spacing:-0.157323pt;}
.ws127{word-spacing:-0.154112pt;}
.ws40{word-spacing:-0.138667pt;}
.ws93{word-spacing:-0.112373pt;}
.ws11e{word-spacing:-0.104533pt;}
.ws2a{word-spacing:-0.070027pt;}
.ws1{word-spacing:0.000000pt;}
.ws134{word-spacing:0.052789pt;}
.wse0{word-spacing:0.070027pt;}
.wsf1{word-spacing:0.074667pt;}
.ws61{word-spacing:0.138667pt;}
.ws13a{word-spacing:0.157323pt;}
.wsd0{word-spacing:0.160533pt;}
.ws14{word-spacing:0.208693pt;}
.ws3c{word-spacing:0.277333pt;}
.wsb5{word-spacing:0.280000pt;}
.ws5c{word-spacing:0.320000pt;}
.ws12d{word-spacing:0.365867pt;}
.ws6c{word-spacing:0.416000pt;}
.ws90{word-spacing:0.532800pt;}
.ws32{word-spacing:0.554667pt;}
.ws139{word-spacing:0.574933pt;}
.ws3{word-spacing:0.586667pt;}
.ws138{word-spacing:0.613888pt;}
.wsa{word-spacing:0.624000pt;}
.wsfc{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.692640pt;}
.ws2{word-spacing:0.704000pt;}
.ws5f{word-spacing:0.747200pt;}
.ws28{word-spacing:0.762667pt;}
.wsfb{word-spacing:0.799680pt;}
.wsf8{word-spacing:0.831307pt;}
.wsc9{word-spacing:0.840000pt;}
.ws29{word-spacing:0.901333pt;}
.wsc7{word-spacing:0.952000pt;}
.ws31{word-spacing:0.971360pt;}
.wscd{word-spacing:1.013333pt;}
.wsa3{word-spacing:1.040000pt;}
.ws46{word-spacing:1.110027pt;}
.ws113{word-spacing:1.149867pt;}
.wsf5{word-spacing:1.152000pt;}
.wsc{word-spacing:1.248693pt;}
.ws124{word-spacing:1.279488pt;}
.ws8{word-spacing:1.287440pt;}
.wsfa{word-spacing:1.317333pt;}
.ws4d{word-spacing:1.332800pt;}
.ws1a{word-spacing:1.386667pt;}
.ws65{word-spacing:1.456000pt;}
.ws69{word-spacing:1.525333pt;}
.ws4c{word-spacing:1.593973pt;}
.ws6d{word-spacing:1.664000pt;}
.ws11d{word-spacing:1.689600pt;}
.ws4a{word-spacing:1.732640pt;}
.wsee{word-spacing:1.802667pt;}
.ws12a{word-spacing:1.843200pt;}
.wsca{word-spacing:1.848000pt;}
.ws33{word-spacing:1.871307pt;}
.ws116{word-spacing:1.894400pt;}
.ws12b{word-spacing:1.933867pt;}
.ws54{word-spacing:1.941333pt;}
.ws11f{word-spacing:1.985611pt;}
.ws15{word-spacing:2.011360pt;}
.ws7d{word-spacing:2.080000pt;}
.ws8e{word-spacing:2.133333pt;}
.wsd9{word-spacing:2.150027pt;}
.ws12f{word-spacing:2.195723pt;}
.wse{word-spacing:2.218667pt;}
.wsc8{word-spacing:2.239440pt;}
.ws11a{word-spacing:2.253312pt;}
.wsdc{word-spacing:2.288000pt;}
.ws13b{word-spacing:2.304000pt;}
.ws83{word-spacing:2.352000pt;}
.ws27{word-spacing:2.357333pt;}
.ws5e{word-spacing:2.400000pt;}
.ws12e{word-spacing:2.406400pt;}
.ws6e{word-spacing:2.426667pt;}
.ws6b{word-spacing:2.496000pt;}
.ws13d{word-spacing:2.508800pt;}
.wsb0{word-spacing:2.520000pt;}
.ws2e{word-spacing:2.565333pt;}
.wsc0{word-spacing:2.576560pt;}
.ws111{word-spacing:2.613333pt;}
.ws25{word-spacing:2.633973pt;}
.ws57{word-spacing:2.704000pt;}
.ws63{word-spacing:2.772640pt;}
.wse4{word-spacing:2.826133pt;}
.ws80{word-spacing:2.842667pt;}
.ws10f{word-spacing:2.867200pt;}
.ws5b{word-spacing:2.880000pt;}
.ws101{word-spacing:2.912693pt;}
.ws110{word-spacing:2.926933pt;}
.wsa2{word-spacing:2.981333pt;}
.ws114{word-spacing:3.021312pt;}
.ws7{word-spacing:3.079440pt;}
.ws13{word-spacing:3.120000pt;}
.ws81{word-spacing:3.258667pt;}
.ws3f{word-spacing:3.328000pt;}
.ws3a{word-spacing:3.397333pt;}
.ws52{word-spacing:3.466667pt;}
.wscb{word-spacing:3.472000pt;}
.ws51{word-spacing:3.535307pt;}
.ws50{word-spacing:3.605333pt;}
.wse2{word-spacing:3.626133pt;}
.ws4e{word-spacing:3.744000pt;}
.ws9f{word-spacing:3.812640pt;}
.ws67{word-spacing:3.882667pt;}
.wse3{word-spacing:3.947200pt;}
.wse1{word-spacing:3.952693pt;}
.wsc6{word-spacing:4.088000pt;}
.ws7e{word-spacing:4.091360pt;}
.ws48{word-spacing:4.229333pt;}
.ws10{word-spacing:4.368000pt;}
.ws9e{word-spacing:4.437333pt;}
.ws135{word-spacing:4.454912pt;}
.ws2d{word-spacing:4.506667pt;}
.ws58{word-spacing:4.575307pt;}
.wsc2{word-spacing:4.704000pt;}
.ws35{word-spacing:4.784000pt;}
.wsdf{word-spacing:4.854027pt;}
.ws82{word-spacing:4.992693pt;}
.ws59{word-spacing:5.061333pt;}
.ws38{word-spacing:5.131360pt;}
.ws47{word-spacing:5.200000pt;}
.wsd6{word-spacing:5.269333pt;}
.ws6a{word-spacing:5.338667pt;}
.wscc{word-spacing:5.375440pt;}
.ws3d{word-spacing:5.408000pt;}
.ws121{word-spacing:5.529600pt;}
.wsbb{word-spacing:5.544000pt;}
.ws122{word-spacing:5.592011pt;}
.wsff{word-spacing:5.824000pt;}
.ws125{word-spacing:5.888512pt;}
.ws37{word-spacing:5.894027pt;}
.ws126{word-spacing:5.906656pt;}
.ws68{word-spacing:5.962667pt;}
.wsfe{word-spacing:6.032693pt;}
.ws22{word-spacing:6.101333pt;}
.wsd5{word-spacing:6.170667pt;}
.wsf9{word-spacing:6.378667pt;}
.ws112{word-spacing:6.428800pt;}
.wsef{word-spacing:6.448000pt;}
.wsa4{word-spacing:6.516640pt;}
.wsda{word-spacing:6.586667pt;}
.wsbf{word-spacing:6.608000pt;}
.wsb1{word-spacing:6.831440pt;}
.ws42{word-spacing:7.002667pt;}
.wsf7{word-spacing:7.040000pt;}
.wsb9{word-spacing:7.056560pt;}
.wsa0{word-spacing:7.349333pt;}
.wsdd{word-spacing:7.556640pt;}
.wsd1{word-spacing:7.615627pt;}
.wsde{word-spacing:7.765333pt;}
.wsd7{word-spacing:8.250667pt;}
.wsf6{word-spacing:8.352000pt;}
.wsdb{word-spacing:8.389333pt;}
.ws64{word-spacing:8.596640pt;}
.wsd8{word-spacing:8.666667pt;}
.wsfd{word-spacing:8.736693pt;}
.ws3e{word-spacing:9.013333pt;}
.wsb2{word-spacing:9.184000pt;}
.ws9d{word-spacing:9.429333pt;}
.ws100{word-spacing:9.497973pt;}
.wsb4{word-spacing:9.632000pt;}
.ws9c{word-spacing:9.776693pt;}
.ws136{word-spacing:10.086912pt;}
.wsba{word-spacing:10.864000pt;}
.ws9a{word-spacing:11.786667pt;}
.wsb7{word-spacing:12.040000pt;}
.ws117{word-spacing:12.700800pt;}
.ws92{word-spacing:12.842293pt;}
.ws13c{word-spacing:13.066667pt;}
.wsb6{word-spacing:13.943440pt;}
.ws9b{word-spacing:14.490667pt;}
.wsbc{word-spacing:15.399440pt;}
.ws99{word-spacing:15.877333pt;}
.ws98{word-spacing:16.778667pt;}
.wsad{word-spacing:26.096000pt;}
.ws79{word-spacing:26.912000pt;}
.ws7b{word-spacing:28.896000pt;}
.wsed{word-spacing:43.583997pt;}
.ws71{word-spacing:46.849290pt;}
.ws96{word-spacing:46.866763pt;}
.ws78{word-spacing:69.925333pt;}
.ws72{word-spacing:70.945290pt;}
.ws77{word-spacing:85.120000pt;}
.wsf4{word-spacing:103.072000pt;}
.ws74{word-spacing:136.181750pt;}
.wsf2{word-spacing:146.114046pt;}
.wsea{word-spacing:146.114534pt;}
.ws73{word-spacing:180.605023pt;}
.ws97{word-spacing:180.605430pt;}
.ws70{word-spacing:200.112223pt;}
.ws95{word-spacing:200.113057pt;}
.wsac{word-spacing:420.972267pt;}
.wsab{word-spacing:506.876267pt;}
.wseb{word-spacing:942.400000pt;}
.wsf3{word-spacing:1048.960052pt;}
._2a{margin-left:-30.169268pt;}
._14{margin-left:-25.514667pt;}
._2e{margin-left:-24.128000pt;}
._2d{margin-left:-22.186667pt;}
._29{margin-left:-20.598455pt;}
._15{margin-left:-19.274667pt;}
._10{margin-left:-18.165333pt;}
._1b{margin-left:-17.056000pt;}
._12{margin-left:-15.322667pt;}
._16{margin-left:-14.421333pt;}
._18{margin-left:-12.852800pt;}
._1a{margin-left:-11.518439pt;}
._1f{margin-left:-10.453333pt;}
._9{margin-left:-7.818400pt;}
._f{margin-left:-6.824533pt;}
._0{margin-left:-5.120000pt;}
._d{margin-left:-4.175466pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-1.706667pt;}
._6{width:0.891733pt;}
._7{width:1.812267pt;}
._8{width:2.833333pt;}
._5{width:4.100267pt;}
._19{width:5.485867pt;}
._2f{width:7.476326pt;}
._25{width:10.233067pt;}
._11{width:11.618723pt;}
._35{width:12.713196pt;}
._e{width:13.616038pt;}
._34{width:15.641576pt;}
._17{width:17.014364pt;}
._a{width:18.026138pt;}
._13{width:19.999431pt;}
._33{width:23.722667pt;}
._32{width:33.941862pt;}
._26{width:82.208000pt;}
._22{width:87.223239pt;}
._28{width:93.632000pt;}
._27{width:101.658667pt;}
._1e{width:161.810763pt;}
._30{width:164.532856pt;}
._2b{width:171.174934pt;}
._31{width:176.759482pt;}
._3{width:192.690690pt;}
._21{width:212.560839pt;}
._24{width:308.238898pt;}
._23{width:324.000853pt;}
._1d{width:334.828053pt;}
._2c{width:337.596267pt;}
._20{width:375.661639pt;}
._1c{width:411.800021pt;}
._c{width:503.765442pt;}
._b{width:1224.021291pt;}
._4{width:1226.573376pt;}
.fs7{font-size:30.933333pt;}
.fsd{font-size:32.000000pt;}
.fse{font-size:32.480000pt;}
.fs3{font-size:34.026667pt;}
.fsc{font-size:37.333333pt;}
.fs6{font-size:40.213333pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:51.200000pt;}
.fsb{font-size:52.000000pt;}
.fs10{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:61.333333pt;}
.fs5{font-size:69.333333pt;}
.fs1{font-size:117.333333pt;}
.yf5{bottom:-321.485750pt;}
.y10f{bottom:-321.484407pt;}
.yf7{bottom:-317.192417pt;}
.y111{bottom:-317.191074pt;}
.yf8{bottom:-302.884417pt;}
.y112{bottom:-302.883074pt;}
.yf3{bottom:-300.019084pt;}
.y10d{bottom:-300.017741pt;}
.yf6{bottom:-293.112417pt;}
.y110{bottom:-293.111074pt;}
.yf4{bottom:-288.725750pt;}
.y10e{bottom:-288.724407pt;}
.yf9{bottom:-285.664417pt;}
.y113{bottom:-285.663074pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.426267pt;}
.y102{bottom:18.986427pt;}
.y101{bottom:30.326427pt;}
.y100{bottom:41.666427pt;}
.yff{bottom:53.006427pt;}
.yfe{bottom:64.346427pt;}
.yfd{bottom:78.654427pt;}
.y12e{bottom:90.708669pt;}
.y82{bottom:90.708800pt;}
.y1ed{bottom:91.322715pt;}
.yc1{bottom:91.322805pt;}
.y1cc{bottom:91.322858pt;}
.yb2{bottom:91.322937pt;}
.y2d{bottom:95.108663pt;}
.y59{bottom:95.108795pt;}
.y105{bottom:99.766132pt;}
.ya3{bottom:104.042133pt;}
.y12d{bottom:108.441996pt;}
.y81{bottom:108.442128pt;}
.y2c{bottom:108.577596pt;}
.y194{bottom:108.577728pt;}
.yb1{bottom:109.056264pt;}
.y104{bottom:109.102132pt;}
.yc0{bottom:109.322728pt;}
.y1f4{bottom:109.322805pt;}
.y1cb{bottom:109.322831pt;}
.y1ec{bottom:109.322861pt;}
.y183{bottom:117.375467pt;}
.yf2{bottom:121.395072pt;}
.ya2{bottom:121.775462pt;}
.y2b{bottom:121.910929pt;}
.y193{bottom:126.311066pt;}
.y58{bottom:127.322805pt;}
.y1f3{bottom:127.322818pt;}
.y1eb{bottom:127.322835pt;}
.ybf{bottom:127.322875pt;}
.y103{bottom:131.499760pt;}
.y182{bottom:135.108795pt;}
.y2a{bottom:135.244263pt;}
.ya1{bottom:135.244395pt;}
.yf1{bottom:144.075072pt;}
.y57{bottom:145.322805pt;}
.y1ea{bottom:145.322808pt;}
.ybe{bottom:145.322848pt;}
.y15c{bottom:145.322937pt;}
.y29{bottom:148.577596pt;}
.ya0{bottom:148.577728pt;}
.y28{bottom:161.910929pt;}
.y80{bottom:163.322741pt;}
.y1e9{bottom:163.322781pt;}
.y181{bottom:163.322795pt;}
.yb0{bottom:163.322805pt;}
.y56{bottom:163.322821pt;}
.y1ca{bottom:163.322875pt;}
.y15b{bottom:163.322964pt;}
.y9f{bottom:166.311066pt;}
.yf0{bottom:166.755072pt;}
.y27{bottom:179.644267pt;}
.y9e{bottom:179.779867pt;}
.y7f{bottom:181.322715pt;}
.y1e8{bottom:181.322755pt;}
.y180{bottom:181.322768pt;}
.y55{bottom:181.322795pt;}
.y1f2{bottom:181.322808pt;}
.y1c9{bottom:181.322848pt;}
.y15a{bottom:181.322937pt;}
.yef{bottom:189.435072pt;}
.y9d{bottom:197.513204pt;}
.y1e7{bottom:199.322728pt;}
.y17f{bottom:199.322741pt;}
.y192{bottom:199.322795pt;}
.y1c8{bottom:199.322821pt;}
.y7e{bottom:199.322861pt;}
.ybd{bottom:203.990133pt;}
.y54{bottom:205.294535pt;}
.yee{bottom:212.115072pt;}
.y17e{bottom:217.322715pt;}
.y26{bottom:217.322755pt;}
.y191{bottom:217.322795pt;}
.y12c{bottom:217.322821pt;}
.y7d{bottom:217.322835pt;}
.y1e6{bottom:217.322875pt;}
.yed{bottom:227.338949pt;}
.y25{bottom:235.322728pt;}
.y9c{bottom:235.322781pt;}
.y12b{bottom:235.322795pt;}
.y7c{bottom:235.322808pt;}
.y190{bottom:235.322821pt;}
.y53{bottom:235.322848pt;}
.ybc{bottom:235.322861pt;}
.yfb{bottom:245.369339pt;}
.y159{bottom:246.422262pt;}
.y9b{bottom:253.322755pt;}
.y7b{bottom:253.322781pt;}
.y12a{bottom:253.322795pt;}
.y1c7{bottom:253.322808pt;}
.y52{bottom:253.322821pt;}
.ybb{bottom:253.322835pt;}
.y24{bottom:253.322875pt;}
.yfa{bottom:260.489339pt;}
.y158{bottom:262.422242pt;}
.y9a{bottom:271.322728pt;}
.y7a{bottom:271.322755pt;}
.y1c6{bottom:271.322781pt;}
.y18f{bottom:271.322795pt;}
.yba{bottom:271.322808pt;}
.y129{bottom:271.322821pt;}
.y23{bottom:271.322848pt;}
.y51{bottom:271.322875pt;}
.y157{bottom:278.422282pt;}
.yfc{bottom:285.649089pt;}
.y79{bottom:289.322728pt;}
.y1c5{bottom:289.322755pt;}
.yb9{bottom:289.322781pt;}
.y128{bottom:289.322795pt;}
.y22{bottom:289.322821pt;}
.y50{bottom:289.322848pt;}
.y99{bottom:289.322875pt;}
.y156{bottom:294.422322pt;}
.y1c4{bottom:307.322728pt;}
.yb8{bottom:307.322755pt;}
.y21{bottom:307.322795pt;}
.y4f{bottom:307.322821pt;}
.y98{bottom:307.322848pt;}
.y78{bottom:307.322875pt;}
.y155{bottom:310.422222pt;}
.yb7{bottom:325.322728pt;}
.y20{bottom:325.322768pt;}
.y4e{bottom:325.322795pt;}
.y97{bottom:325.322821pt;}
.y77{bottom:325.322848pt;}
.y1c3{bottom:325.322875pt;}
.y154{bottom:326.422262pt;}
.y153{bottom:342.422302pt;}
.y1f{bottom:343.322741pt;}
.y4d{bottom:343.322795pt;}
.y76{bottom:343.322821pt;}
.y1c2{bottom:343.322848pt;}
.yb6{bottom:343.322875pt;}
.y152{bottom:358.422342pt;}
.y1e{bottom:361.322715pt;}
.y18e{bottom:361.322741pt;}
.y75{bottom:361.322795pt;}
.y1c1{bottom:361.322821pt;}
.y96{bottom:361.322848pt;}
.y4c{bottom:361.322861pt;}
.y151{bottom:374.422242pt;}
.y18d{bottom:379.322715pt;}
.y74{bottom:379.322795pt;}
.y95{bottom:379.322821pt;}
.y4b{bottom:379.322835pt;}
.y1d{bottom:379.322861pt;}
.y150{bottom:390.422282pt;}
.y94{bottom:397.322795pt;}
.y4a{bottom:397.322808pt;}
.yaf{bottom:397.322821pt;}
.y1c{bottom:397.322835pt;}
.y18c{bottom:397.322861pt;}
.y73{bottom:397.322875pt;}
.y14f{bottom:406.422322pt;}
.y1c0{bottom:415.322728pt;}
.y49{bottom:415.322781pt;}
.y93{bottom:415.322795pt;}
.y1b{bottom:415.322808pt;}
.y18b{bottom:415.322835pt;}
.y72{bottom:415.322848pt;}
.yb5{bottom:415.322875pt;}
.y14e{bottom:422.422222pt;}
.y48{bottom:433.322755pt;}
.y1a{bottom:433.322781pt;}
.yae{bottom:433.322795pt;}
.y18a{bottom:433.322808pt;}
.y71{bottom:433.322821pt;}
.yb4{bottom:433.322848pt;}
.y1bf{bottom:433.322875pt;}
.y14d{bottom:438.422262pt;}
.y47{bottom:451.322728pt;}
.y19{bottom:451.322755pt;}
.y189{bottom:451.322781pt;}
.y70{bottom:451.322795pt;}
.yad{bottom:451.322808pt;}
.yb3{bottom:451.322821pt;}
.y17d{bottom:451.322848pt;}
.y14c{bottom:454.422302pt;}
.y18{bottom:469.322728pt;}
.y188{bottom:469.322755pt;}
.yac{bottom:469.322781pt;}
.y92{bottom:469.322795pt;}
.y6f{bottom:469.322808pt;}
.y17c{bottom:469.322821pt;}
.y46{bottom:469.322875pt;}
.y14b{bottom:470.422342pt;}
.y14a{bottom:486.422242pt;}
.y187{bottom:487.322728pt;}
.yab{bottom:487.322755pt;}
.y6e{bottom:487.322781pt;}
.y127{bottom:487.322795pt;}
.y45{bottom:487.322848pt;}
.y91{bottom:487.322862pt;}
.y17{bottom:487.322875pt;}
.y149{bottom:502.422282pt;}
.yaa{bottom:505.322728pt;}
.y6d{bottom:505.322755pt;}
.y17b{bottom:505.322795pt;}
.y44{bottom:505.322821pt;}
.y90{bottom:505.322835pt;}
.y16{bottom:505.322848pt;}
.y186{bottom:505.322875pt;}
.yeb{bottom:514.110270pt;}
.y148{bottom:518.422282pt;}
.y6c{bottom:523.322728pt;}
.y43{bottom:523.322795pt;}
.y8f{bottom:523.322809pt;}
.y15{bottom:523.322821pt;}
.y185{bottom:523.322848pt;}
.ya9{bottom:523.322875pt;}
.y147{bottom:534.422282pt;}
.y8e{bottom:541.322782pt;}
.y14{bottom:541.322795pt;}
.y184{bottom:541.322821pt;}
.ya8{bottom:541.322848pt;}
.y6b{bottom:541.322875pt;}
.yea{bottom:544.636271pt;}
.y164{bottom:544.658896pt;}
.y42{bottom:547.294393pt;}
.y146{bottom:550.422282pt;}
.y163{bottom:555.998896pt;}
.ye9{bottom:557.859333pt;}
.y8d{bottom:559.322755pt;}
.y13{bottom:559.322795pt;}
.y1f1{bottom:559.322808pt;}
.ya7{bottom:559.322821pt;}
.y6a{bottom:559.322848pt;}
.y145{bottom:566.422282pt;}
.y162{bottom:567.338896pt;}
.ye8{bottom:574.882933pt;}
.y126{bottom:577.322728pt;}
.ya6{bottom:577.322795pt;}
.y12{bottom:577.322821pt;}
.y17a{bottom:577.322848pt;}
.y41{bottom:577.322875pt;}
.y8c{bottom:577.322902pt;}
.y161{bottom:581.656230pt;}
.y144{bottom:582.422282pt;}
.ye7{bottom:586.216267pt;}
.y11{bottom:595.322795pt;}
.y1f9{bottom:595.322808pt;}
.y179{bottom:595.322821pt;}
.y40{bottom:595.322848pt;}
.y8b{bottom:595.322875pt;}
.ye5{bottom:597.549542pt;}
.ye6{bottom:597.549600pt;}
.ye4{bottom:597.549648pt;}
.y143{bottom:598.422242pt;}
.y168{bottom:600.967326pt;}
.ye3{bottom:610.772688pt;}
.y167{bottom:612.305867pt;}
.y69{bottom:613.322795pt;}
.y3f{bottom:613.322821pt;}
.y8a{bottom:613.322849pt;}
.y142{bottom:614.422282pt;}
.y166{bottom:623.644409pt;}
.ye2{bottom:627.801595pt;}
.y141{bottom:630.422282pt;}
.y3e{bottom:631.322795pt;}
.y89{bottom:631.322822pt;}
.y165{bottom:634.982951pt;}
.yde{bottom:639.134928pt;}
.y140{bottom:646.422302pt;}
.y1be{bottom:648.229987pt;}
.y88{bottom:649.322795pt;}
.y1f0{bottom:649.322808pt;}
.y3d{bottom:649.322821pt;}
.y68{bottom:649.322915pt;}
.ydd{bottom:650.468216pt;}
.ye1{bottom:650.468262pt;}
.ya5{bottom:653.990153pt;}
.y1bd{bottom:659.569987pt;}
.y10c{bottom:660.282674pt;}
.yec{bottom:660.284017pt;}
.y10{bottom:661.432954pt;}
.ydc{bottom:661.801549pt;}
.ye0{bottom:661.801595pt;}
.y13f{bottom:662.422342pt;}
.y16a{bottom:665.217445pt;}
.y87{bottom:667.322769pt;}
.y3c{bottom:667.322795pt;}
.y1e5{bottom:667.322822pt;}
.y1f8{bottom:667.322849pt;}
.y67{bottom:667.322889pt;}
.ydf{bottom:673.134928pt;}
.y19f{bottom:673.638972pt;}
.ydb{bottom:675.024696pt;}
.y13e{bottom:678.422242pt;}
.y11c{bottom:679.270444pt;}
.yf{bottom:679.433034pt;}
.y1e4{bottom:685.322795pt;}
.ya4{bottom:685.322835pt;}
.y66{bottom:685.322862pt;}
.y86{bottom:685.322915pt;}
.y3b{bottom:689.990153pt;}
.y11b{bottom:690.610444pt;}
.yda{bottom:692.048269pt;}
.y1d7{bottom:692.633452pt;}
.y1a1{bottom:693.458008pt;}
.y13d{bottom:694.422282pt;}
.y11a{bottom:701.950444pt;}
.y1e3{bottom:703.322769pt;}
.y125{bottom:703.322795pt;}
.y65{bottom:703.322835pt;}
.y85{bottom:703.322889pt;}
.yd8{bottom:703.381603pt;}
.y1a0{bottom:704.796549pt;}
.ye{bottom:709.984254pt;}
.y13c{bottom:710.422282pt;}
.y1d9{bottom:712.450928pt;}
.y119{bottom:713.290444pt;}
.yd7{bottom:714.714936pt;}
.y16b{bottom:720.806777pt;}
.y1a6{bottom:721.255827pt;}
.y1aa{bottom:721.263827pt;}
.y1b1{bottom:721.279827pt;}
.y124{bottom:721.322769pt;}
.y64{bottom:721.322809pt;}
.y3a{bottom:721.322835pt;}
.y1f7{bottom:721.322849pt;}
.y84{bottom:721.322862pt;}
.y178{bottom:721.322875pt;}
.y1e2{bottom:721.322915pt;}
.y1d8{bottom:723.789469pt;}
.y118{bottom:724.630444pt;}
.yd{bottom:725.984294pt;}
.yd9{bottom:726.048269pt;}
.y13b{bottom:726.422282pt;}
.yd6{bottom:727.938083pt;}
.y1a5{bottom:729.919827pt;}
.y1a9{bottom:729.927827pt;}
.y1ad{bottom:729.935827pt;}
.y1b0{bottom:729.943827pt;}
.y1b4{bottom:729.951827pt;}
.y1b7{bottom:729.959827pt;}
.y1ba{bottom:729.967827pt;}
.y169{bottom:731.148112pt;}
.y1a3{bottom:738.575827pt;}
.y1a4{bottom:738.583827pt;}
.y1a8{bottom:738.591827pt;}
.y1ac{bottom:738.599827pt;}
.y1af{bottom:738.607827pt;}
.y1b3{bottom:738.615827pt;}
.y1b6{bottom:738.623827pt;}
.y1b9{bottom:738.631827pt;}
.y1bc{bottom:738.639827pt;}
.y1db{bottom:738.670391pt;}
.y1dd{bottom:738.674379pt;}
.y1de{bottom:738.682379pt;}
.y117{bottom:738.938444pt;}
.y63{bottom:739.322782pt;}
.y39{bottom:739.322835pt;}
.y177{bottom:739.322849pt;}
.y1e1{bottom:739.322889pt;}
.y123{bottom:739.322915pt;}
.yc{bottom:741.984334pt;}
.y13a{bottom:742.422282pt;}
.yd4{bottom:746.851363pt;}
.y1a2{bottom:747.239827pt;}
.y1a7{bottom:747.255827pt;}
.y1ab{bottom:747.263827pt;}
.y1ae{bottom:747.271827pt;}
.y1b2{bottom:747.279827pt;}
.y1b5{bottom:747.287827pt;}
.y1b8{bottom:747.295827pt;}
.y1bb{bottom:747.303827pt;}
.y1da{bottom:747.334391pt;}
.y1dc{bottom:747.338379pt;}
.y62{bottom:757.322755pt;}
.y176{bottom:757.322822pt;}
.y38{bottom:757.322835pt;}
.y1ef{bottom:757.322849pt;}
.y1e0{bottom:757.322862pt;}
.y122{bottom:757.322889pt;}
.y19c{bottom:757.959701pt;}
.yb{bottom:757.984234pt;}
.y1d4{bottom:758.054264pt;}
.yd3{bottom:758.184589pt;}
.y139{bottom:758.422342pt;}
.y11f{bottom:760.050149pt;}
.y83{bottom:761.990153pt;}
.y11e{bottom:769.386149pt;}
.yd2{bottom:769.518029pt;}
.y16c{bottom:772.112111pt;}
.ya{bottom:773.984274pt;}
.y138{bottom:774.422242pt;}
.y175{bottom:775.322795pt;}
.y37{bottom:775.322835pt;}
.y121{bottom:775.322862pt;}
.y61{bottom:775.322902pt;}
.y19b{bottom:780.639701pt;}
.y1d3{bottom:780.734264pt;}
.yd5{bottom:780.851256pt;}
.y10b{bottom:781.679089pt;}
.yd1{bottom:782.741176pt;}
.y16d{bottom:786.093444pt;}
.y9{bottom:789.984314pt;}
.y137{bottom:790.422322pt;}
.y11d{bottom:791.785238pt;}
.y174{bottom:793.322769pt;}
.y36{bottom:793.322835pt;}
.y60{bottom:793.322875pt;}
.yd0{bottom:799.775309pt;}
.y16f{bottom:800.625444pt;}
.y19a{bottom:803.319701pt;}
.y1d2{bottom:803.414264pt;}
.y10a{bottom:804.359089pt;}
.y8{bottom:805.984354pt;}
.y16e{bottom:806.337444pt;}
.y136{bottom:806.422222pt;}
.ycf{bottom:811.108643pt;}
.y35{bottom:811.322835pt;}
.y5f{bottom:811.322849pt;}
.y173{bottom:811.322915pt;}
.y1ee{bottom:815.990153pt;}
.y7{bottom:821.984254pt;}
.y135{bottom:822.422262pt;}
.ycb{bottom:822.441976pt;}
.yca{bottom:822.441998pt;}
.y199{bottom:825.999701pt;}
.y1d1{bottom:826.094264pt;}
.y109{bottom:827.039089pt;}
.y5e{bottom:829.322822pt;}
.y1f6{bottom:829.322835pt;}
.y172{bottom:829.322889pt;}
.y34{bottom:829.322915pt;}
.yce{bottom:833.775309pt;}
.yc9{bottom:833.775331pt;}
.y1df{bottom:833.990153pt;}
.y15d{bottom:834.426107pt;}
.y6{bottom:837.984294pt;}
.y134{bottom:838.422302pt;}
.ycd{bottom:845.108643pt;}
.yc8{bottom:845.108665pt;}
.y5d{bottom:847.322795pt;}
.y1f5{bottom:847.322835pt;}
.y171{bottom:847.322862pt;}
.y33{bottom:847.322889pt;}
.y198{bottom:848.679701pt;}
.y1d0{bottom:848.774264pt;}
.y108{bottom:849.719089pt;}
.y15f{bottom:852.456497pt;}
.y133{bottom:854.422342pt;}
.ycc{bottom:856.441976pt;}
.yc7{bottom:856.441998pt;}
.y5c{bottom:865.322769pt;}
.y5{bottom:865.322835pt;}
.y32{bottom:865.322862pt;}
.y15e{bottom:867.576497pt;}
.y132{bottom:870.422242pt;}
.yc4{bottom:871.275635pt;}
.y197{bottom:871.359701pt;}
.y1cf{bottom:871.454264pt;}
.y107{bottom:872.399089pt;}
.yc6{bottom:882.903971pt;}
.y4{bottom:883.322835pt;}
.y170{bottom:883.322862pt;}
.y5b{bottom:883.322915pt;}
.y131{bottom:886.422282pt;}
.y195{bottom:886.583577pt;}
.y1cd{bottom:886.678141pt;}
.y106{bottom:887.622965pt;}
.y160{bottom:892.736247pt;}
.yc5{bottom:894.237340pt;}
.y31{bottom:901.322835pt;}
.y5a{bottom:901.322889pt;}
.y196{bottom:901.704834pt;}
.y1ce{bottom:901.799316pt;}
.y115{bottom:905.653356pt;}
.y130{bottom:913.760824pt;}
.y120{bottom:919.322835pt;}
.y30{bottom:919.322862pt;}
.y19d{bottom:919.733968pt;}
.y1d5{bottom:919.828532pt;}
.yc3{bottom:920.409505pt;}
.y114{bottom:920.773356pt;}
.y2f{bottom:937.322835pt;}
.y12f{bottom:944.878906pt;}
.y19e{bottom:944.893636pt;}
.yc2{bottom:944.976400pt;}
.y1d6{bottom:944.988118pt;}
.y116{bottom:945.933105pt;}
.y3{bottom:950.312987pt;}
.y2{bottom:986.312907pt;}
.y2e{bottom:1080.319987pt;}
.h25{height:22.400000pt;}
.h9{height:22.766933pt;}
.h1a{height:25.814133pt;}
.h1f{height:25.834667pt;}
.h1e{height:26.133333pt;}
.h16{height:27.178667pt;}
.h18{height:27.392000pt;}
.h13{height:29.525333pt;}
.h1b{height:30.464000pt;}
.h11{height:31.957333pt;}
.h2{height:36.522667pt;}
.h19{height:36.906667pt;}
.h23{height:38.144000pt;}
.h6{height:38.752000pt;}
.ha{height:39.253333pt;}
.h5{height:40.597333pt;}
.h1d{height:40.955818pt;}
.hb{height:41.088000pt;}
.h4{height:42.906154pt;}
.h28{height:44.740267pt;}
.h27{height:45.772800pt;}
.h12{height:47.680000pt;}
.hd{height:50.064000pt;}
.h7{height:51.722667pt;}
.he{height:52.878872pt;}
.hf{height:52.878979pt;}
.h21{height:52.879029pt;}
.h8{height:52.879192pt;}
.h10{height:52.879246pt;}
.h22{height:52.879406pt;}
.hc{height:54.832000pt;}
.h20{height:58.426667pt;}
.h26{height:62.048000pt;}
.h24{height:62.080000pt;}
.h14{height:81.856000pt;}
.h15{height:81.856427pt;}
.h3{height:100.437333pt;}
.h17{height:296.030680pt;}
.h1c{height:296.032003pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:-349.795981pt;}
.w3{width:263.432007pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x25{left:-600.944946pt;}
.x26{left:-578.267741pt;}
.x28{left:-515.905482pt;}
.x29{left:-372.016693pt;}
.x2a{left:-228.394531pt;}
.x27{left:-117.879466pt;}
.x0{left:0.000000pt;}
.xf{left:5.733724pt;}
.x10{left:9.860840pt;}
.x11{left:13.860840pt;}
.x1a{left:28.398061pt;}
.x1c{left:32.610840pt;}
.x1d{left:33.570840pt;}
.x1b{left:38.664727pt;}
.x12{left:42.836182pt;}
.x5{left:60.472402pt;}
.x1e{left:61.450839pt;}
.x13{left:77.266847pt;}
.x1{left:90.708669pt;}
.x1f{left:92.434839pt;}
.x5f{left:94.354136pt;}
.x2{left:98.267731pt;}
.x4{left:102.047323pt;}
.x62{left:105.788400pt;}
.x14{left:108.514847pt;}
.x63{left:111.756400pt;}
.x3{left:113.385869pt;}
.x20{left:124.138839pt;}
.x61{left:126.429738pt;}
.x64{left:134.623728pt;}
.x15{left:141.517514pt;}
.x21{left:154.954839pt;}
.x66{left:162.233332pt;}
.x65{left:163.225332pt;}
.x16{left:174.314847pt;}
.x22{left:189.866838pt;}
.x6{left:192.755859pt;}
.x23{left:195.554838pt;}
.x3c{left:200.314941pt;}
.x9{left:204.094400pt;}
.x17{left:205.404181pt;}
.x7{left:215.433065pt;}
.x19{left:222.195394pt;}
.x24{left:224.522838pt;}
.x4b{left:226.542133pt;}
.x49{left:228.193197pt;}
.x18{left:238.005514pt;}
.x67{left:262.841332pt;}
.x5b{left:267.798122pt;}
.x5d{left:273.094122pt;}
.x5c{left:274.318122pt;}
.xb{left:277.795217pt;}
.x4a{left:307.562805pt;}
.x5e{left:318.646120pt;}
.x2e{left:349.795980pt;}
.x2b{left:355.530273pt;}
.x2c{left:359.657349pt;}
.x2d{left:363.657349pt;}
.x30{left:378.194651pt;}
.x32{left:382.407349pt;}
.x33{left:383.367349pt;}
.x31{left:388.465210pt;}
.x34{left:411.247348pt;}
.xc{left:421.683868pt;}
.x35{left:442.231348pt;}
.x8{left:457.770549pt;}
.x46{left:460.990682pt;}
.x47{left:464.990682pt;}
.x36{left:473.935348pt;}
.x3e{left:480.560152pt;}
.x4c{left:485.590133pt;}
.x37{left:504.751348pt;}
.x41{left:507.086133pt;}
.x4d{left:509.838133pt;}
.x4f{left:511.054133pt;}
.x4e{left:516.326133pt;}
.x50{left:518.334133pt;}
.x42{left:532.734133pt;}
.x38{left:539.663347pt;}
.x40{left:543.308800pt;}
.x39{left:545.351347pt;}
.x52{left:549.350131pt;}
.x51{left:550.718131pt;}
.x43{left:557.859466pt;}
.x44{left:562.628800pt;}
.xd{left:565.305990pt;}
.x60{left:571.035848pt;}
.x2f{left:571.991984pt;}
.x3a{left:574.319347pt;}
.x54{left:575.590131pt;}
.x53{left:580.862131pt;}
.x55{left:582.870131pt;}
.x45{left:585.644800pt;}
.x57{left:607.030131pt;}
.x56{left:614.134131pt;}
.x3f{left:625.274129pt;}
.x58{left:643.478131pt;}
.x59{left:645.510131pt;}
.x3d{left:666.797485pt;}
.x48{left:672.799316pt;}
.xa{left:675.821330pt;}
.x5a{left:677.782131pt;}
.x3b{left:681.332520pt;}
.xe{left:1143.497314pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  