
    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_60897f0a81bdb370ad22344b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_4d1f9415e3b75abdfd1fce81.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_404c8df19c2c41e7e546857d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_404c8df19c2c41e7e546857d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_52babdf2686b5e7330518858.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_cd27027f28b0dbb8239e6a16.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_32c280338ad69b6a8ee7df4e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bacd4cba3bb973e954a6ccf6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2642304230e99def1abbfed6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.195000;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_d99a314922d3d824c04302b9.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.m4{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);}
.m3{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,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);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.mb{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mc{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m1{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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.509003px;}
.v1{vertical-align:21.864000px;}
.v3{vertical-align:52.187076px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001316px;}
.ls4{letter-spacing:2.987162px;}
.ls5{letter-spacing:2.989435px;}
.ls2{letter-spacing:12.397500px;}
.ls7{letter-spacing:19.130729px;}
.ls1{letter-spacing:23.914954px;}
.ls8{letter-spacing:97.350005px;}
.ls6{letter-spacing:1288.721441px;}
.ls9{letter-spacing:1290.011441px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-57.600000px;}
.wsd{word-spacing:-32.278920px;}
.ws0{word-spacing:-21.600000px;}
.ws5{word-spacing:-12.521475px;}
.ws6{word-spacing:-11.955120px;}
.ws10{word-spacing:-3.371366px;}
.ws15{word-spacing:-3.227904px;}
.ws16{word-spacing:-2.654054px;}
.ws9{word-spacing:-0.657532px;}
.ws17{word-spacing:-0.537980px;}
.ws18{word-spacing:-0.478205px;}
.wsa{word-spacing:-0.179327px;}
.ws1f{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.071731px;}
.ws1a{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.059776px;}
.ws11{word-spacing:0.071731px;}
.ws8{word-spacing:0.119551px;}
.wsf{word-spacing:0.143462px;}
.ws4{word-spacing:0.179327px;}
.wsc{word-spacing:0.239102px;}
.ws14{word-spacing:0.358656px;}
.ws19{word-spacing:0.418429px;}
.ws20{word-spacing:0.717307px;}
.ws13{word-spacing:1.219430px;}
.ws1b{word-spacing:1.374839px;}
.wsb{word-spacing:1.613941px;}
.wse{word-spacing:4.232141px;}
.ws7{word-spacing:5.080926px;}
.ws1c{word-spacing:5.260253px;}
.ws1d{word-spacing:5.439580px;}
.ws3{word-spacing:11.895344px;}
.ws22{word-spacing:12.588444px;}
.ws21{word-spacing:12.606632px;}
.ws24{word-spacing:61.278518px;}
.ws23{word-spacing:76.111741px;}
._16{margin-left:-302.705108px;}
._15{margin-left:-287.925560px;}
._6{margin-left:-12.397500px;}
._13{margin-left:-7.453125px;}
._2{margin-left:-5.616000px;}
._d{margin-left:-4.489990px;}
._3{margin-left:-3.168000px;}
._1{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._5{width:1.502468px;}
._4{width:2.592000px;}
._7{width:4.025161px;}
._b{width:11.066564px;}
._8{width:13.952376px;}
._f{width:15.306970px;}
._e{width:16.733239px;}
._9{width:18.709656px;}
._12{width:20.016155px;}
._10{width:21.244531px;}
._11{width:28.692400px;}
._a{width:29.833517px;}
._c{width:36.901450px;}
._17{width:38.024845px;}
._14{width:1437.068175px;}
.fc5{color:transparent;}
.fc4{color:rgb(88,88,90);}
.fc3{color:rgb(140,92,255);}
.fc2{color:rgb(31,48,147);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:29.887800px;}
.fsa{font-size:41.842800px;}
.fsc{font-size:46.560960px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:51.000000px;}
.fs3{font-size:59.775600px;}
.fs7{font-size:71.731200px;}
.fs9{font-size:83.686200px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:123.975000px;}
.fs2{font-size:144.000000px;}
.fs6{font-size:161.394600px;}
.fs1{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:2.425050px;}
.y60{bottom:15.201749px;}
.y66{bottom:15.835577px;}
.y5f{bottom:27.852624px;}
.y2d{bottom:29.662500px;}
.y69{bottom:38.457150px;}
.y5e{bottom:42.130749px;}
.y68{bottom:51.867676px;}
.y6{bottom:73.940250px;}
.y6b{bottom:74.489249px;}
.y8b{bottom:82.106100px;}
.y2c{bottom:83.841000px;}
.y6a{bottom:87.899776px;}
.y19{bottom:98.016000px;}
.y2b{bottom:104.761500px;}
.y6d{bottom:110.521349px;}
.y8c{bottom:114.672750px;}
.y4a{bottom:114.872667px;}
.y18{bottom:115.948500px;}
.y6c{bottom:123.931876px;}
.y49{bottom:129.150792px;}
.y17{bottom:133.882500px;}
.y48{bottom:143.428917px;}
.y2a{bottom:146.605500px;}
.y16{bottom:151.815000px;}
.y6e{bottom:154.244899px;}
.y47{bottom:157.707042px;}
.y29{bottom:167.526000px;}
.y4e{bottom:181.394618px;}
.y70{bottom:182.585548px;}
.y15{bottom:184.317000px;}
.y4d{bottom:195.672743px;}
.y6f{bottom:195.996075px;}
.y14{bottom:202.251000px;}
.y28{bottom:209.370000px;}
.y4c{bottom:209.950868px;}
.y72{bottom:218.617648px;}
.y13{bottom:220.183500px;}
.y4b{bottom:224.833680px;}
.y27{bottom:230.290500px;}
.y71{bottom:232.028175px;}
.y26{bottom:251.212500px;}
.y5d{bottom:254.089319px;}
.y74{bottom:254.649748px;}
.y4f{bottom:267.200265px;}
.y73{bottom:268.060274px;}
.y5c{bottom:268.367444px;}
.y25{bottom:272.134500px;}
.y12{bottom:273.099000px;}
.y5b{bottom:282.645569px;}
.y75{bottom:298.373298px;}
.y51{bottom:300.287711px;}
.y46{bottom:301.324500px;}
.y11{bottom:308.965500px;}
.y24{bottom:313.977000px;}
.y50{bottom:314.565836px;}
.y5a{bottom:324.557786px;}
.y77{bottom:326.713947px;}
.y56{bottom:330.842364px;}
.y23{bottom:334.899000px;}
.y59{bottom:338.835911px;}
.y76{bottom:340.124474px;}
.y10{bottom:344.830500px;}
.y55{bottom:345.120489px;}
.y58{bottom:353.114036px;}
.y21{bottom:355.821000px;}
.y54{bottom:359.398614px;}
.y22{bottom:361.287000px;}
.y62{bottom:361.377000px;}
.yf{bottom:362.763000px;}
.y57{bottom:367.392161px;}
.y78{bottom:370.437497px;}
.y53{bottom:373.676739px;}
.ye{bottom:380.695500px;}
.y52{bottom:387.954864px;}
.y20{bottom:397.663500px;}
.y7a{bottom:398.778147px;}
.yd{bottom:410.584500px;}
.y79{bottom:412.188673px;}
.y1f{bottom:418.585500px;}
.yc{bottom:428.517000px;}
.y1d{bottom:439.506000px;}
.y7b{bottom:442.602740px;}
.y1e{bottom:444.973500px;}
.yb{bottom:464.382000px;}
.y7d{bottom:470.842346px;}
.y7c{bottom:484.252873px;}
.y1c{bottom:499.048500px;}
.ya{bottom:502.561500px;}
.y7e{bottom:514.666940px;}
.y81{bottom:535.736481px;}
.y9{bottom:547.569000px;}
.y80{bottom:548.783250px;}
.y7f{bottom:562.981918px;}
.y8{bottom:565.501500px;}
.y83{bottom:578.291965px;}
.y82{bottom:592.531050px;}
.y7{bottom:601.368000px;}
.y84{bottom:622.662195px;}
.y5{bottom:627.055500px;}
.y8a{bottom:655.592099px;}
.y85{bottom:658.694295px;}
.y89{bottom:684.531029px;}
.y87{bottom:687.034944px;}
.y88{bottom:697.739468px;}
.y86{bottom:700.445471px;}
.y4{bottom:705.055500px;}
.y63{bottom:736.952527px;}
.y45{bottom:747.649500px;}
.y64{bottom:749.999296px;}
.y3{bottom:783.055500px;}
.y65{bottom:784.717928px;}
.y44{bottom:813.970500px;}
.y43{bottom:831.903000px;}
.y42{bottom:849.835500px;}
.y41{bottom:867.769500px;}
.y40{bottom:885.702000px;}
.y3f{bottom:891.417000px;}
.y3e{bottom:912.241500px;}
.y3d{bottom:930.175500px;}
.y3c{bottom:935.890500px;}
.y3b{bottom:956.715000px;}
.y3a{bottom:974.647500px;}
.y39{bottom:992.581500px;}
.y38{bottom:1010.514000px;}
.y37{bottom:1016.229000px;}
.y36{bottom:1037.053500px;}
.y35{bottom:1054.987500px;}
.y34{bottom:1072.920000px;}
.y33{bottom:1090.852500px;}
.y32{bottom:1108.785000px;}
.y31{bottom:1126.717500px;}
.y1{bottom:1129.215000px;}
.y1b{bottom:1138.563000px;}
.y30{bottom:1144.650000px;}
.y2f{bottom:1150.366500px;}
.y2{bottom:1161.126000px;}
.y1a{bottom:1183.395000px;}
.y2e{bottom:1197.732000px;}
.y61{bottom:1198.227000px;}
.hf{height:29.792074px;}
.hb{height:34.048267px;}
.hd{height:35.865450px;}
.h5{height:42.560227px;}
.h15{height:43.255132px;}
.h6{height:43.994842px;}
.h10{height:44.054617px;}
.h12{height:47.379000px;}
.ha{height:52.865894px;}
.h9{height:53.798400px;}
.h13{height:53.888003px;}
.hc{height:55.912267px;}
.he{height:62.764650px;}
.h2{height:77.976000px;}
.h7{height:86.782500px;}
.h16{height:95.442208px;}
.h4{height:105.264000px;}
.h8{height:121.045950px;}
.h3{height:210.528000px;}
.h11{height:403.046270px;}
.h14{height:793.569361px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:609.230887px;}
.w3{width:773.902165px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:5.400000px;}
.x23{left:8.568510px;}
.xf{left:36.302344px;}
.xe{left:39.384375px;}
.x3c{left:40.437709px;}
.x34{left:41.731069px;}
.x1d{left:44.317789px;}
.x10{left:46.286719px;}
.x35{left:49.682580px;}
.x24{left:52.077949px;}
.xc{left:53.581500px;}
.x11{left:55.556250px;}
.x21{left:57.251389px;}
.x6{left:59.527500px;}
.x4{left:61.021500px;}
.x12{left:63.630469px;}
.x27{left:65.011549px;}
.x22{left:67.146729px;}
.x17{left:70.184989px;}
.x28{left:72.428792px;}
.x29{left:74.031598px;}
.x2{left:76.535400px;}
.x18{left:78.125133px;}
.x2b{left:80.982776px;}
.x7{left:82.281000px;}
.x1a{left:84.411949px;}
.x3a{left:85.705309px;}
.x31{left:90.878749px;}
.x1b{left:93.375161px;}
.x3b{left:94.577582px;}
.x2c{left:97.345549px;}
.x5{left:98.382000px;}
.x32{left:100.433067px;}
.x2d{left:101.676536px;}
.x26{left:104.256941px;}
.x25{left:124.344439px;}
.x1e{left:126.547193px;}
.x38{left:128.386189px;}
.x2f{left:133.559629px;}
.x39{left:136.928806px;}
.x2e{left:141.622920px;}
.x30{left:143.301509px;}
.x1{left:151.978500px;}
.x37{left:176.139465px;}
.x33{left:180.747060px;}
.x1f{left:187.880749px;}
.x1c{left:192.205421px;}
.x3d{left:193.438155px;}
.x2a{left:194.569845px;}
.x20{left:196.411999px;}
.x36{left:216.799470px;}
.x19{left:218.598049px;}
.x8{left:266.214000px;}
.x9{left:277.648500px;}
.x3e{left:307.904557px;}
.x47{left:354.075000px;}
.x16{left:358.880537px;}
.x15{left:453.749594px;}
.xd{left:476.928544px;}
.x14{left:507.559761px;}
.x3f{left:519.881381px;}
.x40{left:550.035688px;}
.x41{left:585.484688px;}
.x46{left:599.517411px;}
.x42{left:620.933687px;}
.x3{left:626.599500px;}
.x43{left:656.382687px;}
.x44{left:691.831686px;}
.xa{left:725.937000px;}
.x45{left:727.280686px;}
.xb{left:736.194000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.785780pt;}
.v1{vertical-align:19.434667pt;}
.v3{vertical-align:46.388512pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001170pt;}
.ls4{letter-spacing:2.655255pt;}
.ls5{letter-spacing:2.657275pt;}
.ls2{letter-spacing:11.020000pt;}
.ls7{letter-spacing:17.005093pt;}
.ls1{letter-spacing:21.257737pt;}
.ls8{letter-spacing:86.533338pt;}
.ls6{letter-spacing:1145.530170pt;}
.ls9{letter-spacing:1146.676836pt;}
.ws1{word-spacing:-51.200000pt;}
.wsd{word-spacing:-28.692373pt;}
.ws0{word-spacing:-19.200000pt;}
.ws5{word-spacing:-11.130200pt;}
.ws6{word-spacing:-10.626773pt;}
.ws10{word-spacing:-2.996770pt;}
.ws15{word-spacing:-2.869248pt;}
.ws16{word-spacing:-2.359159pt;}
.ws9{word-spacing:-0.584473pt;}
.ws17{word-spacing:-0.478205pt;}
.ws18{word-spacing:-0.425071pt;}
.wsa{word-spacing:-0.159402pt;}
.ws1f{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.063761pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.053134pt;}
.ws11{word-spacing:0.063761pt;}
.ws8{word-spacing:0.106268pt;}
.wsf{word-spacing:0.127522pt;}
.ws4{word-spacing:0.159402pt;}
.wsc{word-spacing:0.212535pt;}
.ws14{word-spacing:0.318805pt;}
.ws19{word-spacing:0.371937pt;}
.ws20{word-spacing:0.637606pt;}
.ws13{word-spacing:1.083938pt;}
.ws1b{word-spacing:1.222079pt;}
.wsb{word-spacing:1.434614pt;}
.wse{word-spacing:3.761903pt;}
.ws7{word-spacing:4.516379pt;}
.ws1c{word-spacing:4.675780pt;}
.ws1d{word-spacing:4.835182pt;}
.ws3{word-spacing:10.573639pt;}
.ws22{word-spacing:11.189728pt;}
.ws21{word-spacing:11.205895pt;}
.ws24{word-spacing:54.469794pt;}
.ws23{word-spacing:67.654881pt;}
._16{margin-left:-269.071207pt;}
._15{margin-left:-255.933831pt;}
._6{margin-left:-11.020000pt;}
._13{margin-left:-6.625000pt;}
._2{margin-left:-4.992000pt;}
._d{margin-left:-3.991102pt;}
._3{margin-left:-2.816000pt;}
._1{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._5{width:1.335527pt;}
._4{width:2.304000pt;}
._7{width:3.577921pt;}
._b{width:9.836946pt;}
._8{width:12.402112pt;}
._f{width:13.606195pt;}
._e{width:14.873990pt;}
._9{width:16.630805pt;}
._12{width:17.792138pt;}
._10{width:18.884028pt;}
._11{width:25.504355pt;}
._a{width:26.518682pt;}
._c{width:32.801289pt;}
._17{width:33.799862pt;}
._14{width:1277.393933pt;}
.fs5{font-size:26.566933pt;}
.fsa{font-size:37.193600pt;}
.fsc{font-size:41.387520pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:45.333333pt;}
.fs3{font-size:53.133867pt;}
.fs7{font-size:63.761067pt;}
.fs9{font-size:74.387733pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:110.200000pt;}
.fs2{font-size:128.000000pt;}
.fs6{font-size:143.461867pt;}
.fs1{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:2.155600pt;}
.y60{bottom:13.512666pt;}
.y66{bottom:14.076068pt;}
.y5f{bottom:24.757888pt;}
.y2d{bottom:26.366667pt;}
.y69{bottom:34.184133pt;}
.y5e{bottom:37.449554pt;}
.y68{bottom:46.104601pt;}
.y6{bottom:65.724667pt;}
.y6b{bottom:66.212666pt;}
.y8b{bottom:72.983200pt;}
.y2c{bottom:74.525333pt;}
.y6a{bottom:78.133134pt;}
.y19{bottom:87.125333pt;}
.y2b{bottom:93.121333pt;}
.y6d{bottom:98.241199pt;}
.y8c{bottom:101.931333pt;}
.y4a{bottom:102.109037pt;}
.y18{bottom:103.065333pt;}
.y6c{bottom:110.161667pt;}
.y49{bottom:114.800704pt;}
.y17{bottom:119.006667pt;}
.y48{bottom:127.492371pt;}
.y2a{bottom:130.316000pt;}
.y16{bottom:134.946667pt;}
.y6e{bottom:137.106577pt;}
.y47{bottom:140.184037pt;}
.y29{bottom:148.912000pt;}
.y4e{bottom:161.239660pt;}
.y70{bottom:162.298265pt;}
.y15{bottom:163.837333pt;}
.y4d{bottom:173.931327pt;}
.y6f{bottom:174.218733pt;}
.y14{bottom:179.778667pt;}
.y28{bottom:186.106667pt;}
.y4c{bottom:186.622994pt;}
.y72{bottom:194.326798pt;}
.y13{bottom:195.718667pt;}
.y4b{bottom:199.852160pt;}
.y27{bottom:204.702667pt;}
.y71{bottom:206.247266pt;}
.y26{bottom:223.300000pt;}
.y5d{bottom:225.857173pt;}
.y74{bottom:226.355331pt;}
.y4f{bottom:237.511347pt;}
.y73{bottom:238.275799pt;}
.y5c{bottom:238.548839pt;}
.y25{bottom:241.897333pt;}
.y12{bottom:242.754667pt;}
.y5b{bottom:251.240506pt;}
.y75{bottom:265.220709pt;}
.y51{bottom:266.922410pt;}
.y46{bottom:267.844000pt;}
.y11{bottom:274.636000pt;}
.y24{bottom:279.090667pt;}
.y50{bottom:279.614077pt;}
.y5a{bottom:288.495810pt;}
.y77{bottom:290.412398pt;}
.y56{bottom:294.082101pt;}
.y23{bottom:297.688000pt;}
.y59{bottom:301.187476pt;}
.y76{bottom:302.332866pt;}
.y10{bottom:306.516000pt;}
.y55{bottom:306.773768pt;}
.y58{bottom:313.879143pt;}
.y21{bottom:316.285333pt;}
.y54{bottom:319.465435pt;}
.y22{bottom:321.144000pt;}
.y62{bottom:321.224000pt;}
.yf{bottom:322.456000pt;}
.y57{bottom:326.570810pt;}
.y78{bottom:329.277775pt;}
.y53{bottom:332.157101pt;}
.ye{bottom:338.396000pt;}
.y52{bottom:344.848768pt;}
.y20{bottom:353.478667pt;}
.y7a{bottom:354.469464pt;}
.yd{bottom:364.964000pt;}
.y79{bottom:366.389932pt;}
.y1f{bottom:372.076000pt;}
.yc{bottom:380.904000pt;}
.y1d{bottom:390.672000pt;}
.y7b{bottom:393.424658pt;}
.y1e{bottom:395.532000pt;}
.yb{bottom:412.784000pt;}
.y7d{bottom:418.526530pt;}
.y7c{bottom:430.446998pt;}
.y1c{bottom:443.598667pt;}
.ya{bottom:446.721333pt;}
.y7e{bottom:457.481724pt;}
.y81{bottom:476.210205pt;}
.y9{bottom:486.728000pt;}
.y80{bottom:487.807333pt;}
.y7f{bottom:500.428371pt;}
.y8{bottom:502.668000pt;}
.y83{bottom:514.037302pt;}
.y82{bottom:526.694267pt;}
.y7{bottom:534.549333pt;}
.y84{bottom:553.477507pt;}
.y5{bottom:557.382667pt;}
.y8a{bottom:582.748533pt;}
.y85{bottom:585.506040pt;}
.y89{bottom:608.472026pt;}
.y87{bottom:610.697728pt;}
.y88{bottom:620.212861pt;}
.y86{bottom:622.618196pt;}
.y4{bottom:626.716000pt;}
.y63{bottom:655.068913pt;}
.y45{bottom:664.577333pt;}
.y64{bottom:666.666041pt;}
.y3{bottom:696.049333pt;}
.y65{bottom:697.527047pt;}
.y44{bottom:723.529333pt;}
.y43{bottom:739.469333pt;}
.y42{bottom:755.409333pt;}
.y41{bottom:771.350667pt;}
.y40{bottom:787.290667pt;}
.y3f{bottom:792.370667pt;}
.y3e{bottom:810.881333pt;}
.y3d{bottom:826.822667pt;}
.y3c{bottom:831.902667pt;}
.y3b{bottom:850.413333pt;}
.y3a{bottom:866.353333pt;}
.y39{bottom:882.294667pt;}
.y38{bottom:898.234667pt;}
.y37{bottom:903.314667pt;}
.y36{bottom:921.825333pt;}
.y35{bottom:937.766667pt;}
.y34{bottom:953.706667pt;}
.y33{bottom:969.646667pt;}
.y32{bottom:985.586667pt;}
.y31{bottom:1001.526667pt;}
.y1{bottom:1003.746667pt;}
.y1b{bottom:1012.056000pt;}
.y30{bottom:1017.466667pt;}
.y2f{bottom:1022.548000pt;}
.y2{bottom:1032.112000pt;}
.y1a{bottom:1051.906667pt;}
.y2e{bottom:1064.650667pt;}
.y61{bottom:1065.090667pt;}
.hf{height:26.481843pt;}
.hb{height:30.265126pt;}
.hd{height:31.880400pt;}
.h5{height:37.831313pt;}
.h15{height:38.449006pt;}
.h6{height:39.106526pt;}
.h10{height:39.159660pt;}
.h12{height:42.114667pt;}
.ha{height:46.991906pt;}
.h9{height:47.820800pt;}
.h13{height:47.900447pt;}
.hc{height:49.699793pt;}
.he{height:55.790800pt;}
.h2{height:69.312000pt;}
.h7{height:77.140000pt;}
.h16{height:84.837518pt;}
.h4{height:93.568000pt;}
.h8{height:107.596400pt;}
.h3{height:187.136000pt;}
.h11{height:358.263351pt;}
.h14{height:705.394987pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:541.538567pt;}
.w3{width:687.913035pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.800000pt;}
.x23{left:7.616453pt;}
.xf{left:32.268750pt;}
.xe{left:35.008333pt;}
.x3c{left:35.944630pt;}
.x34{left:37.094283pt;}
.x1d{left:39.393590pt;}
.x10{left:41.143750pt;}
.x35{left:44.162294pt;}
.x24{left:46.291510pt;}
.xc{left:47.628000pt;}
.x11{left:49.383333pt;}
.x21{left:50.890123pt;}
.x6{left:52.913333pt;}
.x4{left:54.241333pt;}
.x12{left:56.560417pt;}
.x27{left:57.788043pt;}
.x22{left:59.685982pt;}
.x17{left:62.386657pt;}
.x28{left:64.381148pt;}
.x29{left:65.805865pt;}
.x2{left:68.031467pt;}
.x18{left:69.444563pt;}
.x2b{left:71.984690pt;}
.x7{left:73.138667pt;}
.x1a{left:75.032843pt;}
.x3a{left:76.182497pt;}
.x31{left:80.781110pt;}
.x1b{left:83.000143pt;}
.x3b{left:84.068961pt;}
.x2c{left:86.529377pt;}
.x5{left:87.450667pt;}
.x32{left:89.273837pt;}
.x2d{left:90.379144pt;}
.x26{left:92.672837pt;}
.x25{left:110.528390pt;}
.x1e{left:112.486393pt;}
.x38{left:114.121057pt;}
.x2f{left:118.719670pt;}
.x39{left:121.714494pt;}
.x2e{left:125.887040pt;}
.x30{left:127.379119pt;}
.x1{left:135.092000pt;}
.x37{left:156.568413pt;}
.x33{left:160.664053pt;}
.x1f{left:167.005110pt;}
.x1c{left:170.849263pt;}
.x3d{left:171.945027pt;}
.x2a{left:172.950973pt;}
.x20{left:174.588443pt;}
.x36{left:192.710640pt;}
.x19{left:194.309377pt;}
.x8{left:236.634667pt;}
.x9{left:246.798667pt;}
.x3e{left:273.692939pt;}
.x47{left:314.733333pt;}
.x16{left:319.004922pt;}
.x15{left:403.332973pt;}
.xd{left:423.936483pt;}
.x14{left:451.164232pt;}
.x3f{left:462.116783pt;}
.x40{left:488.920612pt;}
.x41{left:520.430833pt;}
.x46{left:532.904365pt;}
.x42{left:551.941055pt;}
.x3{left:556.977333pt;}
.x43{left:583.451277pt;}
.x44{left:614.961499pt;}
.xa{left:645.277333pt;}
.x45{left:646.471721pt;}
.xb{left:654.394667pt;}
}




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