
    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_b3e360175d6046c12613bc10.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_686773b41d95f0210223e749.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_98f92802269932d2ee787c2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_e5b6735a0834afb9e05ae74c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_9e3ba016716226ed80c09b10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_27cb5987b44a1bf74deef9c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_35d3642ca25fa3fb23e86f7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_977004c2aab3347e3de6d637.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.839000;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_3a42bef21c5c991b3da37571.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;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_f7abd5aadfd7b41da4898d00.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_81dcb09ce0ee7185271b213e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_164fe5abef25ef61523582a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_95de6f233ba92f10410e60be.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_1371b3f034afe642003da1e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_704f5a1e502abd29e46991c8.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6f1b4bfbe0e09fe21b613919.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_75e7f46c2198b1bd7d8df6ab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_76ffdfa57a00f44d2b310670.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_dab7b75d5ab12370764419e4.woff2')format("woff");}.ff13{font-family:ff13;line-height:2.262000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_81d25dcc7279ff66c6afab9c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.v1{vertical-align:-22.854000px;}
.v3{vertical-align:-11.598000px;}
.v5{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.366000px;}
.v7{vertical-align:16.182000px;}
.vc{vertical-align:17.274000px;}
.v2{vertical-align:23.754000px;}
.vb{vertical-align:27.024000px;}
.v4{vertical-align:49.842000px;}
.v6{vertical-align:58.212000px;}
.va{vertical-align:63.852000px;}
.v9{vertical-align:82.782000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000843px;}
.ls2e{letter-spacing:0.002147px;}
.ls35{letter-spacing:0.002694px;}
.ls33{letter-spacing:0.002698px;}
.ls2b{letter-spacing:0.004326px;}
.ls1a{letter-spacing:0.008366px;}
.ls18{letter-spacing:0.012481px;}
.ls30{letter-spacing:0.016763px;}
.ls24{letter-spacing:0.024962px;}
.ls1c{letter-spacing:2.985782px;}
.ls12{letter-spacing:2.986059px;}
.ls26{letter-spacing:2.986399px;}
.ls1d{letter-spacing:2.989739px;}
.lsb{letter-spacing:2.991782px;}
.ls11{letter-spacing:2.992059px;}
.lsc{letter-spacing:5.301823px;}
.lse{letter-spacing:7.069097px;}
.ls15{letter-spacing:7.135599px;}
.ls23{letter-spacing:10.865464px;}
.ls27{letter-spacing:10.930918px;}
.ls31{letter-spacing:13.876290px;}
.ls2a{letter-spacing:13.895593px;}
.ls2c{letter-spacing:13.901593px;}
.ls34{letter-spacing:18.065470px;}
.ls1f{letter-spacing:18.130924px;}
.ls7{letter-spacing:18.196379px;}
.ls37{letter-spacing:21.141836px;}
.ls8{letter-spacing:21.171056px;}
.ls20{letter-spacing:21.403654px;}
.ls2{letter-spacing:21.419468px;}
.ls9{letter-spacing:21.796382px;}
.ls5{letter-spacing:21.861836px;}
.ls2f{letter-spacing:22.445644px;}
.ls29{letter-spacing:22.882214px;}
.ls1b{letter-spacing:23.432747px;}
.ls4{letter-spacing:23.498201px;}
.ls13{letter-spacing:24.807782px;}
.ls6{letter-spacing:25.265476px;}
.ls2d{letter-spacing:26.081644px;}
.ls19{letter-spacing:26.407739px;}
.ls25{letter-spacing:26.560677px;}
.ls22{letter-spacing:26.566677px;}
.ls14{letter-spacing:26.901841px;}
.ls10{letter-spacing:27.098204px;}
.ls17{letter-spacing:28.734569px;}
.ls21{letter-spacing:28.865479px;}
.ls36{letter-spacing:29.454570px;}
.ls28{letter-spacing:29.585479px;}
.lsf{letter-spacing:29.847298px;}
.lsa{letter-spacing:29.912752px;}
.ls32{letter-spacing:33.054573px;}
.ls38{letter-spacing:33.447301px;}
.ls3{letter-spacing:35.869121px;}
.ls0{letter-spacing:35.883533px;}
.ls16{letter-spacing:51.553739px;}
.ls1e{letter-spacing:133.854657px;}
.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;}
}
.ws21{word-spacing:-65.454600px;}
.ws36{word-spacing:-47.258221px;}
.ws23{word-spacing:-42.637126px;}
.ws29{word-spacing:-33.453846px;}
.ws19{word-spacing:-27.646998px;}
.ws24{word-spacing:-18.183288px;}
.ws27{word-spacing:-17.083651px;}
.ws0{word-spacing:-16.139475px;}
.ws3b{word-spacing:-15.388376px;}
.ws42{word-spacing:-14.989103px;}
.ws28{word-spacing:-14.858194px;}
.ws35{word-spacing:-14.269103px;}
.ws3c{word-spacing:-14.210194px;}
.ws2a{word-spacing:-13.621102px;}
.wsa{word-spacing:-13.487259px;}
.ws2{word-spacing:-13.449600px;}
.ws20{word-spacing:-12.501829px;}
.ws43{word-spacing:-11.716373px;}
.ws40{word-spacing:-11.585464px;}
.ws1b{word-spacing:-11.476915px;}
.ws41{word-spacing:-11.417140px;}
.ws2c{word-spacing:-11.323646px;}
.ws3e{word-spacing:-11.192737px;}
.ws47{word-spacing:-11.178037px;}
.ws3d{word-spacing:-11.127282px;}
.ws17{word-spacing:-10.930918px;}
.ws49{word-spacing:-10.879159px;}
.ws18{word-spacing:-10.865464px;}
.ws8{word-spacing:-10.635944px;}
.ws44{word-spacing:-10.603645px;}
.ws6{word-spacing:-10.485308px;}
.ws5{word-spacing:-10.313153px;}
.ws15{word-spacing:-10.221628px;}
.ws48{word-spacing:-10.167830px;}
.ws2b{word-spacing:-10.086554px;}
.ws1c{word-spacing:-10.021099px;}
.ws3{word-spacing:-9.982525px;}
.ws4b{word-spacing:-9.922750px;}
.ws13{word-spacing:-9.743423px;}
.ws12{word-spacing:-9.683647px;}
.wsb{word-spacing:-9.355542px;}
.ws9{word-spacing:-9.301743px;}
.wsc{word-spacing:-9.247945px;}
.ws7{word-spacing:-9.194147px;}
.ws4a{word-spacing:-9.151644px;}
.ws4{word-spacing:-8.978953px;}
.ws45{word-spacing:-8.640007px;}
.ws16{word-spacing:-8.443643px;}
.ws1e{word-spacing:-7.592734px;}
.ws11{word-spacing:-7.232848px;}
.ws14{word-spacing:-6.635092px;}
.ws3f{word-spacing:-5.832005px;}
.ws34{word-spacing:-5.635641px;}
.ws25{word-spacing:-5.439277px;}
.ws38{word-spacing:-5.236368px;}
.ws10{word-spacing:-5.027128px;}
.ws39{word-spacing:-4.516367px;}
.ws3a{word-spacing:-4.261094px;}
.ws2d{word-spacing:-0.314182px;}
.ws1f{word-spacing:-0.065455px;}
.ws2e{word-spacing:-0.052364px;}
.ws33{word-spacing:-0.047821px;}
.ws37{word-spacing:-0.007164px;}
.ws26{word-spacing:-0.005074px;}
.wsd{word-spacing:0.000000px;}
.ws31{word-spacing:0.000926px;}
.ws22{word-spacing:0.013091px;}
.ws1d{word-spacing:2.225456px;}
.wse{word-spacing:2.683639px;}
.ws30{word-spacing:3.178230px;}
.ws32{word-spacing:3.613094px;}
.ws46{word-spacing:3.796367px;}
.wsf{word-spacing:11.429123px;}
.ws2f{word-spacing:13.844970px;}
.ws1{word-spacing:23.384371px;}
.ws1a{word-spacing:2261.856812px;}
._2{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._7{margin-left:-4.572864px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.409540px;}
._4{width:1.205092px;}
._0{width:2.668393px;}
._17{width:5.301823px;}
._1c{width:17.924462px;}
._1a{width:19.743086px;}
._5{width:20.959727px;}
._1b{width:22.828410px;}
._8{width:25.403590px;}
._9{width:27.342617px;}
._19{width:28.472751px;}
._18{width:30.109116px;}
._1d{width:35.865360px;}
._16{width:39.075526px;}
._15{width:68.741940px;}
._12{width:1341.383027px;}
._a{width:1445.855702px;}
._f{width:1480.273185px;}
._d{width:1488.316910px;}
._13{width:1521.694283px;}
._10{width:1621.508093px;}
._c{width:1657.774397px;}
._e{width:1798.498205px;}
._11{width:1992.101248px;}
._14{width:2030.550007px;}
._b{width:2127.134088px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y43{bottom:160.314000px;}
.y2b{bottom:173.425500px;}
.y5d{bottom:190.800000px;}
.y42{bottom:201.957000px;}
.y2a{bottom:218.448000px;}
.y41{bottom:228.397500px;}
.y40{bottom:232.443000px;}
.y5c{bottom:240.525000px;}
.y71{bottom:256.510500px;}
.y29{bottom:266.857500px;}
.y5b{bottom:271.011000px;}
.y3f{bottom:284.188500px;}
.y28{bottom:298.122000px;}
.y5a{bottom:301.497000px;}
.y70{bottom:313.224000px;}
.y27{bottom:329.388000px;}
.y10{bottom:329.571000px;}
.y3e{bottom:344.272500px;}
.y59{bottom:347.356500px;}
.yf{bottom:357.217500px;}
.y58{bottom:360.616500px;}
.y3d{bottom:369.085500px;}
.y6f{bottom:369.937500px;}
.y26{bottom:377.796000px;}
.ye{bottom:384.864000px;}
.y3c{bottom:385.915500px;}
.yd{bottom:409.521000px;}
.y57{bottom:410.118000px;}
.y25{bottom:426.205500px;}
.y3b{bottom:427.558500px;}
.y6e{bottom:435.648000px;}
.yc{bottom:437.167500px;}
.y56{bottom:459.843000px;}
.yb{bottom:461.824500px;}
.y3a{bottom:467.707500px;}
.y24{bottom:474.613500px;}
.ya{bottom:489.471000px;}
.y6d{bottom:489.651000px;}
.y39{bottom:509.350500px;}
.y55{bottom:509.569500px;}
.y9{bottom:514.128000px;}
.y23{bottom:523.021500px;}
.y54{bottom:544.861500px;}
.y38{bottom:550.993500px;}
.y53{bottom:563.209500px;}
.y6c{bottom:563.461500px;}
.y22{bottom:571.431000px;}
.y6b{bottom:593.947500px;}
.y37{bottom:602.739000px;}
.y52{bottom:612.711000px;}
.y21{bottom:619.839000px;}
.y6a{bottom:624.433500px;}
.y51{bottom:643.197000px;}
.y36{bottom:662.824500px;}
.y20{bottom:672.364500px;}
.y69{bottom:678.436500px;}
.y35{bottom:693.310500px;}
.y50{bottom:695.802000px;}
.y8{bottom:705.427500px;}
.y1f{bottom:737.734500px;}
.y34{bottom:745.056000px;}
.y68{bottom:752.247000px;}
.y7{bottom:757.839000px;}
.y4f{bottom:761.626500px;}
.y1e{bottom:768.220500px;}
.y67{bottom:782.733000px;}
.y6{bottom:784.738500px;}
.y4e{bottom:792.111000px;}
.y33{bottom:805.140000px;}
.y5{bottom:811.636500px;}
.y1d{bottom:825.555000px;}
.y4c{bottom:829.210500px;}
.y32{bottom:835.626000px;}
.y66{bottom:836.736000px;}
.y4b{bottom:842.472000px;}
.y4d{bottom:846.790500px;}
.y1c{bottom:852.453000px;}
.y1b{bottom:879.352500px;}
.y77{bottom:882.814500px;}
.y31{bottom:882.981000px;}
.y4a{bottom:891.973500px;}
.y4{bottom:902.547000px;}
.y1a{bottom:906.252000px;}
.y76{bottom:909.714000px;}
.y65{bottom:910.546500px;}
.y30{bottom:926.650500px;}
.y48{bottom:928.213500px;}
.y19{bottom:933.151500px;}
.y3{bottom:933.928500px;}
.y75{bottom:936.613500px;}
.y64{bottom:941.032500px;}
.y47{bottom:941.475000px;}
.y49{bottom:945.793500px;}
.y18{bottom:960.049500px;}
.y74{bottom:963.513000px;}
.y2f{bottom:966.798000px;}
.y63{bottom:971.518500px;}
.y46{bottom:990.976500px;}
.y17{bottom:998.755500px;}
.y2{bottom:999.790500px;}
.y62{bottom:1011.246000px;}
.y2e{bottom:1018.543500px;}
.y16{bottom:1026.433500px;}
.y5f{bottom:1029.304500px;}
.y15{bottom:1031.856000px;}
.y1{bottom:1040.139000px;}
.y45{bottom:1043.580000px;}
.y61{bottom:1043.856000px;}
.y60{bottom:1048.339500px;}
.y73{bottom:1057.659000px;}
.y13{bottom:1059.342000px;}
.y14{bottom:1065.280500px;}
.y5e{bottom:1085.889000px;}
.y72{bottom:1088.145000px;}
.y2d{bottom:1093.041000px;}
.y12{bottom:1108.509000px;}
.y44{bottom:1109.404500px;}
.y11{bottom:1139.890500px;}
.y2c{bottom:1192.194000px;}
.h19{height:2.391024px;}
.hc{height:16.677504px;}
.h9{height:27.783619px;}
.h8{height:34.143908px;}
.h10{height:35.865450px;}
.h6{height:37.927872px;}
.hb{height:41.842920px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.h12{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:50.211840px;}
.he{height:52.233024px;}
.h3{height:53.798400px;}
.hd{height:57.897908px;}
.h2{height:60.254040px;}
.h16{height:60.597024px;}
.hf{height:60.603024px;}
.h14{height:62.889450px;}
.h17{height:62.895450px;}
.h11{height:65.272950px;}
.h15{height:66.364950px;}
.h13{height:95.843981px;}
.h18{height:95.849981px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x14{left:108.000000px;}
.x1a{left:110.739000px;}
.x18{left:114.363000px;}
.x17{left:120.273000px;}
.xa{left:125.932500px;}
.x1d{left:130.416000px;}
.x16{left:132.999000px;}
.x3c{left:144.682500px;}
.x19{left:150.178500px;}
.x13{left:158.809500px;}
.x2e{left:160.057500px;}
.x12{left:173.754000px;}
.x1{left:178.486500px;}
.x2{left:180.781500px;}
.x1f{left:196.447500px;}
.xf{left:214.422000px;}
.x10{left:221.125500px;}
.xb{left:223.575000px;}
.x27{left:226.485000px;}
.x1c{left:236.020500px;}
.x5b{left:248.226000px;}
.x54{left:249.376500px;}
.x22{left:260.025000px;}
.x3{left:274.819500px;}
.x58{left:287.619000px;}
.xc{left:291.004500px;}
.x38{left:293.337000px;}
.x2d{left:309.688500px;}
.x6{left:329.793000px;}
.x2f{left:331.353000px;}
.x53{left:332.850000px;}
.x3d{left:340.758000px;}
.x45{left:346.689000px;}
.x4{left:349.677000px;}
.x1e{left:351.867000px;}
.x11{left:364.890000px;}
.x30{left:371.014500px;}
.x57{left:372.757500px;}
.x39{left:373.882500px;}
.x23{left:375.355500px;}
.x24{left:378.765000px;}
.x5{left:381.384000px;}
.xd{left:382.602000px;}
.x48{left:389.394000px;}
.x31{left:391.237500px;}
.x7{left:392.640000px;}
.x8{left:405.966000px;}
.x15{left:409.203000px;}
.x46{left:415.632000px;}
.x56{left:416.808000px;}
.x3e{left:418.002000px;}
.x32{left:419.763000px;}
.x55{left:421.923000px;}
.x4b{left:429.639000px;}
.x3a{left:435.856500px;}
.x40{left:440.821500px;}
.x47{left:442.297500px;}
.x3f{left:444.343500px;}
.x4c{left:446.743500px;}
.x33{left:452.944500px;}
.x25{left:454.647000px;}
.x34{left:459.423000px;}
.x3b{left:462.198000px;}
.x49{left:465.081000px;}
.x41{left:466.855500px;}
.x26{left:472.021500px;}
.x4d{left:473.203500px;}
.x35{left:474.355500px;}
.x42{left:475.372500px;}
.x28{left:489.586500px;}
.xe{left:511.759500px;}
.x29{left:514.356000px;}
.x2a{left:531.373500px;}
.x2b{left:542.547000px;}
.x4e{left:578.367000px;}
.x4f{left:595.471500px;}
.x2c{left:598.902000px;}
.x50{left:601.707000px;}
.x20{left:603.951000px;}
.x51{left:616.639500px;}
.x21{left:617.928000px;}
.x36{left:623.406000px;}
.x37{left:648.322500px;}
.x43{left:679.200000px;}
.x44{left:716.472000px;}
.x52{left:723.810000px;}
.x5c{left:735.340500px;}
.x5d{left:743.523000px;}
.x5e{left:751.867500px;}
.x5f{left:760.050000px;}
.x4a{left:787.153500px;}
.x59{left:797.094000px;}
.x1b{left:799.195500px;}
.x5a{left:804.765000px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v3{vertical-align:-10.309333pt;}
.v5{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.658667pt;}
.v7{vertical-align:14.384000pt;}
.vc{vertical-align:15.354667pt;}
.v2{vertical-align:21.114667pt;}
.vb{vertical-align:24.021333pt;}
.v4{vertical-align:44.304000pt;}
.v6{vertical-align:51.744000pt;}
.va{vertical-align:56.757333pt;}
.v9{vertical-align:73.584000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000749pt;}
.ls2e{letter-spacing:0.001908pt;}
.ls35{letter-spacing:0.002395pt;}
.ls33{letter-spacing:0.002399pt;}
.ls2b{letter-spacing:0.003845pt;}
.ls1a{letter-spacing:0.007436pt;}
.ls18{letter-spacing:0.011095pt;}
.ls30{letter-spacing:0.014900pt;}
.ls24{letter-spacing:0.022188pt;}
.ls1c{letter-spacing:2.654028pt;}
.ls12{letter-spacing:2.654275pt;}
.ls26{letter-spacing:2.654577pt;}
.ls1d{letter-spacing:2.657546pt;}
.lsb{letter-spacing:2.659362pt;}
.ls11{letter-spacing:2.659608pt;}
.lsc{letter-spacing:4.712731pt;}
.lse{letter-spacing:6.283642pt;}
.ls15{letter-spacing:6.342755pt;}
.ls23{letter-spacing:9.658190pt;}
.ls27{letter-spacing:9.716372pt;}
.ls31{letter-spacing:12.334480pt;}
.ls2a{letter-spacing:12.351639pt;}
.ls2c{letter-spacing:12.356972pt;}
.ls34{letter-spacing:16.058195pt;}
.ls1f{letter-spacing:16.116377pt;}
.ls7{letter-spacing:16.174559pt;}
.ls37{letter-spacing:18.792743pt;}
.ls8{letter-spacing:18.818717pt;}
.ls20{letter-spacing:19.025470pt;}
.ls2{letter-spacing:19.039527pt;}
.ls9{letter-spacing:19.374562pt;}
.ls5{letter-spacing:19.432743pt;}
.ls2f{letter-spacing:19.951684pt;}
.ls29{letter-spacing:20.339746pt;}
.ls1b{letter-spacing:20.829108pt;}
.ls4{letter-spacing:20.887290pt;}
.ls13{letter-spacing:22.051362pt;}
.ls6{letter-spacing:22.458201pt;}
.ls2d{letter-spacing:23.183684pt;}
.ls19{letter-spacing:23.473546pt;}
.ls25{letter-spacing:23.609490pt;}
.ls22{letter-spacing:23.614824pt;}
.ls14{letter-spacing:23.912747pt;}
.ls10{letter-spacing:24.087293pt;}
.ls17{letter-spacing:25.541839pt;}
.ls21{letter-spacing:25.658203pt;}
.ls36{letter-spacing:26.181840pt;}
.ls28{letter-spacing:26.298204pt;}
.lsf{letter-spacing:26.530931pt;}
.lsa{letter-spacing:26.589113pt;}
.ls32{letter-spacing:29.381843pt;}
.ls38{letter-spacing:29.730934pt;}
.ls3{letter-spacing:31.883663pt;}
.ls0{letter-spacing:31.896474pt;}
.ls16{letter-spacing:45.825546pt;}
.ls1e{letter-spacing:118.981917pt;}
.ws21{word-spacing:-58.181867pt;}
.ws36{word-spacing:-42.007308pt;}
.ws23{word-spacing:-37.899668pt;}
.ws29{word-spacing:-29.736752pt;}
.ws19{word-spacing:-24.575109pt;}
.ws24{word-spacing:-16.162923pt;}
.ws27{word-spacing:-15.185467pt;}
.ws0{word-spacing:-14.346200pt;}
.ws3b{word-spacing:-13.678557pt;}
.ws42{word-spacing:-13.323647pt;}
.ws28{word-spacing:-13.207284pt;}
.ws35{word-spacing:-12.683647pt;}
.ws3c{word-spacing:-12.631283pt;}
.ws2a{word-spacing:-12.107646pt;}
.wsa{word-spacing:-11.988675pt;}
.ws2{word-spacing:-11.955200pt;}
.ws20{word-spacing:-11.112737pt;}
.ws43{word-spacing:-10.414554pt;}
.ws40{word-spacing:-10.298190pt;}
.ws1b{word-spacing:-10.201702pt;}
.ws41{word-spacing:-10.148569pt;}
.ws2c{word-spacing:-10.065463pt;}
.ws3e{word-spacing:-9.949099pt;}
.ws47{word-spacing:-9.936033pt;}
.ws3d{word-spacing:-9.890917pt;}
.ws17{word-spacing:-9.716372pt;}
.ws49{word-spacing:-9.670364pt;}
.ws18{word-spacing:-9.658190pt;}
.ws8{word-spacing:-9.454172pt;}
.ws44{word-spacing:-9.425462pt;}
.ws6{word-spacing:-9.320274pt;}
.ws5{word-spacing:-9.167247pt;}
.ws15{word-spacing:-9.085891pt;}
.ws48{word-spacing:-9.038071pt;}
.ws2b{word-spacing:-8.965826pt;}
.ws1c{word-spacing:-8.907644pt;}
.ws3{word-spacing:-8.873356pt;}
.ws4b{word-spacing:-8.820222pt;}
.ws13{word-spacing:-8.660820pt;}
.ws12{word-spacing:-8.607686pt;}
.wsb{word-spacing:-8.316037pt;}
.ws9{word-spacing:-8.268216pt;}
.wsc{word-spacing:-8.220396pt;}
.ws7{word-spacing:-8.172575pt;}
.ws4a{word-spacing:-8.134795pt;}
.ws4{word-spacing:-7.981292pt;}
.ws45{word-spacing:-7.680006pt;}
.ws16{word-spacing:-7.505461pt;}
.ws1e{word-spacing:-6.749097pt;}
.ws11{word-spacing:-6.429198pt;}
.ws14{word-spacing:-5.897859pt;}
.ws3f{word-spacing:-5.184004pt;}
.ws34{word-spacing:-5.009459pt;}
.ws25{word-spacing:-4.834913pt;}
.ws38{word-spacing:-4.654549pt;}
.ws10{word-spacing:-4.468558pt;}
.ws39{word-spacing:-4.014549pt;}
.ws3a{word-spacing:-3.787640pt;}
.ws2d{word-spacing:-0.279273pt;}
.ws1f{word-spacing:-0.058182pt;}
.ws2e{word-spacing:-0.046545pt;}
.ws33{word-spacing:-0.042507pt;}
.ws37{word-spacing:-0.006368pt;}
.ws26{word-spacing:-0.004510pt;}
.wsd{word-spacing:0.000000pt;}
.ws31{word-spacing:0.000823pt;}
.ws22{word-spacing:0.011636pt;}
.ws1d{word-spacing:1.978183pt;}
.wse{word-spacing:2.385457pt;}
.ws30{word-spacing:2.825094pt;}
.ws32{word-spacing:3.211639pt;}
.ws46{word-spacing:3.374548pt;}
.wsf{word-spacing:10.159221pt;}
.ws2f{word-spacing:12.306640pt;}
.ws1{word-spacing:20.786108pt;}
.ws1a{word-spacing:2010.539389pt;}
._2{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._7{margin-left:-4.064768pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.252925pt;}
._4{width:1.071193pt;}
._0{width:2.371905pt;}
._17{width:4.712731pt;}
._1c{width:15.932855pt;}
._1a{width:17.549410pt;}
._5{width:18.630868pt;}
._1b{width:20.291920pt;}
._8{width:22.580969pt;}
._9{width:24.304548pt;}
._19{width:25.309112pt;}
._18{width:26.763659pt;}
._1d{width:31.880320pt;}
._16{width:34.733801pt;}
._15{width:61.103947pt;}
._12{width:1192.340468pt;}
._a{width:1285.205069pt;}
._f{width:1315.798387pt;}
._d{width:1322.948365pt;}
._13{width:1352.617141pt;}
._10{width:1441.340527pt;}
._c{width:1473.577242pt;}
._e{width:1598.665071pt;}
._11{width:1770.756665pt;}
._14{width:1804.933340pt;}
._b{width:1890.785856pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:142.501333pt;}
.y2b{bottom:154.156000pt;}
.y5d{bottom:169.600000pt;}
.y42{bottom:179.517333pt;}
.y2a{bottom:194.176000pt;}
.y41{bottom:203.020000pt;}
.y40{bottom:206.616000pt;}
.y5c{bottom:213.800000pt;}
.y71{bottom:228.009333pt;}
.y29{bottom:237.206667pt;}
.y5b{bottom:240.898667pt;}
.y3f{bottom:252.612000pt;}
.y28{bottom:264.997333pt;}
.y5a{bottom:267.997333pt;}
.y70{bottom:278.421333pt;}
.y27{bottom:292.789333pt;}
.y10{bottom:292.952000pt;}
.y3e{bottom:306.020000pt;}
.y59{bottom:308.761333pt;}
.yf{bottom:317.526667pt;}
.y58{bottom:320.548000pt;}
.y3d{bottom:328.076000pt;}
.y6f{bottom:328.833333pt;}
.y26{bottom:335.818667pt;}
.ye{bottom:342.101333pt;}
.y3c{bottom:343.036000pt;}
.yd{bottom:364.018667pt;}
.y57{bottom:364.549333pt;}
.y25{bottom:378.849333pt;}
.y3b{bottom:380.052000pt;}
.y6e{bottom:387.242667pt;}
.yc{bottom:388.593333pt;}
.y56{bottom:408.749333pt;}
.yb{bottom:410.510667pt;}
.y3a{bottom:415.740000pt;}
.y24{bottom:421.878667pt;}
.ya{bottom:435.085333pt;}
.y6d{bottom:435.245333pt;}
.y39{bottom:452.756000pt;}
.y55{bottom:452.950667pt;}
.y9{bottom:457.002667pt;}
.y23{bottom:464.908000pt;}
.y54{bottom:484.321333pt;}
.y38{bottom:489.772000pt;}
.y53{bottom:500.630667pt;}
.y6c{bottom:500.854667pt;}
.y22{bottom:507.938667pt;}
.y6b{bottom:527.953333pt;}
.y37{bottom:535.768000pt;}
.y52{bottom:544.632000pt;}
.y21{bottom:550.968000pt;}
.y6a{bottom:555.052000pt;}
.y51{bottom:571.730667pt;}
.y36{bottom:589.177333pt;}
.y20{bottom:597.657333pt;}
.y69{bottom:603.054667pt;}
.y35{bottom:616.276000pt;}
.y50{bottom:618.490667pt;}
.y8{bottom:627.046667pt;}
.y1f{bottom:655.764000pt;}
.y34{bottom:662.272000pt;}
.y68{bottom:668.664000pt;}
.y7{bottom:673.634667pt;}
.y4f{bottom:677.001333pt;}
.y1e{bottom:682.862667pt;}
.y67{bottom:695.762667pt;}
.y6{bottom:697.545333pt;}
.y4e{bottom:704.098667pt;}
.y33{bottom:715.680000pt;}
.y5{bottom:721.454667pt;}
.y1d{bottom:733.826667pt;}
.y4c{bottom:737.076000pt;}
.y32{bottom:742.778667pt;}
.y66{bottom:743.765333pt;}
.y4b{bottom:748.864000pt;}
.y4d{bottom:752.702667pt;}
.y1c{bottom:757.736000pt;}
.y1b{bottom:781.646667pt;}
.y77{bottom:784.724000pt;}
.y31{bottom:784.872000pt;}
.y4a{bottom:792.865333pt;}
.y4{bottom:802.264000pt;}
.y1a{bottom:805.557333pt;}
.y76{bottom:808.634667pt;}
.y65{bottom:809.374667pt;}
.y30{bottom:823.689333pt;}
.y48{bottom:825.078667pt;}
.y19{bottom:829.468000pt;}
.y3{bottom:830.158667pt;}
.y75{bottom:832.545333pt;}
.y64{bottom:836.473333pt;}
.y47{bottom:836.866667pt;}
.y49{bottom:840.705333pt;}
.y18{bottom:853.377333pt;}
.y74{bottom:856.456000pt;}
.y2f{bottom:859.376000pt;}
.y63{bottom:863.572000pt;}
.y46{bottom:880.868000pt;}
.y17{bottom:887.782667pt;}
.y2{bottom:888.702667pt;}
.y62{bottom:898.885333pt;}
.y2e{bottom:905.372000pt;}
.y16{bottom:912.385333pt;}
.y5f{bottom:914.937333pt;}
.y15{bottom:917.205333pt;}
.y1{bottom:924.568000pt;}
.y45{bottom:927.626667pt;}
.y61{bottom:927.872000pt;}
.y60{bottom:931.857333pt;}
.y73{bottom:940.141333pt;}
.y13{bottom:941.637333pt;}
.y14{bottom:946.916000pt;}
.y5e{bottom:965.234667pt;}
.y72{bottom:967.240000pt;}
.y2d{bottom:971.592000pt;}
.y12{bottom:985.341333pt;}
.y44{bottom:986.137333pt;}
.y11{bottom:1013.236000pt;}
.y2c{bottom:1059.728000pt;}
.h19{height:2.125355pt;}
.hc{height:14.824448pt;}
.h9{height:24.696550pt;}
.h8{height:30.350141pt;}
.h10{height:31.880400pt;}
.h6{height:33.713664pt;}
.hb{height:37.193707pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.h12{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:44.632747pt;}
.he{height:46.429355pt;}
.h3{height:47.820800pt;}
.hd{height:51.464807pt;}
.h2{height:53.559147pt;}
.h16{height:53.864021pt;}
.hf{height:53.869355pt;}
.h14{height:55.901733pt;}
.h17{height:55.907067pt;}
.h11{height:58.020400pt;}
.h15{height:58.991067pt;}
.h13{height:85.194650pt;}
.h18{height:85.199983pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x14{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x18{left:101.656000pt;}
.x17{left:106.909333pt;}
.xa{left:111.940000pt;}
.x1d{left:115.925333pt;}
.x16{left:118.221333pt;}
.x3c{left:128.606667pt;}
.x19{left:133.492000pt;}
.x13{left:141.164000pt;}
.x2e{left:142.273333pt;}
.x12{left:154.448000pt;}
.x1{left:158.654667pt;}
.x2{left:160.694667pt;}
.x1f{left:174.620000pt;}
.xf{left:190.597333pt;}
.x10{left:196.556000pt;}
.xb{left:198.733333pt;}
.x27{left:201.320000pt;}
.x1c{left:209.796000pt;}
.x5b{left:220.645333pt;}
.x54{left:221.668000pt;}
.x22{left:231.133333pt;}
.x3{left:244.284000pt;}
.x58{left:255.661333pt;}
.xc{left:258.670667pt;}
.x38{left:260.744000pt;}
.x2d{left:275.278667pt;}
.x6{left:293.149333pt;}
.x2f{left:294.536000pt;}
.x53{left:295.866667pt;}
.x3d{left:302.896000pt;}
.x45{left:308.168000pt;}
.x4{left:310.824000pt;}
.x1e{left:312.770667pt;}
.x11{left:324.346667pt;}
.x30{left:329.790667pt;}
.x57{left:331.340000pt;}
.x39{left:332.340000pt;}
.x23{left:333.649333pt;}
.x24{left:336.680000pt;}
.x5{left:339.008000pt;}
.xd{left:340.090667pt;}
.x48{left:346.128000pt;}
.x31{left:347.766667pt;}
.x7{left:349.013333pt;}
.x8{left:360.858667pt;}
.x15{left:363.736000pt;}
.x46{left:369.450667pt;}
.x56{left:370.496000pt;}
.x3e{left:371.557333pt;}
.x32{left:373.122667pt;}
.x55{left:375.042667pt;}
.x4b{left:381.901333pt;}
.x3a{left:387.428000pt;}
.x40{left:391.841333pt;}
.x47{left:393.153333pt;}
.x3f{left:394.972000pt;}
.x4c{left:397.105333pt;}
.x33{left:402.617333pt;}
.x25{left:404.130667pt;}
.x34{left:408.376000pt;}
.x3b{left:410.842667pt;}
.x49{left:413.405333pt;}
.x41{left:414.982667pt;}
.x26{left:419.574667pt;}
.x4d{left:420.625333pt;}
.x35{left:421.649333pt;}
.x42{left:422.553333pt;}
.x28{left:435.188000pt;}
.xe{left:454.897333pt;}
.x29{left:457.205333pt;}
.x2a{left:472.332000pt;}
.x2b{left:482.264000pt;}
.x4e{left:514.104000pt;}
.x4f{left:529.308000pt;}
.x2c{left:532.357333pt;}
.x50{left:534.850667pt;}
.x20{left:536.845333pt;}
.x51{left:548.124000pt;}
.x21{left:549.269333pt;}
.x36{left:554.138667pt;}
.x37{left:576.286667pt;}
.x43{left:603.733333pt;}
.x44{left:636.864000pt;}
.x52{left:643.386667pt;}
.x5c{left:653.636000pt;}
.x5d{left:660.909333pt;}
.x5e{left:668.326667pt;}
.x5f{left:675.600000pt;}
.x4a{left:699.692000pt;}
.x59{left:708.528000pt;}
.x1b{left:710.396000pt;}
.x5a{left:715.346667pt;}
}




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