
    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_dd486ad24b288e834da56cd6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_619436d494c090d04bbcb43a.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_88809fb8c7619eae5d21ee10.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_753130962831125d8329c587.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856000;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_4dc15534548609a8e46a156a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_4059118819a8b2d8a164fca2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5355597cea8d0872c1d36ae0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c97e449021b281b6388df4a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.820000;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_6464312ce2e2bc6a2947bb6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.399000;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_a3d721b7294f24df1dfe04df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_a919b84be7f5cb62642df8df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687000;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_f6d424238eba7ac32f67e0c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.383000;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_a94b598e8d045d42273e39b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_09ab7b0356128cfd29a8a97c.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v9{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.758000px;}
.v4{vertical-align:20.718000px;}
.vb{vertical-align:26.028000px;}
.v1{vertical-align:29.622000px;}
.v3{vertical-align:48.528000px;}
.v6{vertical-align:78.822000px;}
.v7{vertical-align:97.728000px;}
.v2{vertical-align:101.142000px;}
.v8{vertical-align:134.286000px;}
.v5{vertical-align:150.342000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000472px;}
.lsc{letter-spacing:0.004664px;}
.ls13{letter-spacing:0.007037px;}
.ls28{letter-spacing:0.010116px;}
.ls1f{letter-spacing:0.011355px;}
.ls2b{letter-spacing:0.017136px;}
.ls25{letter-spacing:0.017355px;}
.ls24{letter-spacing:1.909688px;}
.ls27{letter-spacing:1.925958px;}
.ls1e{letter-spacing:1.945021px;}
.lsd{letter-spacing:1.956213px;}
.ls9{letter-spacing:2.984915px;}
.lse{letter-spacing:2.990915px;}
.ls1d{letter-spacing:7.167341px;}
.ls3{letter-spacing:11.937717px;}
.ls7{letter-spacing:11.956664px;}
.ls21{letter-spacing:13.915853px;}
.ls26{letter-spacing:14.936915px;}
.ls1a{letter-spacing:14.942915px;}
.ls4{letter-spacing:15.924326px;}
.lsb{letter-spacing:15.935518px;}
.ls16{letter-spacing:15.948664px;}
.lsa{letter-spacing:18.926915px;}
.ls2a{letter-spacing:19.869542px;}
.ls2{letter-spacing:19.941274px;}
.ls12{letter-spacing:21.878016px;}
.ls1{letter-spacing:22.910915px;}
.ls15{letter-spacing:22.916915px;}
.ls20{letter-spacing:23.111518px;}
.ls19{letter-spacing:23.113473px;}
.ls5{letter-spacing:23.123551px;}
.ls17{letter-spacing:23.129551px;}
.ls10{letter-spacing:25.321114px;}
.ls14{letter-spacing:26.110157px;}
.ls1c{letter-spacing:27.047123px;}
.ls2c{letter-spacing:35.148288px;}
.ls6{letter-spacing:47.030915px;}
.ls18{letter-spacing:53.887695px;}
.ls1b{letter-spacing:158.935695px;}
.ls22{letter-spacing:173.131695px;}
.lsf{letter-spacing:420.775219px;}
.ls29{letter-spacing:649.239091px;}
.ls23{letter-spacing:917.657242px;}
.ls11{letter-spacing:1161.184666px;}
.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:-71.731200px;}
.ws13{word-spacing:-45.664082px;}
.ws27{word-spacing:-33.756703px;}
.ws26{word-spacing:-31.748229px;}
.ws2a{word-spacing:-27.803013px;}
.ws1a{word-spacing:-26.899125px;}
.ws16{word-spacing:-25.722808px;}
.ws15{word-spacing:-19.510886px;}
.ws1d{word-spacing:-15.178322px;}
.ws24{word-spacing:-3.873485px;}
.ws28{word-spacing:-3.586560px;}
.ws4{word-spacing:-2.539638px;}
.ws6{word-spacing:-1.950547px;}
.ws39{word-spacing:-0.645581px;}
.ws8{word-spacing:-0.117818px;}
.ws14{word-spacing:-0.071731px;}
.ws11{word-spacing:0.000000px;}
.ws36{word-spacing:0.143462px;}
.ws1e{word-spacing:0.358656px;}
.ws17{word-spacing:0.430387px;}
.ws7{word-spacing:1.714911px;}
.ws33{word-spacing:1.936742px;}
.ws10{word-spacing:2.367130px;}
.ws3c{word-spacing:2.510592px;}
.ws2b{word-spacing:2.725786px;}
.ws34{word-spacing:3.012710px;}
.wsa{word-spacing:3.514829px;}
.ws2{word-spacing:3.613094px;}
.ws1f{word-spacing:3.770173px;}
.wsd{word-spacing:3.873485px;}
.ws23{word-spacing:3.945216px;}
.ws30{word-spacing:4.183342px;}
.ws3b{word-spacing:4.303872px;}
.ws1{word-spacing:4.648169px;}
.ws18{word-spacing:5.379825px;}
.ws32{word-spacing:5.451571px;}
.wse{word-spacing:5.523302px;}
.ws3a{word-spacing:6.168883px;}
.ws1b{word-spacing:6.384077px;}
.ws12{word-spacing:6.455775px;}
.ws3{word-spacing:6.493096px;}
.ws20{word-spacing:6.599270px;}
.ws2c{word-spacing:6.957926px;}
.ws5{word-spacing:7.278552px;}
.ws3d{word-spacing:7.531776px;}
.ws0{word-spacing:7.748437px;}
.ws31{word-spacing:7.818701px;}
.ws3f{word-spacing:7.890432px;}
.ws2f{word-spacing:8.249088px;}
.ws3e{word-spacing:8.320819px;}
.wsb{word-spacing:8.822938px;}
.wsc{word-spacing:9.253325px;}
.ws1c{word-spacing:10.114099px;}
.ws2e{word-spacing:10.759680px;}
.ws25{word-spacing:11.692186px;}
.wsf{word-spacing:15.278746px;}
.ws35{word-spacing:15.852595px;}
.ws19{word-spacing:22.869461px;}
.ws40{word-spacing:25.034189px;}
.ws22{word-spacing:29.098391px;}
.ws37{word-spacing:36.798106px;}
.ws38{word-spacing:36.869837px;}
.ws9{word-spacing:83.925075px;}
.ws29{word-spacing:106.764718px;}
.ws2d{word-spacing:1762.220390px;}
._2a{margin-left:-34.488374px;}
._13{margin-left:-9.709486px;}
._8{margin-left:-6.480924px;}
._3{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._14{margin-left:-2.836966px;}
._2{margin-left:-1.832729px;}
._1{width:1.832729px;}
._1a{width:2.836966px;}
._7{width:3.843225px;}
._18{width:7.455444px;}
._4{width:16.887287px;}
._e{width:19.837260px;}
._d{width:21.815474px;}
._19{width:22.835638px;}
._f{width:24.381442px;}
._1c{width:25.998977px;}
._6{width:27.229114px;}
._29{width:28.736435px;}
._a{width:29.879628px;}
._9{width:31.131341px;}
._11{width:32.422502px;}
._b{width:35.976780px;}
._10{width:38.663117px;}
._5{width:39.992761px;}
._28{width:42.621776px;}
._1b{width:44.401613px;}
._17{width:51.646200px;}
._15{width:54.966709px;}
._27{width:73.811405px;}
._1f{width:110.896435px;}
._c{width:116.203950px;}
._20{width:147.335885px;}
._26{width:184.636109px;}
._24{width:221.362483px;}
._22{width:332.115456px;}
._23{width:369.057024px;}
._21{width:442.868429px;}
._25{width:479.809997px;}
._1e{width:553.693133px;}
._16{width:1100.571802px;}
._1d{width:2143.909272px;}
._12{width:2317.491610px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y52{bottom:108.000000px;}
.y37{bottom:124.000500px;}
.y51{bottom:129.669000px;}
.y36{bottom:145.669500px;}
.y50{bottom:151.338000px;}
.y35{bottom:167.338500px;}
.y4f{bottom:184.588500px;}
.y34{bottom:200.589000px;}
.y6d{bottom:209.838000px;}
.y1b{bottom:217.032000px;}
.y6c{bottom:231.507000px;}
.y4e{bottom:236.569500px;}
.y1a{bottom:238.699500px;}
.y33{bottom:252.582000px;}
.y6b{bottom:253.176000px;}
.y19{bottom:260.368500px;}
.y4d{bottom:269.820000px;}
.y6a{bottom:274.843500px;}
.y18{bottom:282.037500px;}
.y32{bottom:285.832500px;}
.y17{bottom:303.706500px;}
.y69{bottom:314.271000px;}
.y4c{bottom:321.801000px;}
.y16{bottom:325.375500px;}
.y31{bottom:337.824000px;}
.y4b{bottom:343.470000px;}
.y15{bottom:347.044500px;}
.y14{bottom:368.712000px;}
.y68{bottom:374.172000px;}
.y30{bottom:374.437500px;}
.y4a{bottom:382.897500px;}
.y13{bottom:390.381000px;}
.y67{bottom:395.841000px;}
.y2f{bottom:411.049500px;}
.y66{bottom:417.510000px;}
.y12{bottom:429.808500px;}
.y65{bottom:439.177500px;}
.y49{bottom:442.786500px;}
.y7c{bottom:445.903500px;}
.y2e{bottom:447.663000px;}
.y64{bottom:460.846500px;}
.y48{bottom:464.455500px;}
.y2d{bottom:469.330500px;}
.y63{bottom:482.515500px;}
.y47{bottom:486.124500px;}
.y11{bottom:489.709500px;}
.y2c{bottom:502.581000px;}
.y62{bottom:504.184500px;}
.y46{bottom:507.793500px;}
.y10{bottom:510.033000px;}
.y7b{bottom:519.127500px;}
.y61{bottom:525.853500px;}
.yf{bottom:530.356500px;}
.y45{bottom:547.221000px;}
.y2b{bottom:547.239000px;}
.y60{bottom:547.521000px;}
.ye{bottom:550.680000px;}
.y7a{bottom:555.741000px;}
.yd{bottom:571.003500px;}
.y5f{bottom:586.948500px;}
.yc{bottom:591.328500px;}
.y79{bottom:592.353000px;}
.y44{bottom:607.110000px;}
.y2a{bottom:607.140000px;}
.yb{bottom:611.652000px;}
.y43{bottom:628.779000px;}
.y29{bottom:628.807500px;}
.y78{bottom:628.966500px;}
.ya{bottom:631.975500px;}
.y5e{bottom:646.849500px;}
.y42{bottom:650.448000px;}
.y28{bottom:650.476500px;}
.y9{bottom:662.317500px;}
.y77{bottom:668.394000px;}
.y5d{bottom:668.518500px;}
.y41{bottom:683.698500px;}
.y27{bottom:683.727000px;}
.y5c{bottom:690.186000px;}
.y5b{bottom:711.855000px;}
.y76{bottom:728.293500px;}
.y8{bottom:728.406000px;}
.y5a{bottom:733.524000px;}
.y40{bottom:735.679500px;}
.y26{bottom:735.720000px;}
.y75{bottom:749.962500px;}
.y3f{bottom:768.930000px;}
.y25{bottom:768.970500px;}
.y7{bottom:770.473500px;}
.y74{bottom:771.631500px;}
.y59{bottom:772.951500px;}
.y73{bottom:793.300500px;}
.y6{bottom:797.373000px;}
.y72{bottom:814.969500px;}
.y3e{bottom:820.911000px;}
.y24{bottom:820.962000px;}
.y5{bottom:824.272500px;}
.y58{bottom:832.852500px;}
.y71{bottom:836.637000px;}
.y3d{bottom:852.262500px;}
.y23{bottom:860.563500px;}
.y57{bottom:869.464500px;}
.y3c{bottom:873.931500px;}
.y70{bottom:876.064500px;}
.y4{bottom:877.509000px;}
.y22{bottom:900.165000px;}
.y56{bottom:906.076500px;}
.y3b{bottom:910.473000px;}
.y3{bottom:914.869500px;}
.y21{bottom:921.834000px;}
.y3a{bottom:922.774500px;}
.y6f{bottom:935.965500px;}
.y55{bottom:942.690000px;}
.y2{bottom:952.230000px;}
.y6e{bottom:957.634500px;}
.y20{bottom:958.450500px;}
.y39{bottom:960.493500px;}
.y1f{bottom:970.750500px;}
.y38{bottom:972.793500px;}
.y54{bottom:979.302000px;}
.y1{bottom:989.589000px;}
.y53{bottom:1000.971000px;}
.y1e{bottom:1022.640000px;}
.y1d{bottom:1062.067500px;}
.h4{height:41.040034px;}
.h5{height:45.687311px;}
.h3{height:46.865494px;}
.h12{height:49.781453px;}
.h7{height:53.798400px;}
.h11{height:62.803496px;}
.hb{height:62.809496px;}
.h2{height:64.557900px;}
.h6{height:77.469300px;}
.h1{height:92.981250px;}
.h8{height:104.011248px;}
.hf{height:110.389496px;}
.he{height:112.003496px;}
.hd{height:151.526400px;}
.h9{height:153.211248px;}
.h10{height:153.217248px;}
.hc{height:159.595496px;}
.ha{height:167.473496px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x1b{left:116.779500px;}
.x13{left:129.460500px;}
.xc{left:134.338500px;}
.x1{left:152.227500px;}
.xa{left:176.443500px;}
.x3{left:181.573500px;}
.x4{left:186.642000px;}
.x14{left:214.882500px;}
.xe{left:235.633500px;}
.x18{left:261.999000px;}
.x1a{left:292.743000px;}
.x2{left:328.668000px;}
.x15{left:337.302000px;}
.x7{left:347.319000px;}
.xf{left:355.591500px;}
.x8{left:371.938500px;}
.x6{left:386.250000px;}
.x5{left:399.154500px;}
.x19{left:411.193500px;}
.x12{left:420.729000px;}
.x9{left:422.998500px;}
.xd{left:454.611000px;}
.x16{left:478.516500px;}
.x10{left:519.601500px;}
.x11{left:586.834500px;}
.x17{left:602.868000px;}
@media print{
.v9{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:9.562667pt;}
.v4{vertical-align:18.416000pt;}
.vb{vertical-align:23.136000pt;}
.v1{vertical-align:26.330667pt;}
.v3{vertical-align:43.136000pt;}
.v6{vertical-align:70.064000pt;}
.v7{vertical-align:86.869333pt;}
.v2{vertical-align:89.904000pt;}
.v8{vertical-align:119.365333pt;}
.v5{vertical-align:133.637333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000420pt;}
.lsc{letter-spacing:0.004145pt;}
.ls13{letter-spacing:0.006255pt;}
.ls28{letter-spacing:0.008992pt;}
.ls1f{letter-spacing:0.010093pt;}
.ls2b{letter-spacing:0.015232pt;}
.ls25{letter-spacing:0.015427pt;}
.ls24{letter-spacing:1.697500pt;}
.ls27{letter-spacing:1.711962pt;}
.ls1e{letter-spacing:1.728908pt;}
.lsd{letter-spacing:1.738856pt;}
.ls9{letter-spacing:2.653258pt;}
.lse{letter-spacing:2.658591pt;}
.ls1d{letter-spacing:6.370970pt;}
.ls3{letter-spacing:10.611304pt;}
.ls7{letter-spacing:10.628145pt;}
.ls21{letter-spacing:12.369647pt;}
.ls26{letter-spacing:13.277258pt;}
.ls1a{letter-spacing:13.282591pt;}
.ls4{letter-spacing:14.154957pt;}
.lsb{letter-spacing:14.164905pt;}
.ls16{letter-spacing:14.176591pt;}
.lsa{letter-spacing:16.823925pt;}
.ls2a{letter-spacing:17.661815pt;}
.ls2{letter-spacing:17.725577pt;}
.ls12{letter-spacing:19.447125pt;}
.ls1{letter-spacing:20.365258pt;}
.ls15{letter-spacing:20.370591pt;}
.ls20{letter-spacing:20.543572pt;}
.ls19{letter-spacing:20.545309pt;}
.ls5{letter-spacing:20.554267pt;}
.ls17{letter-spacing:20.559601pt;}
.ls10{letter-spacing:22.507657pt;}
.ls14{letter-spacing:23.209028pt;}
.ls1c{letter-spacing:24.041887pt;}
.ls2c{letter-spacing:31.242923pt;}
.ls6{letter-spacing:41.805258pt;}
.ls18{letter-spacing:47.900174pt;}
.ls1b{letter-spacing:141.276174pt;}
.ls22{letter-spacing:153.894840pt;}
.lsf{letter-spacing:374.022417pt;}
.ls29{letter-spacing:577.101414pt;}
.ls23{letter-spacing:815.695326pt;}
.ls11{letter-spacing:1032.164147pt;}
.ws21{word-spacing:-63.761067pt;}
.ws13{word-spacing:-40.590295pt;}
.ws27{word-spacing:-30.005958pt;}
.ws26{word-spacing:-28.220648pt;}
.ws2a{word-spacing:-24.713789pt;}
.ws1a{word-spacing:-23.910333pt;}
.ws16{word-spacing:-22.864719pt;}
.ws15{word-spacing:-17.343010pt;}
.ws1d{word-spacing:-13.491842pt;}
.ws24{word-spacing:-3.443098pt;}
.ws28{word-spacing:-3.188053pt;}
.ws4{word-spacing:-2.257456pt;}
.ws6{word-spacing:-1.733820pt;}
.ws39{word-spacing:-0.573850pt;}
.ws8{word-spacing:-0.104727pt;}
.ws14{word-spacing:-0.063761pt;}
.ws11{word-spacing:0.000000pt;}
.ws36{word-spacing:0.127522pt;}
.ws1e{word-spacing:0.318805pt;}
.ws17{word-spacing:0.382566pt;}
.ws7{word-spacing:1.524365pt;}
.ws33{word-spacing:1.721549pt;}
.ws10{word-spacing:2.104115pt;}
.ws3c{word-spacing:2.231637pt;}
.ws2b{word-spacing:2.422921pt;}
.ws34{word-spacing:2.677965pt;}
.wsa{word-spacing:3.124292pt;}
.ws2{word-spacing:3.211639pt;}
.ws1f{word-spacing:3.351265pt;}
.wsd{word-spacing:3.443098pt;}
.ws23{word-spacing:3.506859pt;}
.ws30{word-spacing:3.718526pt;}
.ws3b{word-spacing:3.825664pt;}
.ws1{word-spacing:4.131706pt;}
.ws18{word-spacing:4.782067pt;}
.ws32{word-spacing:4.845841pt;}
.wse{word-spacing:4.909602pt;}
.ws3a{word-spacing:5.483452pt;}
.ws1b{word-spacing:5.674735pt;}
.ws12{word-spacing:5.738467pt;}
.ws3{word-spacing:5.771641pt;}
.ws20{word-spacing:5.866018pt;}
.ws2c{word-spacing:6.184823pt;}
.ws5{word-spacing:6.469824pt;}
.ws3d{word-spacing:6.694912pt;}
.ws0{word-spacing:6.887500pt;}
.ws31{word-spacing:6.949956pt;}
.ws3f{word-spacing:7.013717pt;}
.ws2f{word-spacing:7.332523pt;}
.ws3e{word-spacing:7.396284pt;}
.wsb{word-spacing:7.842611pt;}
.wsc{word-spacing:8.225178pt;}
.ws1c{word-spacing:8.990310pt;}
.ws2e{word-spacing:9.564160pt;}
.ws25{word-spacing:10.393054pt;}
.wsf{word-spacing:13.581107pt;}
.ws35{word-spacing:14.091196pt;}
.ws19{word-spacing:20.328410pt;}
.ws40{word-spacing:22.252612pt;}
.ws22{word-spacing:25.865237pt;}
.ws37{word-spacing:32.709427pt;}
.ws38{word-spacing:32.773188pt;}
.ws9{word-spacing:74.600067pt;}
.ws29{word-spacing:94.901972pt;}
.ws2d{word-spacing:1566.418125pt;}
._2a{margin-left:-30.656333pt;}
._13{margin-left:-8.630654pt;}
._8{margin-left:-5.760821pt;}
._3{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._14{margin-left:-2.521747pt;}
._2{margin-left:-1.629092pt;}
._1{width:1.629092pt;}
._1a{width:2.521747pt;}
._7{width:3.416200pt;}
._18{width:6.627062pt;}
._4{width:15.010922pt;}
._e{width:17.633120pt;}
._d{width:19.391532pt;}
._19{width:20.298345pt;}
._f{width:21.672393pt;}
._1c{width:23.110202pt;}
._6{width:24.203657pt;}
._29{width:25.543498pt;}
._a{width:26.559669pt;}
._9{width:27.672303pt;}
._11{width:28.820002pt;}
._b{width:31.979360pt;}
._10{width:34.367215pt;}
._5{width:35.549121pt;}
._28{width:37.886023pt;}
._1b{width:39.468100pt;}
._17{width:45.907733pt;}
._15{width:48.859297pt;}
._27{width:65.610138pt;}
._1f{width:98.574609pt;}
._c{width:103.292400pt;}
._20{width:130.965231pt;}
._26{width:164.120986pt;}
._24{width:196.766652pt;}
._22{width:295.213739pt;}
._23{width:328.050688pt;}
._21{width:393.660826pt;}
._25{width:426.497775pt;}
._1e{width:492.171674pt;}
._16{width:978.286046pt;}
._1d{width:1905.697131pt;}
._12{width:2059.992542pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y52{bottom:96.000000pt;}
.y37{bottom:110.222667pt;}
.y51{bottom:115.261333pt;}
.y36{bottom:129.484000pt;}
.y50{bottom:134.522667pt;}
.y35{bottom:148.745333pt;}
.y4f{bottom:164.078667pt;}
.y34{bottom:178.301333pt;}
.y6d{bottom:186.522667pt;}
.y1b{bottom:192.917333pt;}
.y6c{bottom:205.784000pt;}
.y4e{bottom:210.284000pt;}
.y1a{bottom:212.177333pt;}
.y33{bottom:224.517333pt;}
.y6b{bottom:225.045333pt;}
.y19{bottom:231.438667pt;}
.y4d{bottom:239.840000pt;}
.y6a{bottom:244.305333pt;}
.y18{bottom:250.700000pt;}
.y32{bottom:254.073333pt;}
.y17{bottom:269.961333pt;}
.y69{bottom:279.352000pt;}
.y4c{bottom:286.045333pt;}
.y16{bottom:289.222667pt;}
.y31{bottom:300.288000pt;}
.y4b{bottom:305.306667pt;}
.y15{bottom:308.484000pt;}
.y14{bottom:327.744000pt;}
.y68{bottom:332.597333pt;}
.y30{bottom:332.833333pt;}
.y4a{bottom:340.353333pt;}
.y13{bottom:347.005333pt;}
.y67{bottom:351.858667pt;}
.y2f{bottom:365.377333pt;}
.y66{bottom:371.120000pt;}
.y12{bottom:382.052000pt;}
.y65{bottom:390.380000pt;}
.y49{bottom:393.588000pt;}
.y7c{bottom:396.358667pt;}
.y2e{bottom:397.922667pt;}
.y64{bottom:409.641333pt;}
.y48{bottom:412.849333pt;}
.y2d{bottom:417.182667pt;}
.y63{bottom:428.902667pt;}
.y47{bottom:432.110667pt;}
.y11{bottom:435.297333pt;}
.y2c{bottom:446.738667pt;}
.y62{bottom:448.164000pt;}
.y46{bottom:451.372000pt;}
.y10{bottom:453.362667pt;}
.y7b{bottom:461.446667pt;}
.y61{bottom:467.425333pt;}
.yf{bottom:471.428000pt;}
.y45{bottom:486.418667pt;}
.y2b{bottom:486.434667pt;}
.y60{bottom:486.685333pt;}
.ye{bottom:489.493333pt;}
.y7a{bottom:493.992000pt;}
.yd{bottom:507.558667pt;}
.y5f{bottom:521.732000pt;}
.yc{bottom:525.625333pt;}
.y79{bottom:526.536000pt;}
.y44{bottom:539.653333pt;}
.y2a{bottom:539.680000pt;}
.yb{bottom:543.690667pt;}
.y43{bottom:558.914667pt;}
.y29{bottom:558.940000pt;}
.y78{bottom:559.081333pt;}
.ya{bottom:561.756000pt;}
.y5e{bottom:574.977333pt;}
.y42{bottom:578.176000pt;}
.y28{bottom:578.201333pt;}
.y9{bottom:588.726667pt;}
.y77{bottom:594.128000pt;}
.y5d{bottom:594.238667pt;}
.y41{bottom:607.732000pt;}
.y27{bottom:607.757333pt;}
.y5c{bottom:613.498667pt;}
.y5b{bottom:632.760000pt;}
.y76{bottom:647.372000pt;}
.y8{bottom:647.472000pt;}
.y5a{bottom:652.021333pt;}
.y40{bottom:653.937333pt;}
.y26{bottom:653.973333pt;}
.y75{bottom:666.633333pt;}
.y3f{bottom:683.493333pt;}
.y25{bottom:683.529333pt;}
.y7{bottom:684.865333pt;}
.y74{bottom:685.894667pt;}
.y59{bottom:687.068000pt;}
.y73{bottom:705.156000pt;}
.y6{bottom:708.776000pt;}
.y72{bottom:724.417333pt;}
.y3e{bottom:729.698667pt;}
.y24{bottom:729.744000pt;}
.y5{bottom:732.686667pt;}
.y58{bottom:740.313333pt;}
.y71{bottom:743.677333pt;}
.y3d{bottom:757.566667pt;}
.y23{bottom:764.945333pt;}
.y57{bottom:772.857333pt;}
.y3c{bottom:776.828000pt;}
.y70{bottom:778.724000pt;}
.y4{bottom:780.008000pt;}
.y22{bottom:800.146667pt;}
.y56{bottom:805.401333pt;}
.y3b{bottom:809.309333pt;}
.y3{bottom:813.217333pt;}
.y21{bottom:819.408000pt;}
.y3a{bottom:820.244000pt;}
.y6f{bottom:831.969333pt;}
.y55{bottom:837.946667pt;}
.y2{bottom:846.426667pt;}
.y6e{bottom:851.230667pt;}
.y20{bottom:851.956000pt;}
.y39{bottom:853.772000pt;}
.y1f{bottom:862.889333pt;}
.y38{bottom:864.705333pt;}
.y54{bottom:870.490667pt;}
.y1{bottom:879.634667pt;}
.y53{bottom:889.752000pt;}
.y1e{bottom:909.013333pt;}
.y1d{bottom:944.060000pt;}
.h4{height:36.480030pt;}
.h5{height:40.610943pt;}
.h3{height:41.658217pt;}
.h12{height:44.250180pt;}
.h7{height:47.820800pt;}
.h11{height:55.825330pt;}
.hb{height:55.830663pt;}
.h2{height:57.384800pt;}
.h6{height:68.861600pt;}
.h1{height:82.650000pt;}
.h8{height:92.454443pt;}
.hf{height:98.123997pt;}
.he{height:99.558663pt;}
.hd{height:134.690133pt;}
.h9{height:136.187776pt;}
.h10{height:136.193109pt;}
.hc{height:141.862663pt;}
.ha{height:148.865330pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x1b{left:103.804000pt;}
.x13{left:115.076000pt;}
.xc{left:119.412000pt;}
.x1{left:135.313333pt;}
.xa{left:156.838667pt;}
.x3{left:161.398667pt;}
.x4{left:165.904000pt;}
.x14{left:191.006667pt;}
.xe{left:209.452000pt;}
.x18{left:232.888000pt;}
.x1a{left:260.216000pt;}
.x2{left:292.149333pt;}
.x15{left:299.824000pt;}
.x7{left:308.728000pt;}
.xf{left:316.081333pt;}
.x8{left:330.612000pt;}
.x6{left:343.333333pt;}
.x5{left:354.804000pt;}
.x19{left:365.505333pt;}
.x12{left:373.981333pt;}
.x9{left:375.998667pt;}
.xd{left:404.098667pt;}
.x16{left:425.348000pt;}
.x10{left:461.868000pt;}
.x11{left:521.630667pt;}
.x17{left:535.882667pt;}
}




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