
    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_7b432ebe1b6f77fd78b360c9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_6b858a826e14a78433cbc172.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_9666bdaeae552d35ddf712ca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_b5b4dd42170925982bd950d4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_406aff8cc3d7ff3f196f32f5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.834961;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_a094fa703472ae914e681164.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_1ab7ed30e89fa754e0be94b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_656c8c961c9308da4d29fb83.woff')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_b21b574028c346d87c7a9b82.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_ad2850dd190279ef32b45d10.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_6cdd1725ba508910167a2bf0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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_7bfb70041343061c88928a4d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_ef4ea02fd11060b993c8980d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_0b7d69b5dcec7c895546acfa.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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_e27868835c263c207fae18d2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_2225cf1ce7f9d4412ddd6b55.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_b21b574028c346d87c7a9b82.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_4a54a1e3633bffa6ec190df0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_3289f19d4da9b9af6f846a76.woff')format("woff");}.ff14{font-family:ff14;line-height:0.934082;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_e41360febc2e7e20b005fdd8.woff')format("woff");}.ff15{font-family:ff15;line-height:0.910156;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:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.003906px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:1467.294976px;}
.ls3{letter-spacing:1765.050346px;}
.ls4{letter-spacing:2088.912079px;}
.ls1{letter-spacing:2252.731379px;}
.ls2{letter-spacing:2253.441718px;}
.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;}
}
.ws2{word-spacing:-47.250000px;}
.ws7{word-spacing:-29.999999px;}
.ws0{word-spacing:-14.414062px;}
.ws4{word-spacing:-13.599610px;}
.ws3{word-spacing:-13.212891px;}
.ws6{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.648438px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-8.613280px;}
._2{margin-left:-4.921875px;}
._0{margin-left:-2.957225px;}
._1{margin-left:-1.054687px;}
._3{width:2229.138593px;}
.fc8{color:rgb(255,153,0);}
.fc7{color:rgb(25,96,150);}
.fc6{color:rgb(3,29,57);}
.fc4{color:rgb(17,85,204);}
.fc1{color:rgb(244,125,32);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200002px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs5{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.625497px;}
.y2c{bottom:9.921285px;}
.y21{bottom:9.921295px;}
.y31{bottom:9.921303px;}
.y17{bottom:9.921340px;}
.y1a{bottom:9.921348px;}
.y12{bottom:9.921378px;}
.y15{bottom:9.921387px;}
.yb{bottom:9.921432px;}
.y5d{bottom:11.768552px;}
.y5a{bottom:12.708973px;}
.y53{bottom:12.708978px;}
.y51{bottom:12.708981px;}
.y73{bottom:12.708982px;}
.y44{bottom:12.708985px;}
.y48{bottom:12.708993px;}
.y6b{bottom:12.708996px;}
.y7e{bottom:13.514649px;}
.y4d{bottom:16.004883px;}
.y42{bottom:18.565528px;}
.y3d{bottom:18.565606px;}
.y40{bottom:18.565613px;}
.ye{bottom:20.104992px;}
.y2b{bottom:29.696685px;}
.y19{bottom:29.696778px;}
.y11{bottom:29.696823px;}
.y34{bottom:31.458988px;}
.y7c{bottom:33.093750px;}
.y5c{bottom:33.407227px;}
.y59{bottom:34.681633px;}
.y4b{bottom:34.681638px;}
.y50{bottom:34.681641px;}
.y72{bottom:34.681642px;}
.y68{bottom:34.681645px;}
.y47{bottom:34.681653px;}
.yd{bottom:36.584472px;}
.y36{bottom:39.149963px;}
.y2{bottom:39.150008px;}
.y78{bottom:39.150146px;}
.y3f{bottom:40.538183px;}
.y3c{bottom:43.538266px;}
.y2a{bottom:52.472160px;}
.y58{bottom:56.654293px;}
.y46{bottom:56.654298px;}
.y67{bottom:56.654305px;}
.y33{bottom:62.840332px;}
.y3b{bottom:65.510926px;}
.y29{bottom:75.247545px;}
.y66{bottom:78.626950px;}
.y57{bottom:78.626953px;}
.y32{bottom:83.538577px;}
.y3a{bottom:87.483496px;}
.y28{bottom:98.022855px;}
.y65{bottom:100.599610px;}
.ybc{bottom:109.820430px;}
.y6e{bottom:117.482663px;}
.y27{bottom:120.798330px;}
.y6d{bottom:139.455318px;}
.y26{bottom:140.573730px;}
.y30{bottom:150.740658px;}
.y2f{bottom:170.516049px;}
.y6c{bottom:178.302970px;}
.y2e{bottom:197.416436px;}
.y6a{bottom:200.275627px;}
.yad{bottom:212.486578px;}
.y69{bottom:222.248283px;}
.y2d{bottom:224.316834px;}
.yac{bottom:234.459234px;}
.y25{bottom:251.217231px;}
.yab{bottom:256.431890px;}
.y64{bottom:261.095943px;}
.yaa{bottom:278.404546px;}
.ya9{bottom:300.377203px;}
.ya8{bottom:321.947756px;}
.ya7{bottom:344.102782px;}
.y63{bottom:348.986568px;}
.y24{bottom:381.869574px;}
.y62{bottom:387.834220px;}
.ya6{bottom:389.788327px;}
.y23{bottom:408.769959px;}
.ya5{bottom:411.760984px;}
.y61{bottom:431.779533px;}
.ya4{bottom:433.733640px;}
.y22{bottom:435.670346px;}
.ya3{bottom:455.706296px;}
.y20{bottom:466.045345px;}
.y5f{bottom:470.627200px;}
.ya2{bottom:477.678952px;}
.ya1{bottom:499.651609px;}
.y60{bottom:511.276615px;}
.ybb{bottom:512.580316px;}
.y1f{bottom:514.390958px;}
.y5e{bottom:514.572513px;}
.ya0{bottom:521.624265px;}
.yba{bottom:534.552973px;}
.y9f{bottom:543.596921px;}
.y56{bottom:553.420170px;}
.yb9{bottom:556.525633px;}
.y1e{bottom:559.673771px;}
.y9e{bottom:565.569577px;}
.yb8{bottom:578.498293px;}
.y9d{bottom:587.542234px;}
.y1d{bottom:588.815321px;}
.y55{bottom:597.365482px;}
.y5b{bottom:598.639896px;}
.yb7{bottom:600.470953px;}
.y9c{bottom:609.514890px;}
.y1c{bottom:617.956886px;}
.y54{bottom:619.338138px;}
.yb6{bottom:622.443598px;}
.y9b{bottom:631.487546px;}
.y18{bottom:643.792413px;}
.yb5{bottom:644.416265px;}
.y9a{bottom:653.460202px;}
.y52{bottom:658.185790px;}
.y1b{bottom:663.567804px;}
.yb4{bottom:666.388921px;}
.y99{bottom:675.432859px;}
.y4f{bottom:680.158447px;}
.yb3{bottom:688.361578px;}
.y16{bottom:690.468206px;}
.y98{bottom:697.405515px;}
.y4e{bottom:702.131103px;}
.yb2{bottom:710.334223px;}
.y14{bottom:717.368544px;}
.y97{bottom:719.378171px;}
.yb1{bottom:732.306883px;}
.y4a{bottom:740.978756px;}
.y96{bottom:741.350827px;}
.y10{bottom:744.268938px;}
.yb0{bottom:754.279543px;}
.y95{bottom:763.323484px;}
.y13{bottom:764.044329px;}
.yaf{bottom:776.252203px;}
.y4c{bottom:781.628171px;}
.y49{bottom:784.924068px;}
.y94{bottom:785.296140px;}
.yc{bottom:790.944759px;}
.y88{bottom:792.309816px;}
.yae{bottom:798.224856px;}
.y93{bottom:807.268796px;}
.ya{bottom:814.607799px;}
.y45{bottom:823.771721px;}
.y92{bottom:829.241452px;}
.y87{bottom:841.926262px;}
.y9{bottom:846.342223px;}
.y91{bottom:851.214111px;}
.y43{bottom:867.717033px;}
.y76{bottom:868.011115px;}
.y8{bottom:868.314853px;}
.y90{bottom:873.186767px;}
.y86{bottom:887.209346px;}
.y75{bottom:891.723088px;}
.y7{bottom:891.898823px;}
.y7f{bottom:893.174568px;}
.y8f{bottom:895.159423px;}
.y39{bottom:906.564697px;}
.y85{bottom:911.850581px;}
.y8e{bottom:917.132080px;}
.y74{bottom:931.695733px;}
.y7b{bottom:932.294674px;}
.y84{bottom:936.492191px;}
.y8d{bottom:939.104736px;}
.y6{bottom:939.195698px;}
.y71{bottom:949.959411px;}
.y3e{bottom:953.510010px;}
.y83{bottom:960.199213px;}
.y8c{bottom:961.077392px;}
.y7d{bottom:964.651974px;}
.y41{bottom:975.482666px;}
.y8b{bottom:983.050048px;}
.y5{bottom:984.075578px;}
.y82{bottom:984.607541px;}
.y70{bottom:993.904724px;}
.y8a{bottom:1005.022705px;}
.y4{bottom:1006.414467px;}
.y81{bottom:1009.248779px;}
.y38{bottom:1025.164398px;}
.y89{bottom:1026.593262px;}
.y7a{bottom:1028.203857px;}
.y6f{bottom:1032.752379px;}
.y3{bottom:1043.035537px;}
.y80{bottom:1048.748290px;}
.y37{bottom:1048.748474px;}
.y79{bottom:1051.604736px;}
.y77{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y35{bottom:1071.600036px;}
.h2c{height:24.328125px;}
.h12{height:25.775299px;}
.he{height:25.775344px;}
.hd{height:25.775391px;}
.h8{height:25.775436px;}
.h10{height:36.228516px;}
.h1a{height:37.722657px;}
.h9{height:38.179688px;}
.hb{height:38.838867px;}
.h1c{height:41.018555px;}
.h26{height:41.384766px;}
.h17{height:42.421874px;}
.h4{height:43.154296px;}
.h19{height:43.722748px;}
.h24{height:43.989259px;}
.hf{height:45.550782px;}
.hc{height:45.550827px;}
.h28{height:46.664064px;}
.h27{height:47.437501px;}
.h11{height:47.469728px;}
.h6{height:47.988281px;}
.h2{height:48.656250px;}
.ha{height:49.438476px;}
.h21{height:51.750000px;}
.h7{height:51.785156px;}
.h1f{height:58.420899px;}
.h1d{height:59.695312px;}
.h2b{height:60.075001px;}
.h23{height:60.416013px;}
.h29{height:63.984377px;}
.h18{height:65.695404px;}
.h2a{height:67.875002px;}
.h5{height:69.046877px;}
.h25{height:73.742066px;}
.h1b{height:81.667970px;}
.h3{height:86.308592px;}
.h14{height:100.343265px;}
.h1e{height:103.640625px;}
.h16{height:112.640717px;}
.h20{height:125.613282px;}
.h13{height:156.427734px;}
.h15{height:191.399964px;}
.h1{height:191.400009px;}
.h22{height:191.400147px;}
.h0{height:1263.000000px;}
.wa{width:74.250000px;}
.w6{width:111.375000px;}
.w4{width:122.625000px;}
.w8{width:132.750000px;}
.w9{width:135.000000px;}
.w5{width:167.625000px;}
.w2{width:174.375000px;}
.wc{width:182.250000px;}
.wb{width:235.125000px;}
.w7{width:261.000000px;}
.wd{width:490.500000px;}
.w3{width:493.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:6.750000px;}
.x8{left:7.875000px;}
.xf{left:15.750000px;}
.x6{left:16.875000px;}
.x4{left:108.000000px;}
.x5{left:109.125000px;}
.xe{left:111.375000px;}
.x18{left:135.000000px;}
.x2{left:216.815100px;}
.x9{left:232.875000px;}
.x1{left:244.125000px;}
.x10{left:245.250000px;}
.x16{left:282.375000px;}
.x7{left:284.625000px;}
.x17{left:292.500000px;}
.x1a{left:324.792146px;}
.x3{left:358.241659px;}
.x11{left:381.375000px;}
.xa{left:401.625000px;}
.xc{left:446.456700px;}
.xb{left:514.125000px;}
.x12{left:517.500000px;}
.x13{left:592.875000px;}
.x19{left:624.206700px;}
.x15{left:775.720046px;}
.xd{left:776.845046px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.781250pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1304.262201pt;}
.ls3{letter-spacing:1568.933641pt;}
.ls4{letter-spacing:1856.810737pt;}
.ls1{letter-spacing:2002.427893pt;}
.ls2{letter-spacing:2003.059305pt;}
.ws2{word-spacing:-42.000000pt;}
.ws7{word-spacing:-26.666666pt;}
.ws0{word-spacing:-12.812500pt;}
.ws4{word-spacing:-12.088542pt;}
.ws3{word-spacing:-11.744792pt;}
.ws6{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.687500pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-7.656249pt;}
._2{margin-left:-4.375000pt;}
._0{margin-left:-2.628645pt;}
._1{margin-left:-0.937500pt;}
._3{width:1981.456527pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400002pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.222664pt;}
.y2c{bottom:8.818920pt;}
.y21{bottom:8.818929pt;}
.y31{bottom:8.818936pt;}
.y17{bottom:8.818969pt;}
.y1a{bottom:8.818976pt;}
.y12{bottom:8.819003pt;}
.y15{bottom:8.819010pt;}
.yb{bottom:8.819050pt;}
.y5d{bottom:10.460935pt;}
.y5a{bottom:11.296865pt;}
.y53{bottom:11.296869pt;}
.y51{bottom:11.296872pt;}
.y73{bottom:11.296873pt;}
.y44{bottom:11.296876pt;}
.y48{bottom:11.296882pt;}
.y6b{bottom:11.296885pt;}
.y7e{bottom:12.013021pt;}
.y4d{bottom:14.226562pt;}
.y42{bottom:16.502691pt;}
.y3d{bottom:16.502761pt;}
.y40{bottom:16.502768pt;}
.ye{bottom:17.871104pt;}
.y2b{bottom:26.397053pt;}
.y19{bottom:26.397136pt;}
.y11{bottom:26.397176pt;}
.y34{bottom:27.963545pt;}
.y7c{bottom:29.416667pt;}
.y5c{bottom:29.695313pt;}
.y59{bottom:30.828118pt;}
.y4b{bottom:30.828122pt;}
.y50{bottom:30.828125pt;}
.y72{bottom:30.828126pt;}
.y68{bottom:30.828129pt;}
.y47{bottom:30.828136pt;}
.yd{bottom:32.519531pt;}
.y36{bottom:34.799967pt;}
.y2{bottom:34.800007pt;}
.y78{bottom:34.800130pt;}
.y3f{bottom:36.033941pt;}
.y3c{bottom:38.700681pt;}
.y2a{bottom:46.641920pt;}
.y58{bottom:50.359372pt;}
.y46{bottom:50.359376pt;}
.y67{bottom:50.359382pt;}
.y33{bottom:55.858073pt;}
.y3b{bottom:58.231934pt;}
.y29{bottom:66.886707pt;}
.y66{bottom:69.890622pt;}
.y57{bottom:69.890625pt;}
.y32{bottom:74.256513pt;}
.y3a{bottom:77.763107pt;}
.y28{bottom:87.131427pt;}
.y65{bottom:89.421876pt;}
.ybc{bottom:97.618160pt;}
.y6e{bottom:104.429033pt;}
.y27{bottom:107.376293pt;}
.y6d{bottom:123.960283pt;}
.y26{bottom:124.954426pt;}
.y30{bottom:133.991696pt;}
.y2f{bottom:151.569821pt;}
.y6c{bottom:158.491529pt;}
.y2e{bottom:175.481276pt;}
.y6a{bottom:178.022780pt;}
.yad{bottom:188.876958pt;}
.y69{bottom:197.554029pt;}
.y2d{bottom:199.392741pt;}
.yac{bottom:208.408208pt;}
.y25{bottom:223.304205pt;}
.yab{bottom:227.939458pt;}
.y64{bottom:232.085283pt;}
.yaa{bottom:247.470708pt;}
.ya9{bottom:267.001958pt;}
.ya8{bottom:286.175783pt;}
.ya7{bottom:305.869140pt;}
.y63{bottom:310.210283pt;}
.y24{bottom:339.439621pt;}
.y62{bottom:344.741529pt;}
.ya6{bottom:346.478513pt;}
.y23{bottom:363.351075pt;}
.ya5{bottom:366.009763pt;}
.y61{bottom:383.804029pt;}
.ya4{bottom:385.541013pt;}
.y22{bottom:387.262529pt;}
.ya3{bottom:405.072263pt;}
.y20{bottom:414.262529pt;}
.y5f{bottom:418.335289pt;}
.ya2{bottom:424.603513pt;}
.ya1{bottom:444.134763pt;}
.y60{bottom:454.468103pt;}
.ybb{bottom:455.626948pt;}
.y1f{bottom:457.236407pt;}
.y5e{bottom:457.397789pt;}
.ya0{bottom:463.666013pt;}
.yba{bottom:475.158198pt;}
.y9f{bottom:483.197263pt;}
.y56{bottom:491.929040pt;}
.yb9{bottom:494.689452pt;}
.y1e{bottom:497.487796pt;}
.y9e{bottom:502.728513pt;}
.yb8{bottom:514.220705pt;}
.y9d{bottom:522.259763pt;}
.y1d{bottom:523.391396pt;}
.y55{bottom:530.991540pt;}
.y5b{bottom:532.124352pt;}
.yb7{bottom:533.751958pt;}
.y9c{bottom:541.791013pt;}
.y1c{bottom:549.295010pt;}
.y54{bottom:550.522789pt;}
.yb6{bottom:553.283198pt;}
.y9b{bottom:561.322263pt;}
.y18{bottom:572.259923pt;}
.yb5{bottom:572.814458pt;}
.y9a{bottom:580.853513pt;}
.y52{bottom:585.054036pt;}
.y1b{bottom:589.838048pt;}
.yb4{bottom:592.345708pt;}
.y99{bottom:600.384763pt;}
.y4f{bottom:604.585287pt;}
.yb3{bottom:611.876958pt;}
.y16{bottom:613.749516pt;}
.y98{bottom:619.916013pt;}
.y4e{bottom:624.116536pt;}
.yb2{bottom:631.408198pt;}
.y14{bottom:637.660928pt;}
.y97{bottom:639.447263pt;}
.yb1{bottom:650.939452pt;}
.y4a{bottom:658.647783pt;}
.y96{bottom:658.978513pt;}
.y10{bottom:661.572389pt;}
.yb0{bottom:670.470705pt;}
.y95{bottom:678.509763pt;}
.y13{bottom:679.150515pt;}
.yaf{bottom:690.001958pt;}
.y4c{bottom:694.780596pt;}
.y49{bottom:697.710283pt;}
.y94{bottom:698.041013pt;}
.yc{bottom:703.062008pt;}
.y88{bottom:704.275392pt;}
.yae{bottom:709.533205pt;}
.y93{bottom:717.572263pt;}
.ya{bottom:724.095821pt;}
.y45{bottom:732.241529pt;}
.y92{bottom:737.103513pt;}
.y87{bottom:748.378900pt;}
.y9{bottom:752.304198pt;}
.y91{bottom:756.634765pt;}
.y43{bottom:771.304029pt;}
.y76{bottom:771.565436pt;}
.y8{bottom:771.835425pt;}
.y90{bottom:776.166015pt;}
.y86{bottom:788.630530pt;}
.y75{bottom:792.642745pt;}
.y7{bottom:792.798953pt;}
.y7f{bottom:793.932949pt;}
.y8f{bottom:795.697265pt;}
.y39{bottom:805.835287pt;}
.y85{bottom:810.533850pt;}
.y8e{bottom:815.228515pt;}
.y74{bottom:828.173985pt;}
.y7b{bottom:828.706377pt;}
.y84{bottom:832.437503pt;}
.y8d{bottom:834.759765pt;}
.y6{bottom:834.840620pt;}
.y71{bottom:844.408365pt;}
.y3e{bottom:847.564453pt;}
.y83{bottom:853.510411pt;}
.y8c{bottom:854.291015pt;}
.y7d{bottom:857.468421pt;}
.y41{bottom:867.095703pt;}
.y8b{bottom:873.822265pt;}
.y5{bottom:874.733847pt;}
.y82{bottom:875.206703pt;}
.y70{bottom:883.470865pt;}
.y8a{bottom:893.353516pt;}
.y4{bottom:894.590637pt;}
.y81{bottom:897.110026pt;}
.y38{bottom:911.257242pt;}
.y89{bottom:912.527344pt;}
.y7a{bottom:913.958984pt;}
.y6f{bottom:918.002115pt;}
.y3{bottom:927.142700pt;}
.y80{bottom:932.220703pt;}
.y37{bottom:932.220865pt;}
.y79{bottom:934.759765pt;}
.y77{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y35{bottom:952.533365pt;}
.h2c{height:21.625000pt;}
.h12{height:22.911377pt;}
.he{height:22.911417pt;}
.hd{height:22.911459pt;}
.h8{height:22.911499pt;}
.h10{height:32.203125pt;}
.h1a{height:33.531251pt;}
.h9{height:33.937500pt;}
.hb{height:34.523438pt;}
.h1c{height:36.460937pt;}
.h26{height:36.786459pt;}
.h17{height:37.708332pt;}
.h4{height:38.359374pt;}
.h19{height:38.864665pt;}
.h24{height:39.101563pt;}
.hf{height:40.489584pt;}
.hc{height:40.489624pt;}
.h28{height:41.479168pt;}
.h27{height:42.166668pt;}
.h11{height:42.195313pt;}
.h6{height:42.656250pt;}
.h2{height:43.250000pt;}
.ha{height:43.945312pt;}
.h21{height:46.000000pt;}
.h7{height:46.031250pt;}
.h1f{height:51.929688pt;}
.h1d{height:53.062500pt;}
.h2b{height:53.400001pt;}
.h23{height:53.703123pt;}
.h29{height:56.875002pt;}
.h18{height:58.395915pt;}
.h2a{height:60.333335pt;}
.h5{height:61.375002pt;}
.h25{height:65.548503pt;}
.h1b{height:72.593751pt;}
.h3{height:76.718748pt;}
.h14{height:89.194013pt;}
.h1e{height:92.125000pt;}
.h16{height:100.125081pt;}
.h20{height:111.656251pt;}
.h13{height:139.046875pt;}
.h15{height:170.133301pt;}
.h1{height:170.133341pt;}
.h22{height:170.133464pt;}
.h0{height:1122.666667pt;}
.wa{width:66.000000pt;}
.w6{width:99.000000pt;}
.w4{width:109.000000pt;}
.w8{width:118.000000pt;}
.w9{width:120.000000pt;}
.w5{width:149.000000pt;}
.w2{width:155.000000pt;}
.wc{width:162.000000pt;}
.wb{width:209.000000pt;}
.w7{width:232.000000pt;}
.wd{width:436.000000pt;}
.w3{width:439.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:6.000000pt;}
.x8{left:7.000000pt;}
.xf{left:14.000000pt;}
.x6{left:15.000000pt;}
.x4{left:96.000000pt;}
.x5{left:97.000000pt;}
.xe{left:99.000000pt;}
.x18{left:120.000000pt;}
.x2{left:192.724533pt;}
.x9{left:207.000000pt;}
.x1{left:217.000000pt;}
.x10{left:218.000000pt;}
.x16{left:251.000000pt;}
.x7{left:253.000000pt;}
.x17{left:260.000000pt;}
.x1a{left:288.704130pt;}
.x3{left:318.437030pt;}
.x11{left:339.000000pt;}
.xa{left:357.000000pt;}
.xc{left:396.850400pt;}
.xb{left:457.000000pt;}
.x12{left:460.000000pt;}
.x13{left:527.000000pt;}
.x19{left:554.850400pt;}
.x15{left:689.528930pt;}
.xd{left:690.528930pt;}
}




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