
    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_a6cd42cf562bbc4938a7b8ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.860840;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_562d04617bd00e1f46fd104b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_02105d229efc9a48e4b7afe7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_77e7731345f27a9ce30e24be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_e0672030e035e01deb8b8b82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_64d7a3a54d213dc763ea62ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909180;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_7605f0f893ea6239d4b3294d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_291e3bb8bc833a65b4e1be01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.833496;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_6b36357c5c0168738deea6bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_f684ea6ee13978e3b86c5dc7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.695312;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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;}
.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);}
.m2{transform:matrix(0.251149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251149,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258516,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);}
.v2{vertical-align:-20.879400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.895600px;}
.v3{vertical-align:24.102000px;}
.ls67{letter-spacing:-0.781560px;}
.ls89{letter-spacing:-0.702000px;}
.ls2b{letter-spacing:-0.661320px;}
.ls66{letter-spacing:-0.541080px;}
.ls8a{letter-spacing:-0.540000px;}
.ls68{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.480960px;}
.ls2c{letter-spacing:-0.420840px;}
.ls87{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.360720px;}
.ls88{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.300600px;}
.ls11{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.240480px;}
.lsf{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.180360px;}
.ls53{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.162000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.132120px;}
.ls13{letter-spacing:-0.131760px;}
.ls14{letter-spacing:-0.120240px;}
.ls69{letter-spacing:-0.108000px;}
.ls52{letter-spacing:-0.095760px;}
.ls19{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.065880px;}
.ls15{letter-spacing:-0.060120px;}
.ls10{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.060120px;}
.ls65{letter-spacing:0.065880px;}
.ls1e{letter-spacing:0.072000px;}
.ls54{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.120240px;}
.ls86{letter-spacing:0.144000px;}
.ls7d{letter-spacing:0.156600px;}
.lsd{letter-spacing:0.162000px;}
.ls36{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.180360px;}
.ls46{letter-spacing:0.191520px;}
.ls55{letter-spacing:0.197640px;}
.ls29{letter-spacing:0.282564px;}
.ls1f{letter-spacing:0.318636px;}
.ls4{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.329400px;}
.ls51{letter-spacing:0.420840px;}
.ls78{letter-spacing:0.438876px;}
.ls27{letter-spacing:0.461160px;}
.ls38{letter-spacing:0.540000px;}
.ls28{letter-spacing:1.142280px;}
.ls7{letter-spacing:1.563120px;}
.ls76{letter-spacing:1.683360px;}
.ls77{letter-spacing:1.779552px;}
.ls58{letter-spacing:1.803600px;}
.ls56{letter-spacing:1.863720px;}
.ls25{letter-spacing:2.224440px;}
.ls79{letter-spacing:2.284560px;}
.ls82{letter-spacing:2.322000px;}
.ls8c{letter-spacing:2.370600px;}
.ls23{letter-spacing:2.500992px;}
.ls3{letter-spacing:2.916000px;}
.ls24{letter-spacing:2.945880px;}
.ls26{letter-spacing:3.306600px;}
.ls85{letter-spacing:3.493800px;}
.ls21{letter-spacing:3.601188px;}
.ls75{letter-spacing:3.769524px;}
.ls57{letter-spacing:3.781548px;}
.ls7c{letter-spacing:3.817800px;}
.ls2a{letter-spacing:4.028040px;}
.ls45{letter-spacing:4.158000px;}
.lsb{letter-spacing:4.388760px;}
.ls22{letter-spacing:4.809600px;}
.ls7b{letter-spacing:6.264000px;}
.ls8b{letter-spacing:6.642000px;}
.ls20{letter-spacing:6.913800px;}
.ls84{letter-spacing:7.398000px;}
.ls9{letter-spacing:8.356680px;}
.ls80{letter-spacing:9.180000px;}
.ls81{letter-spacing:9.504000px;}
.ls7f{letter-spacing:9.558000px;}
.lsa{letter-spacing:11.242440px;}
.ls7e{letter-spacing:11.340000px;}
.ls5{letter-spacing:13.500000px;}
.ls1{letter-spacing:14.796000px;}
.ls83{letter-spacing:21.006000px;}
.ls7a{letter-spacing:48.006000px;}
.ls4e{letter-spacing:323.908200px;}
.ls49{letter-spacing:348.039720px;}
.ls3c{letter-spacing:353.067120px;}
.ls31{letter-spacing:358.812720px;}
.ls3f{letter-spacing:364.941360px;}
.ls35{letter-spacing:382.609080px;}
.ls4c{letter-spacing:389.072880px;}
.ls4f{letter-spacing:394.483320px;}
.ls4d{letter-spacing:407.793960px;}
.ls4a{letter-spacing:418.950000px;}
.ls6a{letter-spacing:438.397200px;}
.ls60{letter-spacing:458.546760px;}
.ls59{letter-spacing:462.137760px;}
.ls50{letter-spacing:465.010560px;}
.ls5b{letter-spacing:468.649440px;}
.ls5c{letter-spacing:470.804040px;}
.ls5f{letter-spacing:476.932680px;}
.ls61{letter-spacing:488.806920px;}
.ls4b{letter-spacing:489.142080px;}
.ls5a{letter-spacing:494.552520px;}
.ls5d{letter-spacing:516.864600px;}
.ls63{letter-spacing:518.684040px;}
.ls5e{letter-spacing:523.328400px;}
.ls74{letter-spacing:525.530880px;}
.ls72{letter-spacing:548.178120px;}
.ls62{letter-spacing:556.461360px;}
.ls64{letter-spacing:577.720080px;}
.ls71{letter-spacing:583.130520px;}
.ls6b{letter-spacing:586.649700px;}
.ls3b{letter-spacing:592.850160px;}
.ls6f{letter-spacing:599.615604px;}
.ls47{letter-spacing:602.520876px;}
.ls30{letter-spacing:602.569800px;}
.ls42{letter-spacing:615.497400px;}
.ls3e{letter-spacing:616.598640px;}
.ls70{letter-spacing:620.907840px;}
.ls6d{letter-spacing:625.217040px;}
.ls34{letter-spacing:626.318280px;}
.ls44{letter-spacing:638.192520px;}
.ls2f{letter-spacing:652.566096px;}
.ls6c{letter-spacing:663.042240px;}
.ls73{letter-spacing:674.916480px;}
.ls40{letter-spacing:686.072520px;}
.ls6e{letter-spacing:687.173760px;}
.ls33{letter-spacing:719.205480px;}
.ls32{letter-spacing:729.643320px;}
.ls3a{letter-spacing:749.082600px;}
.ls39{letter-spacing:768.138840px;}
.ls48{letter-spacing:768.517200px;}
.ls41{letter-spacing:771.356376px;}
.ls37{letter-spacing:772.448040px;}
.ls43{letter-spacing:815.683680px;}
.ls3d{letter-spacing:884.774520px;}
.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;}
}
.ws47{word-spacing:-60.120000px;}
.ws5{word-spacing:-29.066400px;}
.ws9c{word-spacing:-15.984000px;}
.wsf{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.768000px;}
.ws45{word-spacing:-15.696000px;}
.ws43{word-spacing:-15.210360px;}
.ws3d{word-spacing:-15.150240px;}
.ws3e{word-spacing:-15.030000px;}
.ws3b{word-spacing:-14.969880px;}
.ws42{word-spacing:-14.909760px;}
.ws3f{word-spacing:-14.849640px;}
.ws48{word-spacing:-14.823000px;}
.ws3c{word-spacing:-14.789520px;}
.ws41{word-spacing:-14.609160px;}
.ws44{word-spacing:-14.549040px;}
.ws83{word-spacing:-14.488920px;}
.ws46{word-spacing:-14.427720px;}
.ws40{word-spacing:-14.368680px;}
.ws7{word-spacing:-13.707360px;}
.ws9e{word-spacing:-13.662000px;}
.wsbc{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.587120px;}
.ws84{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.466880px;}
.ws9d{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.346640px;}
.wsa2{word-spacing:-13.338000px;}
.wsa{word-spacing:-13.286520px;}
.wsa0{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.226400px;}
.wsbd{word-spacing:-13.176000px;}
.ws9f{word-spacing:-13.122000px;}
.wsd{word-spacing:-13.106160px;}
.wsbb{word-spacing:-13.014000px;}
.wsa1{word-spacing:-12.798000px;}
.wse{word-spacing:-12.745440px;}
.ws1{word-spacing:-12.258000px;}
.ws2{word-spacing:-12.204000px;}
.ws76{word-spacing:-12.161520px;}
.ws3{word-spacing:-12.150000px;}
.ws0{word-spacing:-12.042000px;}
.ws75{word-spacing:-11.970000px;}
.ws4{word-spacing:-11.934000px;}
.ws74{word-spacing:-11.874240px;}
.wsbe{word-spacing:-9.000000px;}
.ws49{word-spacing:-0.486000px;}
.ws10{word-spacing:-0.432000px;}
.ws26{word-spacing:-0.420840px;}
.ws81{word-spacing:-0.329400px;}
.ws7f{word-spacing:-0.287280px;}
.ws7c{word-spacing:-0.270000px;}
.ws1b{word-spacing:-0.240480px;}
.ws87{word-spacing:-0.197640px;}
.ws97{word-spacing:-0.191520px;}
.ws2b{word-spacing:-0.180360px;}
.ws78{word-spacing:-0.180000px;}
.ws7d{word-spacing:-0.162000px;}
.ws1d{word-spacing:-0.120240px;}
.ws11{word-spacing:-0.108000px;}
.ws77{word-spacing:-0.095760px;}
.ws7a{word-spacing:-0.090000px;}
.ws8e{word-spacing:-0.065880px;}
.ws25{word-spacing:-0.060120px;}
.ws14{word-spacing:-0.054000px;}
.ws12{word-spacing:0.000000px;}
.wsb4{word-spacing:0.054000px;}
.ws1c{word-spacing:0.060120px;}
.ws64{word-spacing:0.065880px;}
.ws79{word-spacing:0.090000px;}
.ws18{word-spacing:0.108000px;}
.ws20{word-spacing:0.120240px;}
.ws65{word-spacing:0.131760px;}
.ws19{word-spacing:0.132120px;}
.ws39{word-spacing:0.144000px;}
.ws17{word-spacing:0.162000px;}
.ws7b{word-spacing:0.180000px;}
.ws27{word-spacing:0.180360px;}
.ws13{word-spacing:0.216000px;}
.ws1e{word-spacing:0.240480px;}
.ws1a{word-spacing:0.264240px;}
.ws96{word-spacing:0.270000px;}
.ws98{word-spacing:0.287280px;}
.ws2a{word-spacing:0.300600px;}
.wsa9{word-spacing:0.324000px;}
.ws1f{word-spacing:0.360720px;}
.wsa8{word-spacing:0.378000px;}
.ws7e{word-spacing:0.383040px;}
.ws63{word-spacing:0.420840px;}
.ws92{word-spacing:0.486000px;}
.wsab{word-spacing:0.540000px;}
.ws89{word-spacing:0.541080px;}
.wsa6{word-spacing:0.601200px;}
.ws4d{word-spacing:0.661320px;}
.wsa3{word-spacing:0.721440px;}
.ws5a{word-spacing:0.901800px;}
.ws59{word-spacing:0.961920px;}
.ws60{word-spacing:1.022040px;}
.wsbf{word-spacing:1.080000px;}
.wsba{word-spacing:1.242000px;}
.ws4c{word-spacing:1.262520px;}
.ws4b{word-spacing:1.322640px;}
.ws21{word-spacing:1.382760px;}
.ws6f{word-spacing:1.442880px;}
.ws94{word-spacing:1.458000px;}
.ws8f{word-spacing:1.563120px;}
.ws91{word-spacing:1.620000px;}
.ws5e{word-spacing:1.623240px;}
.ws67{word-spacing:1.683360px;}
.ws33{word-spacing:1.743480px;}
.ws95{word-spacing:1.836000px;}
.ws32{word-spacing:1.863720px;}
.ws6c{word-spacing:1.923840px;}
.ws6b{word-spacing:1.983960px;}
.ws93{word-spacing:1.998000px;}
.ws71{word-spacing:2.044080px;}
.wscb{word-spacing:2.160000px;}
.ws24{word-spacing:2.224440px;}
.ws53{word-spacing:2.284560px;}
.wsb7{word-spacing:2.322000px;}
.ws52{word-spacing:2.344680px;}
.ws23{word-spacing:2.404800px;}
.ws22{word-spacing:2.464920px;}
.wsca{word-spacing:2.538000px;}
.ws5d{word-spacing:2.645280px;}
.wsb5{word-spacing:2.700000px;}
.ws58{word-spacing:2.765520px;}
.ws15{word-spacing:2.808000px;}
.ws29{word-spacing:2.825640px;}
.ws16{word-spacing:2.862000px;}
.wsb6{word-spacing:2.916000px;}
.ws5b{word-spacing:3.006000px;}
.ws5c{word-spacing:3.066120px;}
.ws8d{word-spacing:3.126240px;}
.wsb9{word-spacing:3.186000px;}
.ws69{word-spacing:3.366720px;}
.wsae{word-spacing:3.402000px;}
.ws4a{word-spacing:3.486960px;}
.ws2c{word-spacing:3.547080px;}
.wsad{word-spacing:3.618000px;}
.ws88{word-spacing:3.727440px;}
.wsac{word-spacing:3.780000px;}
.ws54{word-spacing:3.787560px;}
.ws5f{word-spacing:3.847680px;}
.ws30{word-spacing:3.907800px;}
.ws99{word-spacing:4.088160px;}
.wsc8{word-spacing:4.158000px;}
.ws72{word-spacing:4.208400px;}
.ws34{word-spacing:4.268520px;}
.wsa4{word-spacing:4.448880px;}
.ws80{word-spacing:4.482000px;}
.ws9b{word-spacing:4.509000px;}
.ws56{word-spacing:4.569120px;}
.ws28{word-spacing:4.629240px;}
.ws37{word-spacing:4.749480px;}
.wsc7{word-spacing:4.752000px;}
.ws6d{word-spacing:4.809600px;}
.wsc6{word-spacing:4.860000px;}
.ws55{word-spacing:4.869720px;}
.ws73{word-spacing:4.929840px;}
.ws38{word-spacing:5.050080px;}
.wsc2{word-spacing:5.076000px;}
.ws86{word-spacing:5.170320px;}
.wsc3{word-spacing:5.238000px;}
.ws68{word-spacing:5.290560px;}
.ws82{word-spacing:5.531040px;}
.ws61{word-spacing:5.651280px;}
.ws35{word-spacing:5.711400px;}
.ws62{word-spacing:5.891760px;}
.wsaa{word-spacing:5.940000px;}
.ws6a{word-spacing:6.252480px;}
.ws36{word-spacing:6.312600px;}
.wsa7{word-spacing:6.318000px;}
.ws90{word-spacing:6.372720px;}
.ws3a{word-spacing:6.613200px;}
.wsc5{word-spacing:6.642000px;}
.ws50{word-spacing:6.673320px;}
.ws51{word-spacing:6.733440px;}
.wsc4{word-spacing:6.858000px;}
.ws66{word-spacing:7.094160px;}
.ws85{word-spacing:7.334640px;}
.wsb8{word-spacing:7.398000px;}
.ws9a{word-spacing:7.695360px;}
.ws57{word-spacing:7.815600px;}
.ws2d{word-spacing:7.875720px;}
.ws8a{word-spacing:7.995960px;}
.ws8c{word-spacing:8.116200px;}
.ws70{word-spacing:8.176320px;}
.wsc0{word-spacing:8.208000px;}
.ws2e{word-spacing:8.236440px;}
.ws8b{word-spacing:8.476920px;}
.wsc1{word-spacing:8.478000px;}
.ws2f{word-spacing:8.597160px;}
.ws4e{word-spacing:9.258480px;}
.ws4f{word-spacing:9.498960px;}
.wsb3{word-spacing:9.720000px;}
.wsb2{word-spacing:9.882000px;}
.wsa5{word-spacing:9.979920px;}
.ws6e{word-spacing:10.220400px;}
.wsb0{word-spacing:11.232000px;}
.ws31{word-spacing:11.242440px;}
.wsaf{word-spacing:11.340000px;}
.wsb1{word-spacing:11.718000px;}
.wsc9{word-spacing:14.202000px;}
._2{margin-left:-14.778000px;}
._5{margin-left:-12.169080px;}
._4{margin-left:-8.742240px;}
._0{margin-left:-1.134000px;}
._1{width:1.080000px;}
._3{width:2.970000px;}
._7{width:4.154400px;}
._6{width:5.869080px;}
._23{width:8.224920px;}
._8{width:9.453600px;}
._22{width:10.800000px;}
._24{width:12.474000px;}
._13{width:290.487240px;}
._b{width:296.607240px;}
._17{width:342.971280px;}
._1a{width:365.276520px;}
._1c{width:389.168640px;}
._1b{width:401.042880px;}
._f{width:404.825400px;}
._18{width:413.967240px;}
._12{width:417.814200px;}
._a{width:426.814200px;}
._16{width:447.030000px;}
._1e{width:463.359600px;}
._19{width:484.091280px;}
._20{width:569.984760px;}
._9{width:596.796840px;}
._11{width:660.539160px;}
._1f{width:664.859160px;}
._e{width:670.128480px;}
._21{width:711.113760px;}
._14{width:727.988760px;}
._1d{width:736.859160px;}
._d{width:772.639560px;}
._c{width:776.182680px;}
._10{width:793.371600px;}
._15{width:794.424960px;}
.fc4{color:transparent;}
.fc3{color:rgb(227,108,10);}
.fc2{color:rgb(49,132,155);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.880000px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:45.000000px;}
.fsa{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs8{font-size:60.057000px;}
.fs4{font-size:60.120000px;}
.fs6{font-size:62.209200px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:83.880000px;}
.fs2{font-size:132.120000px;}
.y15{bottom:-0.000300px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.000600px;}
.y38{bottom:9.630000px;}
.y37{bottom:47.250000px;}
.y36{bottom:67.140000px;}
.y5{bottom:67.495500px;}
.y4{bottom:83.965500px;}
.ye6{bottom:132.211650px;}
.y33{bottom:133.380000px;}
.y93{bottom:138.047970px;}
.y69{bottom:138.348720px;}
.y106{bottom:140.309850px;}
.yb8{bottom:145.522020px;}
.ye5{bottom:150.217590px;}
.y105{bottom:155.794350px;}
.y92{bottom:156.053910px;}
.y68{bottom:156.354660px;}
.y32{bottom:160.380000px;}
.ye4{bottom:168.223530px;}
.yb7{bottom:170.000670px;}
.y91{bottom:174.059850px;}
.y67{bottom:174.360600px;}
.y104{bottom:176.759850px;}
.ye3{bottom:186.229470px;}
.y66{bottom:192.366540px;}
.yb6{bottom:194.395530px;}
.y31{bottom:195.839850px;}
.y103{bottom:197.644350px;}
.y90{bottom:201.059850px;}
.ye2{bottom:204.235410px;}
.y30{bottom:209.159850px;}
.y65{bottom:210.372480px;}
.y102{bottom:213.209850px;}
.yb5{bottom:218.874180px;}
.ye1{bottom:222.241350px;}
.y64{bottom:228.378420px;}
.y101{bottom:228.694350px;}
.y2f{bottom:236.699850px;}
.y8f{bottom:237.042210px;}
.ye0{bottom:240.247290px;}
.yb4{bottom:243.352830px;}
.y63{bottom:246.384360px;}
.y100{bottom:249.659850px;}
.y8e{bottom:255.048150px;}
.ydf{bottom:258.253230px;}
.y2e{bottom:263.879850px;}
.y62{bottom:264.390300px;}
.yff{bottom:265.144350px;}
.yb3{bottom:267.747690px;}
.y8d{bottom:273.054090px;}
.yde{bottom:276.259170px;}
.y61{bottom:282.396240px;}
.y2d{bottom:284.219850px;}
.yfe{bottom:286.109850px;}
.y8c{bottom:290.969850px;}
.yb2{bottom:292.226340px;}
.ydd{bottom:294.265110px;}
.y60{bottom:300.402180px;}
.y2c{bottom:300.973170px;}
.yfd{bottom:301.594350px;}
.ydc{bottom:312.271050px;}
.y8b{bottom:313.194600px;}
.yb1{bottom:316.704990px;}
.y5f{bottom:318.408120px;}
.y2b{bottom:318.618390px;}
.yfc{bottom:322.559850px;}
.ydb{bottom:330.276990px;}
.y2a{bottom:336.173430px;}
.y5e{bottom:336.414060px;}
.y8a{bottom:336.595950px;}
.yfb{bottom:338.044350px;}
.yb0{bottom:341.099850px;}
.yda{bottom:348.282930px;}
.y29{bottom:353.818650px;}
.y5d{bottom:354.420000px;}
.yfa{bottom:359.010000px;}
.y89{bottom:359.997300px;}
.yaf{bottom:365.579850px;}
.yd9{bottom:366.288870px;}
.y28{bottom:371.373690px;}
.yf9{bottom:374.494500px;}
.y5c{bottom:381.600000px;}
.y88{bottom:383.398650px;}
.yd8{bottom:384.294810px;}
.y27{bottom:388.928730px;}
.yae{bottom:390.419850px;}
.yf8{bottom:395.455350px;}
.yd7{bottom:402.300750px;}
.y26{bottom:406.573950px;}
.y87{bottom:406.800000px;}
.yf7{bottom:410.939850px;}
.y5b{bottom:418.704660px;}
.yad{bottom:420.210000px;}
.yd6{bottom:420.306690px;}
.y25{bottom:424.128990px;}
.y86{bottom:430.199850px;}
.yf6{bottom:431.905350px;}
.yac{bottom:435.689850px;}
.y5a{bottom:437.071320px;}
.yd5{bottom:438.312630px;}
.y24{bottom:441.774210px;}
.yab{bottom:451.169850px;}
.yf5{bottom:452.789850px;}
.y85{bottom:453.960000px;}
.y59{bottom:455.347800px;}
.yd4{bottom:456.318570px;}
.y23{bottom:459.329250px;}
.yaa{bottom:466.986240px;}
.yf4{bottom:468.355350px;}
.y58{bottom:473.624280px;}
.yd3{bottom:474.324510px;}
.y22{bottom:476.884290px;}
.y84{bottom:477.719850px;}
.ya9{bottom:484.992180px;}
.yf3{bottom:489.239850px;}
.y57{bottom:491.990940px;}
.yd2{bottom:492.330450px;}
.y21{bottom:494.529510px;}
.ya8{bottom:502.998120px;}
.yf2{bottom:504.805350px;}
.y83{bottom:506.429850px;}
.y56{bottom:510.267420px;}
.yd1{bottom:510.336390px;}
.y20{bottom:512.084550px;}
.y125{bottom:520.744350px;}
.ya7{bottom:521.004060px;}
.y82{bottom:521.999850px;}
.yf1{bottom:525.685500px;}
.yd0{bottom:528.342330px;}
.y55{bottom:528.543900px;}
.y1f{bottom:529.729770px;}
.y124{bottom:536.309850px;}
.y81{bottom:537.659850px;}
.ya6{bottom:539.010000px;}
.yf0{bottom:541.170000px;}
.ycf{bottom:546.348270px;}
.y54{bottom:546.910560px;}
.y1e{bottom:547.284810px;}
.y123{bottom:551.794350px;}
.y80{bottom:559.880400px;}
.yce{bottom:564.354210px;}
.y1d{bottom:564.839850px;}
.y53{bottom:565.187040px;}
.ya5{bottom:566.010000px;}
.y122{bottom:572.755350px;}
.ycd{bottom:582.360150px;}
.y7f{bottom:583.281750px;}
.y52{bottom:583.463520px;}
.y121{bottom:588.239850px;}
.y1c{bottom:592.109850px;}
.ycc{bottom:600.366090px;}
.y51{bottom:601.740000px;}
.ya4{bottom:601.980300px;}
.yef{bottom:601.992180px;}
.y120{bottom:603.805350px;}
.y7e{bottom:606.683100px;}
.y1b{bottom:612.359850px;}
.ycb{bottom:618.372030px;}
.ya3{bottom:619.986240px;}
.yee{bottom:619.998120px;}
.y11f{bottom:624.689850px;}
.y1a{bottom:625.949850px;}
.y50{bottom:629.010000px;}
.y7d{bottom:630.084450px;}
.yca{bottom:636.377970px;}
.ya2{bottom:637.992180px;}
.yed{bottom:638.004060px;}
.y11e{bottom:640.255350px;}
.y19{bottom:646.919850px;}
.y7c{bottom:653.485800px;}
.yc9{bottom:654.383910px;}
.ya1{bottom:655.998120px;}
.y4f{bottom:656.010000px;}
.y17{bottom:660.456000px;}
.y14{bottom:660.490500px;}
.y16{bottom:660.509850px;}
.y11d{bottom:661.139850px;}
.yc8{bottom:672.389850px;}
.ya0{bottom:674.004060px;}
.y11c{bottom:676.705350px;}
.y7b{bottom:676.887150px;}
.yec{bottom:683.010000px;}
.y13{bottom:687.136710px;}
.y4e{bottom:691.885260px;}
.y9f{bottom:692.010000px;}
.y11b{bottom:697.589850px;}
.yc7{bottom:699.389850px;}
.y7a{bottom:700.288500px;}
.y12{bottom:705.413190px;}
.y4d{bottom:709.891200px;}
.y11a{bottom:713.155350px;}
.yeb{bottom:718.992180px;}
.y9e{bottom:719.010000px;}
.y79{bottom:723.689850px;}
.y11{bottom:723.779850px;}
.y4c{bottom:727.897140px;}
.y119{bottom:734.044350px;}
.yc6{bottom:735.372360px;}
.yea{bottom:736.998120px;}
.y10{bottom:741.239850px;}
.y4b{bottom:745.903080px;}
.y78{bottom:747.089850px;}
.yc5{bottom:753.378300px;}
.y9d{bottom:754.992180px;}
.ye9{bottom:755.004060px;}
.y118{bottom:755.005350px;}
.yf{bottom:758.429850px;}
.y4a{bottom:763.909020px;}
.y117{bottom:770.489850px;}
.y77{bottom:770.940000px;}
.yc4{bottom:771.384240px;}
.y9c{bottom:772.998120px;}
.ye8{bottom:773.010000px;}
.ye{bottom:776.430000px;}
.y49{bottom:781.914960px;}
.y116{bottom:786.055350px;}
.yc3{bottom:789.300000px;}
.y9b{bottom:791.004060px;}
.yd{bottom:794.153370px;}
.y76{bottom:799.650000px;}
.y48{bottom:799.920900px;}
.ye7{bottom:800.010000px;}
.y115{bottom:806.939850px;}
.y9a{bottom:809.010000px;}
.yc{bottom:812.429850px;}
.yc2{bottom:812.607300px;}
.y75{bottom:815.310000px;}
.y47{bottom:817.926840px;}
.y114{bottom:822.505350px;}
.y46{bottom:835.932780px;}
.y99{bottom:836.010000px;}
.y74{bottom:837.089850px;}
.yc1{bottom:838.079460px;}
.yb{bottom:839.429850px;}
.y113{bottom:843.394500px;}
.y45{bottom:853.938720px;}
.y73{bottom:855.897300px;}
.y112{bottom:858.960000px;}
.y98{bottom:863.010000px;}
.yc0{bottom:863.551620px;}
.y44{bottom:871.944660px;}
.y111{bottom:874.444500px;}
.y72{bottom:879.298650px;}
.ybf{bottom:889.107570px;}
.ya{bottom:889.447680px;}
.y43{bottom:889.950600px;}
.y110{bottom:895.410000px;}
.y97{bottom:898.998120px;}
.y71{bottom:902.698650px;}
.y42{bottom:907.956540px;}
.y10f{bottom:910.894500px;}
.ybe{bottom:914.579730px;}
.y96{bottom:917.004060px;}
.y41{bottom:925.962480px;}
.y70{bottom:926.095950px;}
.y9{bottom:928.158840px;}
.y10e{bottom:931.860000px;}
.y95{bottom:935.010000px;}
.ybd{bottom:940.051890px;}
.y40{bottom:943.968420px;}
.y10d{bottom:947.344500px;}
.y6f{bottom:949.497300px;}
.y3f{bottom:961.974360px;}
.y94{bottom:962.010000px;}
.ybc{bottom:965.607840px;}
.y8{bottom:966.870000px;}
.y10c{bottom:968.305500px;}
.y6e{bottom:972.898650px;}
.y3e{bottom:979.980300px;}
.y10b{bottom:983.790000px;}
.ybb{bottom:991.080000px;}
.y6d{bottom:996.300000px;}
.y3d{bottom:997.986240px;}
.y10a{bottom:999.355500px;}
.y7{bottom:1001.789850px;}
.y3c{bottom:1015.992180px;}
.yba{bottom:1016.550000px;}
.y6c{bottom:1019.700000px;}
.y109{bottom:1020.240000px;}
.y6{bottom:1023.569850px;}
.y3b{bottom:1033.998120px;}
.y108{bottom:1035.805500px;}
.yb9{bottom:1042.470000px;}
.y6b{bottom:1043.460000px;}
.y3a{bottom:1052.004060px;}
.y107{bottom:1056.685500px;}
.y39{bottom:1070.010000px;}
.y6a{bottom:1072.170000px;}
.y3{bottom:1081.169850px;}
.y35{bottom:1097.370000px;}
.y2{bottom:1097.640000px;}
.y1{bottom:1114.110000px;}
.y34{bottom:1114.200000px;}
.he{height:22.444500px;}
.h11{height:22.479000px;}
.h1b{height:28.980000px;}
.h21{height:29.325586px;}
.h2{height:36.914062px;}
.h19{height:37.731445px;}
.h3{height:38.759766px;}
.h4{height:38.760366px;}
.h14{height:39.882656px;}
.hb{height:40.826953px;}
.h16{height:42.154453px;}
.h9{height:43.152539px;}
.ha{height:43.178459px;}
.hd{height:43.205099px;}
.h8{height:46.193203px;}
.h1e{height:46.991602px;}
.h20{height:50.210986px;}
.h1f{height:50.221186px;}
.h15{height:50.484375px;}
.h1a{height:52.998047px;}
.h23{height:53.015447px;}
.h5{height:53.016047px;}
.h24{height:53.016647px;}
.h1d{height:54.421875px;}
.hc{height:55.824609px;}
.h22{height:56.320312px;}
.h18{height:57.324375px;}
.h12{height:58.942661px;}
.h13{height:59.004492px;}
.h25{height:59.434031px;}
.h1c{height:60.589687px;}
.hf{height:61.054928px;}
.h10{height:61.831055px;}
.h6{height:76.824000px;}
.h17{height:84.535312px;}
.h7{height:92.638828px;}
.h1{height:1212.000000px;}
.h0{height:1212.030000px;}
.w4{width:28.980000px;}
.w2{width:65.241000px;}
.w3{width:81.450000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.020000px;}
.x3{left:65.607600px;}
.x6{left:81.708150px;}
.x1{left:85.050000px;}
.x9{left:107.550000px;}
.xa{left:112.050000px;}
.x2{left:130.045500px;}
.xd{left:145.080000px;}
.x29{left:161.545500px;}
.x1d{left:178.110000px;}
.x1b{left:183.690000px;}
.x19{left:184.950000px;}
.x1e{left:187.138260px;}
.x1f{left:188.778150px;}
.x4{left:196.920000px;}
.x1c{left:199.710000px;}
.x21{left:201.510000px;}
.x10{left:203.580000px;}
.x5{left:204.795000px;}
.x22{left:206.190000px;}
.x24{left:208.153080px;}
.x23{left:215.179470px;}
.x28{left:216.232290px;}
.xf{left:218.250000px;}
.x12{left:220.224780px;}
.x27{left:221.894100px;}
.x11{left:222.930000px;}
.x16{left:224.921250px;}
.x25{left:227.520540px;}
.x15{left:229.501620px;}
.x13{left:231.392790px;}
.x14{left:233.571330px;}
.x18{left:235.620000px;}
.x17{left:238.782510px;}
.x20{left:255.150000px;}
.x1a{left:256.973490px;}
.x26{left:261.630000px;}
.x7{left:286.200000px;}
.xb{left:432.000000px;}
.xe{left:665.910000px;}
.x8{left:807.930000px;}
@media print{
.v2{vertical-align:-18.559467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.573867pt;}
.v3{vertical-align:21.424000pt;}
.ls67{letter-spacing:-0.694720pt;}
.ls89{letter-spacing:-0.624000pt;}
.ls2b{letter-spacing:-0.587840pt;}
.ls66{letter-spacing:-0.480960pt;}
.ls8a{letter-spacing:-0.480000pt;}
.ls68{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.427520pt;}
.ls2c{letter-spacing:-0.374080pt;}
.ls87{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.320640pt;}
.ls88{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.267200pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.213760pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.160320pt;}
.ls53{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.117440pt;}
.ls13{letter-spacing:-0.117120pt;}
.ls14{letter-spacing:-0.106880pt;}
.ls69{letter-spacing:-0.096000pt;}
.ls52{letter-spacing:-0.085120pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.058560pt;}
.ls15{letter-spacing:-0.053440pt;}
.ls10{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.053440pt;}
.ls65{letter-spacing:0.058560pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls54{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106880pt;}
.ls86{letter-spacing:0.128000pt;}
.ls7d{letter-spacing:0.139200pt;}
.lsd{letter-spacing:0.144000pt;}
.ls36{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.160320pt;}
.ls46{letter-spacing:0.170240pt;}
.ls55{letter-spacing:0.175680pt;}
.ls29{letter-spacing:0.251168pt;}
.ls1f{letter-spacing:0.283232pt;}
.ls4{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.292800pt;}
.ls51{letter-spacing:0.374080pt;}
.ls78{letter-spacing:0.390112pt;}
.ls27{letter-spacing:0.409920pt;}
.ls38{letter-spacing:0.480000pt;}
.ls28{letter-spacing:1.015360pt;}
.ls7{letter-spacing:1.389440pt;}
.ls76{letter-spacing:1.496320pt;}
.ls77{letter-spacing:1.581824pt;}
.ls58{letter-spacing:1.603200pt;}
.ls56{letter-spacing:1.656640pt;}
.ls25{letter-spacing:1.977280pt;}
.ls79{letter-spacing:2.030720pt;}
.ls82{letter-spacing:2.064000pt;}
.ls8c{letter-spacing:2.107200pt;}
.ls23{letter-spacing:2.223104pt;}
.ls3{letter-spacing:2.592000pt;}
.ls24{letter-spacing:2.618560pt;}
.ls26{letter-spacing:2.939200pt;}
.ls85{letter-spacing:3.105600pt;}
.ls21{letter-spacing:3.201056pt;}
.ls75{letter-spacing:3.350688pt;}
.ls57{letter-spacing:3.361376pt;}
.ls7c{letter-spacing:3.393600pt;}
.ls2a{letter-spacing:3.580480pt;}
.ls45{letter-spacing:3.696000pt;}
.lsb{letter-spacing:3.901120pt;}
.ls22{letter-spacing:4.275200pt;}
.ls7b{letter-spacing:5.568000pt;}
.ls8b{letter-spacing:5.904000pt;}
.ls20{letter-spacing:6.145600pt;}
.ls84{letter-spacing:6.576000pt;}
.ls9{letter-spacing:7.428160pt;}
.ls80{letter-spacing:8.160000pt;}
.ls81{letter-spacing:8.448000pt;}
.ls7f{letter-spacing:8.496000pt;}
.lsa{letter-spacing:9.993280pt;}
.ls7e{letter-spacing:10.080000pt;}
.ls5{letter-spacing:12.000000pt;}
.ls1{letter-spacing:13.152000pt;}
.ls83{letter-spacing:18.672000pt;}
.ls7a{letter-spacing:42.672000pt;}
.ls4e{letter-spacing:287.918400pt;}
.ls49{letter-spacing:309.368640pt;}
.ls3c{letter-spacing:313.837440pt;}
.ls31{letter-spacing:318.944640pt;}
.ls3f{letter-spacing:324.392320pt;}
.ls35{letter-spacing:340.096960pt;}
.ls4c{letter-spacing:345.842560pt;}
.ls4f{letter-spacing:350.651840pt;}
.ls4d{letter-spacing:362.483520pt;}
.ls4a{letter-spacing:372.400000pt;}
.ls6a{letter-spacing:389.686400pt;}
.ls60{letter-spacing:407.597120pt;}
.ls59{letter-spacing:410.789120pt;}
.ls50{letter-spacing:413.342720pt;}
.ls5b{letter-spacing:416.577280pt;}
.ls5c{letter-spacing:418.492480pt;}
.ls5f{letter-spacing:423.940160pt;}
.ls61{letter-spacing:434.495040pt;}
.ls4b{letter-spacing:434.792960pt;}
.ls5a{letter-spacing:439.602240pt;}
.ls5d{letter-spacing:459.435200pt;}
.ls63{letter-spacing:461.052480pt;}
.ls5e{letter-spacing:465.180800pt;}
.ls74{letter-spacing:467.138560pt;}
.ls72{letter-spacing:487.269440pt;}
.ls62{letter-spacing:494.632320pt;}
.ls64{letter-spacing:513.528960pt;}
.ls71{letter-spacing:518.338240pt;}
.ls6b{letter-spacing:521.466400pt;}
.ls3b{letter-spacing:526.977920pt;}
.ls6f{letter-spacing:532.991648pt;}
.ls47{letter-spacing:535.574112pt;}
.ls30{letter-spacing:535.617600pt;}
.ls42{letter-spacing:547.108800pt;}
.ls3e{letter-spacing:548.087680pt;}
.ls70{letter-spacing:551.918080pt;}
.ls6d{letter-spacing:555.748480pt;}
.ls34{letter-spacing:556.727360pt;}
.ls44{letter-spacing:567.282240pt;}
.ls2f{letter-spacing:580.058752pt;}
.ls6c{letter-spacing:589.370880pt;}
.ls73{letter-spacing:599.925760pt;}
.ls40{letter-spacing:609.842240pt;}
.ls6e{letter-spacing:610.821120pt;}
.ls33{letter-spacing:639.293760pt;}
.ls32{letter-spacing:648.571840pt;}
.ls3a{letter-spacing:665.851200pt;}
.ls39{letter-spacing:682.790080pt;}
.ls48{letter-spacing:683.126400pt;}
.ls41{letter-spacing:685.650112pt;}
.ls37{letter-spacing:686.620480pt;}
.ls43{letter-spacing:725.052160pt;}
.ls3d{letter-spacing:786.466240pt;}
.ws47{word-spacing:-53.440000pt;}
.ws5{word-spacing:-25.836800pt;}
.ws9c{word-spacing:-14.208000pt;}
.wsf{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.016000pt;}
.ws45{word-spacing:-13.952000pt;}
.ws43{word-spacing:-13.520320pt;}
.ws3d{word-spacing:-13.466880pt;}
.ws3e{word-spacing:-13.360000pt;}
.ws3b{word-spacing:-13.306560pt;}
.ws42{word-spacing:-13.253120pt;}
.ws3f{word-spacing:-13.199680pt;}
.ws48{word-spacing:-13.176000pt;}
.ws3c{word-spacing:-13.146240pt;}
.ws41{word-spacing:-12.985920pt;}
.ws44{word-spacing:-12.932480pt;}
.ws83{word-spacing:-12.879040pt;}
.ws46{word-spacing:-12.824640pt;}
.ws40{word-spacing:-12.772160pt;}
.ws7{word-spacing:-12.184320pt;}
.ws9e{word-spacing:-12.144000pt;}
.wsbc{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.077440pt;}
.ws84{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.970560pt;}
.ws9d{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.863680pt;}
.wsa2{word-spacing:-11.856000pt;}
.wsa{word-spacing:-11.810240pt;}
.wsa0{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.756800pt;}
.wsbd{word-spacing:-11.712000pt;}
.ws9f{word-spacing:-11.664000pt;}
.wsd{word-spacing:-11.649920pt;}
.wsbb{word-spacing:-11.568000pt;}
.wsa1{word-spacing:-11.376000pt;}
.wse{word-spacing:-11.329280pt;}
.ws1{word-spacing:-10.896000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws76{word-spacing:-10.810240pt;}
.ws3{word-spacing:-10.800000pt;}
.ws0{word-spacing:-10.704000pt;}
.ws75{word-spacing:-10.640000pt;}
.ws4{word-spacing:-10.608000pt;}
.ws74{word-spacing:-10.554880pt;}
.wsbe{word-spacing:-8.000000pt;}
.ws49{word-spacing:-0.432000pt;}
.ws10{word-spacing:-0.384000pt;}
.ws26{word-spacing:-0.374080pt;}
.ws81{word-spacing:-0.292800pt;}
.ws7f{word-spacing:-0.255360pt;}
.ws7c{word-spacing:-0.240000pt;}
.ws1b{word-spacing:-0.213760pt;}
.ws87{word-spacing:-0.175680pt;}
.ws97{word-spacing:-0.170240pt;}
.ws2b{word-spacing:-0.160320pt;}
.ws78{word-spacing:-0.160000pt;}
.ws7d{word-spacing:-0.144000pt;}
.ws1d{word-spacing:-0.106880pt;}
.ws11{word-spacing:-0.096000pt;}
.ws77{word-spacing:-0.085120pt;}
.ws7a{word-spacing:-0.080000pt;}
.ws8e{word-spacing:-0.058560pt;}
.ws25{word-spacing:-0.053440pt;}
.ws14{word-spacing:-0.048000pt;}
.ws12{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.048000pt;}
.ws1c{word-spacing:0.053440pt;}
.ws64{word-spacing:0.058560pt;}
.ws79{word-spacing:0.080000pt;}
.ws18{word-spacing:0.096000pt;}
.ws20{word-spacing:0.106880pt;}
.ws65{word-spacing:0.117120pt;}
.ws19{word-spacing:0.117440pt;}
.ws39{word-spacing:0.128000pt;}
.ws17{word-spacing:0.144000pt;}
.ws7b{word-spacing:0.160000pt;}
.ws27{word-spacing:0.160320pt;}
.ws13{word-spacing:0.192000pt;}
.ws1e{word-spacing:0.213760pt;}
.ws1a{word-spacing:0.234880pt;}
.ws96{word-spacing:0.240000pt;}
.ws98{word-spacing:0.255360pt;}
.ws2a{word-spacing:0.267200pt;}
.wsa9{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.320640pt;}
.wsa8{word-spacing:0.336000pt;}
.ws7e{word-spacing:0.340480pt;}
.ws63{word-spacing:0.374080pt;}
.ws92{word-spacing:0.432000pt;}
.wsab{word-spacing:0.480000pt;}
.ws89{word-spacing:0.480960pt;}
.wsa6{word-spacing:0.534400pt;}
.ws4d{word-spacing:0.587840pt;}
.wsa3{word-spacing:0.641280pt;}
.ws5a{word-spacing:0.801600pt;}
.ws59{word-spacing:0.855040pt;}
.ws60{word-spacing:0.908480pt;}
.wsbf{word-spacing:0.960000pt;}
.wsba{word-spacing:1.104000pt;}
.ws4c{word-spacing:1.122240pt;}
.ws4b{word-spacing:1.175680pt;}
.ws21{word-spacing:1.229120pt;}
.ws6f{word-spacing:1.282560pt;}
.ws94{word-spacing:1.296000pt;}
.ws8f{word-spacing:1.389440pt;}
.ws91{word-spacing:1.440000pt;}
.ws5e{word-spacing:1.442880pt;}
.ws67{word-spacing:1.496320pt;}
.ws33{word-spacing:1.549760pt;}
.ws95{word-spacing:1.632000pt;}
.ws32{word-spacing:1.656640pt;}
.ws6c{word-spacing:1.710080pt;}
.ws6b{word-spacing:1.763520pt;}
.ws93{word-spacing:1.776000pt;}
.ws71{word-spacing:1.816960pt;}
.wscb{word-spacing:1.920000pt;}
.ws24{word-spacing:1.977280pt;}
.ws53{word-spacing:2.030720pt;}
.wsb7{word-spacing:2.064000pt;}
.ws52{word-spacing:2.084160pt;}
.ws23{word-spacing:2.137600pt;}
.ws22{word-spacing:2.191040pt;}
.wsca{word-spacing:2.256000pt;}
.ws5d{word-spacing:2.351360pt;}
.wsb5{word-spacing:2.400000pt;}
.ws58{word-spacing:2.458240pt;}
.ws15{word-spacing:2.496000pt;}
.ws29{word-spacing:2.511680pt;}
.ws16{word-spacing:2.544000pt;}
.wsb6{word-spacing:2.592000pt;}
.ws5b{word-spacing:2.672000pt;}
.ws5c{word-spacing:2.725440pt;}
.ws8d{word-spacing:2.778880pt;}
.wsb9{word-spacing:2.832000pt;}
.ws69{word-spacing:2.992640pt;}
.wsae{word-spacing:3.024000pt;}
.ws4a{word-spacing:3.099520pt;}
.ws2c{word-spacing:3.152960pt;}
.wsad{word-spacing:3.216000pt;}
.ws88{word-spacing:3.313280pt;}
.wsac{word-spacing:3.360000pt;}
.ws54{word-spacing:3.366720pt;}
.ws5f{word-spacing:3.420160pt;}
.ws30{word-spacing:3.473600pt;}
.ws99{word-spacing:3.633920pt;}
.wsc8{word-spacing:3.696000pt;}
.ws72{word-spacing:3.740800pt;}
.ws34{word-spacing:3.794240pt;}
.wsa4{word-spacing:3.954560pt;}
.ws80{word-spacing:3.984000pt;}
.ws9b{word-spacing:4.008000pt;}
.ws56{word-spacing:4.061440pt;}
.ws28{word-spacing:4.114880pt;}
.ws37{word-spacing:4.221760pt;}
.wsc7{word-spacing:4.224000pt;}
.ws6d{word-spacing:4.275200pt;}
.wsc6{word-spacing:4.320000pt;}
.ws55{word-spacing:4.328640pt;}
.ws73{word-spacing:4.382080pt;}
.ws38{word-spacing:4.488960pt;}
.wsc2{word-spacing:4.512000pt;}
.ws86{word-spacing:4.595840pt;}
.wsc3{word-spacing:4.656000pt;}
.ws68{word-spacing:4.702720pt;}
.ws82{word-spacing:4.916480pt;}
.ws61{word-spacing:5.023360pt;}
.ws35{word-spacing:5.076800pt;}
.ws62{word-spacing:5.237120pt;}
.wsaa{word-spacing:5.280000pt;}
.ws6a{word-spacing:5.557760pt;}
.ws36{word-spacing:5.611200pt;}
.wsa7{word-spacing:5.616000pt;}
.ws90{word-spacing:5.664640pt;}
.ws3a{word-spacing:5.878400pt;}
.wsc5{word-spacing:5.904000pt;}
.ws50{word-spacing:5.931840pt;}
.ws51{word-spacing:5.985280pt;}
.wsc4{word-spacing:6.096000pt;}
.ws66{word-spacing:6.305920pt;}
.ws85{word-spacing:6.519680pt;}
.wsb8{word-spacing:6.576000pt;}
.ws9a{word-spacing:6.840320pt;}
.ws57{word-spacing:6.947200pt;}
.ws2d{word-spacing:7.000640pt;}
.ws8a{word-spacing:7.107520pt;}
.ws8c{word-spacing:7.214400pt;}
.ws70{word-spacing:7.267840pt;}
.wsc0{word-spacing:7.296000pt;}
.ws2e{word-spacing:7.321280pt;}
.ws8b{word-spacing:7.535040pt;}
.wsc1{word-spacing:7.536000pt;}
.ws2f{word-spacing:7.641920pt;}
.ws4e{word-spacing:8.229760pt;}
.ws4f{word-spacing:8.443520pt;}
.wsb3{word-spacing:8.640000pt;}
.wsb2{word-spacing:8.784000pt;}
.wsa5{word-spacing:8.871040pt;}
.ws6e{word-spacing:9.084800pt;}
.wsb0{word-spacing:9.984000pt;}
.ws31{word-spacing:9.993280pt;}
.wsaf{word-spacing:10.080000pt;}
.wsb1{word-spacing:10.416000pt;}
.wsc9{word-spacing:12.624000pt;}
._2{margin-left:-13.136000pt;}
._5{margin-left:-10.816960pt;}
._4{margin-left:-7.770880pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.960000pt;}
._3{width:2.640000pt;}
._7{width:3.692800pt;}
._6{width:5.216960pt;}
._23{width:7.311040pt;}
._8{width:8.403200pt;}
._22{width:9.600000pt;}
._24{width:11.088000pt;}
._13{width:258.210880pt;}
._b{width:263.650880pt;}
._17{width:304.863360pt;}
._1a{width:324.690240pt;}
._1c{width:345.927680pt;}
._1b{width:356.482560pt;}
._f{width:359.844800pt;}
._18{width:367.970880pt;}
._12{width:371.390400pt;}
._a{width:379.390400pt;}
._16{width:397.360000pt;}
._1e{width:411.875200pt;}
._19{width:430.303360pt;}
._20{width:506.653120pt;}
._9{width:530.486080pt;}
._11{width:587.145920pt;}
._1f{width:590.985920pt;}
._e{width:595.669760pt;}
._21{width:632.101120pt;}
._14{width:647.101120pt;}
._1d{width:654.985920pt;}
._d{width:686.790720pt;}
._c{width:689.940160pt;}
._10{width:705.219200pt;}
._15{width:706.155520pt;}
.fsb{font-size:26.560000pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:40.000000pt;}
.fsa{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs8{font-size:53.384000pt;}
.fs4{font-size:53.440000pt;}
.fs6{font-size:55.297067pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.560000pt;}
.fs2{font-size:117.440000pt;}
.y15{bottom:-0.000267pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.000533pt;}
.y38{bottom:8.560000pt;}
.y37{bottom:42.000000pt;}
.y36{bottom:59.680000pt;}
.y5{bottom:59.996000pt;}
.y4{bottom:74.636000pt;}
.ye6{bottom:117.521467pt;}
.y33{bottom:118.560000pt;}
.y93{bottom:122.709307pt;}
.y69{bottom:122.976640pt;}
.y106{bottom:124.719867pt;}
.yb8{bottom:129.352907pt;}
.ye5{bottom:133.526747pt;}
.y105{bottom:138.483867pt;}
.y92{bottom:138.714587pt;}
.y68{bottom:138.981920pt;}
.y32{bottom:142.560000pt;}
.ye4{bottom:149.532027pt;}
.yb7{bottom:151.111707pt;}
.y91{bottom:154.719867pt;}
.y67{bottom:154.987200pt;}
.y104{bottom:157.119867pt;}
.ye3{bottom:165.537307pt;}
.y66{bottom:170.992480pt;}
.yb6{bottom:172.796027pt;}
.y31{bottom:174.079867pt;}
.y103{bottom:175.683867pt;}
.y90{bottom:178.719867pt;}
.ye2{bottom:181.542587pt;}
.y30{bottom:185.919867pt;}
.y65{bottom:186.997760pt;}
.y102{bottom:189.519867pt;}
.yb5{bottom:194.554827pt;}
.ye1{bottom:197.547867pt;}
.y64{bottom:203.003040pt;}
.y101{bottom:203.283867pt;}
.y2f{bottom:210.399867pt;}
.y8f{bottom:210.704187pt;}
.ye0{bottom:213.553147pt;}
.yb4{bottom:216.313627pt;}
.y63{bottom:219.008320pt;}
.y100{bottom:221.919867pt;}
.y8e{bottom:226.709467pt;}
.ydf{bottom:229.558427pt;}
.y2e{bottom:234.559867pt;}
.y62{bottom:235.013600pt;}
.yff{bottom:235.683867pt;}
.yb3{bottom:237.997947pt;}
.y8d{bottom:242.714747pt;}
.yde{bottom:245.563707pt;}
.y61{bottom:251.018880pt;}
.y2d{bottom:252.639867pt;}
.yfe{bottom:254.319867pt;}
.y8c{bottom:258.639867pt;}
.yb2{bottom:259.756747pt;}
.ydd{bottom:261.568987pt;}
.y60{bottom:267.024160pt;}
.y2c{bottom:267.531707pt;}
.yfd{bottom:268.083867pt;}
.ydc{bottom:277.574267pt;}
.y8b{bottom:278.395200pt;}
.yb1{bottom:281.515547pt;}
.y5f{bottom:283.029440pt;}
.y2b{bottom:283.216347pt;}
.yfc{bottom:286.719867pt;}
.ydb{bottom:293.579547pt;}
.y2a{bottom:298.820827pt;}
.y5e{bottom:299.034720pt;}
.y8a{bottom:299.196400pt;}
.yfb{bottom:300.483867pt;}
.yb0{bottom:303.199867pt;}
.yda{bottom:309.584827pt;}
.y29{bottom:314.505467pt;}
.y5d{bottom:315.040000pt;}
.yfa{bottom:319.120000pt;}
.y89{bottom:319.997600pt;}
.yaf{bottom:324.959867pt;}
.yd9{bottom:325.590107pt;}
.y28{bottom:330.109947pt;}
.yf9{bottom:332.884000pt;}
.y5c{bottom:339.200000pt;}
.y88{bottom:340.798800pt;}
.yd8{bottom:341.595387pt;}
.y27{bottom:345.714427pt;}
.yae{bottom:347.039867pt;}
.yf8{bottom:351.515867pt;}
.yd7{bottom:357.600667pt;}
.y26{bottom:361.399067pt;}
.y87{bottom:361.600000pt;}
.yf7{bottom:365.279867pt;}
.y5b{bottom:372.181920pt;}
.yad{bottom:373.520000pt;}
.yd6{bottom:373.605947pt;}
.y25{bottom:377.003547pt;}
.y86{bottom:382.399867pt;}
.yf6{bottom:383.915867pt;}
.yac{bottom:387.279867pt;}
.y5a{bottom:388.507840pt;}
.yd5{bottom:389.611227pt;}
.y24{bottom:392.688187pt;}
.yab{bottom:401.039867pt;}
.yf5{bottom:402.479867pt;}
.y85{bottom:403.520000pt;}
.y59{bottom:404.753600pt;}
.yd4{bottom:405.616507pt;}
.y23{bottom:408.292667pt;}
.yaa{bottom:415.098880pt;}
.yf4{bottom:416.315867pt;}
.y58{bottom:420.999360pt;}
.yd3{bottom:421.621787pt;}
.y22{bottom:423.897147pt;}
.y84{bottom:424.639867pt;}
.ya9{bottom:431.104160pt;}
.yf3{bottom:434.879867pt;}
.y57{bottom:437.325280pt;}
.yd2{bottom:437.627067pt;}
.y21{bottom:439.581787pt;}
.ya8{bottom:447.109440pt;}
.yf2{bottom:448.715867pt;}
.y83{bottom:450.159867pt;}
.y56{bottom:453.571040pt;}
.yd1{bottom:453.632347pt;}
.y20{bottom:455.186267pt;}
.y125{bottom:462.883867pt;}
.ya7{bottom:463.114720pt;}
.y82{bottom:463.999867pt;}
.yf1{bottom:467.276000pt;}
.yd0{bottom:469.637627pt;}
.y55{bottom:469.816800pt;}
.y1f{bottom:470.870907pt;}
.y124{bottom:476.719867pt;}
.y81{bottom:477.919867pt;}
.ya6{bottom:479.120000pt;}
.yf0{bottom:481.040000pt;}
.ycf{bottom:485.642907pt;}
.y54{bottom:486.142720pt;}
.y1e{bottom:486.475387pt;}
.y123{bottom:490.483867pt;}
.y80{bottom:497.671467pt;}
.yce{bottom:501.648187pt;}
.y1d{bottom:502.079867pt;}
.y53{bottom:502.388480pt;}
.ya5{bottom:503.120000pt;}
.y122{bottom:509.115867pt;}
.ycd{bottom:517.653467pt;}
.y7f{bottom:518.472667pt;}
.y52{bottom:518.634240pt;}
.y121{bottom:522.879867pt;}
.y1c{bottom:526.319867pt;}
.ycc{bottom:533.658747pt;}
.y51{bottom:534.880000pt;}
.ya4{bottom:535.093600pt;}
.yef{bottom:535.104160pt;}
.y120{bottom:536.715867pt;}
.y7e{bottom:539.273867pt;}
.y1b{bottom:544.319867pt;}
.ycb{bottom:549.664027pt;}
.ya3{bottom:551.098880pt;}
.yee{bottom:551.109440pt;}
.y11f{bottom:555.279867pt;}
.y1a{bottom:556.399867pt;}
.y50{bottom:559.120000pt;}
.y7d{bottom:560.075067pt;}
.yca{bottom:565.669307pt;}
.ya2{bottom:567.104160pt;}
.yed{bottom:567.114720pt;}
.y11e{bottom:569.115867pt;}
.y19{bottom:575.039867pt;}
.y7c{bottom:580.876267pt;}
.yc9{bottom:581.674587pt;}
.ya1{bottom:583.109440pt;}
.y4f{bottom:583.120000pt;}
.y17{bottom:587.072000pt;}
.y14{bottom:587.102667pt;}
.y16{bottom:587.119867pt;}
.y11d{bottom:587.679867pt;}
.yc8{bottom:597.679867pt;}
.ya0{bottom:599.114720pt;}
.y11c{bottom:601.515867pt;}
.y7b{bottom:601.677467pt;}
.yec{bottom:607.120000pt;}
.y13{bottom:610.788187pt;}
.y4e{bottom:615.009120pt;}
.y9f{bottom:615.120000pt;}
.y11b{bottom:620.079867pt;}
.yc7{bottom:621.679867pt;}
.y7a{bottom:622.478667pt;}
.y12{bottom:627.033947pt;}
.y4d{bottom:631.014400pt;}
.y11a{bottom:633.915867pt;}
.yeb{bottom:639.104160pt;}
.y9e{bottom:639.120000pt;}
.y79{bottom:643.279867pt;}
.y11{bottom:643.359867pt;}
.y4c{bottom:647.019680pt;}
.y119{bottom:652.483867pt;}
.yc6{bottom:653.664320pt;}
.yea{bottom:655.109440pt;}
.y10{bottom:658.879867pt;}
.y4b{bottom:663.024960pt;}
.y78{bottom:664.079867pt;}
.yc5{bottom:669.669600pt;}
.y9d{bottom:671.104160pt;}
.ye9{bottom:671.114720pt;}
.y118{bottom:671.115867pt;}
.yf{bottom:674.159867pt;}
.y4a{bottom:679.030240pt;}
.y117{bottom:684.879867pt;}
.y77{bottom:685.280000pt;}
.yc4{bottom:685.674880pt;}
.y9c{bottom:687.109440pt;}
.ye8{bottom:687.120000pt;}
.ye{bottom:690.160000pt;}
.y49{bottom:695.035520pt;}
.y116{bottom:698.715867pt;}
.yc3{bottom:701.600000pt;}
.y9b{bottom:703.114720pt;}
.yd{bottom:705.914107pt;}
.y76{bottom:710.800000pt;}
.y48{bottom:711.040800pt;}
.ye7{bottom:711.120000pt;}
.y115{bottom:717.279867pt;}
.y9a{bottom:719.120000pt;}
.yc{bottom:722.159867pt;}
.yc2{bottom:722.317600pt;}
.y75{bottom:724.720000pt;}
.y47{bottom:727.046080pt;}
.y114{bottom:731.115867pt;}
.y46{bottom:743.051360pt;}
.y99{bottom:743.120000pt;}
.y74{bottom:744.079867pt;}
.yc1{bottom:744.959520pt;}
.yb{bottom:746.159867pt;}
.y113{bottom:749.684000pt;}
.y45{bottom:759.056640pt;}
.y73{bottom:760.797600pt;}
.y112{bottom:763.520000pt;}
.y98{bottom:767.120000pt;}
.yc0{bottom:767.601440pt;}
.y44{bottom:775.061920pt;}
.y111{bottom:777.284000pt;}
.y72{bottom:781.598800pt;}
.ybf{bottom:790.317840pt;}
.ya{bottom:790.620160pt;}
.y43{bottom:791.067200pt;}
.y110{bottom:795.920000pt;}
.y97{bottom:799.109440pt;}
.y71{bottom:802.398800pt;}
.y42{bottom:807.072480pt;}
.y10f{bottom:809.684000pt;}
.ybe{bottom:812.959760pt;}
.y96{bottom:815.114720pt;}
.y41{bottom:823.077760pt;}
.y70{bottom:823.196400pt;}
.y9{bottom:825.030080pt;}
.y10e{bottom:828.320000pt;}
.y95{bottom:831.120000pt;}
.ybd{bottom:835.601680pt;}
.y40{bottom:839.083040pt;}
.y10d{bottom:842.084000pt;}
.y6f{bottom:843.997600pt;}
.y3f{bottom:855.088320pt;}
.y94{bottom:855.120000pt;}
.ybc{bottom:858.318080pt;}
.y8{bottom:859.440000pt;}
.y10c{bottom:860.716000pt;}
.y6e{bottom:864.798800pt;}
.y3e{bottom:871.093600pt;}
.y10b{bottom:874.480000pt;}
.ybb{bottom:880.960000pt;}
.y6d{bottom:885.600000pt;}
.y3d{bottom:887.098880pt;}
.y10a{bottom:888.316000pt;}
.y7{bottom:890.479867pt;}
.y3c{bottom:903.104160pt;}
.yba{bottom:903.600000pt;}
.y6c{bottom:906.400000pt;}
.y109{bottom:906.880000pt;}
.y6{bottom:909.839867pt;}
.y3b{bottom:919.109440pt;}
.y108{bottom:920.716000pt;}
.yb9{bottom:926.640000pt;}
.y6b{bottom:927.520000pt;}
.y3a{bottom:935.114720pt;}
.y107{bottom:939.276000pt;}
.y39{bottom:951.120000pt;}
.y6a{bottom:953.040000pt;}
.y3{bottom:961.039867pt;}
.y35{bottom:975.440000pt;}
.y2{bottom:975.680000pt;}
.y1{bottom:990.320000pt;}
.y34{bottom:990.400000pt;}
.he{height:19.950667pt;}
.h11{height:19.981333pt;}
.h1b{height:25.760000pt;}
.h21{height:26.067188pt;}
.h2{height:32.812500pt;}
.h19{height:33.539062pt;}
.h3{height:34.453125pt;}
.h4{height:34.453658pt;}
.h14{height:35.451250pt;}
.hb{height:36.290625pt;}
.h16{height:37.470625pt;}
.h9{height:38.357812pt;}
.ha{height:38.380853pt;}
.hd{height:38.404533pt;}
.h8{height:41.060625pt;}
.h1e{height:41.770312pt;}
.h20{height:44.631988pt;}
.h1f{height:44.641054pt;}
.h15{height:44.875000pt;}
.h1a{height:47.109375pt;}
.h23{height:47.124842pt;}
.h5{height:47.125375pt;}
.h24{height:47.125908pt;}
.h1d{height:48.375000pt;}
.hc{height:49.621875pt;}
.h22{height:50.062500pt;}
.h18{height:50.955000pt;}
.h12{height:52.393477pt;}
.h13{height:52.448437pt;}
.h25{height:52.830250pt;}
.h1c{height:53.857500pt;}
.hf{height:54.271047pt;}
.h10{height:54.960938pt;}
.h6{height:68.288000pt;}
.h17{height:75.142500pt;}
.h7{height:82.345625pt;}
.h1{height:1077.333333pt;}
.h0{height:1077.360000pt;}
.w4{width:25.760000pt;}
.w2{width:57.992000pt;}
.w3{width:72.400000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.240000pt;}
.x3{left:58.317867pt;}
.x6{left:72.629467pt;}
.x1{left:75.600000pt;}
.x9{left:95.600000pt;}
.xa{left:99.600000pt;}
.x2{left:115.596000pt;}
.xd{left:128.960000pt;}
.x29{left:143.596000pt;}
.x1d{left:158.320000pt;}
.x1b{left:163.280000pt;}
.x19{left:164.400000pt;}
.x1e{left:166.345120pt;}
.x1f{left:167.802800pt;}
.x4{left:175.040000pt;}
.x1c{left:177.520000pt;}
.x21{left:179.120000pt;}
.x10{left:180.960000pt;}
.x5{left:182.040000pt;}
.x22{left:183.280000pt;}
.x24{left:185.024960pt;}
.x23{left:191.270640pt;}
.x28{left:192.206480pt;}
.xf{left:194.000000pt;}
.x12{left:195.755360pt;}
.x27{left:197.239200pt;}
.x11{left:198.160000pt;}
.x16{left:199.930000pt;}
.x25{left:202.240480pt;}
.x15{left:204.001440pt;}
.x13{left:205.682480pt;}
.x14{left:207.618960pt;}
.x18{left:209.440000pt;}
.x17{left:212.251120pt;}
.x20{left:226.800000pt;}
.x1a{left:228.420880pt;}
.x26{left:232.560000pt;}
.x7{left:254.400000pt;}
.xb{left:384.000000pt;}
.xe{left:591.920000pt;}
.x8{left:718.160000pt;}
}




    .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; }
  