
    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_f1537568a05331c6c56dff94.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.908556;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_cd6fc2c6ebded0c563019df1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908556;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_2fe104444cd2456daf1aa5ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898571;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_d43a2ad08aff6f41e7c3c683.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_bc688204eab8a743dcda2f92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_d53b88ff3dfd3e47fbf8f327.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898571;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_30841988383654cb98855433.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891000;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_c4ee428f026e507288c9c879.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;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;}
.ls4{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.192000px;}
.ls3{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-33.432000px;}
.ws9{word-spacing:-20.412000px;}
.ws0{word-spacing:-18.912000px;}
.ws1{word-spacing:-14.616000px;}
.ws2{word-spacing:-14.040000px;}
.ws7{word-spacing:-12.180000px;}
.ws8{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.144000px;}
.ws5{word-spacing:0.720000px;}
._8{margin-left:-27.952800px;}
._4{margin-left:-16.848000px;}
._a{margin-left:-11.908800px;}
._c{margin-left:-7.776000px;}
._b{margin-left:-6.753600px;}
._7{margin-left:-5.523582px;}
._5{margin-left:-4.161600px;}
._3{margin-left:-3.024000px;}
._1{margin-left:-1.101600px;}
._6{width:1.224000px;}
._0{width:2.376000px;}
._2{width:4.104000px;}
._9{width:72.936000px;}
.fc8{color:rgb(48,88,159);}
.fc5{color:rgb(43,103,114);}
.fc4{color:rgb(44,104,114);}
.fc6{color:transparent;}
.fc2{color:rgb(50,113,122);}
.fc7{color:rgb(247,145,48);}
.fc1{color:rgb(51,114,122);}
.fc3{color:rgb(79,195,171);}
.fc0{color:rgb(247,144,48);}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:168.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:60.399300px;}
.y39{bottom:60.821400px;}
.ya0{bottom:93.841050px;}
.y12{bottom:108.880794px;}
.y7f{bottom:109.298100px;}
.y9f{bottom:115.441050px;}
.y11{bottom:130.480797px;}
.y7e{bottom:130.898100px;}
.y9e{bottom:137.041050px;}
.ya2{bottom:145.295250px;}
.y10{bottom:152.080798px;}
.y7d{bottom:152.498100px;}
.y9d{bottom:158.641050px;}
.yf{bottom:173.680801px;}
.y9c{bottom:180.241050px;}
.ye{bottom:195.280792px;}
.y5d{bottom:195.434850px;}
.y7c{bottom:195.760800px;}
.ya1{bottom:200.424600px;}
.yd{bottom:216.880806px;}
.y5c{bottom:217.034850px;}
.y7b{bottom:217.360800px;}
.y9b{bottom:232.638600px;}
.yc{bottom:238.480797px;}
.y5b{bottom:238.635000px;}
.y7a{bottom:238.960800px;}
.y98{bottom:254.277136px;}
.yb{bottom:260.080811px;}
.y5a{bottom:260.234850px;}
.y79{bottom:260.560800px;}
.y97{bottom:279.477136px;}
.y78{bottom:282.160800px;}
.y36{bottom:288.708750px;}
.y59{bottom:303.434850px;}
.y77{bottom:303.760800px;}
.ya{bottom:309.383560px;}
.y35{bottom:310.308750px;}
.y96{bottom:322.677136px;}
.y58{bottom:325.034850px;}
.y34{bottom:331.908750px;}
.y7{bottom:339.450750px;}
.y95{bottom:344.616737px;}
.y57{bottom:346.635000px;}
.y76{bottom:347.384400px;}
.y33{bottom:353.508750px;}
.y6{bottom:364.659150px;}
.y56{bottom:368.234850px;}
.y75{bottom:368.984250px;}
.y32{bottom:375.108750px;}
.y94{bottom:387.477136px;}
.y55{bottom:389.835000px;}
.y74{bottom:390.584400px;}
.y31{bottom:396.708750px;}
.y93{bottom:409.077136px;}
.y8{bottom:410.059936px;}
.y54{bottom:411.434850px;}
.y72{bottom:412.038300px;}
.y73{bottom:412.184400px;}
.y30{bottom:418.308750px;}
.y65{bottom:420.191850px;}
.y92{bottom:430.677136px;}
.y53{bottom:433.034850px;}
.y64{bottom:438.191850px;}
.y2f{bottom:439.908750px;}
.y5{bottom:440.127126px;}
.y52{bottom:454.634850px;}
.y63{bottom:456.191850px;}
.y2e{bottom:461.508750px;}
.y71{bottom:462.438300px;}
.y4{bottom:465.335526px;}
.y91{bottom:473.877137px;}
.y51{bottom:476.234850px;}
.y2d{bottom:483.108750px;}
.y90{bottom:495.477137px;}
.y50{bottom:497.835000px;}
.y9{bottom:504.581268px;}
.y2c{bottom:504.708750px;}
.y8f{bottom:517.077137px;}
.y4f{bottom:519.434850px;}
.y2b{bottom:526.308750px;}
.y4e{bottom:541.034850px;}
.y2a{bottom:547.908750px;}
.y8e{bottom:560.277136px;}
.y70{bottom:563.238300px;}
.y9a{bottom:568.445850px;}
.y29{bottom:569.508750px;}
.y8d{bottom:581.877137px;}
.y4d{bottom:584.234850px;}
.y6f{bottom:584.838300px;}
.y28{bottom:591.108750px;}
.y8c{bottom:603.477137px;}
.y4c{bottom:605.835000px;}
.y6e{bottom:606.438300px;}
.y3{bottom:616.918488px;}
.y4b{bottom:627.434850px;}
.y6d{bottom:628.038300px;}
.y27{bottom:634.308750px;}
.y8b{bottom:646.677137px;}
.y4a{bottom:649.034850px;}
.y6c{bottom:649.638300px;}
.y26{bottom:655.908750px;}
.y8a{bottom:668.616737px;}
.y6b{bottom:671.238300px;}
.y25{bottom:677.508750px;}
.y2{bottom:681.718368px;}
.y89{bottom:690.216737px;}
.y49{bottom:692.234850px;}
.y24{bottom:699.108750px;}
.y48{bottom:713.835000px;}
.y23{bottom:720.708750px;}
.y47{bottom:735.434850px;}
.y1{bottom:746.518479px;}
.y99{bottom:748.836136px;}
.y46{bottom:757.034850px;}
.y22{bottom:763.908750px;}
.y45{bottom:778.635000px;}
.y21{bottom:785.508750px;}
.y62{bottom:785.835000px;}
.y44{bottom:800.234850px;}
.y20{bottom:807.108750px;}
.y61{bottom:807.434850px;}
.y43{bottom:821.835000px;}
.y1f{bottom:828.708750px;}
.y60{bottom:829.034850px;}
.y1e{bottom:850.308750px;}
.y5f{bottom:850.635000px;}
.y42{bottom:865.034850px;}
.y1d{bottom:871.908750px;}
.y5e{bottom:872.234850px;}
.y1c{bottom:893.508750px;}
.y1b{bottom:915.108750px;}
.y41{bottom:915.434850px;}
.y88{bottom:924.675600px;}
.y1a{bottom:936.708750px;}
.y87{bottom:946.275750px;}
.y6a{bottom:963.673350px;}
.y86{bottom:967.875750px;}
.y19{bottom:979.908750px;}
.y69{bottom:981.673350px;}
.y85{bottom:989.475750px;}
.y40{bottom:998.234850px;}
.y68{bottom:999.673350px;}
.y18{bottom:1001.508750px;}
.y84{bottom:1011.075750px;}
.y67{bottom:1017.673350px;}
.y3f{bottom:1019.835000px;}
.y17{bottom:1023.108900px;}
.y66{bottom:1035.673350px;}
.y3e{bottom:1041.434850px;}
.y16{bottom:1044.708750px;}
.y83{bottom:1054.275750px;}
.y3d{bottom:1063.034850px;}
.y15{bottom:1066.308900px;}
.y82{bottom:1075.875750px;}
.y3c{bottom:1084.635000px;}
.y14{bottom:1087.908750px;}
.y81{bottom:1097.475750px;}
.y3b{bottom:1106.234850px;}
.y13{bottom:1109.508750px;}
.y80{bottom:1119.075750px;}
.y3a{bottom:1127.835000px;}
.y37{bottom:1171.034850px;}
.ha{height:41.640000px;}
.h6{height:48.600000px;}
.h5{height:50.585143px;}
.h3{height:51.304000px;}
.h8{height:56.700000px;}
.h4{height:68.405333px;}
.hb{height:76.956000px;}
.h9{height:118.032000px;}
.h7{height:119.709333px;}
.h2{height:153.912000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:52.086600px;}
.x1{left:54.000000px;}
.x7{left:80.574750px;}
.x2{left:122.697600px;}
.x8{left:416.730000px;}
.x3{left:434.357550px;}
.x4{left:535.747950px;}
.xa{left:536.811000px;}
.x9{left:577.417350px;}
.x5{left:714.330600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.170667pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-29.717333pt;}
.ws9{word-spacing:-18.144000pt;}
.ws0{word-spacing:-16.810667pt;}
.ws1{word-spacing:-12.992000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws7{word-spacing:-10.826667pt;}
.ws8{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.128000pt;}
.ws5{word-spacing:0.640000pt;}
._8{margin-left:-24.846933pt;}
._4{margin-left:-14.976000pt;}
._a{margin-left:-10.585600pt;}
._c{margin-left:-6.912000pt;}
._b{margin-left:-6.003200pt;}
._7{margin-left:-4.909851pt;}
._5{margin-left:-3.699200pt;}
._3{margin-left:-2.688000pt;}
._1{margin-left:-0.979200pt;}
._6{width:1.088000pt;}
._0{width:2.112000pt;}
._2{width:3.648000pt;}
._9{width:64.832000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:149.333333pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:53.688267pt;}
.y39{bottom:54.063467pt;}
.ya0{bottom:83.414267pt;}
.y12{bottom:96.782928pt;}
.y7f{bottom:97.153867pt;}
.y9f{bottom:102.614267pt;}
.y11{bottom:115.982931pt;}
.y7e{bottom:116.353867pt;}
.y9e{bottom:121.814267pt;}
.ya2{bottom:129.151333pt;}
.y10{bottom:135.182932pt;}
.y7d{bottom:135.553867pt;}
.y9d{bottom:141.014267pt;}
.yf{bottom:154.382935pt;}
.y9c{bottom:160.214267pt;}
.ye{bottom:173.582927pt;}
.y5d{bottom:173.719867pt;}
.y7c{bottom:174.009600pt;}
.ya1{bottom:178.155200pt;}
.yd{bottom:192.782939pt;}
.y5c{bottom:192.919867pt;}
.y7b{bottom:193.209600pt;}
.y9b{bottom:206.789867pt;}
.yc{bottom:211.982931pt;}
.y5b{bottom:212.120000pt;}
.y7a{bottom:212.409600pt;}
.y98{bottom:226.024121pt;}
.yb{bottom:231.182943pt;}
.y5a{bottom:231.319867pt;}
.y79{bottom:231.609600pt;}
.y97{bottom:248.424121pt;}
.y78{bottom:250.809600pt;}
.y36{bottom:256.630000pt;}
.y59{bottom:269.719867pt;}
.y77{bottom:270.009600pt;}
.ya{bottom:275.007609pt;}
.y35{bottom:275.830000pt;}
.y96{bottom:286.824121pt;}
.y58{bottom:288.919867pt;}
.y34{bottom:295.030000pt;}
.y7{bottom:301.734000pt;}
.y95{bottom:306.325988pt;}
.y57{bottom:308.120000pt;}
.y76{bottom:308.786133pt;}
.y33{bottom:314.230000pt;}
.y6{bottom:324.141467pt;}
.y56{bottom:327.319867pt;}
.y75{bottom:327.986000pt;}
.y32{bottom:333.430000pt;}
.y94{bottom:344.424121pt;}
.y55{bottom:346.520000pt;}
.y74{bottom:347.186133pt;}
.y31{bottom:352.630000pt;}
.y93{bottom:363.624121pt;}
.y8{bottom:364.497721pt;}
.y54{bottom:365.719867pt;}
.y72{bottom:366.256267pt;}
.y73{bottom:366.386133pt;}
.y30{bottom:371.830000pt;}
.y65{bottom:373.503867pt;}
.y92{bottom:382.824121pt;}
.y53{bottom:384.919867pt;}
.y64{bottom:389.503867pt;}
.y2f{bottom:391.030000pt;}
.y5{bottom:391.224112pt;}
.y52{bottom:404.119867pt;}
.y63{bottom:405.503867pt;}
.y2e{bottom:410.230000pt;}
.y71{bottom:411.056267pt;}
.y4{bottom:413.631579pt;}
.y91{bottom:421.224121pt;}
.y51{bottom:423.319867pt;}
.y2d{bottom:429.430000pt;}
.y90{bottom:440.424121pt;}
.y50{bottom:442.520000pt;}
.y9{bottom:448.516683pt;}
.y2c{bottom:448.630000pt;}
.y8f{bottom:459.624121pt;}
.y4f{bottom:461.719867pt;}
.y2b{bottom:467.830000pt;}
.y4e{bottom:480.919867pt;}
.y2a{bottom:487.030000pt;}
.y8e{bottom:498.024121pt;}
.y70{bottom:500.656267pt;}
.y9a{bottom:505.285200pt;}
.y29{bottom:506.230000pt;}
.y8d{bottom:517.224121pt;}
.y4d{bottom:519.319867pt;}
.y6f{bottom:519.856267pt;}
.y28{bottom:525.430000pt;}
.y8c{bottom:536.424121pt;}
.y4c{bottom:538.520000pt;}
.y6e{bottom:539.056267pt;}
.y3{bottom:548.371989pt;}
.y4b{bottom:557.719867pt;}
.y6d{bottom:558.256267pt;}
.y27{bottom:563.830000pt;}
.y8b{bottom:574.824121pt;}
.y4a{bottom:576.919867pt;}
.y6c{bottom:577.456267pt;}
.y26{bottom:583.030000pt;}
.y8a{bottom:594.325988pt;}
.y6b{bottom:596.656267pt;}
.y25{bottom:602.230000pt;}
.y2{bottom:605.971883pt;}
.y89{bottom:613.525988pt;}
.y49{bottom:615.319867pt;}
.y24{bottom:621.430000pt;}
.y48{bottom:634.520000pt;}
.y23{bottom:640.630000pt;}
.y47{bottom:653.719867pt;}
.y1{bottom:663.571981pt;}
.y99{bottom:665.632121pt;}
.y46{bottom:672.919867pt;}
.y22{bottom:679.030000pt;}
.y45{bottom:692.120000pt;}
.y21{bottom:698.230000pt;}
.y62{bottom:698.520000pt;}
.y44{bottom:711.319867pt;}
.y20{bottom:717.430000pt;}
.y61{bottom:717.719867pt;}
.y43{bottom:730.520000pt;}
.y1f{bottom:736.630000pt;}
.y60{bottom:736.919867pt;}
.y1e{bottom:755.830000pt;}
.y5f{bottom:756.120000pt;}
.y42{bottom:768.919867pt;}
.y1d{bottom:775.030000pt;}
.y5e{bottom:775.319867pt;}
.y1c{bottom:794.230000pt;}
.y1b{bottom:813.430000pt;}
.y41{bottom:813.719867pt;}
.y88{bottom:821.933867pt;}
.y1a{bottom:832.630000pt;}
.y87{bottom:841.134000pt;}
.y6a{bottom:856.598533pt;}
.y86{bottom:860.334000pt;}
.y19{bottom:871.030000pt;}
.y69{bottom:872.598533pt;}
.y85{bottom:879.534000pt;}
.y40{bottom:887.319867pt;}
.y68{bottom:888.598533pt;}
.y18{bottom:890.230000pt;}
.y84{bottom:898.734000pt;}
.y67{bottom:904.598533pt;}
.y3f{bottom:906.520000pt;}
.y17{bottom:909.430133pt;}
.y66{bottom:920.598533pt;}
.y3e{bottom:925.719867pt;}
.y16{bottom:928.630000pt;}
.y83{bottom:937.134000pt;}
.y3d{bottom:944.919867pt;}
.y15{bottom:947.830133pt;}
.y82{bottom:956.334000pt;}
.y3c{bottom:964.120000pt;}
.y14{bottom:967.030000pt;}
.y81{bottom:975.534000pt;}
.y3b{bottom:983.319867pt;}
.y13{bottom:986.230000pt;}
.y80{bottom:994.734000pt;}
.y3a{bottom:1002.520000pt;}
.y37{bottom:1040.919867pt;}
.ha{height:37.013333pt;}
.h6{height:43.200000pt;}
.h5{height:44.964571pt;}
.h3{height:45.603556pt;}
.h8{height:50.400000pt;}
.h4{height:60.804741pt;}
.hb{height:68.405333pt;}
.h9{height:104.917333pt;}
.h7{height:106.408296pt;}
.h2{height:136.810667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:46.299200pt;}
.x1{left:48.000000pt;}
.x7{left:71.622000pt;}
.x2{left:109.064533pt;}
.x8{left:370.426667pt;}
.x3{left:386.095600pt;}
.x4{left:476.220400pt;}
.xa{left:477.165333pt;}
.x9{left:513.259867pt;}
.x5{left:634.960533pt;}
}




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