
    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_c95a81535b0ce0ccd7bb7cf5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_8b4f35e467922276e05e80e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.869629;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_fbaa4c7dddaa120a471bb47e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_31f432041040d5dd1f74e7d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977000;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_bae6e6fb15cd537f1c8cfc4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_6311d8ee7d74e97177c71c88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_4b8901619d4258cd42f81eaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.676758;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_920c01e37a1a76f6fe902f5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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;}
.ls2{letter-spacing:-0.840000px;}
.ls1{letter-spacing:-0.660000px;}
.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;}
}
.ws5{word-spacing:-14.916000px;}
.ws1{word-spacing:-14.256000px;}
.ws6{word-spacing:-12.204000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.594000px;}
.ws3{word-spacing:0.660000px;}
.ws4{word-spacing:0.840000px;}
._4{margin-left:-6.593400px;}
._1{margin-left:-5.101800px;}
._6{margin-left:-4.059000px;}
._2{margin-left:-2.709600px;}
._0{margin-left:-1.465200px;}
._3{width:1.551000px;}
._5{width:21.456000px;}
.fc3{color:rgb(74,168,170);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(24,78,128);}
.fc4{color:rgb(22,143,215);}
.fc0{color:rgb(34,33,64);}
.fs5{font-size:35.291400px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:42.519750px;}
.y75{bottom:45.449250px;}
.yaa{bottom:53.019750px;}
.y74{bottom:60.449250px;}
.y58{bottom:62.565450px;}
.ya9{bottom:63.519750px;}
.y14{bottom:64.250550px;}
.y34{bottom:65.442000px;}
.y57{bottom:74.565450px;}
.y73{bottom:75.449250px;}
.y53{bottom:81.264300px;}
.y33{bottom:84.942000px;}
.y71{bottom:85.068450px;}
.y56{bottom:86.565450px;}
.y13{bottom:89.750550px;}
.y32{bottom:104.442000px;}
.y70{bottom:104.568450px;}
.yac{bottom:112.124400px;}
.y52{bottom:112.764300px;}
.y12{bottom:115.250550px;}
.y55{bottom:122.655150px;}
.y31{bottom:123.942000px;}
.y6f{bottom:124.068450px;}
.y11{bottom:140.750550px;}
.y6e{bottom:143.568450px;}
.y51{bottom:144.264300px;}
.y50{bottom:156.264300px;}
.yad{bottom:156.926100px;}
.y54{bottom:157.772400px;}
.y6d{bottom:163.068450px;}
.y10{bottom:166.250550px;}
.y30{bottom:179.678100px;}
.y4f{bottom:188.386350px;}
.yf{bottom:191.750550px;}
.y2f{bottom:199.178100px;}
.ya7{bottom:201.209700px;}
.y6c{bottom:202.068450px;}
.ya6{bottom:214.709700px;}
.ye{bottom:217.250550px;}
.y2e{bottom:218.678100px;}
.y6b{bottom:221.568450px;}
.ya5{bottom:228.209700px;}
.y4e{bottom:235.530000px;}
.y2d{bottom:238.178100px;}
.y6a{bottom:241.068450px;}
.ya4{bottom:255.209700px;}
.y2c{bottom:257.678100px;}
.y69{bottom:260.568450px;}
.ya3{bottom:268.709700px;}
.y2b{bottom:277.178100px;}
.yd{bottom:279.928050px;}
.ya2{bottom:282.209700px;}
.y2a{bottom:296.678100px;}
.y68{bottom:299.568450px;}
.y4d{bottom:303.552150px;}
.yc{bottom:305.428050px;}
.ya1{bottom:309.209700px;}
.y29{bottom:316.178100px;}
.y4c{bottom:318.552150px;}
.y67{bottom:319.068450px;}
.ya0{bottom:322.709700px;}
.yb{bottom:330.928050px;}
.y28{bottom:335.678100px;}
.y66{bottom:338.568450px;}
.y9f{bottom:349.709700px;}
.ya{bottom:356.428050px;}
.y65{bottom:358.068450px;}
.y9e{bottom:363.209700px;}
.y9d{bottom:376.709700px;}
.y9{bottom:381.928050px;}
.y27{bottom:382.337550px;}
.y26{bottom:401.837550px;}
.y9c{bottom:403.709700px;}
.y72{bottom:407.395500px;}
.y9b{bottom:417.209700px;}
.y25{bottom:421.337550px;}
.y8{bottom:439.128750px;}
.y24{bottom:440.837550px;}
.y9a{bottom:444.209700px;}
.y99{bottom:457.709700px;}
.y23{bottom:460.337550px;}
.y98{bottom:471.209700px;}
.y22{bottom:479.837550px;}
.y97{bottom:498.209700px;}
.y7{bottom:504.416400px;}
.y96{bottom:511.709700px;}
.y21{bottom:530.852400px;}
.y64{bottom:535.689750px;}
.y95{bottom:538.709700px;}
.y20{bottom:550.352400px;}
.y94{bottom:552.209700px;}
.y63{bottom:561.189750px;}
.y1f{bottom:569.852400px;}
.y5{bottom:574.334700px;}
.y93{bottom:579.209700px;}
.y62{bottom:586.689750px;}
.y1e{bottom:589.352400px;}
.y92{bottom:592.709700px;}
.y4{bottom:593.834700px;}
.y1d{bottom:608.852400px;}
.y61{bottom:612.189750px;}
.y3{bottom:613.334700px;}
.y91{bottom:619.709700px;}
.y2{bottom:632.834700px;}
.y90{bottom:633.209700px;}
.y8f{bottom:646.709700px;}
.y1c{bottom:659.459700px;}
.y8e{bottom:673.709700px;}
.y6{bottom:676.161750px;}
.y1b{bottom:678.959700px;}
.y8d{bottom:687.209700px;}
.y60{bottom:688.949550px;}
.y1a{bottom:698.459700px;}
.y8c{bottom:700.709700px;}
.y5f{bottom:714.449700px;}
.y19{bottom:717.959700px;}
.y8b{bottom:727.709700px;}
.y18{bottom:737.459700px;}
.y5e{bottom:739.949700px;}
.y8a{bottom:741.209700px;}
.y89{bottom:754.709700px;}
.y5d{bottom:765.449700px;}
.y88{bottom:781.709700px;}
.y87{bottom:795.209700px;}
.y86{bottom:808.709700px;}
.y41{bottom:811.986300px;}
.y5c{bottom:828.239100px;}
.y40{bottom:831.486300px;}
.y85{bottom:835.709700px;}
.y84{bottom:849.209700px;}
.y3f{bottom:850.986300px;}
.y5b{bottom:853.739100px;}
.y83{bottom:876.209700px;}
.y5a{bottom:879.239100px;}
.y82{bottom:889.709700px;}
.y3e{bottom:889.986300px;}
.y81{bottom:903.209700px;}
.y3d{bottom:909.486300px;}
.y3c{bottom:928.986300px;}
.y80{bottom:930.209700px;}
.y7f{bottom:943.709700px;}
.y59{bottom:945.030000px;}
.y3b{bottom:948.486300px;}
.y4a{bottom:948.959700px;}
.y3a{bottom:967.986300px;}
.y49{bottom:968.459700px;}
.y7e{bottom:970.709700px;}
.y7d{bottom:984.209700px;}
.y48{bottom:987.959700px;}
.y17{bottom:989.264850px;}
.y7c{bottom:997.709700px;}
.y39{bottom:1006.986300px;}
.y16{bottom:1019.264850px;}
.y7b{bottom:1024.709700px;}
.y38{bottom:1026.486300px;}
.y7a{bottom:1038.209700px;}
.y37{bottom:1045.986300px;}
.y47{bottom:1050.959700px;}
.y79{bottom:1051.709700px;}
.y78{bottom:1065.209700px;}
.y36{bottom:1065.486300px;}
.y46{bottom:1070.459700px;}
.y35{bottom:1084.986300px;}
.y45{bottom:1089.959700px;}
.ya8{bottom:1096.042200px;}
.y44{bottom:1109.459700px;}
.y15{bottom:1109.677500px;}
.y4b{bottom:1115.029500px;}
.y43{bottom:1128.959700px;}
.y42{bottom:1131.230700px;}
.y77{bottom:1136.459700px;}
.y76{bottom:1155.959700px;}
.y1{bottom:1220.314950px;}
.ha{height:28.444868px;}
.hd{height:29.100586px;}
.hc{height:34.637695px;}
.hb{height:44.534180px;}
.h3{height:45.632812px;}
.h9{height:47.920898px;}
.he{height:48.360000px;}
.h2{height:53.196000px;}
.h4{height:54.430664px;}
.h6{height:58.032000px;}
.h5{height:62.868000px;}
.h8{height:82.212000px;}
.h7{height:87.048000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:27.867450px;}
.x2{left:42.519600px;}
.x3{left:53.019750px;}
.x9{left:66.035400px;}
.xd{left:71.456700px;}
.x8{left:88.928850px;}
.x4{left:93.915750px;}
.xf{left:109.280550px;}
.x7{left:218.597700px;}
.x6{left:256.975200px;}
.xe{left:299.102850px;}
.xa{left:463.570800px;}
.xb{left:474.070800px;}
.xc{left:486.720450px;}
.x1{left:850.393650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.746667pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-13.258667pt;}
.ws1{word-spacing:-12.672000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.528000pt;}
.ws3{word-spacing:0.586667pt;}
.ws4{word-spacing:0.746667pt;}
._4{margin-left:-5.860800pt;}
._1{margin-left:-4.534933pt;}
._6{margin-left:-3.608000pt;}
._2{margin-left:-2.408533pt;}
._0{margin-left:-1.302400pt;}
._3{width:1.378667pt;}
._5{width:19.072000pt;}
.fs5{font-size:31.370133pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:37.795333pt;}
.y75{bottom:40.399333pt;}
.yaa{bottom:47.128667pt;}
.y74{bottom:53.732667pt;}
.y58{bottom:55.613733pt;}
.ya9{bottom:56.462000pt;}
.y14{bottom:57.111600pt;}
.y34{bottom:58.170667pt;}
.y57{bottom:66.280400pt;}
.y73{bottom:67.066000pt;}
.y53{bottom:72.234933pt;}
.y33{bottom:75.504000pt;}
.y71{bottom:75.616400pt;}
.y56{bottom:76.947067pt;}
.y13{bottom:79.778267pt;}
.y32{bottom:92.837333pt;}
.y70{bottom:92.949733pt;}
.yac{bottom:99.666133pt;}
.y52{bottom:100.234933pt;}
.y12{bottom:102.444933pt;}
.y55{bottom:109.026800pt;}
.y31{bottom:110.170667pt;}
.y6f{bottom:110.283067pt;}
.y11{bottom:125.111600pt;}
.y6e{bottom:127.616400pt;}
.y51{bottom:128.234933pt;}
.y50{bottom:138.901600pt;}
.yad{bottom:139.489867pt;}
.y54{bottom:140.242133pt;}
.y6d{bottom:144.949733pt;}
.y10{bottom:147.778267pt;}
.y30{bottom:159.713867pt;}
.y4f{bottom:167.454533pt;}
.yf{bottom:170.444933pt;}
.y2f{bottom:177.047200pt;}
.ya7{bottom:178.853067pt;}
.y6c{bottom:179.616400pt;}
.ya6{bottom:190.853067pt;}
.ye{bottom:193.111600pt;}
.y2e{bottom:194.380533pt;}
.y6b{bottom:196.949733pt;}
.ya5{bottom:202.853067pt;}
.y4e{bottom:209.360000pt;}
.y2d{bottom:211.713867pt;}
.y6a{bottom:214.283067pt;}
.ya4{bottom:226.853067pt;}
.y2c{bottom:229.047200pt;}
.y69{bottom:231.616400pt;}
.ya3{bottom:238.853067pt;}
.y2b{bottom:246.380533pt;}
.yd{bottom:248.824933pt;}
.ya2{bottom:250.853067pt;}
.y2a{bottom:263.713867pt;}
.y68{bottom:266.283067pt;}
.y4d{bottom:269.824133pt;}
.yc{bottom:271.491600pt;}
.ya1{bottom:274.853067pt;}
.y29{bottom:281.047200pt;}
.y4c{bottom:283.157467pt;}
.y67{bottom:283.616400pt;}
.ya0{bottom:286.853067pt;}
.yb{bottom:294.158267pt;}
.y28{bottom:298.380533pt;}
.y66{bottom:300.949733pt;}
.y9f{bottom:310.853067pt;}
.ya{bottom:316.824933pt;}
.y65{bottom:318.283067pt;}
.y9e{bottom:322.853067pt;}
.y9d{bottom:334.853067pt;}
.y9{bottom:339.491600pt;}
.y27{bottom:339.855600pt;}
.y26{bottom:357.188933pt;}
.y9c{bottom:358.853067pt;}
.y72{bottom:362.129333pt;}
.y9b{bottom:370.853067pt;}
.y25{bottom:374.522267pt;}
.y8{bottom:390.336667pt;}
.y24{bottom:391.855600pt;}
.y9a{bottom:394.853067pt;}
.y99{bottom:406.853067pt;}
.y23{bottom:409.188933pt;}
.y98{bottom:418.853067pt;}
.y22{bottom:426.522267pt;}
.y97{bottom:442.853067pt;}
.y7{bottom:448.370133pt;}
.y96{bottom:454.853067pt;}
.y21{bottom:471.868800pt;}
.y64{bottom:476.168667pt;}
.y95{bottom:478.853067pt;}
.y20{bottom:489.202133pt;}
.y94{bottom:490.853067pt;}
.y63{bottom:498.835333pt;}
.y1f{bottom:506.535467pt;}
.y5{bottom:510.519733pt;}
.y93{bottom:514.853067pt;}
.y62{bottom:521.502000pt;}
.y1e{bottom:523.868800pt;}
.y92{bottom:526.853067pt;}
.y4{bottom:527.853067pt;}
.y1d{bottom:541.202133pt;}
.y61{bottom:544.168667pt;}
.y3{bottom:545.186400pt;}
.y91{bottom:550.853067pt;}
.y2{bottom:562.519733pt;}
.y90{bottom:562.853067pt;}
.y8f{bottom:574.853067pt;}
.y1c{bottom:586.186400pt;}
.y8e{bottom:598.853067pt;}
.y6{bottom:601.032667pt;}
.y1b{bottom:603.519733pt;}
.y8d{bottom:610.853067pt;}
.y60{bottom:612.399600pt;}
.y1a{bottom:620.853067pt;}
.y8c{bottom:622.853067pt;}
.y5f{bottom:635.066400pt;}
.y19{bottom:638.186400pt;}
.y8b{bottom:646.853067pt;}
.y18{bottom:655.519733pt;}
.y5e{bottom:657.733067pt;}
.y8a{bottom:658.853067pt;}
.y89{bottom:670.853067pt;}
.y5d{bottom:680.399733pt;}
.y88{bottom:694.853067pt;}
.y87{bottom:706.853067pt;}
.y86{bottom:718.853067pt;}
.y41{bottom:721.765600pt;}
.y5c{bottom:736.212533pt;}
.y40{bottom:739.098933pt;}
.y85{bottom:742.853067pt;}
.y84{bottom:754.853067pt;}
.y3f{bottom:756.432267pt;}
.y5b{bottom:758.879200pt;}
.y83{bottom:778.853067pt;}
.y5a{bottom:781.545867pt;}
.y82{bottom:790.853067pt;}
.y3e{bottom:791.098933pt;}
.y81{bottom:802.853067pt;}
.y3d{bottom:808.432267pt;}
.y3c{bottom:825.765600pt;}
.y80{bottom:826.853067pt;}
.y7f{bottom:838.853067pt;}
.y59{bottom:840.026667pt;}
.y3b{bottom:843.098933pt;}
.y4a{bottom:843.519733pt;}
.y3a{bottom:860.432267pt;}
.y49{bottom:860.853067pt;}
.y7e{bottom:862.853067pt;}
.y7d{bottom:874.853067pt;}
.y48{bottom:878.186400pt;}
.y17{bottom:879.346533pt;}
.y7c{bottom:886.853067pt;}
.y39{bottom:895.098933pt;}
.y16{bottom:906.013200pt;}
.y7b{bottom:910.853067pt;}
.y38{bottom:912.432267pt;}
.y7a{bottom:922.853067pt;}
.y37{bottom:929.765600pt;}
.y47{bottom:934.186400pt;}
.y79{bottom:934.853067pt;}
.y78{bottom:946.853067pt;}
.y36{bottom:947.098933pt;}
.y46{bottom:951.519733pt;}
.y35{bottom:964.432267pt;}
.y45{bottom:968.853067pt;}
.ya8{bottom:974.259733pt;}
.y44{bottom:986.186400pt;}
.y15{bottom:986.380000pt;}
.y4b{bottom:991.137333pt;}
.y43{bottom:1003.519733pt;}
.y42{bottom:1005.538400pt;}
.y77{bottom:1010.186400pt;}
.y76{bottom:1027.519733pt;}
.y1{bottom:1084.724400pt;}
.ha{height:25.284327pt;}
.hd{height:25.867188pt;}
.hc{height:30.789062pt;}
.hb{height:39.585938pt;}
.h3{height:40.562500pt;}
.h9{height:42.596354pt;}
.he{height:42.986667pt;}
.h2{height:47.285333pt;}
.h4{height:48.382812pt;}
.h6{height:51.584000pt;}
.h5{height:55.882667pt;}
.h8{height:73.077333pt;}
.h7{height:77.376000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:24.771067pt;}
.x2{left:37.795200pt;}
.x3{left:47.128667pt;}
.x9{left:58.698133pt;}
.xd{left:63.517067pt;}
.x8{left:79.047867pt;}
.x4{left:83.480667pt;}
.xf{left:97.138267pt;}
.x7{left:194.309067pt;}
.x6{left:228.422400pt;}
.xe{left:265.869200pt;}
.xa{left:412.062933pt;}
.xb{left:421.396267pt;}
.xc{left:432.640400pt;}
.x1{left:755.905467pt;}
}




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