
    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_bed694bca0985a4516876248.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_75c2e69b5841c168dcd48ccf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b9f4cee6fc71ae918edaf48b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_24e4f7a368e22a01d8726383.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_c50ad8eedcbc781713c96daa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ceaefc9aad8028f5dd819ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9a9b04f5f0269c4112929e87.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c40d32937b7dd2588f34d66d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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_10475705a5e8fae9bc668358.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.640000;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_d71b16b9fa14bbc9f4fa23e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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_dc445e7bfc3def8682734777.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:31.242000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.792766px;}
.ls6{letter-spacing:2.356366px;}
.ls7{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.ls5{letter-spacing:18.196379px;}
.lsa{letter-spacing:19.905275px;}
.ls4{letter-spacing:21.076381px;}
.ls2{letter-spacing:27.425477px;}
.ls3{letter-spacing:28.800024px;}
.ls9{letter-spacing:32.727300px;}
.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;}
}
.ws10{word-spacing:-22.416000px;}
.ws1c{word-spacing:-18.183288px;}
.ws4e{word-spacing:-15.278643px;}
.ws38{word-spacing:-3.652367px;}
.ws39{word-spacing:-3.128730px;}
.wsc{word-spacing:-2.670548px;}
.ws9{word-spacing:-2.343275px;}
.ws1a{word-spacing:-2.277820px;}
.ws30{word-spacing:-2.081456px;}
.ws44{word-spacing:-1.950547px;}
.wsb{word-spacing:-1.885092px;}
.ws45{word-spacing:-1.165092px;}
.ws31{word-spacing:-0.641455px;}
.ws2e{word-spacing:-0.117818px;}
.ws24{word-spacing:-0.065455px;}
.ws25{word-spacing:-0.047821px;}
.wsf{word-spacing:0.000000px;}
.ws2f{word-spacing:0.340364px;}
.ws1e{word-spacing:0.405819px;}
.ws21{word-spacing:0.602182px;}
.wse{word-spacing:0.667637px;}
.ws20{word-spacing:0.693819px;}
.ws4c{word-spacing:0.753173px;}
.ws35{word-spacing:0.798546px;}
.ws3d{word-spacing:1.714911px;}
.ws16{word-spacing:1.780365px;}
.ws18{word-spacing:2.238547px;}
.wsd{word-spacing:2.304002px;}
.ws3f{word-spacing:2.565820px;}
.ws23{word-spacing:2.657457px;}
.ws1b{word-spacing:2.696730px;}
.ws34{word-spacing:2.958548px;}
.ws19{word-spacing:3.024003px;}
.ws29{word-spacing:3.220366px;}
.ws49{word-spacing:3.239838px;}
.ws28{word-spacing:3.285821px;}
.ws47{word-spacing:3.299613px;}
.ws4{word-spacing:3.613094px;}
.ws12{word-spacing:3.678549px;}
.ws32{word-spacing:3.874912px;}
.ws36{word-spacing:4.136731px;}
.ws11{word-spacing:4.162913px;}
.ws13{word-spacing:4.228367px;}
.ws15{word-spacing:4.483200px;}
.ws4b{word-spacing:4.566856px;}
.ws2a{word-spacing:4.594913px;}
.wsa{word-spacing:4.660368px;}
.ws4d{word-spacing:4.686407px;}
.ws42{word-spacing:5.184004px;}
.ws3e{word-spacing:6.034914px;}
.ws4a{word-spacing:6.061246px;}
.ws48{word-spacing:6.121021px;}
.ws8{word-spacing:6.362187px;}
.ws7{word-spacing:6.427642px;}
.ws22{word-spacing:6.558551px;}
.ws43{word-spacing:6.885824px;}
.ws3b{word-spacing:6.951279px;}
.ws1d{word-spacing:7.082188px;}
.ws2c{word-spacing:7.867643px;}
.ws40{word-spacing:8.325825px;}
.ws37{word-spacing:8.522189px;}
.ws3c{word-spacing:9.896736px;}
.ws1f{word-spacing:10.027645px;}
.ws2d{word-spacing:10.158554px;}
.ws2b{word-spacing:10.616736px;}
.ws26{word-spacing:10.682191px;}
.ws5{word-spacing:10.878555px;}
.ws46{word-spacing:11.729464px;}
.ws33{word-spacing:12.645829px;}
.ws3a{word-spacing:12.842193px;}
.ws17{word-spacing:13.365829px;}
.ws2{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws27{word-spacing:31.830943px;}
.ws14{word-spacing:39.639306px;}
.ws1{word-spacing:54.283749px;}
.ws41{word-spacing:58.281600px;}
.ws6{word-spacing:61.848320px;}
._23{margin-left:-6.742733px;}
._8{margin-left:-5.667761px;}
._0{margin-left:-4.610401px;}
._7{margin-left:-3.600003px;}
._2{margin-left:-2.223667px;}
._4{margin-left:-1.018695px;}
._1e{width:1.147815px;}
._3{width:2.223667px;}
._20{width:3.496138px;}
._1{width:4.610401px;}
._5{width:17.018196px;}
._24{width:21.294062px;}
._1f{width:22.525832px;}
._15{width:26.089596px;}
._6{width:27.880081px;}
._1c{width:29.581901px;}
._21{width:31.317667px;}
._1b{width:33.579999px;}
._1a{width:48.241829px;}
._1d{width:50.856435px;}
._19{width:58.612235px;}
._9{width:60.545505px;}
._e{width:66.894601px;}
._22{width:75.272790px;}
._18{width:80.697600px;}
._13{width:678.729115px;}
._d{width:910.802548px;}
._10{width:1126.868183px;}
._f{width:1142.706407px;}
._b{width:1249.264706px;}
._11{width:1269.951938px;}
._14{width:1275.512001px;}
._12{width:1475.937565px;}
._16{width:1479.668477px;}
._c{width:1564.432184px;}
._a{width:1937.781644px;}
._17{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y33{bottom:93.813000px;}
.y78{bottom:176.005500px;}
.y32{bottom:178.159500px;}
.y77{bottom:196.329000px;}
.y31{bottom:198.484500px;}
.y76{bottom:216.652500px;}
.y30{bottom:218.808000px;}
.y75{bottom:236.977500px;}
.y2f{bottom:252.580500px;}
.y74{bottom:257.301000px;}
.y2e{bottom:272.905500px;}
.y2d{bottom:293.229000px;}
.y73{bottom:293.625000px;}
.y53{bottom:293.923500px;}
.y52{bottom:314.247000px;}
.y2c{bottom:329.757000px;}
.y51{bottom:334.570500px;}
.y72{bottom:338.848500px;}
.y71{bottom:359.172000px;}
.y50{bottom:363.349500px;}
.y2b{bottom:375.337500px;}
.y70{bottom:379.495500px;}
.y11{bottom:389.047500px;}
.y2a{bottom:395.661000px;}
.y6f{bottom:399.819000px;}
.y4f{bottom:399.877500px;}
.y10{bottom:409.371000px;}
.y29{bottom:415.984500px;}
.y6e{bottom:420.144000px;}
.y4e{bottom:420.201000px;}
.yf{bottom:429.694500px;}
.y28{bottom:436.309500px;}
.y4d{bottom:440.524500px;}
.ye{bottom:450.018000px;}
.y6d{bottom:453.375000px;}
.y27{bottom:456.633000px;}
.y4c{bottom:469.303500px;}
.yd{bottom:470.343000px;}
.y26{bottom:476.956500px;}
.y6c{bottom:486.933000px;}
.yc{bottom:490.666500px;}
.y25{bottom:497.280000px;}
.y4b{bottom:505.831500px;}
.yb{bottom:510.990000px;}
.y24{bottom:517.603500px;}
.y6b{bottom:520.489500px;}
.y4a{bottom:526.155000px;}
.ya{bottom:531.313500px;}
.y23{bottom:537.928500px;}
.y49{bottom:546.480000px;}
.y9{bottom:551.637000px;}
.y6a{bottom:553.722000px;}
.y22{bottom:558.252000px;}
.y48{bottom:575.257500px;}
.y21{bottom:578.575500px;}
.y69{bottom:590.046000px;}
.y8{bottom:591.388500px;}
.y47{bottom:611.785500px;}
.y20{bottom:615.103500px;}
.y7{bottom:628.111500px;}
.y46{bottom:632.110500px;}
.y68{bottom:635.269500px;}
.y45{bottom:652.434000px;}
.y67{bottom:655.593000px;}
.y6{bottom:656.842500px;}
.y1f{bottom:660.684000px;}
.y66{bottom:675.916500px;}
.y44{bottom:681.211500px;}
.y65{bottom:696.240000px;}
.y1e{bottom:707.211000px;}
.y64{bottom:716.565000px;}
.y43{bottom:717.739500px;}
.y63{bottom:736.888500px;}
.y42{bottom:738.064500px;}
.y1d{bottom:743.899500px;}
.y62{bottom:757.212000px;}
.y5{bottom:774.192000px;}
.y85{bottom:774.444000px;}
.y41{bottom:774.592500px;}
.y61{bottom:777.535500px;}
.y1c{bottom:780.586500px;}
.y84{bottom:792.376500px;}
.y4{bottom:811.473000px;}
.y60{bottom:813.859500px;}
.y1b{bottom:817.273500px;}
.y83{bottom:817.782000px;}
.y40{bottom:820.173000px;}
.y3f{bottom:840.496500px;}
.y82{bottom:843.186000px;}
.y1a{bottom:853.962000px;}
.y3{bottom:856.305000px;}
.y5f{bottom:859.083000px;}
.y3e{bottom:860.820000px;}
.y81{bottom:868.591500px;}
.y19{bottom:874.285500px;}
.y5e{bottom:879.406500px;}
.y3d{bottom:881.143500px;}
.y80{bottom:893.995500px;}
.y18{bottom:894.609000px;}
.y5d{bottom:899.731500px;}
.y2{bottom:901.137000px;}
.y3c{bottom:901.468500px;}
.y7f{bottom:911.929500px;}
.y17{bottom:914.932500px;}
.y5c{bottom:920.055000px;}
.y3b{bottom:921.792000px;}
.y16{bottom:935.256000px;}
.y7e{bottom:937.333500px;}
.y5b{bottom:940.378500px;}
.y3a{bottom:942.115500px;}
.y7d{bottom:955.266000px;}
.y5a{bottom:960.702000px;}
.y39{bottom:962.439000px;}
.y15{bottom:971.944500px;}
.y7c{bottom:980.671500px;}
.y59{bottom:981.025500px;}
.y38{bottom:982.762500px;}
.y7b{bottom:998.604000px;}
.y58{bottom:1001.350500px;}
.y14{bottom:1008.631500px;}
.y37{bottom:1019.292000px;}
.y57{bottom:1021.674000px;}
.y7a{bottom:1032.741000px;}
.y56{bottom:1041.997500px;}
.y13{bottom:1045.318500px;}
.y55{bottom:1062.321000px;}
.y36{bottom:1064.872500px;}
.y79{bottom:1078.321500px;}
.y12{bottom:1082.007000px;}
.y54{bottom:1082.644500px;}
.y1{bottom:1087.587000px;}
.y35{bottom:1098.645000px;}
.y34{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:73.383798px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x8{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x9{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:27.770667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.593570pt;}
.ls6{letter-spacing:2.094547pt;}
.ls7{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.ls5{letter-spacing:16.174559pt;}
.lsa{letter-spacing:17.693578pt;}
.ls4{letter-spacing:18.734561pt;}
.ls2{letter-spacing:24.378202pt;}
.ls3{letter-spacing:25.600021pt;}
.ls9{letter-spacing:29.090933pt;}
.ws10{word-spacing:-19.925333pt;}
.ws1c{word-spacing:-16.162923pt;}
.ws4e{word-spacing:-13.581016pt;}
.ws38{word-spacing:-3.246548pt;}
.ws39{word-spacing:-2.781093pt;}
.wsc{word-spacing:-2.373820pt;}
.ws9{word-spacing:-2.082911pt;}
.ws1a{word-spacing:-2.024729pt;}
.ws30{word-spacing:-1.850183pt;}
.ws44{word-spacing:-1.733820pt;}
.wsb{word-spacing:-1.675638pt;}
.ws45{word-spacing:-1.035637pt;}
.ws31{word-spacing:-0.570182pt;}
.ws2e{word-spacing:-0.104727pt;}
.ws24{word-spacing:-0.058182pt;}
.ws25{word-spacing:-0.042507pt;}
.wsf{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.302546pt;}
.ws1e{word-spacing:0.360728pt;}
.ws21{word-spacing:0.535273pt;}
.wse{word-spacing:0.593455pt;}
.ws20{word-spacing:0.616728pt;}
.ws4c{word-spacing:0.669487pt;}
.ws35{word-spacing:0.709819pt;}
.ws3d{word-spacing:1.524365pt;}
.ws16{word-spacing:1.582547pt;}
.ws18{word-spacing:1.989820pt;}
.wsd{word-spacing:2.048002pt;}
.ws3f{word-spacing:2.280729pt;}
.ws23{word-spacing:2.362184pt;}
.ws1b{word-spacing:2.397093pt;}
.ws34{word-spacing:2.629820pt;}
.ws19{word-spacing:2.688002pt;}
.ws29{word-spacing:2.862548pt;}
.ws49{word-spacing:2.879856pt;}
.ws28{word-spacing:2.920730pt;}
.ws47{word-spacing:2.932989pt;}
.ws4{word-spacing:3.211639pt;}
.ws12{word-spacing:3.269821pt;}
.ws32{word-spacing:3.444367pt;}
.ws36{word-spacing:3.677094pt;}
.ws11{word-spacing:3.700367pt;}
.ws13{word-spacing:3.758549pt;}
.ws15{word-spacing:3.985067pt;}
.ws4b{word-spacing:4.059427pt;}
.ws2a{word-spacing:4.084367pt;}
.wsa{word-spacing:4.142549pt;}
.ws4d{word-spacing:4.165695pt;}
.ws42{word-spacing:4.608004pt;}
.ws3e{word-spacing:5.364368pt;}
.ws4a{word-spacing:5.387774pt;}
.ws48{word-spacing:5.440908pt;}
.ws8{word-spacing:5.655277pt;}
.ws7{word-spacing:5.713459pt;}
.ws22{word-spacing:5.829823pt;}
.ws43{word-spacing:6.120732pt;}
.ws3b{word-spacing:6.178914pt;}
.ws1d{word-spacing:6.295278pt;}
.ws2c{word-spacing:6.993460pt;}
.ws40{word-spacing:7.400733pt;}
.ws37{word-spacing:7.575279pt;}
.ws3c{word-spacing:8.797098pt;}
.ws1f{word-spacing:8.913462pt;}
.ws2d{word-spacing:9.029826pt;}
.ws2b{word-spacing:9.437099pt;}
.ws26{word-spacing:9.495281pt;}
.ws5{word-spacing:9.669826pt;}
.ws46{word-spacing:10.426191pt;}
.ws33{word-spacing:11.240737pt;}
.ws3a{word-spacing:11.415282pt;}
.ws17{word-spacing:11.880737pt;}
.ws2{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws27{word-spacing:28.294171pt;}
.ws14{word-spacing:35.234938pt;}
.ws1{word-spacing:48.252221pt;}
.ws41{word-spacing:51.805867pt;}
.ws6{word-spacing:54.976285pt;}
._23{margin-left:-5.993540pt;}
._8{margin-left:-5.038010pt;}
._0{margin-left:-4.098134pt;}
._7{margin-left:-3.200003pt;}
._2{margin-left:-1.976593pt;}
._4{margin-left:-0.905507pt;}
._1e{width:1.020280pt;}
._3{width:1.976593pt;}
._20{width:3.107678pt;}
._1{width:4.098134pt;}
._5{width:15.127285pt;}
._24{width:18.928055pt;}
._1f{width:20.022962pt;}
._15{width:23.190752pt;}
._6{width:24.782294pt;}
._1c{width:26.295023pt;}
._21{width:27.837926pt;}
._1b{width:29.848888pt;}
._1a{width:42.881626pt;}
._1d{width:45.205720pt;}
._19{width:52.099764pt;}
._9{width:53.818227pt;}
._e{width:59.461868pt;}
._22{width:66.909147pt;}
._18{width:71.731200pt;}
._13{width:603.314769pt;}
._d{width:809.602265pt;}
._10{width:1001.660607pt;}
._f{width:1015.739028pt;}
._b{width:1110.457517pt;}
._11{width:1128.846167pt;}
._14{width:1133.788445pt;}
._12{width:1311.944502pt;}
._16{width:1315.260868pt;}
._c{width:1390.606386pt;}
._a{width:1722.472572pt;}
._17{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:83.389333pt;}
.y78{bottom:156.449333pt;}
.y32{bottom:158.364000pt;}
.y77{bottom:174.514667pt;}
.y31{bottom:176.430667pt;}
.y76{bottom:192.580000pt;}
.y30{bottom:194.496000pt;}
.y75{bottom:210.646667pt;}
.y2f{bottom:224.516000pt;}
.y74{bottom:228.712000pt;}
.y2e{bottom:242.582667pt;}
.y2d{bottom:260.648000pt;}
.y73{bottom:261.000000pt;}
.y53{bottom:261.265333pt;}
.y52{bottom:279.330667pt;}
.y2c{bottom:293.117333pt;}
.y51{bottom:297.396000pt;}
.y72{bottom:301.198667pt;}
.y71{bottom:319.264000pt;}
.y50{bottom:322.977333pt;}
.y2b{bottom:333.633333pt;}
.y70{bottom:337.329333pt;}
.y11{bottom:345.820000pt;}
.y2a{bottom:351.698667pt;}
.y6f{bottom:355.394667pt;}
.y4f{bottom:355.446667pt;}
.y10{bottom:363.885333pt;}
.y29{bottom:369.764000pt;}
.y6e{bottom:373.461333pt;}
.y4e{bottom:373.512000pt;}
.yf{bottom:381.950667pt;}
.y28{bottom:387.830667pt;}
.y4d{bottom:391.577333pt;}
.ye{bottom:400.016000pt;}
.y6d{bottom:403.000000pt;}
.y27{bottom:405.896000pt;}
.y4c{bottom:417.158667pt;}
.yd{bottom:418.082667pt;}
.y26{bottom:423.961333pt;}
.y6c{bottom:432.829333pt;}
.yc{bottom:436.148000pt;}
.y25{bottom:442.026667pt;}
.y4b{bottom:449.628000pt;}
.yb{bottom:454.213333pt;}
.y24{bottom:460.092000pt;}
.y6b{bottom:462.657333pt;}
.y4a{bottom:467.693333pt;}
.ya{bottom:472.278667pt;}
.y23{bottom:478.158667pt;}
.y49{bottom:485.760000pt;}
.y9{bottom:490.344000pt;}
.y6a{bottom:492.197333pt;}
.y22{bottom:496.224000pt;}
.y48{bottom:511.340000pt;}
.y21{bottom:514.289333pt;}
.y69{bottom:524.485333pt;}
.y8{bottom:525.678667pt;}
.y47{bottom:543.809333pt;}
.y20{bottom:546.758667pt;}
.y7{bottom:558.321333pt;}
.y46{bottom:561.876000pt;}
.y68{bottom:564.684000pt;}
.y45{bottom:579.941333pt;}
.y67{bottom:582.749333pt;}
.y6{bottom:583.860000pt;}
.y1f{bottom:587.274667pt;}
.y66{bottom:600.814667pt;}
.y44{bottom:605.521333pt;}
.y65{bottom:618.880000pt;}
.y1e{bottom:628.632000pt;}
.y64{bottom:636.946667pt;}
.y43{bottom:637.990667pt;}
.y63{bottom:655.012000pt;}
.y42{bottom:656.057333pt;}
.y1d{bottom:661.244000pt;}
.y62{bottom:673.077333pt;}
.y5{bottom:688.170667pt;}
.y85{bottom:688.394667pt;}
.y41{bottom:688.526667pt;}
.y61{bottom:691.142667pt;}
.y1c{bottom:693.854667pt;}
.y84{bottom:704.334667pt;}
.y4{bottom:721.309333pt;}
.y60{bottom:723.430667pt;}
.y1b{bottom:726.465333pt;}
.y83{bottom:726.917333pt;}
.y40{bottom:729.042667pt;}
.y3f{bottom:747.108000pt;}
.y82{bottom:749.498667pt;}
.y1a{bottom:759.077333pt;}
.y3{bottom:761.160000pt;}
.y5f{bottom:763.629333pt;}
.y3e{bottom:765.173333pt;}
.y81{bottom:772.081333pt;}
.y19{bottom:777.142667pt;}
.y5e{bottom:781.694667pt;}
.y3d{bottom:783.238667pt;}
.y80{bottom:794.662667pt;}
.y18{bottom:795.208000pt;}
.y5d{bottom:799.761333pt;}
.y2{bottom:801.010667pt;}
.y3c{bottom:801.305333pt;}
.y7f{bottom:810.604000pt;}
.y17{bottom:813.273333pt;}
.y5c{bottom:817.826667pt;}
.y3b{bottom:819.370667pt;}
.y16{bottom:831.338667pt;}
.y7e{bottom:833.185333pt;}
.y5b{bottom:835.892000pt;}
.y3a{bottom:837.436000pt;}
.y7d{bottom:849.125333pt;}
.y5a{bottom:853.957333pt;}
.y39{bottom:855.501333pt;}
.y15{bottom:863.950667pt;}
.y7c{bottom:871.708000pt;}
.y59{bottom:872.022667pt;}
.y38{bottom:873.566667pt;}
.y7b{bottom:887.648000pt;}
.y58{bottom:890.089333pt;}
.y14{bottom:896.561333pt;}
.y37{bottom:906.037333pt;}
.y57{bottom:908.154667pt;}
.y7a{bottom:917.992000pt;}
.y56{bottom:926.220000pt;}
.y13{bottom:929.172000pt;}
.y55{bottom:944.285333pt;}
.y36{bottom:946.553333pt;}
.y79{bottom:958.508000pt;}
.y12{bottom:961.784000pt;}
.y54{bottom:962.350667pt;}
.y1{bottom:966.744000pt;}
.y35{bottom:976.573333pt;}
.y34{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:65.230043pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x8{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x9{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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