
    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_603e7f45af6a613d4214d26b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2652d76b2bf6c26d66f175fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_82261eb87941d736da56f392.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_90b71cb26452a0e7a4c9695e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206543;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_d3da07605938536a4b89aee6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d046c1715f3115a92517fdca.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_2177d0110a115615068361e2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_30378a5389ef9d808c96cc7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_e79cde64b4302921e8e3db14.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_22590396aeb7c5f011ec4d98.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_901d71671e8e738604dc4fe8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5f3c4c58b3d401c97022e0e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.843000;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_45c32d76107ecf508fc187e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.712000;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_a5f4bc4ada093795ebe7194f.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_395127b9fb9e3e61712603a8.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_1c676870d981689aefd90f39.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_cf5aea8044703c2aa85df83c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.414000;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_7338db3d39626b02932f0aa1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.116000;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_edd4b891e9c68869d38cdd35.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.153000;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_f64198ca288f1f9e307af187.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.313477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7338db3d39626b02932f0aa1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.116000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_edd4b891e9c68869d38cdd35.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.153000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_57d15930ac9e6dfdbf58b484.woff2')format("woff");}.ff17{font-family:ff17;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;}
.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);}
.v2{vertical-align:-23.040000px;}
.v3{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.640000px;}
.v6{vertical-align:18.720000px;}
.v5{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:51.840000px;}
.ls8{letter-spacing:-0.131760px;}
.lsd{letter-spacing:-0.046116px;}
.lsb{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls1a{letter-spacing:-0.011955px;}
.ls9{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000246px;}
.ls26{letter-spacing:0.000438px;}
.ls2b{letter-spacing:0.006438px;}
.ls23{letter-spacing:0.007740px;}
.ls3{letter-spacing:0.013176px;}
.ls7{letter-spacing:0.019764px;}
.ls0{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.032940px;}
.ls5{letter-spacing:0.039528px;}
.ls1{letter-spacing:0.041940px;}
.ls6{letter-spacing:0.046116px;}
.lsf{letter-spacing:0.059292px;}
.ls1f{letter-spacing:0.131238px;}
.ls41{letter-spacing:0.196788px;}
.lsc{letter-spacing:0.223992px;}
.ls12{letter-spacing:0.293100px;}
.ls21{letter-spacing:0.720414px;}
.ls1c{letter-spacing:1.967580px;}
.ls32{letter-spacing:2.683890px;}
.ls25{letter-spacing:2.849160px;}
.ls2f{letter-spacing:3.397890px;}
.ls10{letter-spacing:3.407580px;}
.ls11{letter-spacing:4.127580px;}
.ls1d{letter-spacing:4.844088px;}
.ls13{letter-spacing:4.847580px;}
.ls2d{letter-spacing:7.200438px;}
.ls43{letter-spacing:13.483788px;}
.ls1b{letter-spacing:13.811226px;}
.ls33{letter-spacing:14.462880px;}
.ls1e{letter-spacing:14.531226px;}
.ls15{letter-spacing:14.596788px;}
.ls31{letter-spacing:15.322788px;}
.ls3e{letter-spacing:17.083788px;}
.ls17{letter-spacing:18.196788px;}
.ls45{letter-spacing:19.003284px;}
.ls35{letter-spacing:20.356788px;}
.ls37{letter-spacing:21.076788px;}
.ls3a{letter-spacing:21.338394px;}
.ls34{letter-spacing:21.403788px;}
.ls44{letter-spacing:21.534828px;}
.ls42{letter-spacing:21.534948px;}
.ls3f{letter-spacing:21.796788px;}
.ls16{letter-spacing:22.003020px;}
.ls14{letter-spacing:22.004652px;}
.ls40{letter-spacing:22.254828px;}
.ls30{letter-spacing:22.285320px;}
.ls3b{letter-spacing:22.516788px;}
.ls3c{letter-spacing:23.616180px;}
.ls39{letter-spacing:23.956788px;}
.ls18{letter-spacing:25.007580px;}
.ls36{letter-spacing:26.609160px;}
.ls19{letter-spacing:27.887580px;}
.ls3d{letter-spacing:28.996788px;}
.ls38{letter-spacing:29.376180px;}
.ls22{letter-spacing:29.978394px;}
.ls2e{letter-spacing:32.256180px;}
.ls27{letter-spacing:32.369160px;}
.ls20{letter-spacing:33.316788px;}
.ls2c{letter-spacing:36.458532px;}
.ls28{letter-spacing:39.796788px;}
.ls2a{letter-spacing:40.516788px;}
.ls29{letter-spacing:48.698532px;}
.lse{letter-spacing:155.384568px;}
.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;}
}
.ws20{word-spacing:-28.242900px;}
.ws16{word-spacing:-16.928280px;}
.ws2{word-spacing:-14.921820px;}
.ws0{word-spacing:-14.875704px;}
.ws1{word-spacing:-14.855940px;}
.wsa9{word-spacing:-2.654544px;}
.wsa1{word-spacing:-2.648700px;}
.wsab{word-spacing:-2.636004px;}
.wsa3{word-spacing:-1.331808px;}
.wsa0{word-spacing:-0.467976px;}
.wsac{word-spacing:-0.406812px;}
.ws11{word-spacing:-0.309870px;}
.ws10{word-spacing:-0.191052px;}
.wse{word-spacing:-0.177876px;}
.wsf{word-spacing:-0.151524px;}
.ws7{word-spacing:-0.085644px;}
.ws17{word-spacing:-0.065454px;}
.wsa2{word-spacing:-0.053796px;}
.ws62{word-spacing:-0.047820px;}
.ws3{word-spacing:0.000000px;}
.ws44{word-spacing:0.011955px;}
.ws6{word-spacing:0.075492px;}
.ws5{word-spacing:0.092268px;}
.wsa5{word-spacing:0.161388px;}
.ws4{word-spacing:0.234864px;}
.wsa8{word-spacing:0.753144px;}
.ws30{word-spacing:1.598160px;}
.ws8d{word-spacing:8.078160px;}
.wsb{word-spacing:8.109828px;}
.ws31{word-spacing:8.798160px;}
.ws9{word-spacing:8.834508px;}
.wsa{word-spacing:8.841096px;}
.ws73{word-spacing:10.538094px;}
.wsc{word-spacing:10.626444px;}
.ws8{word-spacing:10.652796px;}
.wsd{word-spacing:10.665972px;}
.ws8c{word-spacing:13.288122px;}
.ws2b{word-spacing:13.838160px;}
.ws4c{word-spacing:15.381690px;}
.wsaa{word-spacing:15.439452px;}
.ws25{word-spacing:16.031208px;}
.ws3f{word-spacing:16.168356px;}
.ws3e{word-spacing:16.177674px;}
.ws4e{word-spacing:16.232592px;}
.ws33{word-spacing:16.952586px;}
.ws1d{word-spacing:17.322312px;}
.ws55{word-spacing:17.345310px;}
.ws88{word-spacing:17.411700px;}
.ws48{word-spacing:17.541672px;}
.ws47{word-spacing:17.672580px;}
.ws9f{word-spacing:17.698884px;}
.wsa4{word-spacing:18.021660px;}
.wsa7{word-spacing:18.129252px;}
.ws28{word-spacing:18.183048px;}
.ws8f{word-spacing:18.261666px;}
.ws4f{word-spacing:18.263040px;}
.ws1c{word-spacing:18.344436px;}
.ws35{word-spacing:18.392574px;}
.wsa6{word-spacing:18.398232px;}
.ws1b{word-spacing:18.452028px;}
.ws50{word-spacing:18.458028px;}
.ws22{word-spacing:18.559620px;}
.ws54{word-spacing:18.916206px;}
.ws7e{word-spacing:18.981660px;}
.ws1e{word-spacing:19.043784px;}
.ws84{word-spacing:19.047114px;}
.ws87{word-spacing:19.048086px;}
.ws2e{word-spacing:19.112568px;}
.ws72{word-spacing:19.439838px;}
.ws36{word-spacing:19.505292px;}
.ws9e{word-spacing:19.701654px;}
.ws80{word-spacing:19.832562px;}
.ws46{word-spacing:20.159832px;}
.ws95{word-spacing:20.225286px;}
.ws52{word-spacing:20.290740px;}
.ws4a{word-spacing:20.552556px;}
.ws8a{word-spacing:20.618010px;}
.ws23{word-spacing:20.711460px;}
.ws81{word-spacing:20.814372px;}
.ws79{word-spacing:20.945280px;}
.ws3c{word-spacing:21.010734px;}
.ws5c{word-spacing:21.012048px;}
.ws2d{word-spacing:21.076188px;}
.ws3d{word-spacing:21.141642px;}
.ws49{word-spacing:21.142698px;}
.ws8e{word-spacing:21.143526px;}
.ws8b{word-spacing:21.207096px;}
.ws2f{word-spacing:21.272550px;}
.ws53{word-spacing:21.665274px;}
.ws27{word-spacing:21.787380px;}
.ws7b{word-spacing:21.796182px;}
.ws37{word-spacing:21.861636px;}
.ws70{word-spacing:21.863064px;}
.ws41{word-spacing:21.927090px;}
.ws4b{word-spacing:21.992544px;}
.ws26{word-spacing:22.002564px;}
.ws38{word-spacing:22.057998px;}
.ws7f{word-spacing:22.255752px;}
.ws71{word-spacing:22.385268px;}
.ws7a{word-spacing:22.519950px;}
.ws45{word-spacing:22.581630px;}
.ws39{word-spacing:22.647084px;}
.ws51{word-spacing:22.712538px;}
.ws5b{word-spacing:23.105262px;}
.ws34{word-spacing:23.301624px;}
.ws40{word-spacing:23.367078px;}
.ws4d{word-spacing:23.432532px;}
.ws89{word-spacing:23.436180px;}
.ws6f{word-spacing:23.437482px;}
.ws94{word-spacing:23.563440px;}
.ws3a{word-spacing:23.825256px;}
.ws24{word-spacing:23.939220px;}
.ws57{word-spacing:24.021618px;}
.ws77{word-spacing:24.087072px;}
.ws1a{word-spacing:24.348888px;}
.ws19{word-spacing:24.414342px;}
.ws74{word-spacing:24.415752px;}
.ws15{word-spacing:24.545250px;}
.ws14{word-spacing:24.610704px;}
.ws5e{word-spacing:24.741612px;}
.ws76{word-spacing:24.742698px;}
.ws18{word-spacing:24.807066px;}
.ws58{word-spacing:24.872520px;}
.ws56{word-spacing:25.068882px;}
.ws12{word-spacing:25.110270px;}
.ws13{word-spacing:25.134336px;}
.ws75{word-spacing:25.135752px;}
.ws42{word-spacing:25.396152px;}
.ws78{word-spacing:25.461606px;}
.ws98{word-spacing:25.592514px;}
.ws1f{word-spacing:25.666428px;}
.ws43{word-spacing:25.985238px;}
.ws86{word-spacing:26.051976px;}
.ws9b{word-spacing:26.247054px;}
.ws3b{word-spacing:26.312508px;}
.ws2a{word-spacing:26.574324px;}
.ws6e{word-spacing:26.705232px;}
.ws6d{word-spacing:26.836140px;}
.ws2c{word-spacing:27.032502px;}
.ws85{word-spacing:27.556134px;}
.ws82{word-spacing:27.621588px;}
.ws83{word-spacing:27.687042px;}
.ws67{word-spacing:27.752496px;}
.ws66{word-spacing:28.472490px;}
.ws64{word-spacing:28.474536px;}
.ws90{word-spacing:28.799760px;}
.ws60{word-spacing:28.865940px;}
.ws9c{word-spacing:29.192484px;}
.ws5d{word-spacing:29.585208px;}
.ws61{word-spacing:29.650662px;}
.ws7c{word-spacing:30.305202px;}
.ws9d{word-spacing:30.501564px;}
.ws5a{word-spacing:30.567018px;}
.ws59{word-spacing:30.632472px;}
.ws7d{word-spacing:31.025196px;}
.ws92{word-spacing:31.287012px;}
.ws5f{word-spacing:31.352466px;}
.ws91{word-spacing:31.941552px;}
.ws65{word-spacing:32.335752px;}
.ws9a{word-spacing:32.465184px;}
.ws29{word-spacing:33.054270px;}
.ws69{word-spacing:33.774264px;}
.ws68{word-spacing:34.232442px;}
.ws6b{word-spacing:34.234596px;}
.ws96{word-spacing:34.821528px;}
.ws21{word-spacing:35.285532px;}
.ws6a{word-spacing:35.345160px;}
.ws93{word-spacing:35.541522px;}
.ws32{word-spacing:36.392424px;}
.ws6c{word-spacing:37.833396px;}
.ws97{word-spacing:42.021468px;}
.ws99{word-spacing:46.341432px;}
.ws63{word-spacing:92.324340px;}
._b{margin-left:-37.512366px;}
._1a{margin-left:-32.529618px;}
._31{margin-left:-29.592726px;}
._12{margin-left:-27.073284px;}
._d{margin-left:-6.283584px;}
._e{margin-left:-4.909050px;}
._8{margin-left:-3.589980px;}
._a{margin-left:-2.410116px;}
._9{margin-left:-1.155816px;}
._0{width:1.317600px;}
._16{width:2.410116px;}
._f{width:4.377498px;}
._2b{width:8.747310px;}
._15{width:14.232540px;}
._21{width:16.387008px;}
._10{width:17.402208px;}
._11{width:19.480044px;}
._19{width:20.747898px;}
._13{width:21.976068px;}
._14{width:23.939220px;}
._c{width:25.585614px;}
._25{width:26.749512px;}
._18{width:27.766872px;}
._17{width:28.920678px;}
._23{width:30.812556px;}
._1b{width:32.075076px;}
._22{width:34.616676px;}
._27{width:35.913834px;}
._7{width:37.416150px;}
._2a{width:38.621058px;}
._24{width:40.123302px;}
._1d{width:41.167788px;}
._20{width:42.710586px;}
._1c{width:43.896270px;}
._2d{width:45.915816px;}
._28{width:48.140892px;}
._2c{width:49.941402px;}
._30{width:53.148648px;}
._26{width:56.797194px;}
._2e{width:58.023660px;}
._5{width:60.240000px;}
._6{width:62.880000px;}
._3{width:63.900000px;}
._4{width:66.240000px;}
._29{width:68.582436px;}
._1{width:79.980000px;}
._2{width:82.260000px;}
._2f{width:102.202164px;}
._1e{width:312.028632px;}
._1f{width:424.556412px;}
.fc2{color:transparent;}
.fc1{color:rgb(59,140,195);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.868000px;}
.fs7{font-size:47.820000px;}
.fsb{font-size:48.000000px;}
.fs9{font-size:53.796000px;}
.fsa{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:65.454000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs5{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:0.750000px;}
.y60{bottom:2.590500px;}
.y2c{bottom:16.710000px;}
.y22{bottom:56.310000px;}
.y5f{bottom:62.409714px;}
.y1e{bottom:62.880000px;}
.y5e{bottom:64.085980px;}
.y21{bottom:77.280000px;}
.y2a{bottom:81.615000px;}
.y20{bottom:98.250000px;}
.y29{bottom:102.585000px;}
.y28{bottom:123.570000px;}
.ycc{bottom:126.510000px;}
.ya0{bottom:132.270000px;}
.y85{bottom:139.470000px;}
.ycb{bottom:142.890000px;}
.y5a{bottom:143.430000px;}
.y27{bottom:144.540000px;}
.y9f{bottom:151.710000px;}
.y84{bottom:158.910000px;}
.yca{bottom:159.450000px;}
.y59{bottom:162.690000px;}
.y26{bottom:165.510000px;}
.y9e{bottom:171.150000px;}
.yc9{bottom:175.830000px;}
.y83{bottom:178.350000px;}
.y58{bottom:182.130000px;}
.y1b{bottom:183.502590px;}
.y25{bottom:186.480000px;}
.y9d{bottom:190.590000px;}
.yc8{bottom:192.210000px;}
.y82{bottom:197.790000px;}
.y57{bottom:201.570000px;}
.y1a{bottom:206.725290px;}
.y24{bottom:207.450000px;}
.yc7{bottom:208.770000px;}
.y9c{bottom:209.850000px;}
.y81{bottom:212.550000px;}
.y80{bottom:217.230000px;}
.y9b{bottom:229.290000px;}
.y19{bottom:229.849170px;}
.y7f{bottom:242.970000px;}
.y56{bottom:243.870000px;}
.y9a{bottom:248.730000px;}
.yc6{bottom:251.070000px;}
.y18{bottom:252.981180px;}
.y7e{bottom:262.410000px;}
.y55{bottom:263.310000px;}
.y99{bottom:268.170000px;}
.yc5{bottom:270.510000px;}
.y17{bottom:276.203880px;}
.y7d{bottom:281.850000px;}
.y54{bottom:282.750000px;}
.y98{bottom:287.610000px;}
.yc4{bottom:289.950000px;}
.y7c{bottom:301.290000px;}
.y53{bottom:302.190000px;}
.y23{bottom:305.055000px;}
.y97{bottom:307.050000px;}
.yc3{bottom:309.390000px;}
.y7b{bottom:320.730000px;}
.y52{bottom:321.630000px;}
.y96{bottom:326.490000px;}
.yc2{bottom:328.830000px;}
.y7a{bottom:340.170000px;}
.y51{bottom:341.070000px;}
.y16{bottom:344.356740px;}
.y95{bottom:345.930000px;}
.yc1{bottom:348.270000px;}
.y79{bottom:359.610000px;}
.y50{bottom:360.510000px;}
.y94{bottom:365.370000px;}
.y78{bottom:379.050000px;}
.y4f{bottom:379.950000px;}
.y15{bottom:382.517730px;}
.y93{bottom:384.810000px;}
.yc0{bottom:390.570000px;}
.y77{bottom:398.490000px;}
.y4e{bottom:399.390000px;}
.y92{bottom:404.250000px;}
.ybf{bottom:410.010000px;}
.y76{bottom:417.750000px;}
.y4d{bottom:418.830000px;}
.y14{bottom:420.678720px;}
.y91{bottom:423.690000px;}
.ybe{bottom:429.450000px;}
.y75{bottom:437.190000px;}
.y4c{bottom:438.270000px;}
.y90{bottom:443.130000px;}
.ybd{bottom:448.710000px;}
.y4b{bottom:457.710000px;}
.y13{bottom:458.839710px;}
.y8f{bottom:462.570000px;}
.ybc{bottom:468.150000px;}
.y4a{bottom:477.150000px;}
.y74{bottom:479.670000px;}
.y8e{bottom:481.830000px;}
.ybb{bottom:487.590000px;}
.y49{bottom:496.590000px;}
.y12{bottom:497.000700px;}
.y73{bottom:498.930000px;}
.yba{bottom:507.030000px;}
.y72{bottom:518.370000px;}
.y8d{bottom:526.110000px;}
.y11{bottom:535.161690px;}
.y71{bottom:537.810000px;}
.y8c{bottom:545.550000px;}
.yb9{bottom:549.330000px;}
.y70{bottom:557.250000px;}
.y8b{bottom:564.990000px;}
.yb8{bottom:568.770000px;}
.y10{bottom:573.322680px;}
.y6f{bottom:576.690000px;}
.y48{bottom:581.370000px;}
.y8a{bottom:586.410000px;}
.yb7{bottom:588.210000px;}
.y6e{bottom:596.130000px;}
.y47{bottom:597.750000px;}
.y89{bottom:605.850000px;}
.yb6{bottom:607.650000px;}
.yf{bottom:611.483670px;}
.y46{bottom:614.310000px;}
.y31{bottom:615.000000px;}
.y6d{bottom:615.570000px;}
.yb5{bottom:627.090000px;}
.y45{bottom:630.690000px;}
.y6c{bottom:635.010000px;}
.y2b{bottom:635.130000px;}
.yb4{bottom:646.530000px;}
.y44{bottom:647.070000px;}
.ye{bottom:649.644660px;}
.y6b{bottom:654.450000px;}
.y43{bottom:663.630000px;}
.yb3{bottom:665.970000px;}
.y1d{bottom:667.530000px;}
.y6a{bottom:673.890000px;}
.y30{bottom:675.000000px;}
.y42{bottom:680.010000px;}
.yb2{bottom:685.410000px;}
.yd{bottom:687.805650px;}
.y69{bottom:693.330000px;}
.y2f{bottom:697.500000px;}
.yb1{bottom:704.850000px;}
.y68{bottom:712.770000px;}
.y41{bottom:720.330000px;}
.yb0{bottom:724.290000px;}
.yc{bottom:725.966640px;}
.y2e{bottom:742.500000px;}
.yaf{bottom:743.730000px;}
.y1f{bottom:749.250000px;}
.y40{bottom:750.030000px;}
.y67{bottom:755.970000px;}
.yb{bottom:764.127630px;}
.y3f{bottom:766.410000px;}
.y66{bottom:775.410000px;}
.y3e{bottom:782.790000px;}
.y65{bottom:794.850000px;}
.y3d{bottom:799.350000px;}
.ya{bottom:802.288620px;}
.yae{bottom:813.930000px;}
.y64{bottom:814.290000px;}
.y3c{bottom:815.730000px;}
.y3b{bottom:830.850000px;}
.yad{bottom:833.370000px;}
.y63{bottom:833.730000px;}
.y9{bottom:840.449610px;}
.y3a{bottom:850.290000px;}
.yac{bottom:852.810000px;}
.y33{bottom:862.500000px;}
.y39{bottom:869.730000px;}
.yab{bottom:872.250000px;}
.y8{bottom:878.610600px;}
.y38{bottom:889.170000px;}
.yaa{bottom:891.690000px;}
.y35{bottom:900.000000px;}
.y7{bottom:900.041520px;}
.ya9{bottom:911.130000px;}
.y6{bottom:925.687830px;}
.y34{bottom:930.000000px;}
.ya8{bottom:930.390000px;}
.y37{bottom:935.610000px;}
.ya7{bottom:949.830000px;}
.y5{bottom:951.334140px;}
.y2d{bottom:960.000000px;}
.ya6{bottom:969.270000px;}
.y4{bottom:976.980450px;}
.ya5{bottom:988.710000px;}
.y88{bottom:1000.050000px;}
.ya4{bottom:1008.150000px;}
.y3{bottom:1019.370450px;}
.y87{bottom:1019.490000px;}
.ya3{bottom:1027.590000px;}
.y86{bottom:1038.930000px;}
.ya2{bottom:1047.030000px;}
.y62{bottom:1058.370000px;}
.y2{bottom:1060.044600px;}
.ya1{bottom:1066.470000px;}
.y32{bottom:1074.000000px;}
.y61{bottom:1077.810000px;}
.y1c{bottom:1086.240450px;}
.y1{bottom:1093.890450px;}
.y5d{bottom:1142.079150px;}
.y5c{bottom:1162.283400px;}
.y36{bottom:1167.000000px;}
.h15{height:12.000000px;}
.he{height:24.210900px;}
.h8{height:32.625000px;}
.hf{height:40.347000px;}
.h1{height:45.035156px;}
.h3{height:45.807187px;}
.h10{height:45.817800px;}
.h16{height:48.328125px;}
.h11{height:49.090500px;}
.h13{height:53.678489px;}
.h14{height:55.890186px;}
.hd{height:56.038500px;}
.hc{height:56.421060px;}
.h2{height:58.322812px;}
.h9{height:62.578125px;}
.h5{height:63.615234px;}
.h18{height:67.810500px;}
.hb{height:72.303000px;}
.ha{height:75.093750px;}
.h4{height:78.780000px;}
.h17{height:84.501060px;}
.h6{height:114.150000px;}
.h7{height:223.350000px;}
.h12{height:1261.500000px;}
.h0{height:1263.000000px;}
.w5{width:6.000000px;}
.w4{width:575.460000px;}
.w2{width:580.575000px;}
.w3{width:583.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x6{left:1.500000px;}
.x9{left:15.240000px;}
.x8{left:75.000000px;}
.x3{left:106.380000px;}
.xb{left:127.621350px;}
.xf{left:143.277000px;}
.x5{left:186.885000px;}
.x7{left:188.505000px;}
.xd{left:192.958350px;}
.x2{left:204.216300px;}
.xa{left:213.840000px;}
.xc{left:443.250000px;}
.x4{left:485.820000px;}
.xe{left:521.820000px;}
.x1{left:742.950000px;}
@media print{
.v2{vertical-align:-20.480000pt;}
.v3{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.680000pt;}
.v6{vertical-align:16.640000pt;}
.v5{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:46.080000pt;}
.ls8{letter-spacing:-0.117120pt;}
.lsd{letter-spacing:-0.040992pt;}
.lsb{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls1a{letter-spacing:-0.010627pt;}
.ls9{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000219pt;}
.ls26{letter-spacing:0.000389pt;}
.ls2b{letter-spacing:0.005723pt;}
.ls23{letter-spacing:0.006880pt;}
.ls3{letter-spacing:0.011712pt;}
.ls7{letter-spacing:0.017568pt;}
.ls0{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.029280pt;}
.ls5{letter-spacing:0.035136pt;}
.ls1{letter-spacing:0.037280pt;}
.ls6{letter-spacing:0.040992pt;}
.lsf{letter-spacing:0.052704pt;}
.ls1f{letter-spacing:0.116656pt;}
.ls41{letter-spacing:0.174923pt;}
.lsc{letter-spacing:0.199104pt;}
.ls12{letter-spacing:0.260533pt;}
.ls21{letter-spacing:0.640368pt;}
.ls1c{letter-spacing:1.748960pt;}
.ls32{letter-spacing:2.385680pt;}
.ls25{letter-spacing:2.532587pt;}
.ls2f{letter-spacing:3.020347pt;}
.ls10{letter-spacing:3.028960pt;}
.ls11{letter-spacing:3.668960pt;}
.ls1d{letter-spacing:4.305856pt;}
.ls13{letter-spacing:4.308960pt;}
.ls2d{letter-spacing:6.400389pt;}
.ls43{letter-spacing:11.985589pt;}
.ls1b{letter-spacing:12.276645pt;}
.ls33{letter-spacing:12.855893pt;}
.ls1e{letter-spacing:12.916645pt;}
.ls15{letter-spacing:12.974923pt;}
.ls31{letter-spacing:13.620256pt;}
.ls3e{letter-spacing:15.185589pt;}
.ls17{letter-spacing:16.174923pt;}
.ls45{letter-spacing:16.891808pt;}
.ls35{letter-spacing:18.094923pt;}
.ls37{letter-spacing:18.734923pt;}
.ls3a{letter-spacing:18.967461pt;}
.ls34{letter-spacing:19.025589pt;}
.ls44{letter-spacing:19.142069pt;}
.ls42{letter-spacing:19.142176pt;}
.ls3f{letter-spacing:19.374923pt;}
.ls16{letter-spacing:19.558240pt;}
.ls14{letter-spacing:19.559691pt;}
.ls40{letter-spacing:19.782069pt;}
.ls30{letter-spacing:19.809173pt;}
.ls3b{letter-spacing:20.014923pt;}
.ls3c{letter-spacing:20.992160pt;}
.ls39{letter-spacing:21.294923pt;}
.ls18{letter-spacing:22.228960pt;}
.ls36{letter-spacing:23.652587pt;}
.ls19{letter-spacing:24.788960pt;}
.ls3d{letter-spacing:25.774923pt;}
.ls38{letter-spacing:26.112160pt;}
.ls22{letter-spacing:26.647461pt;}
.ls2e{letter-spacing:28.672160pt;}
.ls27{letter-spacing:28.772587pt;}
.ls20{letter-spacing:29.614923pt;}
.ls2c{letter-spacing:32.407584pt;}
.ls28{letter-spacing:35.374923pt;}
.ls2a{letter-spacing:36.014923pt;}
.ls29{letter-spacing:43.287584pt;}
.lse{letter-spacing:138.119616pt;}
.ws20{word-spacing:-25.104800pt;}
.ws16{word-spacing:-15.047360pt;}
.ws2{word-spacing:-13.263840pt;}
.ws0{word-spacing:-13.222848pt;}
.ws1{word-spacing:-13.205280pt;}
.wsa9{word-spacing:-2.359595pt;}
.wsa1{word-spacing:-2.354400pt;}
.wsab{word-spacing:-2.343115pt;}
.wsa3{word-spacing:-1.183829pt;}
.wsa0{word-spacing:-0.415979pt;}
.wsac{word-spacing:-0.361611pt;}
.ws11{word-spacing:-0.275440pt;}
.ws10{word-spacing:-0.169824pt;}
.wse{word-spacing:-0.158112pt;}
.wsf{word-spacing:-0.134688pt;}
.ws7{word-spacing:-0.076128pt;}
.ws17{word-spacing:-0.058181pt;}
.wsa2{word-spacing:-0.047819pt;}
.ws62{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws44{word-spacing:0.010627pt;}
.ws6{word-spacing:0.067104pt;}
.ws5{word-spacing:0.082016pt;}
.wsa5{word-spacing:0.143456pt;}
.ws4{word-spacing:0.208768pt;}
.wsa8{word-spacing:0.669461pt;}
.ws30{word-spacing:1.420587pt;}
.ws8d{word-spacing:7.180587pt;}
.wsb{word-spacing:7.208736pt;}
.ws31{word-spacing:7.820587pt;}
.ws9{word-spacing:7.852896pt;}
.wsa{word-spacing:7.858752pt;}
.ws73{word-spacing:9.367195pt;}
.wsc{word-spacing:9.445728pt;}
.ws8{word-spacing:9.469152pt;}
.wsd{word-spacing:9.480864pt;}
.ws8c{word-spacing:11.811664pt;}
.ws2b{word-spacing:12.300587pt;}
.ws4c{word-spacing:13.672613pt;}
.wsaa{word-spacing:13.723957pt;}
.ws25{word-spacing:14.249963pt;}
.ws3f{word-spacing:14.371872pt;}
.ws3e{word-spacing:14.380155pt;}
.ws4e{word-spacing:14.428971pt;}
.ws33{word-spacing:15.068965pt;}
.ws1d{word-spacing:15.397611pt;}
.ws55{word-spacing:15.418053pt;}
.ws88{word-spacing:15.477067pt;}
.ws48{word-spacing:15.592597pt;}
.ws47{word-spacing:15.708960pt;}
.ws9f{word-spacing:15.732341pt;}
.wsa4{word-spacing:16.019253pt;}
.wsa7{word-spacing:16.114891pt;}
.ws28{word-spacing:16.162709pt;}
.ws8f{word-spacing:16.232592pt;}
.ws4f{word-spacing:16.233813pt;}
.ws1c{word-spacing:16.306165pt;}
.ws35{word-spacing:16.348955pt;}
.wsa6{word-spacing:16.353984pt;}
.ws1b{word-spacing:16.401803pt;}
.ws50{word-spacing:16.407136pt;}
.ws22{word-spacing:16.497440pt;}
.ws54{word-spacing:16.814405pt;}
.ws7e{word-spacing:16.872587pt;}
.ws1e{word-spacing:16.927808pt;}
.ws84{word-spacing:16.930768pt;}
.ws87{word-spacing:16.931632pt;}
.ws2e{word-spacing:16.988949pt;}
.ws72{word-spacing:17.279856pt;}
.ws36{word-spacing:17.338037pt;}
.ws9e{word-spacing:17.512581pt;}
.ws80{word-spacing:17.628944pt;}
.ws46{word-spacing:17.919851pt;}
.ws95{word-spacing:17.978032pt;}
.ws52{word-spacing:18.036213pt;}
.ws4a{word-spacing:18.268939pt;}
.ws8a{word-spacing:18.327120pt;}
.ws23{word-spacing:18.410187pt;}
.ws81{word-spacing:18.501664pt;}
.ws79{word-spacing:18.618027pt;}
.ws3c{word-spacing:18.676208pt;}
.ws5c{word-spacing:18.677376pt;}
.ws2d{word-spacing:18.734389pt;}
.ws3d{word-spacing:18.792571pt;}
.ws49{word-spacing:18.793509pt;}
.ws8e{word-spacing:18.794245pt;}
.ws8b{word-spacing:18.850752pt;}
.ws2f{word-spacing:18.908933pt;}
.ws53{word-spacing:19.258021pt;}
.ws27{word-spacing:19.366560pt;}
.ws7b{word-spacing:19.374384pt;}
.ws37{word-spacing:19.432565pt;}
.ws70{word-spacing:19.433835pt;}
.ws41{word-spacing:19.490747pt;}
.ws4b{word-spacing:19.548928pt;}
.ws26{word-spacing:19.557835pt;}
.ws38{word-spacing:19.607109pt;}
.ws7f{word-spacing:19.782891pt;}
.ws71{word-spacing:19.898016pt;}
.ws7a{word-spacing:20.017733pt;}
.ws45{word-spacing:20.072560pt;}
.ws39{word-spacing:20.130741pt;}
.ws51{word-spacing:20.188923pt;}
.ws5b{word-spacing:20.538011pt;}
.ws34{word-spacing:20.712555pt;}
.ws40{word-spacing:20.770736pt;}
.ws4d{word-spacing:20.828917pt;}
.ws89{word-spacing:20.832160pt;}
.ws6f{word-spacing:20.833317pt;}
.ws94{word-spacing:20.945280pt;}
.ws3a{word-spacing:21.178005pt;}
.ws24{word-spacing:21.279307pt;}
.ws57{word-spacing:21.352549pt;}
.ws77{word-spacing:21.410731pt;}
.ws1a{word-spacing:21.643456pt;}
.ws19{word-spacing:21.701637pt;}
.ws74{word-spacing:21.702891pt;}
.ws15{word-spacing:21.818000pt;}
.ws14{word-spacing:21.876181pt;}
.ws5e{word-spacing:21.992544pt;}
.ws76{word-spacing:21.993509pt;}
.ws18{word-spacing:22.050725pt;}
.ws58{word-spacing:22.108907pt;}
.ws56{word-spacing:22.283451pt;}
.ws12{word-spacing:22.320240pt;}
.ws13{word-spacing:22.341632pt;}
.ws75{word-spacing:22.342891pt;}
.ws42{word-spacing:22.574357pt;}
.ws78{word-spacing:22.632539pt;}
.ws98{word-spacing:22.748901pt;}
.ws1f{word-spacing:22.814603pt;}
.ws43{word-spacing:23.097989pt;}
.ws86{word-spacing:23.157312pt;}
.ws9b{word-spacing:23.330715pt;}
.ws3b{word-spacing:23.388896pt;}
.ws2a{word-spacing:23.621621pt;}
.ws6e{word-spacing:23.737984pt;}
.ws6d{word-spacing:23.854347pt;}
.ws2c{word-spacing:24.028891pt;}
.ws85{word-spacing:24.494341pt;}
.ws82{word-spacing:24.552523pt;}
.ws83{word-spacing:24.610704pt;}
.ws67{word-spacing:24.668885pt;}
.ws66{word-spacing:25.308880pt;}
.ws64{word-spacing:25.310699pt;}
.ws90{word-spacing:25.599787pt;}
.ws60{word-spacing:25.658613pt;}
.ws9c{word-spacing:25.948875pt;}
.ws5d{word-spacing:26.297963pt;}
.ws61{word-spacing:26.356144pt;}
.ws7c{word-spacing:26.937957pt;}
.ws9d{word-spacing:27.112501pt;}
.ws5a{word-spacing:27.170683pt;}
.ws59{word-spacing:27.228864pt;}
.ws7d{word-spacing:27.577952pt;}
.ws92{word-spacing:27.810677pt;}
.ws5f{word-spacing:27.868859pt;}
.ws91{word-spacing:28.392491pt;}
.ws65{word-spacing:28.742891pt;}
.ws9a{word-spacing:28.857941pt;}
.ws29{word-spacing:29.381573pt;}
.ws69{word-spacing:30.021568pt;}
.ws68{word-spacing:30.428837pt;}
.ws6b{word-spacing:30.430752pt;}
.ws96{word-spacing:30.952469pt;}
.ws21{word-spacing:31.364917pt;}
.ws6a{word-spacing:31.417920pt;}
.ws93{word-spacing:31.592464pt;}
.ws32{word-spacing:32.348821pt;}
.ws6c{word-spacing:33.629685pt;}
.ws97{word-spacing:37.352416pt;}
.ws99{word-spacing:41.192384pt;}
.ws63{word-spacing:82.066080pt;}
._b{margin-left:-33.344325pt;}
._1a{margin-left:-28.915216pt;}
._31{margin-left:-26.304645pt;}
._12{margin-left:-24.065141pt;}
._d{margin-left:-5.585408pt;}
._e{margin-left:-4.363600pt;}
._8{margin-left:-3.191093pt;}
._a{margin-left:-2.142325pt;}
._9{margin-left:-1.027392pt;}
._0{width:1.171200pt;}
._16{width:2.142325pt;}
._f{width:3.891109pt;}
._2b{width:7.775387pt;}
._15{width:12.651147pt;}
._21{width:14.566229pt;}
._10{width:15.468629pt;}
._11{width:17.315595pt;}
._19{width:18.442576pt;}
._13{width:19.534283pt;}
._14{width:21.279307pt;}
._c{width:22.742768pt;}
._25{width:23.777344pt;}
._18{width:24.681664pt;}
._17{width:25.707269pt;}
._23{width:27.388939pt;}
._1b{width:28.511179pt;}
._22{width:30.770379pt;}
._27{width:31.923408pt;}
._7{width:33.258800pt;}
._2a{width:34.329829pt;}
._24{width:35.665157pt;}
._1d{width:36.593589pt;}
._20{width:37.964965pt;}
._1c{width:39.018907pt;}
._2d{width:40.814059pt;}
._28{width:42.791904pt;}
._2c{width:44.392357pt;}
._30{width:47.243243pt;}
._26{width:50.486395pt;}
._2e{width:51.576587pt;}
._5{width:53.546667pt;}
._6{width:55.893333pt;}
._3{width:56.800000pt;}
._4{width:58.880000pt;}
._29{width:60.962165pt;}
._1{width:71.093333pt;}
._2{width:73.120000pt;}
._2f{width:90.846368pt;}
._1e{width:277.358784pt;}
._1f{width:377.383477pt;}
.fs8{font-size:31.882667pt;}
.fs7{font-size:42.506667pt;}
.fsb{font-size:42.666667pt;}
.fs9{font-size:47.818667pt;}
.fsa{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.181333pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs5{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:0.666667pt;}
.y60{bottom:2.302667pt;}
.y2c{bottom:14.853333pt;}
.y22{bottom:50.053333pt;}
.y5f{bottom:55.475301pt;}
.y1e{bottom:55.893333pt;}
.y5e{bottom:56.965315pt;}
.y21{bottom:68.693333pt;}
.y2a{bottom:72.546667pt;}
.y20{bottom:87.333333pt;}
.y29{bottom:91.186667pt;}
.y28{bottom:109.840000pt;}
.ycc{bottom:112.453333pt;}
.ya0{bottom:117.573333pt;}
.y85{bottom:123.973333pt;}
.ycb{bottom:127.013333pt;}
.y5a{bottom:127.493333pt;}
.y27{bottom:128.480000pt;}
.y9f{bottom:134.853333pt;}
.y84{bottom:141.253333pt;}
.yca{bottom:141.733333pt;}
.y59{bottom:144.613333pt;}
.y26{bottom:147.120000pt;}
.y9e{bottom:152.133333pt;}
.yc9{bottom:156.293333pt;}
.y83{bottom:158.533333pt;}
.y58{bottom:161.893333pt;}
.y1b{bottom:163.113413pt;}
.y25{bottom:165.760000pt;}
.y9d{bottom:169.413333pt;}
.yc8{bottom:170.853333pt;}
.y82{bottom:175.813333pt;}
.y57{bottom:179.173333pt;}
.y1a{bottom:183.755813pt;}
.y24{bottom:184.400000pt;}
.yc7{bottom:185.573333pt;}
.y9c{bottom:186.533333pt;}
.y81{bottom:188.933333pt;}
.y80{bottom:193.093333pt;}
.y9b{bottom:203.813333pt;}
.y19{bottom:204.310373pt;}
.y7f{bottom:215.973333pt;}
.y56{bottom:216.773333pt;}
.y9a{bottom:221.093333pt;}
.yc6{bottom:223.173333pt;}
.y18{bottom:224.872160pt;}
.y7e{bottom:233.253333pt;}
.y55{bottom:234.053333pt;}
.y99{bottom:238.373333pt;}
.yc5{bottom:240.453333pt;}
.y17{bottom:245.514560pt;}
.y7d{bottom:250.533333pt;}
.y54{bottom:251.333333pt;}
.y98{bottom:255.653333pt;}
.yc4{bottom:257.733333pt;}
.y7c{bottom:267.813333pt;}
.y53{bottom:268.613333pt;}
.y23{bottom:271.160000pt;}
.y97{bottom:272.933333pt;}
.yc3{bottom:275.013333pt;}
.y7b{bottom:285.093333pt;}
.y52{bottom:285.893333pt;}
.y96{bottom:290.213333pt;}
.yc2{bottom:292.293333pt;}
.y7a{bottom:302.373333pt;}
.y51{bottom:303.173333pt;}
.y16{bottom:306.094880pt;}
.y95{bottom:307.493333pt;}
.yc1{bottom:309.573333pt;}
.y79{bottom:319.653333pt;}
.y50{bottom:320.453333pt;}
.y94{bottom:324.773333pt;}
.y78{bottom:336.933333pt;}
.y4f{bottom:337.733333pt;}
.y15{bottom:340.015760pt;}
.y93{bottom:342.053333pt;}
.yc0{bottom:347.173333pt;}
.y77{bottom:354.213333pt;}
.y4e{bottom:355.013333pt;}
.y92{bottom:359.333333pt;}
.ybf{bottom:364.453333pt;}
.y76{bottom:371.333333pt;}
.y4d{bottom:372.293333pt;}
.y14{bottom:373.936640pt;}
.y91{bottom:376.613333pt;}
.ybe{bottom:381.733333pt;}
.y75{bottom:388.613333pt;}
.y4c{bottom:389.573333pt;}
.y90{bottom:393.893333pt;}
.ybd{bottom:398.853333pt;}
.y4b{bottom:406.853333pt;}
.y13{bottom:407.857520pt;}
.y8f{bottom:411.173333pt;}
.ybc{bottom:416.133333pt;}
.y4a{bottom:424.133333pt;}
.y74{bottom:426.373333pt;}
.y8e{bottom:428.293333pt;}
.ybb{bottom:433.413333pt;}
.y49{bottom:441.413333pt;}
.y12{bottom:441.778400pt;}
.y73{bottom:443.493333pt;}
.yba{bottom:450.693333pt;}
.y72{bottom:460.773333pt;}
.y8d{bottom:467.653333pt;}
.y11{bottom:475.699280pt;}
.y71{bottom:478.053333pt;}
.y8c{bottom:484.933333pt;}
.yb9{bottom:488.293333pt;}
.y70{bottom:495.333333pt;}
.y8b{bottom:502.213333pt;}
.yb8{bottom:505.573333pt;}
.y10{bottom:509.620160pt;}
.y6f{bottom:512.613333pt;}
.y48{bottom:516.773333pt;}
.y8a{bottom:521.253333pt;}
.yb7{bottom:522.853333pt;}
.y6e{bottom:529.893333pt;}
.y47{bottom:531.333333pt;}
.y89{bottom:538.533333pt;}
.yb6{bottom:540.133333pt;}
.yf{bottom:543.541040pt;}
.y46{bottom:546.053333pt;}
.y31{bottom:546.666667pt;}
.y6d{bottom:547.173333pt;}
.yb5{bottom:557.413333pt;}
.y45{bottom:560.613333pt;}
.y6c{bottom:564.453333pt;}
.y2b{bottom:564.560000pt;}
.yb4{bottom:574.693333pt;}
.y44{bottom:575.173333pt;}
.ye{bottom:577.461920pt;}
.y6b{bottom:581.733333pt;}
.y43{bottom:589.893333pt;}
.yb3{bottom:591.973333pt;}
.y1d{bottom:593.360000pt;}
.y6a{bottom:599.013333pt;}
.y30{bottom:600.000000pt;}
.y42{bottom:604.453333pt;}
.yb2{bottom:609.253333pt;}
.yd{bottom:611.382800pt;}
.y69{bottom:616.293333pt;}
.y2f{bottom:620.000000pt;}
.yb1{bottom:626.533333pt;}
.y68{bottom:633.573333pt;}
.y41{bottom:640.293333pt;}
.yb0{bottom:643.813333pt;}
.yc{bottom:645.303680pt;}
.y2e{bottom:660.000000pt;}
.yaf{bottom:661.093333pt;}
.y1f{bottom:666.000000pt;}
.y40{bottom:666.693333pt;}
.y67{bottom:671.973333pt;}
.yb{bottom:679.224560pt;}
.y3f{bottom:681.253333pt;}
.y66{bottom:689.253333pt;}
.y3e{bottom:695.813333pt;}
.y65{bottom:706.533333pt;}
.y3d{bottom:710.533333pt;}
.ya{bottom:713.145440pt;}
.yae{bottom:723.493333pt;}
.y64{bottom:723.813333pt;}
.y3c{bottom:725.093333pt;}
.y3b{bottom:738.533333pt;}
.yad{bottom:740.773333pt;}
.y63{bottom:741.093333pt;}
.y9{bottom:747.066320pt;}
.y3a{bottom:755.813333pt;}
.yac{bottom:758.053333pt;}
.y33{bottom:766.666667pt;}
.y39{bottom:773.093333pt;}
.yab{bottom:775.333333pt;}
.y8{bottom:780.987200pt;}
.y38{bottom:790.373333pt;}
.yaa{bottom:792.613333pt;}
.y35{bottom:800.000000pt;}
.y7{bottom:800.036907pt;}
.ya9{bottom:809.893333pt;}
.y6{bottom:822.833627pt;}
.y34{bottom:826.666667pt;}
.ya8{bottom:827.013333pt;}
.y37{bottom:831.653333pt;}
.ya7{bottom:844.293333pt;}
.y5{bottom:845.630347pt;}
.y2d{bottom:853.333333pt;}
.ya6{bottom:861.573333pt;}
.y4{bottom:868.427067pt;}
.ya5{bottom:878.853333pt;}
.y88{bottom:888.933333pt;}
.ya4{bottom:896.133333pt;}
.y3{bottom:906.107067pt;}
.y87{bottom:906.213333pt;}
.ya3{bottom:913.413333pt;}
.y86{bottom:923.493333pt;}
.ya2{bottom:930.693333pt;}
.y62{bottom:940.773333pt;}
.y2{bottom:942.261867pt;}
.ya1{bottom:947.973333pt;}
.y32{bottom:954.666667pt;}
.y61{bottom:958.053333pt;}
.y1c{bottom:965.547067pt;}
.y1{bottom:972.347067pt;}
.y5d{bottom:1015.181467pt;}
.y5c{bottom:1033.140800pt;}
.y36{bottom:1037.333333pt;}
.h15{height:10.666667pt;}
.he{height:21.520800pt;}
.h8{height:29.000000pt;}
.hf{height:35.864000pt;}
.h1{height:40.031250pt;}
.h3{height:40.717500pt;}
.h10{height:40.726933pt;}
.h16{height:42.958333pt;}
.h11{height:43.636000pt;}
.h13{height:47.714212pt;}
.h14{height:49.680165pt;}
.hd{height:49.812000pt;}
.hc{height:50.152053pt;}
.h2{height:51.842500pt;}
.h9{height:55.625000pt;}
.h5{height:56.546875pt;}
.h18{height:60.276000pt;}
.hb{height:64.269333pt;}
.ha{height:66.750000pt;}
.h4{height:70.026667pt;}
.h17{height:75.112053pt;}
.h6{height:101.466667pt;}
.h7{height:198.533333pt;}
.h12{height:1121.333333pt;}
.h0{height:1122.666667pt;}
.w5{width:5.333333pt;}
.w4{width:511.520000pt;}
.w2{width:516.066667pt;}
.w3{width:518.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x6{left:1.333333pt;}
.x9{left:13.546667pt;}
.x8{left:66.666667pt;}
.x3{left:94.560000pt;}
.xb{left:113.441200pt;}
.xf{left:127.357333pt;}
.x5{left:166.120000pt;}
.x7{left:167.560000pt;}
.xd{left:171.518533pt;}
.x2{left:181.525600pt;}
.xa{left:190.080000pt;}
.xc{left:394.000000pt;}
.x4{left:431.840000pt;}
.xe{left:463.840000pt;}
.x1{left:660.400000pt;}
}




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