
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_5bdaff6f90c265d35e72913a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_de7d91a8e0855ffdacbccae8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_a3a357290bd8176847ad2930.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;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_dfbcb94ff92b2dd76747a0d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_27e1f14d16e382d85aac2361.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.137667;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_db1ffb3d46497289456346b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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_3c033a6d638b9b3953fe0466.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_4e418696c16150ecb9d300ba.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_e724c4534f164530c88680ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.886000;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_f722201a64a1a837d2ffde2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.886000;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_d2cc3687a4ef5cb1d4444867.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.943000;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_5246116fc1fc1e810263f4df.woff2')format("woff");}.fff{font-family:fff;line-height:0.943000;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.lsa{letter-spacing:-1.449000px;}
.lsb{letter-spacing:-1.197000px;}
.lse{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.945000px;}
.ls14{letter-spacing:-0.819000px;}
.ls3{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.693000px;}
.ls13{letter-spacing:-0.630000px;}
.ls15{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.441000px;}
.ls6{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.315000px;}
.lsf{letter-spacing:-0.189000px;}
.ls17{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls16{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.126000px;}
.ls11{letter-spacing:0.189000px;}
.ls5{letter-spacing:0.315000px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.693000px;}
.ls1a{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.945000px;}
.ls18{letter-spacing:1.008000px;}
.ls1b{letter-spacing:9.702000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws9{word-spacing:-63.315000px;}
.wsa{word-spacing:-63.189000px;}
.ws2{word-spacing:-57.318000px;}
.ws8{word-spacing:-54.873000px;}
.ws4e{word-spacing:-13.005000px;}
.ws61{word-spacing:-12.033000px;}
.ws7{word-spacing:-11.151000px;}
.wsb{word-spacing:-10.836000px;}
.ws6f{word-spacing:-9.702000px;}
.ws67{word-spacing:-2.820000px;}
.ws63{word-spacing:-2.640000px;}
.ws5e{word-spacing:-1.377000px;}
.ws6b{word-spacing:-1.071000px;}
.ws54{word-spacing:-0.945000px;}
.ws6a{word-spacing:-0.756000px;}
.ws23{word-spacing:-0.693000px;}
.ws1a{word-spacing:-0.504000px;}
.wsd{word-spacing:-0.360000px;}
.ws16{word-spacing:-0.315000px;}
.ws1f{word-spacing:-0.252000px;}
.ws51{word-spacing:-0.189000px;}
.ws1b{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws3e{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws39{word-spacing:0.126000px;}
.ws2f{word-spacing:0.189000px;}
.ws29{word-spacing:0.315000px;}
.ws20{word-spacing:0.378000px;}
.ws4a{word-spacing:0.441000px;}
.ws2e{word-spacing:0.504000px;}
.ws34{word-spacing:0.630000px;}
.ws11{word-spacing:0.660000px;}
.ws21{word-spacing:0.693000px;}
.ws32{word-spacing:0.756000px;}
.ws35{word-spacing:0.819000px;}
.ws33{word-spacing:0.945000px;}
.ws2c{word-spacing:1.008000px;}
.wse{word-spacing:1.080000px;}
.ws22{word-spacing:1.197000px;}
.ws1d{word-spacing:1.449000px;}
.ws1e{word-spacing:1.764000px;}
.ws13{word-spacing:1.800000px;}
.ws52{word-spacing:2.205000px;}
.ws62{word-spacing:2.580000px;}
.ws12{word-spacing:2.820000px;}
.wsf{word-spacing:2.940000px;}
.ws65{word-spacing:3.840000px;}
.ws66{word-spacing:3.960000px;}
.ws68{word-spacing:4.500000px;}
.ws5c{word-spacing:4.536000px;}
.ws49{word-spacing:4.851000px;}
.ws40{word-spacing:4.914000px;}
.ws43{word-spacing:5.292000px;}
.ws48{word-spacing:5.607000px;}
.ws10{word-spacing:5.700000px;}
.ws5a{word-spacing:6.426000px;}
.ws3c{word-spacing:6.741000px;}
.ws47{word-spacing:7.371000px;}
.ws64{word-spacing:7.560000px;}
.ws24{word-spacing:7.623000px;}
.ws44{word-spacing:8.127000px;}
.ws2d{word-spacing:8.190000px;}
.ws4f{word-spacing:8.253000px;}
.ws46{word-spacing:8.316000px;}
.ws6c{word-spacing:8.694000px;}
.ws4c{word-spacing:9.198000px;}
.ws3b{word-spacing:9.639000px;}
.ws56{word-spacing:9.765000px;}
.ws59{word-spacing:10.269000px;}
.ws5d{word-spacing:10.458000px;}
.ws55{word-spacing:10.962000px;}
.ws19{word-spacing:11.340000px;}
.ws70{word-spacing:11.466000px;}
.ws58{word-spacing:11.655000px;}
.ws6d{word-spacing:11.781000px;}
.ws26{word-spacing:12.663000px;}
.ws69{word-spacing:12.789000px;}
.ws3f{word-spacing:12.852000px;}
.ws5b{word-spacing:13.293000px;}
.ws50{word-spacing:13.671000px;}
.ws18{word-spacing:14.364000px;}
.ws30{word-spacing:15.183000px;}
.ws27{word-spacing:15.372000px;}
.ws25{word-spacing:15.435000px;}
.ws3a{word-spacing:15.687000px;}
.ws31{word-spacing:19.026000px;}
.ws3d{word-spacing:19.845000px;}
.ws2b{word-spacing:20.286000px;}
.ws45{word-spacing:20.853000px;}
.ws15{word-spacing:21.357000px;}
.ws28{word-spacing:21.483000px;}
.ws53{word-spacing:21.798000px;}
.ws42{word-spacing:22.302000px;}
.ws6e{word-spacing:23.247000px;}
.ws1c{word-spacing:23.688000px;}
.ws4b{word-spacing:25.830000px;}
.ws57{word-spacing:27.405000px;}
.ws17{word-spacing:27.720000px;}
.ws14{word-spacing:29.169000px;}
.ws37{word-spacing:30.681000px;}
.ws41{word-spacing:31.374000px;}
.ws2a{word-spacing:32.634000px;}
.ws36{word-spacing:44.352000px;}
.ws6{word-spacing:419.616600px;}
.wsc{word-spacing:419.617200px;}
.ws60{word-spacing:545.042400px;}
.ws5f{word-spacing:6222.816000px;}
.ws4d{word-spacing:6229.008000px;}
.ws38{word-spacing:6231.960000px;}
.ws5{word-spacing:6239.664000px;}
._1d{margin-left:-15.084000px;}
._23{margin-left:-13.872000px;}
._1b{margin-left:-12.707990px;}
._5{margin-left:-9.279902px;}
._7{margin-left:-6.652488px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._6{margin-left:-1.056000px;}
._a{width:1.528500px;}
._11{width:3.337500px;}
._b{width:5.226905px;}
._9{width:6.912000px;}
._14{width:8.481602px;}
._8{width:9.654000px;}
._d{width:11.251800px;}
._c{width:13.929300px;}
._10{width:15.066602px;}
._e{width:16.978500px;}
._f{width:18.842702px;}
._18{width:20.092200px;}
._1f{width:21.794405px;}
._16{width:23.171400px;}
._17{width:24.867905px;}
._1a{width:26.636400px;}
._19{width:27.828002px;}
._1e{width:30.801905px;}
._13{width:32.053802px;}
._12{width:33.327000px;}
._1c{width:34.784102px;}
._22{width:36.200702px;}
._20{width:40.950000px;}
._28{width:44.758500px;}
._27{width:50.730902px;}
._25{width:54.120000px;}
._4{width:77.300098px;}
._15{width:80.509214px;}
._26{width:82.701312px;}
._21{width:678.074712px;}
._24{width:679.491912px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs9{font-size:51.000000px;}
.fs8{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.ya6{bottom:47.834700px;}
.y1eb{bottom:62.834700px;}
.yc9{bottom:95.871450px;}
.y1d5{bottom:95.934450px;}
.y12c{bottom:95.939700px;}
.y34{bottom:95.955450px;}
.y7b{bottom:95.960700px;}
.ya4{bottom:96.007950px;}
.y1ea{bottom:96.028950px;}
.yf6{bottom:96.076200px;}
.y50{bottom:96.081450px;}
.y10b{bottom:96.170700px;}
.y15b{bottom:96.175950px;}
.yc8{bottom:116.866200px;}
.y1d4{bottom:116.929200px;}
.y12b{bottom:116.934450px;}
.y33{bottom:116.950200px;}
.y7a{bottom:116.955450px;}
.ya3{bottom:117.002700px;}
.y1e9{bottom:117.023700px;}
.yf5{bottom:117.070950px;}
.y4f{bottom:117.076200px;}
.y100{bottom:117.118200px;}
.y10a{bottom:117.165450px;}
.y15a{bottom:117.170700px;}
.yc7{bottom:137.860950px;}
.y1d3{bottom:137.923950px;}
.y12a{bottom:137.929200px;}
.y32{bottom:137.944950px;}
.y79{bottom:137.950200px;}
.ya2{bottom:137.997450px;}
.y1e8{bottom:138.018450px;}
.yf4{bottom:138.065700px;}
.y4e{bottom:138.070950px;}
.yff{bottom:138.112950px;}
.y109{bottom:138.160200px;}
.y159{bottom:138.165450px;}
.yc6{bottom:158.855700px;}
.y1d2{bottom:158.918700px;}
.y129{bottom:158.923950px;}
.y31{bottom:158.939700px;}
.y78{bottom:158.944950px;}
.ya1{bottom:158.992200px;}
.y1e7{bottom:159.013200px;}
.yf3{bottom:159.060450px;}
.yfe{bottom:159.107700px;}
.y108{bottom:159.154950px;}
.y158{bottom:159.160200px;}
.yc5{bottom:179.850450px;}
.y1d1{bottom:179.913450px;}
.y128{bottom:179.918700px;}
.y30{bottom:179.934450px;}
.y77{bottom:179.939700px;}
.ya0{bottom:179.986950px;}
.y1e6{bottom:180.007950px;}
.y4d{bottom:180.076200px;}
.yfd{bottom:180.102450px;}
.y107{bottom:180.149700px;}
.y157{bottom:180.154950px;}
.yc4{bottom:200.845200px;}
.y19b{bottom:200.884950px;}
.y1d0{bottom:200.908200px;}
.y127{bottom:200.913450px;}
.y2f{bottom:200.929200px;}
.y76{bottom:200.934450px;}
.y9f{bottom:200.981700px;}
.y1e5{bottom:201.002700px;}
.yf2{bottom:201.065700px;}
.y4c{bottom:201.070950px;}
.yfc{bottom:201.097200px;}
.y106{bottom:201.144450px;}
.y156{bottom:201.149700px;}
.yc3{bottom:221.839950px;}
.y19a{bottom:221.884200px;}
.y1cf{bottom:221.902950px;}
.y126{bottom:221.908200px;}
.y2e{bottom:221.923950px;}
.y75{bottom:221.929200px;}
.y9e{bottom:221.976450px;}
.y1e4{bottom:221.997450px;}
.yf1{bottom:222.060450px;}
.y4b{bottom:222.065700px;}
.yfb{bottom:222.091950px;}
.y105{bottom:222.139200px;}
.y155{bottom:222.144450px;}
.yc2{bottom:242.834700px;}
.y177{bottom:242.857950px;}
.y199{bottom:242.883450px;}
.y1ce{bottom:242.897700px;}
.y125{bottom:242.902950px;}
.y2d{bottom:242.918700px;}
.y74{bottom:242.923950px;}
.y9d{bottom:242.971200px;}
.y1e3{bottom:242.992200px;}
.yf0{bottom:243.055200px;}
.y4a{bottom:243.060450px;}
.yfa{bottom:243.086700px;}
.y104{bottom:243.133950px;}
.y154{bottom:243.139200px;}
.y176{bottom:263.857200px;}
.y1bc{bottom:263.863950px;}
.y198{bottom:263.882700px;}
.y1cd{bottom:263.892450px;}
.y2c{bottom:263.913450px;}
.y73{bottom:263.918700px;}
.yef{bottom:264.049950px;}
.y49{bottom:264.055200px;}
.yf9{bottom:264.081450px;}
.y103{bottom:264.128700px;}
.y153{bottom:264.133950px;}
.yc1{bottom:284.834700px;}
.y175{bottom:284.856450px;}
.y1bb{bottom:284.863200px;}
.y197{bottom:284.881950px;}
.y1cc{bottom:284.887200px;}
.y2b{bottom:284.908200px;}
.y72{bottom:284.913450px;}
.y9c{bottom:284.976450px;}
.y1e2{bottom:284.997450px;}
.yee{bottom:285.044700px;}
.y48{bottom:285.049950px;}
.yf8{bottom:285.076200px;}
.y102{bottom:285.123450px;}
.y152{bottom:285.128700px;}
.y1ba{bottom:305.862450px;}
.y196{bottom:305.881200px;}
.y1cb{bottom:305.881950px;}
.y2a{bottom:305.902950px;}
.y71{bottom:305.908200px;}
.y1e1{bottom:305.992200px;}
.yed{bottom:306.039450px;}
.y47{bottom:306.044700px;}
.yf7{bottom:306.070950px;}
.y101{bottom:306.118200px;}
.y151{bottom:306.123450px;}
.y174{bottom:326.854950px;}
.y1b9{bottom:326.861700px;}
.y1ca{bottom:326.876700px;}
.y195{bottom:326.880450px;}
.y124{bottom:326.897700px;}
.y9b{bottom:326.981700px;}
.y1e0{bottom:326.986950px;}
.yec{bottom:327.034200px;}
.y46{bottom:327.039450px;}
.y150{bottom:327.118200px;}
.y10c{bottom:347.834700px;}
.y173{bottom:347.854200px;}
.y1b8{bottom:347.860950px;}
.y1c9{bottom:347.871450px;}
.y194{bottom:347.879700px;}
.y123{bottom:347.892450px;}
.y29{bottom:347.908200px;}
.y70{bottom:347.913450px;}
.yc0{bottom:347.971200px;}
.y9a{bottom:347.976450px;}
.y1df{bottom:347.981700px;}
.yeb{bottom:348.028950px;}
.y45{bottom:348.034200px;}
.y14f{bottom:348.112950px;}
.y7{bottom:352.018200px;}
.y172{bottom:368.853450px;}
.y1c8{bottom:368.866200px;}
.y122{bottom:368.887200px;}
.y28{bottom:368.902950px;}
.y6f{bottom:368.908200px;}
.ybf{bottom:368.965950px;}
.y99{bottom:368.971200px;}
.y1de{bottom:368.976450px;}
.yea{bottom:369.023700px;}
.y44{bottom:369.028950px;}
.y14e{bottom:369.107700px;}
.y9{bottom:381.914100px;}
.y1b7{bottom:389.859450px;}
.y1c7{bottom:389.860950px;}
.y193{bottom:389.878200px;}
.y121{bottom:389.881950px;}
.y27{bottom:389.897700px;}
.y6e{bottom:389.902950px;}
.ybe{bottom:389.960700px;}
.y98{bottom:389.965950px;}
.y1dd{bottom:389.971200px;}
.ye9{bottom:390.018450px;}
.y43{bottom:390.023700px;}
.y14d{bottom:390.102450px;}
.y171{bottom:410.851950px;}
.y1c6{bottom:410.855700px;}
.y1b6{bottom:410.858700px;}
.y120{bottom:410.876700px;}
.y192{bottom:410.877450px;}
.y26{bottom:410.892450px;}
.y6d{bottom:410.897700px;}
.ybd{bottom:410.955450px;}
.y1dc{bottom:410.965950px;}
.ye8{bottom:411.013200px;}
.y42{bottom:411.018450px;}
.y14c{bottom:411.097200px;}
.y1c5{bottom:431.850450px;}
.y170{bottom:431.851200px;}
.y1b5{bottom:431.857950px;}
.y11f{bottom:431.871450px;}
.y191{bottom:431.876700px;}
.y25{bottom:431.887200px;}
.y6c{bottom:431.892450px;}
.ybc{bottom:431.950200px;}
.y1db{bottom:431.960700px;}
.y97{bottom:431.971200px;}
.ye7{bottom:432.007950px;}
.y41{bottom:432.013200px;}
.y14b{bottom:432.091950px;}
.y6{bottom:445.018200px;}
.y1c4{bottom:452.845200px;}
.y16f{bottom:452.850450px;}
.y1b4{bottom:452.857200px;}
.y11e{bottom:452.866200px;}
.y190{bottom:452.875950px;}
.y24{bottom:452.881950px;}
.y6b{bottom:452.887200px;}
.ybb{bottom:452.944950px;}
.y1da{bottom:452.955450px;}
.y96{bottom:452.965950px;}
.ye6{bottom:453.002700px;}
.y40{bottom:453.007950px;}
.y14a{bottom:453.086700px;}
.y1c3{bottom:473.839950px;}
.y16e{bottom:473.849700px;}
.y11d{bottom:473.860950px;}
.y18f{bottom:473.875200px;}
.y23{bottom:473.876700px;}
.y6a{bottom:473.881950px;}
.yba{bottom:473.939700px;}
.y1d9{bottom:473.950200px;}
.y95{bottom:473.960700px;}
.ye5{bottom:473.997450px;}
.y3f{bottom:474.002700px;}
.y149{bottom:474.081450px;}
.y1c2{bottom:494.834700px;}
.y11c{bottom:494.855700px;}
.y22{bottom:494.871450px;}
.y69{bottom:494.876700px;}
.yb9{bottom:494.934450px;}
.y1d8{bottom:494.944950px;}
.y94{bottom:494.955450px;}
.y3e{bottom:494.997450px;}
.y148{bottom:495.076200px;}
.y16d{bottom:515.848200px;}
.y11b{bottom:515.850450px;}
.y1b3{bottom:515.854950px;}
.y21{bottom:515.866200px;}
.y68{bottom:515.871450px;}
.y18e{bottom:515.873700px;}
.yb8{bottom:515.929200px;}
.y1d7{bottom:515.939700px;}
.y93{bottom:515.950200px;}
.y3d{bottom:515.992200px;}
.ye4{bottom:516.002700px;}
.y147{bottom:516.070950px;}
.y1c1{bottom:536.834700px;}
.y11a{bottom:536.845200px;}
.y16c{bottom:536.847450px;}
.y1b2{bottom:536.854200px;}
.y20{bottom:536.860950px;}
.y67{bottom:536.866200px;}
.y18d{bottom:536.872950px;}
.yb7{bottom:536.923950px;}
.y1d6{bottom:536.934450px;}
.y92{bottom:536.944950px;}
.y3c{bottom:536.986950px;}
.ye3{bottom:536.997450px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y119{bottom:557.839950px;}
.y16b{bottom:557.846700px;}
.y1b1{bottom:557.853450px;}
.y1f{bottom:557.855700px;}
.y66{bottom:557.860950px;}
.y18c{bottom:557.872200px;}
.yb6{bottom:557.918700px;}
.y91{bottom:557.939700px;}
.y3b{bottom:557.981700px;}
.ye2{bottom:557.992200px;}
.y146{bottom:558.076200px;}
.y118{bottom:578.834700px;}
.y1e{bottom:578.850450px;}
.y65{bottom:578.855700px;}
.y18b{bottom:578.871450px;}
.yb5{bottom:578.913450px;}
.y90{bottom:578.934450px;}
.ye1{bottom:578.986950px;}
.y145{bottom:579.070950px;}
.y1d{bottom:599.845200px;}
.y64{bottom:599.850450px;}
.y1b0{bottom:599.851950px;}
.y18a{bottom:599.870700px;}
.yb4{bottom:599.908200px;}
.y8f{bottom:599.929200px;}
.ye0{bottom:599.981700px;}
.y3a{bottom:599.986950px;}
.y144{bottom:600.065700px;}
.y117{bottom:620.834700px;}
.y1c{bottom:620.839950px;}
.y16a{bottom:620.844450px;}
.y63{bottom:620.845200px;}
.y1af{bottom:620.851200px;}
.yb3{bottom:620.902950px;}
.y8e{bottom:620.923950px;}
.ydf{bottom:620.976450px;}
.y39{bottom:620.981700px;}
.y143{bottom:621.060450px;}
.y4{bottom:631.018200px;}
.y1b{bottom:641.834700px;}
.y62{bottom:641.839950px;}
.y169{bottom:641.843700px;}
.y1ae{bottom:641.850450px;}
.y189{bottom:641.869200px;}
.yb2{bottom:641.897700px;}
.y8d{bottom:641.918700px;}
.yde{bottom:641.971200px;}
.y38{bottom:641.976450px;}
.y142{bottom:642.055200px;}
.y61{bottom:662.834700px;}
.y1ad{bottom:662.849700px;}
.y188{bottom:662.868450px;}
.yb1{bottom:662.892450px;}
.y8c{bottom:662.913450px;}
.ydd{bottom:662.965950px;}
.y37{bottom:662.971200px;}
.y141{bottom:663.049950px;}
.y1a{bottom:683.834700px;}
.y168{bottom:683.842200px;}
.y1ac{bottom:683.848950px;}
.y187{bottom:683.867700px;}
.yb0{bottom:683.887200px;}
.y8b{bottom:683.908200px;}
.y116{bottom:683.918700px;}
.ydc{bottom:683.960700px;}
.y36{bottom:683.965950px;}
.y140{bottom:684.044700px;}
.y19{bottom:704.834700px;}
.y167{bottom:704.841450px;}
.y1ab{bottom:704.848200px;}
.y186{bottom:704.866950px;}
.yaf{bottom:704.881950px;}
.y8a{bottom:704.902950px;}
.y115{bottom:704.913450px;}
.ydb{bottom:704.955450px;}
.y35{bottom:704.960700px;}
.y13f{bottom:705.039450px;}
.y1c0{bottom:725.834700px;}
.y166{bottom:725.840700px;}
.y185{bottom:725.866200px;}
.yae{bottom:725.876700px;}
.y89{bottom:725.897700px;}
.y114{bottom:725.908200px;}
.yda{bottom:725.950200px;}
.y13e{bottom:726.034200px;}
.y1bf{bottom:746.834700px;}
.y165{bottom:746.839950px;}
.y1aa{bottom:746.846700px;}
.yad{bottom:746.871450px;}
.y88{bottom:746.892450px;}
.y113{bottom:746.902950px;}
.yd9{bottom:746.944950px;}
.y13d{bottom:747.028950px;}
.y3{bottom:751.738650px;}
.y1be{bottom:767.834700px;}
.y1a9{bottom:767.845950px;}
.y184{bottom:767.864700px;}
.y87{bottom:767.887200px;}
.y112{bottom:767.897700px;}
.y60{bottom:767.913450px;}
.yd8{bottom:767.939700px;}
.y13c{bottom:768.023700px;}
.y18{bottom:788.834700px;}
.y164{bottom:788.838450px;}
.y1a8{bottom:788.845200px;}
.y183{bottom:788.863950px;}
.yac{bottom:788.876700px;}
.y86{bottom:788.881950px;}
.y111{bottom:788.892450px;}
.y5f{bottom:788.908200px;}
.y13b{bottom:789.018450px;}
.y2{bottom:791.931000px;}
.y17{bottom:809.834700px;}
.y163{bottom:809.837700px;}
.y182{bottom:809.863200px;}
.y85{bottom:809.876700px;}
.y110{bottom:809.887200px;}
.y5e{bottom:809.902950px;}
.yd7{bottom:809.944950px;}
.y13a{bottom:810.013200px;}
.y16{bottom:830.834700px;}
.y1a7{bottom:830.843700px;}
.y181{bottom:830.862450px;}
.y84{bottom:830.871450px;}
.yab{bottom:830.881950px;}
.y5d{bottom:830.897700px;}
.yd6{bottom:830.939700px;}
.y139{bottom:831.007950px;}
.y15{bottom:851.834700px;}
.y162{bottom:851.836200px;}
.y1a6{bottom:851.842950px;}
.y83{bottom:851.866200px;}
.yaa{bottom:851.876700px;}
.y5c{bottom:851.892450px;}
.yd5{bottom:851.934450px;}
.y138{bottom:852.002700px;}
.y1{bottom:859.112850px;}
.y14{bottom:872.834700px;}
.y161{bottom:872.835450px;}
.y1a5{bottom:872.842200px;}
.y82{bottom:872.860950px;}
.ya9{bottom:872.871450px;}
.y5b{bottom:872.887200px;}
.yd4{bottom:872.929200px;}
.y137{bottom:872.997450px;}
.y13{bottom:893.834700px;}
.y1a4{bottom:893.841450px;}
.y81{bottom:893.855700px;}
.y180{bottom:893.860200px;}
.ya8{bottom:893.866200px;}
.y5a{bottom:893.881950px;}
.yd3{bottom:893.923950px;}
.y136{bottom:893.992200px;}
.y12{bottom:914.834700px;}
.y1a3{bottom:914.840700px;}
.y80{bottom:914.850450px;}
.y17f{bottom:914.859450px;}
.y10f{bottom:914.860950px;}
.y59{bottom:914.876700px;}
.yd2{bottom:914.918700px;}
.y135{bottom:914.986950px;}
.y11{bottom:935.834700px;}
.y7f{bottom:935.845200px;}
.y10e{bottom:935.855700px;}
.y17e{bottom:935.858700px;}
.y58{bottom:935.871450px;}
.yd1{bottom:935.913450px;}
.y134{bottom:935.981700px;}
.y10{bottom:956.834700px;}
.y1a2{bottom:956.839200px;}
.y7e{bottom:956.839950px;}
.y10d{bottom:956.850450px;}
.y57{bottom:956.866200px;}
.yd0{bottom:956.908200px;}
.y133{bottom:956.976450px;}
.yf{bottom:977.834700px;}
.y1a1{bottom:977.838450px;}
.y17d{bottom:977.857200px;}
.y56{bottom:977.860950px;}
.ycf{bottom:977.902950px;}
.y132{bottom:977.971200px;}
.y7d{bottom:998.829450px;}
.y1a0{bottom:998.837700px;}
.y55{bottom:998.855700px;}
.y17c{bottom:998.856450px;}
.yce{bottom:998.897700px;}
.y131{bottom:998.965950px;}
.y160{bottom:999.202200px;}
.y1bd{bottom:1007.834700px;}
.y19f{bottom:1019.836950px;}
.y54{bottom:1019.850450px;}
.y17b{bottom:1019.855700px;}
.ycd{bottom:1019.892450px;}
.y130{bottom:1019.960700px;}
.y15f{bottom:1020.196950px;}
.ye{bottom:1034.834700px;}
.y7c{bottom:1040.834700px;}
.y19e{bottom:1040.836200px;}
.y53{bottom:1040.845200px;}
.y17a{bottom:1040.854950px;}
.ycc{bottom:1040.887200px;}
.y12f{bottom:1040.955450px;}
.y15e{bottom:1041.191700px;}
.yd{bottom:1061.834700px;}
.y19d{bottom:1061.835450px;}
.y52{bottom:1061.839950px;}
.y179{bottom:1061.854200px;}
.ycb{bottom:1061.881950px;}
.y12e{bottom:1061.950200px;}
.y15d{bottom:1062.186450px;}
.y51{bottom:1082.834700px;}
.y178{bottom:1082.853450px;}
.yca{bottom:1082.876700px;}
.y12d{bottom:1082.944950px;}
.y15c{bottom:1083.181200px;}
.yc{bottom:1091.331300px;}
.yb{bottom:1187.753850px;}
.ya5{bottom:1187.834700px;}
.y19c{bottom:1188.212550px;}
.h9{height:44.400000px;}
.hd{height:44.793000px;}
.hb{height:45.840000px;}
.hf{height:46.614000px;}
.hc{height:50.526000px;}
.h7{height:51.768000px;}
.he{height:52.098000px;}
.ha{height:54.840000px;}
.h8{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x9{left:132.385650px;}
.xa{left:198.460650px;}
.x2{left:223.228350px;}
.x5{left:467.717100px;}
.x6{left:977.952750px;}
.xd{left:979.750350px;}
.xc{left:982.300350px;}
.xb{left:1039.393650px;}
.xe{left:1062.280350px;}
.x7{left:1360.629900px;}
.x8{left:1377.624150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.lsa{letter-spacing:-1.288000pt;}
.lsb{letter-spacing:-1.064000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.840000pt;}
.ls14{letter-spacing:-0.728000pt;}
.ls3{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.616000pt;}
.ls13{letter-spacing:-0.560000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.392000pt;}
.ls6{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.280000pt;}
.lsf{letter-spacing:-0.168000pt;}
.ls17{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls16{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.112000pt;}
.ls11{letter-spacing:0.168000pt;}
.ls5{letter-spacing:0.280000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.616000pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.840000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:8.624000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws9{word-spacing:-56.280000pt;}
.wsa{word-spacing:-56.168000pt;}
.ws2{word-spacing:-50.949333pt;}
.ws8{word-spacing:-48.776000pt;}
.ws4e{word-spacing:-11.560000pt;}
.ws61{word-spacing:-10.696000pt;}
.ws7{word-spacing:-9.912000pt;}
.wsb{word-spacing:-9.632000pt;}
.ws6f{word-spacing:-8.624000pt;}
.ws67{word-spacing:-2.506667pt;}
.ws63{word-spacing:-2.346667pt;}
.ws5e{word-spacing:-1.224000pt;}
.ws6b{word-spacing:-0.952000pt;}
.ws54{word-spacing:-0.840000pt;}
.ws6a{word-spacing:-0.672000pt;}
.ws23{word-spacing:-0.616000pt;}
.ws1a{word-spacing:-0.448000pt;}
.wsd{word-spacing:-0.320000pt;}
.ws16{word-spacing:-0.280000pt;}
.ws1f{word-spacing:-0.224000pt;}
.ws51{word-spacing:-0.168000pt;}
.ws1b{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws39{word-spacing:0.112000pt;}
.ws2f{word-spacing:0.168000pt;}
.ws29{word-spacing:0.280000pt;}
.ws20{word-spacing:0.336000pt;}
.ws4a{word-spacing:0.392000pt;}
.ws2e{word-spacing:0.448000pt;}
.ws34{word-spacing:0.560000pt;}
.ws11{word-spacing:0.586667pt;}
.ws21{word-spacing:0.616000pt;}
.ws32{word-spacing:0.672000pt;}
.ws35{word-spacing:0.728000pt;}
.ws33{word-spacing:0.840000pt;}
.ws2c{word-spacing:0.896000pt;}
.wse{word-spacing:0.960000pt;}
.ws22{word-spacing:1.064000pt;}
.ws1d{word-spacing:1.288000pt;}
.ws1e{word-spacing:1.568000pt;}
.ws13{word-spacing:1.600000pt;}
.ws52{word-spacing:1.960000pt;}
.ws62{word-spacing:2.293333pt;}
.ws12{word-spacing:2.506667pt;}
.wsf{word-spacing:2.613333pt;}
.ws65{word-spacing:3.413333pt;}
.ws66{word-spacing:3.520000pt;}
.ws68{word-spacing:4.000000pt;}
.ws5c{word-spacing:4.032000pt;}
.ws49{word-spacing:4.312000pt;}
.ws40{word-spacing:4.368000pt;}
.ws43{word-spacing:4.704000pt;}
.ws48{word-spacing:4.984000pt;}
.ws10{word-spacing:5.066667pt;}
.ws5a{word-spacing:5.712000pt;}
.ws3c{word-spacing:5.992000pt;}
.ws47{word-spacing:6.552000pt;}
.ws64{word-spacing:6.720000pt;}
.ws24{word-spacing:6.776000pt;}
.ws44{word-spacing:7.224000pt;}
.ws2d{word-spacing:7.280000pt;}
.ws4f{word-spacing:7.336000pt;}
.ws46{word-spacing:7.392000pt;}
.ws6c{word-spacing:7.728000pt;}
.ws4c{word-spacing:8.176000pt;}
.ws3b{word-spacing:8.568000pt;}
.ws56{word-spacing:8.680000pt;}
.ws59{word-spacing:9.128000pt;}
.ws5d{word-spacing:9.296000pt;}
.ws55{word-spacing:9.744000pt;}
.ws19{word-spacing:10.080000pt;}
.ws70{word-spacing:10.192000pt;}
.ws58{word-spacing:10.360000pt;}
.ws6d{word-spacing:10.472000pt;}
.ws26{word-spacing:11.256000pt;}
.ws69{word-spacing:11.368000pt;}
.ws3f{word-spacing:11.424000pt;}
.ws5b{word-spacing:11.816000pt;}
.ws50{word-spacing:12.152000pt;}
.ws18{word-spacing:12.768000pt;}
.ws30{word-spacing:13.496000pt;}
.ws27{word-spacing:13.664000pt;}
.ws25{word-spacing:13.720000pt;}
.ws3a{word-spacing:13.944000pt;}
.ws31{word-spacing:16.912000pt;}
.ws3d{word-spacing:17.640000pt;}
.ws2b{word-spacing:18.032000pt;}
.ws45{word-spacing:18.536000pt;}
.ws15{word-spacing:18.984000pt;}
.ws28{word-spacing:19.096000pt;}
.ws53{word-spacing:19.376000pt;}
.ws42{word-spacing:19.824000pt;}
.ws6e{word-spacing:20.664000pt;}
.ws1c{word-spacing:21.056000pt;}
.ws4b{word-spacing:22.960000pt;}
.ws57{word-spacing:24.360000pt;}
.ws17{word-spacing:24.640000pt;}
.ws14{word-spacing:25.928000pt;}
.ws37{word-spacing:27.272000pt;}
.ws41{word-spacing:27.888000pt;}
.ws2a{word-spacing:29.008000pt;}
.ws36{word-spacing:39.424000pt;}
.ws6{word-spacing:372.992533pt;}
.wsc{word-spacing:372.993067pt;}
.ws60{word-spacing:484.482133pt;}
.ws5f{word-spacing:5531.392000pt;}
.ws4d{word-spacing:5536.896000pt;}
.ws38{word-spacing:5539.520000pt;}
.ws5{word-spacing:5546.368000pt;}
._1d{margin-left:-13.408000pt;}
._23{margin-left:-12.330667pt;}
._1b{margin-left:-11.295991pt;}
._5{margin-left:-8.248802pt;}
._7{margin-left:-5.913323pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._6{margin-left:-0.938667pt;}
._a{width:1.358667pt;}
._11{width:2.966667pt;}
._b{width:4.646138pt;}
._9{width:6.144000pt;}
._14{width:7.539202pt;}
._8{width:8.581333pt;}
._d{width:10.001600pt;}
._c{width:12.381600pt;}
._10{width:13.392535pt;}
._e{width:15.092000pt;}
._f{width:16.749069pt;}
._18{width:17.859733pt;}
._1f{width:19.372804pt;}
._16{width:20.596800pt;}
._17{width:22.104804pt;}
._1a{width:23.676800pt;}
._19{width:24.736002pt;}
._1e{width:27.379471pt;}
._13{width:28.492269pt;}
._12{width:29.624000pt;}
._1c{width:30.919202pt;}
._22{width:32.178402pt;}
._20{width:36.400000pt;}
._28{width:39.785333pt;}
._27{width:45.094135pt;}
._25{width:48.106667pt;}
._4{width:68.711198pt;}
._15{width:71.563746pt;}
._26{width:73.512277pt;}
._21{width:602.733077pt;}
._24{width:603.992811pt;}
.fs9{font-size:45.333333pt;}
.fs8{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.ya6{bottom:42.519733pt;}
.y1eb{bottom:55.853067pt;}
.yc9{bottom:85.219067pt;}
.y1d5{bottom:85.275067pt;}
.y12c{bottom:85.279733pt;}
.y34{bottom:85.293733pt;}
.y7b{bottom:85.298400pt;}
.ya4{bottom:85.340400pt;}
.y1ea{bottom:85.359067pt;}
.yf6{bottom:85.401067pt;}
.y50{bottom:85.405733pt;}
.y10b{bottom:85.485067pt;}
.y15b{bottom:85.489733pt;}
.yc8{bottom:103.881067pt;}
.y1d4{bottom:103.937067pt;}
.y12b{bottom:103.941733pt;}
.y33{bottom:103.955733pt;}
.y7a{bottom:103.960400pt;}
.ya3{bottom:104.002400pt;}
.y1e9{bottom:104.021067pt;}
.yf5{bottom:104.063067pt;}
.y4f{bottom:104.067733pt;}
.y100{bottom:104.105067pt;}
.y10a{bottom:104.147067pt;}
.y15a{bottom:104.151733pt;}
.yc7{bottom:122.543067pt;}
.y1d3{bottom:122.599067pt;}
.y12a{bottom:122.603733pt;}
.y32{bottom:122.617733pt;}
.y79{bottom:122.622400pt;}
.ya2{bottom:122.664400pt;}
.y1e8{bottom:122.683067pt;}
.yf4{bottom:122.725067pt;}
.y4e{bottom:122.729733pt;}
.yff{bottom:122.767067pt;}
.y109{bottom:122.809067pt;}
.y159{bottom:122.813733pt;}
.yc6{bottom:141.205067pt;}
.y1d2{bottom:141.261067pt;}
.y129{bottom:141.265733pt;}
.y31{bottom:141.279733pt;}
.y78{bottom:141.284400pt;}
.ya1{bottom:141.326400pt;}
.y1e7{bottom:141.345067pt;}
.yf3{bottom:141.387067pt;}
.yfe{bottom:141.429067pt;}
.y108{bottom:141.471067pt;}
.y158{bottom:141.475733pt;}
.yc5{bottom:159.867067pt;}
.y1d1{bottom:159.923067pt;}
.y128{bottom:159.927733pt;}
.y30{bottom:159.941733pt;}
.y77{bottom:159.946400pt;}
.ya0{bottom:159.988400pt;}
.y1e6{bottom:160.007067pt;}
.y4d{bottom:160.067733pt;}
.yfd{bottom:160.091067pt;}
.y107{bottom:160.133067pt;}
.y157{bottom:160.137733pt;}
.yc4{bottom:178.529067pt;}
.y19b{bottom:178.564400pt;}
.y1d0{bottom:178.585067pt;}
.y127{bottom:178.589733pt;}
.y2f{bottom:178.603733pt;}
.y76{bottom:178.608400pt;}
.y9f{bottom:178.650400pt;}
.y1e5{bottom:178.669067pt;}
.yf2{bottom:178.725067pt;}
.y4c{bottom:178.729733pt;}
.yfc{bottom:178.753067pt;}
.y106{bottom:178.795067pt;}
.y156{bottom:178.799733pt;}
.yc3{bottom:197.191067pt;}
.y19a{bottom:197.230400pt;}
.y1cf{bottom:197.247067pt;}
.y126{bottom:197.251733pt;}
.y2e{bottom:197.265733pt;}
.y75{bottom:197.270400pt;}
.y9e{bottom:197.312400pt;}
.y1e4{bottom:197.331067pt;}
.yf1{bottom:197.387067pt;}
.y4b{bottom:197.391733pt;}
.yfb{bottom:197.415067pt;}
.y105{bottom:197.457067pt;}
.y155{bottom:197.461733pt;}
.yc2{bottom:215.853067pt;}
.y177{bottom:215.873733pt;}
.y199{bottom:215.896400pt;}
.y1ce{bottom:215.909067pt;}
.y125{bottom:215.913733pt;}
.y2d{bottom:215.927733pt;}
.y74{bottom:215.932400pt;}
.y9d{bottom:215.974400pt;}
.y1e3{bottom:215.993067pt;}
.yf0{bottom:216.049067pt;}
.y4a{bottom:216.053733pt;}
.yfa{bottom:216.077067pt;}
.y104{bottom:216.119067pt;}
.y154{bottom:216.123733pt;}
.y176{bottom:234.539733pt;}
.y1bc{bottom:234.545733pt;}
.y198{bottom:234.562400pt;}
.y1cd{bottom:234.571067pt;}
.y2c{bottom:234.589733pt;}
.y73{bottom:234.594400pt;}
.yef{bottom:234.711067pt;}
.y49{bottom:234.715733pt;}
.yf9{bottom:234.739067pt;}
.y103{bottom:234.781067pt;}
.y153{bottom:234.785733pt;}
.yc1{bottom:253.186400pt;}
.y175{bottom:253.205733pt;}
.y1bb{bottom:253.211733pt;}
.y197{bottom:253.228400pt;}
.y1cc{bottom:253.233067pt;}
.y2b{bottom:253.251733pt;}
.y72{bottom:253.256400pt;}
.y9c{bottom:253.312400pt;}
.y1e2{bottom:253.331067pt;}
.yee{bottom:253.373067pt;}
.y48{bottom:253.377733pt;}
.yf8{bottom:253.401067pt;}
.y102{bottom:253.443067pt;}
.y152{bottom:253.447733pt;}
.y1ba{bottom:271.877733pt;}
.y196{bottom:271.894400pt;}
.y1cb{bottom:271.895067pt;}
.y2a{bottom:271.913733pt;}
.y71{bottom:271.918400pt;}
.y1e1{bottom:271.993067pt;}
.yed{bottom:272.035067pt;}
.y47{bottom:272.039733pt;}
.yf7{bottom:272.063067pt;}
.y101{bottom:272.105067pt;}
.y151{bottom:272.109733pt;}
.y174{bottom:290.537733pt;}
.y1b9{bottom:290.543733pt;}
.y1ca{bottom:290.557067pt;}
.y195{bottom:290.560400pt;}
.y124{bottom:290.575733pt;}
.y9b{bottom:290.650400pt;}
.y1e0{bottom:290.655067pt;}
.yec{bottom:290.697067pt;}
.y46{bottom:290.701733pt;}
.y150{bottom:290.771733pt;}
.y10c{bottom:309.186400pt;}
.y173{bottom:309.203733pt;}
.y1b8{bottom:309.209733pt;}
.y1c9{bottom:309.219067pt;}
.y194{bottom:309.226400pt;}
.y123{bottom:309.237733pt;}
.y29{bottom:309.251733pt;}
.y70{bottom:309.256400pt;}
.yc0{bottom:309.307733pt;}
.y9a{bottom:309.312400pt;}
.y1df{bottom:309.317067pt;}
.yeb{bottom:309.359067pt;}
.y45{bottom:309.363733pt;}
.y14f{bottom:309.433733pt;}
.y7{bottom:312.905067pt;}
.y172{bottom:327.869733pt;}
.y1c8{bottom:327.881067pt;}
.y122{bottom:327.899733pt;}
.y28{bottom:327.913733pt;}
.y6f{bottom:327.918400pt;}
.ybf{bottom:327.969733pt;}
.y99{bottom:327.974400pt;}
.y1de{bottom:327.979067pt;}
.yea{bottom:328.021067pt;}
.y44{bottom:328.025733pt;}
.y14e{bottom:328.095733pt;}
.y9{bottom:339.479200pt;}
.y1b7{bottom:346.541733pt;}
.y1c7{bottom:346.543067pt;}
.y193{bottom:346.558400pt;}
.y121{bottom:346.561733pt;}
.y27{bottom:346.575733pt;}
.y6e{bottom:346.580400pt;}
.ybe{bottom:346.631733pt;}
.y98{bottom:346.636400pt;}
.y1dd{bottom:346.641067pt;}
.ye9{bottom:346.683067pt;}
.y43{bottom:346.687733pt;}
.y14d{bottom:346.757733pt;}
.y171{bottom:365.201733pt;}
.y1c6{bottom:365.205067pt;}
.y1b6{bottom:365.207733pt;}
.y120{bottom:365.223733pt;}
.y192{bottom:365.224400pt;}
.y26{bottom:365.237733pt;}
.y6d{bottom:365.242400pt;}
.ybd{bottom:365.293733pt;}
.y1dc{bottom:365.303067pt;}
.ye8{bottom:365.345067pt;}
.y42{bottom:365.349733pt;}
.y14c{bottom:365.419733pt;}
.y1c5{bottom:383.867067pt;}
.y170{bottom:383.867733pt;}
.y1b5{bottom:383.873733pt;}
.y11f{bottom:383.885733pt;}
.y191{bottom:383.890400pt;}
.y25{bottom:383.899733pt;}
.y6c{bottom:383.904400pt;}
.ybc{bottom:383.955733pt;}
.y1db{bottom:383.965067pt;}
.y97{bottom:383.974400pt;}
.ye7{bottom:384.007067pt;}
.y41{bottom:384.011733pt;}
.y14b{bottom:384.081733pt;}
.y6{bottom:395.571733pt;}
.y1c4{bottom:402.529067pt;}
.y16f{bottom:402.533733pt;}
.y1b4{bottom:402.539733pt;}
.y11e{bottom:402.547733pt;}
.y190{bottom:402.556400pt;}
.y24{bottom:402.561733pt;}
.y6b{bottom:402.566400pt;}
.ybb{bottom:402.617733pt;}
.y1da{bottom:402.627067pt;}
.y96{bottom:402.636400pt;}
.ye6{bottom:402.669067pt;}
.y40{bottom:402.673733pt;}
.y14a{bottom:402.743733pt;}
.y1c3{bottom:421.191067pt;}
.y16e{bottom:421.199733pt;}
.y11d{bottom:421.209733pt;}
.y18f{bottom:421.222400pt;}
.y23{bottom:421.223733pt;}
.y6a{bottom:421.228400pt;}
.yba{bottom:421.279733pt;}
.y1d9{bottom:421.289067pt;}
.y95{bottom:421.298400pt;}
.ye5{bottom:421.331067pt;}
.y3f{bottom:421.335733pt;}
.y149{bottom:421.405733pt;}
.y1c2{bottom:439.853067pt;}
.y11c{bottom:439.871733pt;}
.y22{bottom:439.885733pt;}
.y69{bottom:439.890400pt;}
.yb9{bottom:439.941733pt;}
.y1d8{bottom:439.951067pt;}
.y94{bottom:439.960400pt;}
.y3e{bottom:439.997733pt;}
.y148{bottom:440.067733pt;}
.y16d{bottom:458.531733pt;}
.y11b{bottom:458.533733pt;}
.y1b3{bottom:458.537733pt;}
.y21{bottom:458.547733pt;}
.y68{bottom:458.552400pt;}
.y18e{bottom:458.554400pt;}
.yb8{bottom:458.603733pt;}
.y1d7{bottom:458.613067pt;}
.y93{bottom:458.622400pt;}
.y3d{bottom:458.659733pt;}
.ye4{bottom:458.669067pt;}
.y147{bottom:458.729733pt;}
.y1c1{bottom:477.186400pt;}
.y11a{bottom:477.195733pt;}
.y16c{bottom:477.197733pt;}
.y1b2{bottom:477.203733pt;}
.y20{bottom:477.209733pt;}
.y67{bottom:477.214400pt;}
.y18d{bottom:477.220400pt;}
.yb7{bottom:477.265733pt;}
.y1d6{bottom:477.275067pt;}
.y92{bottom:477.284400pt;}
.y3c{bottom:477.321733pt;}
.ye3{bottom:477.331067pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y119{bottom:495.857733pt;}
.y16b{bottom:495.863733pt;}
.y1b1{bottom:495.869733pt;}
.y1f{bottom:495.871733pt;}
.y66{bottom:495.876400pt;}
.y18c{bottom:495.886400pt;}
.yb6{bottom:495.927733pt;}
.y91{bottom:495.946400pt;}
.y3b{bottom:495.983733pt;}
.ye2{bottom:495.993067pt;}
.y146{bottom:496.067733pt;}
.y118{bottom:514.519733pt;}
.y1e{bottom:514.533733pt;}
.y65{bottom:514.538400pt;}
.y18b{bottom:514.552400pt;}
.yb5{bottom:514.589733pt;}
.y90{bottom:514.608400pt;}
.ye1{bottom:514.655067pt;}
.y145{bottom:514.729733pt;}
.y1d{bottom:533.195733pt;}
.y64{bottom:533.200400pt;}
.y1b0{bottom:533.201733pt;}
.y18a{bottom:533.218400pt;}
.yb4{bottom:533.251733pt;}
.y8f{bottom:533.270400pt;}
.ye0{bottom:533.317067pt;}
.y3a{bottom:533.321733pt;}
.y144{bottom:533.391733pt;}
.y117{bottom:551.853067pt;}
.y1c{bottom:551.857733pt;}
.y16a{bottom:551.861733pt;}
.y63{bottom:551.862400pt;}
.y1af{bottom:551.867733pt;}
.yb3{bottom:551.913733pt;}
.y8e{bottom:551.932400pt;}
.ydf{bottom:551.979067pt;}
.y39{bottom:551.983733pt;}
.y143{bottom:552.053733pt;}
.y4{bottom:560.905067pt;}
.y1b{bottom:570.519733pt;}
.y62{bottom:570.524400pt;}
.y169{bottom:570.527733pt;}
.y1ae{bottom:570.533733pt;}
.y189{bottom:570.550400pt;}
.yb2{bottom:570.575733pt;}
.y8d{bottom:570.594400pt;}
.yde{bottom:570.641067pt;}
.y38{bottom:570.645733pt;}
.y142{bottom:570.715733pt;}
.y61{bottom:589.186400pt;}
.y1ad{bottom:589.199733pt;}
.y188{bottom:589.216400pt;}
.yb1{bottom:589.237733pt;}
.y8c{bottom:589.256400pt;}
.ydd{bottom:589.303067pt;}
.y37{bottom:589.307733pt;}
.y141{bottom:589.377733pt;}
.y1a{bottom:607.853067pt;}
.y168{bottom:607.859733pt;}
.y1ac{bottom:607.865733pt;}
.y187{bottom:607.882400pt;}
.yb0{bottom:607.899733pt;}
.y8b{bottom:607.918400pt;}
.y116{bottom:607.927733pt;}
.ydc{bottom:607.965067pt;}
.y36{bottom:607.969733pt;}
.y140{bottom:608.039733pt;}
.y19{bottom:626.519733pt;}
.y167{bottom:626.525733pt;}
.y1ab{bottom:626.531733pt;}
.y186{bottom:626.548400pt;}
.yaf{bottom:626.561733pt;}
.y8a{bottom:626.580400pt;}
.y115{bottom:626.589733pt;}
.ydb{bottom:626.627067pt;}
.y35{bottom:626.631733pt;}
.y13f{bottom:626.701733pt;}
.y1c0{bottom:645.186400pt;}
.y166{bottom:645.191733pt;}
.y185{bottom:645.214400pt;}
.yae{bottom:645.223733pt;}
.y89{bottom:645.242400pt;}
.y114{bottom:645.251733pt;}
.yda{bottom:645.289067pt;}
.y13e{bottom:645.363733pt;}
.y1bf{bottom:663.853067pt;}
.y165{bottom:663.857733pt;}
.y1aa{bottom:663.863733pt;}
.yad{bottom:663.885733pt;}
.y88{bottom:663.904400pt;}
.y113{bottom:663.913733pt;}
.yd9{bottom:663.951067pt;}
.y13d{bottom:664.025733pt;}
.y3{bottom:668.212133pt;}
.y1be{bottom:682.519733pt;}
.y1a9{bottom:682.529733pt;}
.y184{bottom:682.546400pt;}
.y87{bottom:682.566400pt;}
.y112{bottom:682.575733pt;}
.y60{bottom:682.589733pt;}
.yd8{bottom:682.613067pt;}
.y13c{bottom:682.687733pt;}
.y18{bottom:701.186400pt;}
.y164{bottom:701.189733pt;}
.y1a8{bottom:701.195733pt;}
.y183{bottom:701.212400pt;}
.yac{bottom:701.223733pt;}
.y86{bottom:701.228400pt;}
.y111{bottom:701.237733pt;}
.y5f{bottom:701.251733pt;}
.y13b{bottom:701.349733pt;}
.y2{bottom:703.938667pt;}
.y17{bottom:719.853067pt;}
.y163{bottom:719.855733pt;}
.y182{bottom:719.878400pt;}
.y85{bottom:719.890400pt;}
.y110{bottom:719.899733pt;}
.y5e{bottom:719.913733pt;}
.yd7{bottom:719.951067pt;}
.y13a{bottom:720.011733pt;}
.y16{bottom:738.519733pt;}
.y1a7{bottom:738.527733pt;}
.y181{bottom:738.544400pt;}
.y84{bottom:738.552400pt;}
.yab{bottom:738.561733pt;}
.y5d{bottom:738.575733pt;}
.yd6{bottom:738.613067pt;}
.y139{bottom:738.673733pt;}
.y15{bottom:757.186400pt;}
.y162{bottom:757.187733pt;}
.y1a6{bottom:757.193733pt;}
.y83{bottom:757.214400pt;}
.yaa{bottom:757.223733pt;}
.y5c{bottom:757.237733pt;}
.yd5{bottom:757.275067pt;}
.y138{bottom:757.335733pt;}
.y1{bottom:763.655867pt;}
.y14{bottom:775.853067pt;}
.y161{bottom:775.853733pt;}
.y1a5{bottom:775.859733pt;}
.y82{bottom:775.876400pt;}
.ya9{bottom:775.885733pt;}
.y5b{bottom:775.899733pt;}
.yd4{bottom:775.937067pt;}
.y137{bottom:775.997733pt;}
.y13{bottom:794.519733pt;}
.y1a4{bottom:794.525733pt;}
.y81{bottom:794.538400pt;}
.y180{bottom:794.542400pt;}
.ya8{bottom:794.547733pt;}
.y5a{bottom:794.561733pt;}
.yd3{bottom:794.599067pt;}
.y136{bottom:794.659733pt;}
.y12{bottom:813.186400pt;}
.y1a3{bottom:813.191733pt;}
.y80{bottom:813.200400pt;}
.y17f{bottom:813.208400pt;}
.y10f{bottom:813.209733pt;}
.y59{bottom:813.223733pt;}
.yd2{bottom:813.261067pt;}
.y135{bottom:813.321733pt;}
.y11{bottom:831.853067pt;}
.y7f{bottom:831.862400pt;}
.y10e{bottom:831.871733pt;}
.y17e{bottom:831.874400pt;}
.y58{bottom:831.885733pt;}
.yd1{bottom:831.923067pt;}
.y134{bottom:831.983733pt;}
.y10{bottom:850.519733pt;}
.y1a2{bottom:850.523733pt;}
.y7e{bottom:850.524400pt;}
.y10d{bottom:850.533733pt;}
.y57{bottom:850.547733pt;}
.yd0{bottom:850.585067pt;}
.y133{bottom:850.645733pt;}
.yf{bottom:869.186400pt;}
.y1a1{bottom:869.189733pt;}
.y17d{bottom:869.206400pt;}
.y56{bottom:869.209733pt;}
.ycf{bottom:869.247067pt;}
.y132{bottom:869.307733pt;}
.y7d{bottom:887.848400pt;}
.y1a0{bottom:887.855733pt;}
.y55{bottom:887.871733pt;}
.y17c{bottom:887.872400pt;}
.yce{bottom:887.909067pt;}
.y131{bottom:887.969733pt;}
.y160{bottom:888.179733pt;}
.y1bd{bottom:895.853067pt;}
.y19f{bottom:906.521733pt;}
.y54{bottom:906.533733pt;}
.y17b{bottom:906.538400pt;}
.ycd{bottom:906.571067pt;}
.y130{bottom:906.631733pt;}
.y15f{bottom:906.841733pt;}
.ye{bottom:919.853067pt;}
.y7c{bottom:925.186400pt;}
.y19e{bottom:925.187733pt;}
.y53{bottom:925.195733pt;}
.y17a{bottom:925.204400pt;}
.ycc{bottom:925.233067pt;}
.y12f{bottom:925.293733pt;}
.y15e{bottom:925.503733pt;}
.yd{bottom:943.853067pt;}
.y19d{bottom:943.853733pt;}
.y52{bottom:943.857733pt;}
.y179{bottom:943.870400pt;}
.ycb{bottom:943.895067pt;}
.y12e{bottom:943.955733pt;}
.y15d{bottom:944.165733pt;}
.y51{bottom:962.519733pt;}
.y178{bottom:962.536400pt;}
.yca{bottom:962.557067pt;}
.y12d{bottom:962.617733pt;}
.y15c{bottom:962.827733pt;}
.yc{bottom:970.072267pt;}
.yb{bottom:1055.781200pt;}
.ya5{bottom:1055.853067pt;}
.y19c{bottom:1056.188933pt;}
.h9{height:39.466667pt;}
.hd{height:39.816000pt;}
.hb{height:40.746667pt;}
.hf{height:41.434667pt;}
.hc{height:44.912000pt;}
.h7{height:46.016000pt;}
.he{height:46.309333pt;}
.ha{height:48.746667pt;}
.h8{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x9{left:117.676133pt;}
.xa{left:176.409467pt;}
.x2{left:198.425200pt;}
.x5{left:415.748533pt;}
.x6{left:869.291333pt;}
.xd{left:870.889200pt;}
.xc{left:873.155867pt;}
.xb{left:923.905467pt;}
.xe{left:944.249200pt;}
.x7{left:1209.448800pt;}
.x8{left:1224.554800pt;}
}




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