
    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_89de5fe75d6c6d189b8e89fe.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bc4f40085c6c821df97ab358.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_49c361e6e88d980114985dec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_f5009702d2366a3adef95ac3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_ecab0390ee6e91481e0a76b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844238;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b6eb618e3d7f2e9551f734d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_9b68a1bc24968f9686e588d8.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.204000px;}
.ls2{letter-spacing:86.022000px;}
.ls0{letter-spacing:93.384000px;}
.ls3{letter-spacing:140.022000px;}
.ls4{letter-spacing:726.846000px;}
.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;}
}
.ws0{word-spacing:-16.500000px;}
.ws1{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:53.022000px;}
.ws6{word-spacing:410.790000px;}
.ws4{word-spacing:414.588000px;}
.ws5{word-spacing:520.716000px;}
._2f{margin-left:-2322.834000px;}
._2b{margin-left:-1525.776000px;}
._1{margin-left:-1020.006000px;}
._28{margin-left:-780.462000px;}
._1a{margin-left:-291.126000px;}
._2{margin-left:-211.290000px;}
._2d{margin-left:-157.344000px;}
._4{margin-left:-1.074000px;}
._f{width:1.098000px;}
._3{width:2.142000px;}
._2e{width:6.888000px;}
._2c{width:110.586000px;}
._29{width:115.812000px;}
._0{width:118.296000px;}
._2a{width:151.200000px;}
._6{width:176.124000px;}
._c{width:211.878000px;}
._8{width:216.528000px;}
._17{width:229.314000px;}
._a{width:244.110000px;}
._5{width:247.494000px;}
._15{width:257.310000px;}
._27{width:259.806000px;}
._11{width:266.100000px;}
._12{width:287.676000px;}
._13{width:290.148000px;}
._23{width:299.004000px;}
._25{width:300.378000px;}
._26{width:303.396000px;}
._19{width:309.732000px;}
._e{width:332.484000px;}
._10{width:334.752000px;}
._22{width:341.634000px;}
._24{width:355.338000px;}
._14{width:374.976000px;}
._1d{width:381.348000px;}
._b{width:389.400000px;}
._7{width:396.900000px;}
._21{width:422.934000px;}
._9{width:438.900000px;}
._1b{width:462.288000px;}
._d{width:470.100000px;}
._16{width:471.960000px;}
._1c{width:483.894000px;}
._20{width:504.522000px;}
._1e{width:507.300000px;}
._18{width:548.742000px;}
._1f{width:554.364000px;}
.fc2{color:transparent;}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2{bottom:111.483000px;}
.y73{bottom:156.333000px;}
.y8d{bottom:161.058000px;}
.y4b{bottom:164.133000px;}
.y9a{bottom:172.833000px;}
.ya8{bottom:173.583000px;}
.yc2{bottom:180.783000px;}
.y30{bottom:189.933000px;}
.y4a{bottom:190.008000px;}
.yf4{bottom:199.158000px;}
.y72{bottom:199.833000px;}
.y8c{bottom:204.558000px;}
.yc1{bottom:206.658000px;}
.y2f{bottom:211.683000px;}
.ya7{bottom:211.833000px;}
.y99{bottom:216.333000px;}
.yf3{bottom:225.033000px;}
.ydc{bottom:225.708000px;}
.ya6{bottom:233.583000px;}
.y71{bottom:243.333000px;}
.ydb{bottom:247.608000px;}
.y8b{bottom:248.058000px;}
.y2e{bottom:249.933000px;}
.y60{bottom:251.208000px;}
.yc0{bottom:256.683000px;}
.y98{bottom:259.833000px;}
.yda{bottom:269.508000px;}
.y2d{bottom:271.683000px;}
.ya5{bottom:271.833000px;}
.y5f{bottom:273.108000px;}
.yf2{bottom:273.183000px;}
.y8a{bottom:273.933000px;}
.y49{bottom:283.533000px;}
.y70{bottom:286.833000px;}
.y17{bottom:289.158000px;}
.ya4{bottom:293.583000px;}
.y5e{bottom:295.008000px;}
.yd9{bottom:295.458000px;}
.ybf{bottom:300.258000px;}
.y97{bottom:303.333000px;}
.y48{bottom:305.283000px;}
.y2c{bottom:309.933000px;}
.y16{bottom:310.908000px;}
.yf1{bottom:321.333000px;}
.ybe{bottom:322.158000px;}
.y89{bottom:323.958000px;}
.y6f{bottom:330.333000px;}
.y2b{bottom:331.683000px;}
.ya3{bottom:331.833000px;}
.y15{bottom:332.658000px;}
.y5d{bottom:338.583000px;}
.ybd{bottom:344.058000px;}
.yd8{bottom:345.558000px;}
.y88{bottom:345.708000px;}
.y96{bottom:346.833000px;}
.y47{bottom:348.858000px;}
.ya2{bottom:353.583000px;}
.ybc{bottom:365.958000px;}
.yd7{bottom:367.458000px;}
.yf0{bottom:369.483000px;}
.y46{bottom:370.758000px;}
.y6e{bottom:373.833000px;}
.y14{bottom:376.158000px;}
.y5c{bottom:382.083000px;}
.y2a{bottom:384.183000px;}
.y87{bottom:389.283000px;}
.yd6{bottom:389.358000px;}
.y95{bottom:390.333000px;}
.ya1{bottom:391.833000px;}
.y45{bottom:392.658000px;}
.y13{bottom:397.908000px;}
.ybb{bottom:409.533000px;}
.y86{bottom:411.108000px;}
.ya0{bottom:413.583000px;}
.y44{bottom:414.558000px;}
.yd5{bottom:415.308000px;}
.y6d{bottom:417.333000px;}
.yef{bottom:419.508000px;}
.y12{bottom:419.733000px;}
.y29{bottom:427.683000px;}
.y85{bottom:432.858000px;}
.y94{bottom:433.833000px;}
.y5b{bottom:434.583000px;}
.yba{bottom:435.408000px;}
.y43{bottom:436.458000px;}
.yee{bottom:441.258000px;}
.y11{bottom:441.483000px;}
.y9f{bottom:451.833000px;}
.y28{bottom:453.558000px;}
.y84{bottom:454.758000px;}
.y42{bottom:458.358000px;}
.y6c{bottom:460.833000px;}
.yed{bottom:463.008000px;}
.y10{bottom:463.308000px;}
.yd4{bottom:465.408000px;}
.y5a{bottom:472.833000px;}
.y9e{bottom:473.583000px;}
.y83{bottom:476.658000px;}
.y93{bottom:477.333000px;}
.y41{bottom:480.258000px;}
.yb9{bottom:484.233000px;}
.yf{bottom:485.058000px;}
.yd3{bottom:487.308000px;}
.y82{bottom:498.483000px;}
.y6b{bottom:504.333000px;}
.yec{bottom:506.583000px;}
.yd2{bottom:509.208000px;}
.y59{bottom:511.083000px;}
.y9d{bottom:511.833000px;}
.y81{bottom:520.233000px;}
.y92{bottom:520.833000px;}
.y40{bottom:523.833000px;}
.yeb{bottom:528.483000px;}
.ye{bottom:528.633000px;}
.y58{bottom:532.833000px;}
.yd1{bottom:535.158000px;}
.y80{bottom:542.133000px;}
.y9c{bottom:546.708000px;}
.y27{bottom:547.158000px;}
.y6a{bottom:547.833000px;}
.yd{bottom:550.383000px;}
.y91{bottom:564.333000px;}
.y3f{bottom:567.408000px;}
.y26{bottom:569.058000px;}
.y57{bottom:571.083000px;}
.yea{bottom:572.283000px;}
.yc{bottom:579.933000px;}
.yb8{bottom:583.608000px;}
.yd0{bottom:585.258000px;}
.y7f{bottom:585.708000px;}
.y3e{bottom:589.308000px;}
.y25{bottom:590.958000px;}
.y69{bottom:591.333000px;}
.ye9{bottom:594.108000px;}
.y9b{bottom:595.533000px;}
.yb7{bottom:605.508000px;}
.ycf{bottom:607.158000px;}
.y90{bottom:607.833000px;}
.y56{bottom:609.333000px;}
.y3d{bottom:611.208000px;}
.y7e{bottom:611.583000px;}
.ye8{bottom:615.858000px;}
.yb6{bottom:627.408000px;}
.yce{bottom:629.058000px;}
.y3c{bottom:633.108000px;}
.y24{bottom:634.533000px;}
.y68{bottom:634.833000px;}
.y55{bottom:647.583000px;}
.y8f{bottom:651.333000px;}
.yfc{bottom:653.508000px;}
.ycd{bottom:655.008000px;}
.ye7{bottom:659.433000px;}
.y7d{bottom:660.408000px;}
.yb5{bottom:670.983000px;}
.yfb{bottom:672.483000px;}
.y3b{bottom:676.683000px;}
.y23{bottom:678.033000px;}
.y67{bottom:678.333000px;}
.yb{bottom:679.233000px;}
.ye6{bottom:681.183000px;}
.y54{bottom:685.833000px;}
.y8e{bottom:694.833000px;}
.ya{bottom:700.983000px;}
.ycc{bottom:703.833000px;}
.ye5{bottom:710.733000px;}
.yb4{bottom:714.558000px;}
.y3a{bottom:720.183000px;}
.y22{bottom:721.533000px;}
.y66{bottom:721.833000px;}
.y9{bottom:722.733000px;}
.yb3{bottom:736.383000px;}
.y53{bottom:738.333000px;}
.y8{bottom:744.483000px;}
.y39{bottom:746.058000px;}
.yb2{bottom:758.133000px;}
.yfa{bottom:759.558000px;}
.y7c{bottom:759.708000px;}
.y21{bottom:765.033000px;}
.y65{bottom:765.333000px;}
.yb1{bottom:779.958000px;}
.y7b{bottom:781.458000px;}
.y52{bottom:781.833000px;}
.yb0{bottom:801.708000px;}
.ycb{bottom:803.133000px;}
.yf9{bottom:803.358000px;}
.y20{bottom:808.533000px;}
.y64{bottom:808.833000px;}
.ye4{bottom:810.033000px;}
.y7{bottom:814.233000px;}
.yaf{bottom:823.533000px;}
.yca{bottom:824.883000px;}
.y7a{bottom:825.033000px;}
.yf8{bottom:825.258000px;}
.y51{bottom:825.333000px;}
.ye3{bottom:831.783000px;}
.y38{bottom:839.583000px;}
.y6{bottom:840.108000px;}
.yae{bottom:845.283000px;}
.yc9{bottom:846.633000px;}
.y79{bottom:846.858000px;}
.y1f{bottom:852.033000px;}
.y63{bottom:852.333000px;}
.ye2{bottom:853.533000px;}
.y37{bottom:861.333000px;}
.yad{bottom:867.108000px;}
.y78{bottom:868.608000px;}
.y50{bottom:868.833000px;}
.y1e{bottom:873.783000px;}
.yac{bottom:888.858000px;}
.y5{bottom:889.983000px;}
.yc8{bottom:890.133000px;}
.y77{bottom:890.433000px;}
.y1d{bottom:895.608000px;}
.y62{bottom:895.833000px;}
.ye1{bottom:897.033000px;}
.yc7{bottom:911.883000px;}
.y76{bottom:912.183000px;}
.y4f{bottom:912.333000px;}
.y36{bottom:913.833000px;}
.y4{bottom:915.858000px;}
.y1c{bottom:917.358000px;}
.yab{bottom:932.433000px;}
.y75{bottom:934.008000px;}
.yf7{bottom:934.083000px;}
.y35{bottom:935.583000px;}
.y1b{bottom:939.258000px;}
.y61{bottom:939.333000px;}
.ye0{bottom:940.608000px;}
.yc6{bottom:955.458000px;}
.y74{bottom:955.758000px;}
.y4e{bottom:955.833000px;}
.yaa{bottom:958.308000px;}
.ydf{bottom:962.508000px;}
.y34{bottom:973.833000px;}
.yc5{bottom:977.358000px;}
.yf6{bottom:977.583000px;}
.y1a{bottom:982.833000px;}
.yde{bottom:984.408000px;}
.y33{bottom:995.583000px;}
.yc4{bottom:999.258000px;}
.y4d{bottom:999.333000px;}
.y19{bottom:1008.708000px;}
.ya9{bottom:1017.333000px;}
.yf5{bottom:1021.083000px;}
.y3{bottom:1021.908000px;}
.ydd{bottom:1027.983000px;}
.y32{bottom:1033.833000px;}
.y4c{bottom:1042.833000px;}
.y31{bottom:1055.583000px;}
.y18{bottom:1057.533000px;}
.yc3{bottom:1064.583000px;}
.h8{height:44.891602px;}
.h2{height:47.437500px;}
.h7{height:57.134766px;}
.h5{height:60.070312px;}
.h4{height:61.215820px;}
.h6{height:65.296875px;}
.h9{height:71.214000px;}
.ha{height:76.453125px;}
.h3{height:81.621094px;}
.hb{height:90.636000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.150000px;}
.x29{left:121.800000px;}
.x1e{left:124.050000px;}
.x16{left:126.825000px;}
.x21{left:128.175000px;}
.x2f{left:131.400000px;}
.x3{left:135.150000px;}
.x4{left:136.275000px;}
.x39{left:137.775000px;}
.x2c{left:144.000000px;}
.x15{left:151.050000px;}
.x1b{left:157.950000px;}
.x2{left:162.525000px;}
.x2d{left:165.075000px;}
.x14{left:169.200000px;}
.x28{left:172.875000px;}
.x9{left:174.975000px;}
.x33{left:181.575000px;}
.x1f{left:185.175000px;}
.x5{left:287.925000px;}
.x2a{left:306.375000px;}
.x17{left:308.175000px;}
.x37{left:315.675000px;}
.x22{left:319.875000px;}
.x32{left:323.850000px;}
.x24{left:327.675000px;}
.x1c{left:331.875000px;}
.x34{left:333.675000px;}
.x30{left:340.425000px;}
.x2e{left:350.325000px;}
.x36{left:353.025000px;}
.x20{left:357.225000px;}
.x6{left:409.500000px;}
.x10{left:415.275000px;}
.x38{left:419.325000px;}
.xa{left:432.450000px;}
.x7{left:438.825000px;}
.xf{left:440.700000px;}
.x19{left:499.275000px;}
.x1d{left:502.125000px;}
.x18{left:521.925000px;}
.x26{left:524.250000px;}
.x23{left:527.775000px;}
.x11{left:543.750000px;}
.x8{left:545.100000px;}
.x25{left:546.900000px;}
.xb{left:552.600000px;}
.xc{left:576.300000px;}
.x12{left:580.425000px;}
.x31{left:648.375000px;}
.x1a{left:654.225000px;}
.x27{left:656.025000px;}
.x2b{left:666.300000px;}
.x35{left:675.000000px;}
.xd{left:694.425000px;}
.x13{left:699.525000px;}
.xe{left:707.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.181333pt;}
.ls2{letter-spacing:76.464000pt;}
.ls0{letter-spacing:83.008000pt;}
.ls3{letter-spacing:124.464000pt;}
.ls4{letter-spacing:646.085333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws1{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:47.130667pt;}
.ws6{word-spacing:365.146667pt;}
.ws4{word-spacing:368.522667pt;}
.ws5{word-spacing:462.858667pt;}
._2f{margin-left:-2064.741333pt;}
._2b{margin-left:-1356.245333pt;}
._1{margin-left:-906.672000pt;}
._28{margin-left:-693.744000pt;}
._1a{margin-left:-258.778667pt;}
._2{margin-left:-187.813333pt;}
._2d{margin-left:-139.861333pt;}
._4{margin-left:-0.954667pt;}
._f{width:0.976000pt;}
._3{width:1.904000pt;}
._2e{width:6.122667pt;}
._2c{width:98.298667pt;}
._29{width:102.944000pt;}
._0{width:105.152000pt;}
._2a{width:134.400000pt;}
._6{width:156.554667pt;}
._c{width:188.336000pt;}
._8{width:192.469333pt;}
._17{width:203.834667pt;}
._a{width:216.986667pt;}
._5{width:219.994667pt;}
._15{width:228.720000pt;}
._27{width:230.938667pt;}
._11{width:236.533333pt;}
._12{width:255.712000pt;}
._13{width:257.909333pt;}
._23{width:265.781333pt;}
._25{width:267.002667pt;}
._26{width:269.685333pt;}
._19{width:275.317333pt;}
._e{width:295.541333pt;}
._10{width:297.557333pt;}
._22{width:303.674667pt;}
._24{width:315.856000pt;}
._14{width:333.312000pt;}
._1d{width:338.976000pt;}
._b{width:346.133333pt;}
._7{width:352.800000pt;}
._21{width:375.941333pt;}
._9{width:390.133333pt;}
._1b{width:410.922667pt;}
._d{width:417.866667pt;}
._16{width:419.520000pt;}
._1c{width:430.128000pt;}
._20{width:448.464000pt;}
._1e{width:450.933333pt;}
._18{width:487.770667pt;}
._1f{width:492.768000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2{bottom:99.096000pt;}
.y73{bottom:138.962667pt;}
.y8d{bottom:143.162667pt;}
.y4b{bottom:145.896000pt;}
.y9a{bottom:153.629333pt;}
.ya8{bottom:154.296000pt;}
.yc2{bottom:160.696000pt;}
.y30{bottom:168.829333pt;}
.y4a{bottom:168.896000pt;}
.yf4{bottom:177.029333pt;}
.y72{bottom:177.629333pt;}
.y8c{bottom:181.829333pt;}
.yc1{bottom:183.696000pt;}
.y2f{bottom:188.162667pt;}
.ya7{bottom:188.296000pt;}
.y99{bottom:192.296000pt;}
.yf3{bottom:200.029333pt;}
.ydc{bottom:200.629333pt;}
.ya6{bottom:207.629333pt;}
.y71{bottom:216.296000pt;}
.ydb{bottom:220.096000pt;}
.y8b{bottom:220.496000pt;}
.y2e{bottom:222.162667pt;}
.y60{bottom:223.296000pt;}
.yc0{bottom:228.162667pt;}
.y98{bottom:230.962667pt;}
.yda{bottom:239.562667pt;}
.y2d{bottom:241.496000pt;}
.ya5{bottom:241.629333pt;}
.y5f{bottom:242.762667pt;}
.yf2{bottom:242.829333pt;}
.y8a{bottom:243.496000pt;}
.y49{bottom:252.029333pt;}
.y70{bottom:254.962667pt;}
.y17{bottom:257.029333pt;}
.ya4{bottom:260.962667pt;}
.y5e{bottom:262.229333pt;}
.yd9{bottom:262.629333pt;}
.ybf{bottom:266.896000pt;}
.y97{bottom:269.629333pt;}
.y48{bottom:271.362667pt;}
.y2c{bottom:275.496000pt;}
.y16{bottom:276.362667pt;}
.yf1{bottom:285.629333pt;}
.ybe{bottom:286.362667pt;}
.y89{bottom:287.962667pt;}
.y6f{bottom:293.629333pt;}
.y2b{bottom:294.829333pt;}
.ya3{bottom:294.962667pt;}
.y15{bottom:295.696000pt;}
.y5d{bottom:300.962667pt;}
.ybd{bottom:305.829333pt;}
.yd8{bottom:307.162667pt;}
.y88{bottom:307.296000pt;}
.y96{bottom:308.296000pt;}
.y47{bottom:310.096000pt;}
.ya2{bottom:314.296000pt;}
.ybc{bottom:325.296000pt;}
.yd7{bottom:326.629333pt;}
.yf0{bottom:328.429333pt;}
.y46{bottom:329.562667pt;}
.y6e{bottom:332.296000pt;}
.y14{bottom:334.362667pt;}
.y5c{bottom:339.629333pt;}
.y2a{bottom:341.496000pt;}
.y87{bottom:346.029333pt;}
.yd6{bottom:346.096000pt;}
.y95{bottom:346.962667pt;}
.ya1{bottom:348.296000pt;}
.y45{bottom:349.029333pt;}
.y13{bottom:353.696000pt;}
.ybb{bottom:364.029333pt;}
.y86{bottom:365.429333pt;}
.ya0{bottom:367.629333pt;}
.y44{bottom:368.496000pt;}
.yd5{bottom:369.162667pt;}
.y6d{bottom:370.962667pt;}
.yef{bottom:372.896000pt;}
.y12{bottom:373.096000pt;}
.y29{bottom:380.162667pt;}
.y85{bottom:384.762667pt;}
.y94{bottom:385.629333pt;}
.y5b{bottom:386.296000pt;}
.yba{bottom:387.029333pt;}
.y43{bottom:387.962667pt;}
.yee{bottom:392.229333pt;}
.y11{bottom:392.429333pt;}
.y9f{bottom:401.629333pt;}
.y28{bottom:403.162667pt;}
.y84{bottom:404.229333pt;}
.y42{bottom:407.429333pt;}
.y6c{bottom:409.629333pt;}
.yed{bottom:411.562667pt;}
.y10{bottom:411.829333pt;}
.yd4{bottom:413.696000pt;}
.y5a{bottom:420.296000pt;}
.y9e{bottom:420.962667pt;}
.y83{bottom:423.696000pt;}
.y93{bottom:424.296000pt;}
.y41{bottom:426.896000pt;}
.yb9{bottom:430.429333pt;}
.yf{bottom:431.162667pt;}
.yd3{bottom:433.162667pt;}
.y82{bottom:443.096000pt;}
.y6b{bottom:448.296000pt;}
.yec{bottom:450.296000pt;}
.yd2{bottom:452.629333pt;}
.y59{bottom:454.296000pt;}
.y9d{bottom:454.962667pt;}
.y81{bottom:462.429333pt;}
.y92{bottom:462.962667pt;}
.y40{bottom:465.629333pt;}
.yeb{bottom:469.762667pt;}
.ye{bottom:469.896000pt;}
.y58{bottom:473.629333pt;}
.yd1{bottom:475.696000pt;}
.y80{bottom:481.896000pt;}
.y9c{bottom:485.962667pt;}
.y27{bottom:486.362667pt;}
.y6a{bottom:486.962667pt;}
.yd{bottom:489.229333pt;}
.y91{bottom:501.629333pt;}
.y3f{bottom:504.362667pt;}
.y26{bottom:505.829333pt;}
.y57{bottom:507.629333pt;}
.yea{bottom:508.696000pt;}
.yc{bottom:515.496000pt;}
.yb8{bottom:518.762667pt;}
.yd0{bottom:520.229333pt;}
.y7f{bottom:520.629333pt;}
.y3e{bottom:523.829333pt;}
.y25{bottom:525.296000pt;}
.y69{bottom:525.629333pt;}
.ye9{bottom:528.096000pt;}
.y9b{bottom:529.362667pt;}
.yb7{bottom:538.229333pt;}
.ycf{bottom:539.696000pt;}
.y90{bottom:540.296000pt;}
.y56{bottom:541.629333pt;}
.y3d{bottom:543.296000pt;}
.y7e{bottom:543.629333pt;}
.ye8{bottom:547.429333pt;}
.yb6{bottom:557.696000pt;}
.yce{bottom:559.162667pt;}
.y3c{bottom:562.762667pt;}
.y24{bottom:564.029333pt;}
.y68{bottom:564.296000pt;}
.y55{bottom:575.629333pt;}
.y8f{bottom:578.962667pt;}
.yfc{bottom:580.896000pt;}
.ycd{bottom:582.229333pt;}
.ye7{bottom:586.162667pt;}
.y7d{bottom:587.029333pt;}
.yb5{bottom:596.429333pt;}
.yfb{bottom:597.762667pt;}
.y3b{bottom:601.496000pt;}
.y23{bottom:602.696000pt;}
.y67{bottom:602.962667pt;}
.yb{bottom:603.762667pt;}
.ye6{bottom:605.496000pt;}
.y54{bottom:609.629333pt;}
.y8e{bottom:617.629333pt;}
.ya{bottom:623.096000pt;}
.ycc{bottom:625.629333pt;}
.ye5{bottom:631.762667pt;}
.yb4{bottom:635.162667pt;}
.y3a{bottom:640.162667pt;}
.y22{bottom:641.362667pt;}
.y66{bottom:641.629333pt;}
.y9{bottom:642.429333pt;}
.yb3{bottom:654.562667pt;}
.y53{bottom:656.296000pt;}
.y8{bottom:661.762667pt;}
.y39{bottom:663.162667pt;}
.yb2{bottom:673.896000pt;}
.yfa{bottom:675.162667pt;}
.y7c{bottom:675.296000pt;}
.y21{bottom:680.029333pt;}
.y65{bottom:680.296000pt;}
.yb1{bottom:693.296000pt;}
.y7b{bottom:694.629333pt;}
.y52{bottom:694.962667pt;}
.yb0{bottom:712.629333pt;}
.ycb{bottom:713.896000pt;}
.yf9{bottom:714.096000pt;}
.y20{bottom:718.696000pt;}
.y64{bottom:718.962667pt;}
.ye4{bottom:720.029333pt;}
.y7{bottom:723.762667pt;}
.yaf{bottom:732.029333pt;}
.yca{bottom:733.229333pt;}
.y7a{bottom:733.362667pt;}
.yf8{bottom:733.562667pt;}
.y51{bottom:733.629333pt;}
.ye3{bottom:739.362667pt;}
.y38{bottom:746.296000pt;}
.y6{bottom:746.762667pt;}
.yae{bottom:751.362667pt;}
.yc9{bottom:752.562667pt;}
.y79{bottom:752.762667pt;}
.y1f{bottom:757.362667pt;}
.y63{bottom:757.629333pt;}
.ye2{bottom:758.696000pt;}
.y37{bottom:765.629333pt;}
.yad{bottom:770.762667pt;}
.y78{bottom:772.096000pt;}
.y50{bottom:772.296000pt;}
.y1e{bottom:776.696000pt;}
.yac{bottom:790.096000pt;}
.y5{bottom:791.096000pt;}
.yc8{bottom:791.229333pt;}
.y77{bottom:791.496000pt;}
.y1d{bottom:796.096000pt;}
.y62{bottom:796.296000pt;}
.ye1{bottom:797.362667pt;}
.yc7{bottom:810.562667pt;}
.y76{bottom:810.829333pt;}
.y4f{bottom:810.962667pt;}
.y36{bottom:812.296000pt;}
.y4{bottom:814.096000pt;}
.y1c{bottom:815.429333pt;}
.yab{bottom:828.829333pt;}
.y75{bottom:830.229333pt;}
.yf7{bottom:830.296000pt;}
.y35{bottom:831.629333pt;}
.y1b{bottom:834.896000pt;}
.y61{bottom:834.962667pt;}
.ye0{bottom:836.096000pt;}
.yc6{bottom:849.296000pt;}
.y74{bottom:849.562667pt;}
.y4e{bottom:849.629333pt;}
.yaa{bottom:851.829333pt;}
.ydf{bottom:855.562667pt;}
.y34{bottom:865.629333pt;}
.yc5{bottom:868.762667pt;}
.yf6{bottom:868.962667pt;}
.y1a{bottom:873.629333pt;}
.yde{bottom:875.029333pt;}
.y33{bottom:884.962667pt;}
.yc4{bottom:888.229333pt;}
.y4d{bottom:888.296000pt;}
.y19{bottom:896.629333pt;}
.ya9{bottom:904.296000pt;}
.yf5{bottom:907.629333pt;}
.y3{bottom:908.362667pt;}
.ydd{bottom:913.762667pt;}
.y32{bottom:918.962667pt;}
.y4c{bottom:926.962667pt;}
.y31{bottom:938.296000pt;}
.y18{bottom:940.029333pt;}
.yc3{bottom:946.296000pt;}
.h8{height:39.903646pt;}
.h2{height:42.166667pt;}
.h7{height:50.786458pt;}
.h5{height:53.395833pt;}
.h4{height:54.414062pt;}
.h6{height:58.041667pt;}
.h9{height:63.301333pt;}
.ha{height:67.958333pt;}
.h3{height:72.552083pt;}
.hb{height:80.565333pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.133333pt;}
.x29{left:108.266667pt;}
.x1e{left:110.266667pt;}
.x16{left:112.733333pt;}
.x21{left:113.933333pt;}
.x2f{left:116.800000pt;}
.x3{left:120.133333pt;}
.x4{left:121.133333pt;}
.x39{left:122.466667pt;}
.x2c{left:128.000000pt;}
.x15{left:134.266667pt;}
.x1b{left:140.400000pt;}
.x2{left:144.466667pt;}
.x2d{left:146.733333pt;}
.x14{left:150.400000pt;}
.x28{left:153.666667pt;}
.x9{left:155.533333pt;}
.x33{left:161.400000pt;}
.x1f{left:164.600000pt;}
.x5{left:255.933333pt;}
.x2a{left:272.333333pt;}
.x17{left:273.933333pt;}
.x37{left:280.600000pt;}
.x22{left:284.333333pt;}
.x32{left:287.866667pt;}
.x24{left:291.266667pt;}
.x1c{left:295.000000pt;}
.x34{left:296.600000pt;}
.x30{left:302.600000pt;}
.x2e{left:311.400000pt;}
.x36{left:313.800000pt;}
.x20{left:317.533333pt;}
.x6{left:364.000000pt;}
.x10{left:369.133333pt;}
.x38{left:372.733333pt;}
.xa{left:384.400000pt;}
.x7{left:390.066667pt;}
.xf{left:391.733333pt;}
.x19{left:443.800000pt;}
.x1d{left:446.333333pt;}
.x18{left:463.933333pt;}
.x26{left:466.000000pt;}
.x23{left:469.133333pt;}
.x11{left:483.333333pt;}
.x8{left:484.533333pt;}
.x25{left:486.133333pt;}
.xb{left:491.200000pt;}
.xc{left:512.266667pt;}
.x12{left:515.933333pt;}
.x31{left:576.333333pt;}
.x1a{left:581.533333pt;}
.x27{left:583.133333pt;}
.x2b{left:592.266667pt;}
.x35{left:600.000000pt;}
.xd{left:617.266667pt;}
.x13{left:621.800000pt;}
.xe{left:628.733333pt;}
}




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