
    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_c2c6108f20aa1fad518f75ab.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e79ccb5a2bc6d332bb685503.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_5b2c648fe48fd789637bb3cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_408998443577d2d87e9ff776.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_49c9ad9e9a043bb629d804a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.917480;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_9b7e1e15dd945666df8e5c4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_24d892fdcef4199ff47ad455.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_fb067ce24695d28ad22a92bd.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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(0.456102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456102,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-10.800000px;}
.v1{vertical-align:-7.440000px;}
.v3{vertical-align:-5.340000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.440000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.321600px;}
.ls4{letter-spacing:1290.900000px;}
.ls5{letter-spacing:1349.772000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.960000px;}
.ws0{word-spacing:-43.767840px;}
.ws3{word-spacing:-24.588000px;}
.ws4{word-spacing:-24.228000px;}
.ws6{word-spacing:-0.098887px;}
.ws5{word-spacing:-0.057707px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-208.689930px;}
._c{margin-left:-207.397724px;}
._d{margin-left:-200.693550px;}
._e{margin-left:-199.401343px;}
._5{margin-left:-12.985920px;}
._f{margin-left:-7.635360px;}
._2{margin-left:-3.921120px;}
._4{margin-left:-2.808000px;}
._0{margin-left:-1.750560px;}
._1{width:1.102560px;}
._3{width:2.247360px;}
._a{width:705.249360px;}
._9{width:709.029360px;}
._7{width:723.627120px;}
._8{width:741.751680px;}
._6{width:829.655760px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.960000px;}
.fs9{font-size:57.707433px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fsa{font-size:98.887244px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs0{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:7.417286px;}
.y4a{bottom:15.634589px;}
.y4c{bottom:41.395178px;}
.y49{bottom:54.013690px;}
.y4b{bottom:62.231086px;}
.y4f{bottom:76.392000px;}
.y3f{bottom:87.372000px;}
.y13{bottom:102.996000px;}
.y1a{bottom:103.968000px;}
.y45{bottom:108.324000px;}
.y12{bottom:133.056000px;}
.y44{bottom:138.384000px;}
.y29{bottom:157.140000px;}
.y11{bottom:163.335000px;}
.y2c{bottom:173.445000px;}
.y28{bottom:189.540000px;}
.y10{bottom:193.395000px;}
.y18{bottom:195.915000px;}
.y27{bottom:221.940000px;}
.yf{bottom:223.635000px;}
.y17{bottom:226.155000px;}
.y31{bottom:227.010000px;}
.ye{bottom:253.695000px;}
.y26{bottom:254.340000px;}
.y16{bottom:256.245000px;}
.y30{bottom:259.455000px;}
.y3c{bottom:272.445000px;}
.y51{bottom:274.140000px;}
.yd{bottom:283.935000px;}
.y3e{bottom:285.015000px;}
.y15{bottom:286.485000px;}
.y25{bottom:286.740000px;}
.y3b{bottom:302.730000px;}
.y50{bottom:304.380000px;}
.yc{bottom:313.995000px;}
.y3d{bottom:315.285000px;}
.y14{bottom:317.265000px;}
.y24{bottom:319.170000px;}
.yb{bottom:344.085000px;}
.y23{bottom:351.570000px;}
.y39{bottom:361.770000px;}
.ya{bottom:374.325000px;}
.y4e{bottom:374.400000px;}
.y22{bottom:383.970000px;}
.y38{bottom:388.590000px;}
.y9{bottom:404.385000px;}
.y37{bottom:415.230000px;}
.y21{bottom:416.370000px;}
.y5b{bottom:417.630000px;}
.y2{bottom:427.470000px;}
.y42{bottom:427.575000px;}
.y8{bottom:434.625000px;}
.y36{bottom:442.050000px;}
.y56{bottom:443.130000px;}
.y5a{bottom:447.690000px;}
.y20{bottom:448.770000px;}
.y4d{bottom:459.540000px;}
.y7{bottom:464.685000px;}
.y2b{bottom:467.310000px;}
.y35{bottom:468.870000px;}
.y55{bottom:473.190000px;}
.y59{bottom:477.930000px;}
.y1f{bottom:481.170000px;}
.y1{bottom:486.150000px;}
.y19{bottom:491.040000px;}
.y6{bottom:494.745000px;}
.y34{bottom:495.720000px;}
.y54{bottom:503.460000px;}
.y58{bottom:507.990000px;}
.y1e{bottom:513.615000px;}
.y33{bottom:522.540000px;}
.y5{bottom:525.030000px;}
.y47{bottom:532.500000px;}
.y53{bottom:533.520000px;}
.y57{bottom:538.230000px;}
.y2f{bottom:547.740000px;}
.y32{bottom:549.180000px;}
.y4{bottom:555.090000px;}
.y52{bottom:563.760000px;}
.y2e{bottom:580.170000px;}
.y3{bottom:585.330000px;}
.y1d{bottom:608.115000px;}
.y2d{bottom:612.570000px;}
.y43{bottom:614.730000px;}
.y41{bottom:623.340000px;}
.y46{bottom:672.195000px;}
.y40{bottom:708.300000px;}
.y1b{bottom:725.250000px;}
.y2a{bottom:735.480000px;}
.y1c{bottom:744.090000px;}
.y3a{bottom:752.550000px;}
.hc{height:56.608513px;}
.h7{height:66.349336px;}
.ha{height:66.449109px;}
.he{height:66.971000px;}
.h8{height:74.830078px;}
.h9{height:74.929852px;}
.h5{height:75.093750px;}
.hb{height:93.564317px;}
.h6{height:93.867188px;}
.hd{height:97.004137px;}
.h2{height:112.640625px;}
.h3{height:112.790813px;}
.h4{height:125.406562px;}
.h1{height:133.197539px;}
.h0{height:810.000000px;}
.w1{width:194.426913px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x25{left:2.147672px;}
.x27{left:39.207169px;}
.x8{left:70.092000px;}
.x10{left:74.592000px;}
.xf{left:76.068000px;}
.x2c{left:95.760000px;}
.x2a{left:112.644000px;}
.x26{left:120.609043px;}
.x1f{left:126.684000px;}
.x1d{left:133.848000px;}
.x1e{left:140.184000px;}
.x24{left:149.456374px;}
.x23{left:164.742936px;}
.x1{left:169.125000px;}
.xd{left:224.610000px;}
.x11{left:227.700000px;}
.x2{left:230.730000px;}
.xc{left:275.760000px;}
.x9{left:289.185000px;}
.x15{left:299.730000px;}
.x16{left:337.350000px;}
.xe{left:360.510000px;}
.x14{left:385.710000px;}
.x20{left:399.030000px;}
.x2b{left:424.620000px;}
.x28{left:427.890000px;}
.x19{left:440.070000px;}
.x29{left:466.560000px;}
.xa{left:502.125000px;}
.x13{left:559.155000px;}
.x12{left:584.640000px;}
.x17{left:591.015000px;}
.x21{left:610.170000px;}
.x22{left:613.125000px;}
.x18{left:643.215000px;}
.x4{left:721.725000px;}
.x6{left:742.965000px;}
.x1a{left:746.310000px;}
.x7{left:750.525000px;}
.x1b{left:763.380000px;}
.x1c{left:771.810000px;}
.xb{left:793.185000px;}
.x5{left:814.965000px;}
.x3{left:1026.150000px;}
@media print{
.v4{vertical-align:-9.600000pt;}
.v1{vertical-align:-6.613333pt;}
.v3{vertical-align:-4.746667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.613333pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.285867pt;}
.ls4{letter-spacing:1147.466667pt;}
.ls5{letter-spacing:1199.797333pt;}
.ws2{word-spacing:-43.520000pt;}
.ws0{word-spacing:-38.904747pt;}
.ws3{word-spacing:-21.856000pt;}
.ws4{word-spacing:-21.536000pt;}
.ws6{word-spacing:-0.087900pt;}
.ws5{word-spacing:-0.051295pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-185.502160pt;}
._c{margin-left:-184.353532pt;}
._d{margin-left:-178.394267pt;}
._e{margin-left:-177.245638pt;}
._5{margin-left:-11.543040pt;}
._f{margin-left:-6.786987pt;}
._2{margin-left:-3.485440pt;}
._4{margin-left:-2.496000pt;}
._0{margin-left:-1.556053pt;}
._1{width:0.980053pt;}
._3{width:1.997653pt;}
._a{width:626.888320pt;}
._9{width:630.248320pt;}
._7{width:643.224107pt;}
._8{width:659.334827pt;}
._6{width:737.471787pt;}
.fs4{font-size:43.520000pt;}
.fs9{font-size:51.295496pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fsa{font-size:87.899773pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs0{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:6.593143pt;}
.y4a{bottom:13.897413pt;}
.y4c{bottom:36.795714pt;}
.y49{bottom:48.012169pt;}
.y4b{bottom:55.316521pt;}
.y4f{bottom:67.904000pt;}
.y3f{bottom:77.664000pt;}
.y13{bottom:91.552000pt;}
.y1a{bottom:92.416000pt;}
.y45{bottom:96.288000pt;}
.y12{bottom:118.272000pt;}
.y44{bottom:123.008000pt;}
.y29{bottom:139.680000pt;}
.y11{bottom:145.186667pt;}
.y2c{bottom:154.173333pt;}
.y28{bottom:168.480000pt;}
.y10{bottom:171.906667pt;}
.y18{bottom:174.146667pt;}
.y27{bottom:197.280000pt;}
.yf{bottom:198.786667pt;}
.y17{bottom:201.026667pt;}
.y31{bottom:201.786667pt;}
.ye{bottom:225.506667pt;}
.y26{bottom:226.080000pt;}
.y16{bottom:227.773333pt;}
.y30{bottom:230.626667pt;}
.y3c{bottom:242.173333pt;}
.y51{bottom:243.680000pt;}
.yd{bottom:252.386667pt;}
.y3e{bottom:253.346667pt;}
.y15{bottom:254.653333pt;}
.y25{bottom:254.880000pt;}
.y3b{bottom:269.093333pt;}
.y50{bottom:270.560000pt;}
.yc{bottom:279.106667pt;}
.y3d{bottom:280.253333pt;}
.y14{bottom:282.013333pt;}
.y24{bottom:283.706667pt;}
.yb{bottom:305.853333pt;}
.y23{bottom:312.506667pt;}
.y39{bottom:321.573333pt;}
.ya{bottom:332.733333pt;}
.y4e{bottom:332.800000pt;}
.y22{bottom:341.306667pt;}
.y38{bottom:345.413333pt;}
.y9{bottom:359.453333pt;}
.y37{bottom:369.093333pt;}
.y21{bottom:370.106667pt;}
.y5b{bottom:371.226667pt;}
.y2{bottom:379.973333pt;}
.y42{bottom:380.066667pt;}
.y8{bottom:386.333333pt;}
.y36{bottom:392.933333pt;}
.y56{bottom:393.893333pt;}
.y5a{bottom:397.946667pt;}
.y20{bottom:398.906667pt;}
.y4d{bottom:408.480000pt;}
.y7{bottom:413.053333pt;}
.y2b{bottom:415.386667pt;}
.y35{bottom:416.773333pt;}
.y55{bottom:420.613333pt;}
.y59{bottom:424.826667pt;}
.y1f{bottom:427.706667pt;}
.y1{bottom:432.133333pt;}
.y19{bottom:436.480000pt;}
.y6{bottom:439.773333pt;}
.y34{bottom:440.640000pt;}
.y54{bottom:447.520000pt;}
.y58{bottom:451.546667pt;}
.y1e{bottom:456.546667pt;}
.y33{bottom:464.480000pt;}
.y5{bottom:466.693333pt;}
.y47{bottom:473.333333pt;}
.y53{bottom:474.240000pt;}
.y57{bottom:478.426667pt;}
.y2f{bottom:486.880000pt;}
.y32{bottom:488.160000pt;}
.y4{bottom:493.413333pt;}
.y52{bottom:501.120000pt;}
.y2e{bottom:515.706667pt;}
.y3{bottom:520.293333pt;}
.y1d{bottom:540.546667pt;}
.y2d{bottom:544.506667pt;}
.y43{bottom:546.426667pt;}
.y41{bottom:554.080000pt;}
.y46{bottom:597.506667pt;}
.y40{bottom:629.600000pt;}
.y1b{bottom:644.666667pt;}
.y2a{bottom:653.760000pt;}
.y1c{bottom:661.413333pt;}
.y3a{bottom:668.933333pt;}
.hc{height:50.318678pt;}
.h7{height:58.977187pt;}
.ha{height:59.065875pt;}
.he{height:59.529778pt;}
.h8{height:66.515625pt;}
.h9{height:66.604313pt;}
.h5{height:66.750000pt;}
.hb{height:83.168282pt;}
.h6{height:83.437500pt;}
.hd{height:86.225900pt;}
.h2{height:100.125000pt;}
.h3{height:100.258500pt;}
.h4{height:111.472500pt;}
.h1{height:118.397812pt;}
.h0{height:720.000000pt;}
.w1{width:172.823922pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x25{left:1.909042pt;}
.x27{left:34.850817pt;}
.x8{left:62.304000pt;}
.x10{left:66.304000pt;}
.xf{left:67.616000pt;}
.x2c{left:85.120000pt;}
.x2a{left:100.128000pt;}
.x26{left:107.208038pt;}
.x1f{left:112.608000pt;}
.x1d{left:118.976000pt;}
.x1e{left:124.608000pt;}
.x24{left:132.850110pt;}
.x23{left:146.438166pt;}
.x1{left:150.333333pt;}
.xd{left:199.653333pt;}
.x11{left:202.400000pt;}
.x2{left:205.093333pt;}
.xc{left:245.120000pt;}
.x9{left:257.053333pt;}
.x15{left:266.426667pt;}
.x16{left:299.866667pt;}
.xe{left:320.453333pt;}
.x14{left:342.853333pt;}
.x20{left:354.693333pt;}
.x2b{left:377.440000pt;}
.x28{left:380.346667pt;}
.x19{left:391.173333pt;}
.x29{left:414.720000pt;}
.xa{left:446.333333pt;}
.x13{left:497.026667pt;}
.x12{left:519.680000pt;}
.x17{left:525.346667pt;}
.x21{left:542.373333pt;}
.x22{left:545.000000pt;}
.x18{left:571.746667pt;}
.x4{left:641.533333pt;}
.x6{left:660.413333pt;}
.x1a{left:663.386667pt;}
.x7{left:667.133333pt;}
.x1b{left:678.560000pt;}
.x1c{left:686.053333pt;}
.xb{left:705.053333pt;}
.x5{left:724.413333pt;}
.x3{left:912.133333pt;}
}




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