
    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_78a5753597b0bfc27862c528.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_6c7b0622c4aff17bb3506505.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_7348c46d74a1d7d755a45175.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_34e702542ed431fd82e44a86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.357120px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.800000px;}
.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;}
}
.ws1{word-spacing:-30.600000px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws4{word-spacing:-20.880000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-5.592480px;}
._13{margin-left:-4.301280px;}
._4{margin-left:-3.225600px;}
._3{margin-left:-2.013120px;}
._1{margin-left:-1.001280px;}
._0{width:1.450080px;}
._2{width:3.144960px;}
._27{width:4.269600px;}
._d{width:5.315040px;}
._10{width:7.207200px;}
._12{width:8.588160px;}
._38{width:9.627840px;}
._c{width:10.631520px;}
._b{width:11.662560px;}
._16{width:12.670560px;}
._36{width:14.112000px;}
._19{width:15.747840px;}
._1a{width:17.237280px;}
._18{width:18.336960px;}
._22{width:19.458720px;}
._20{width:22.030560px;}
._9{width:23.739840px;}
._29{width:24.920640px;}
._a{width:26.131680px;}
._7{width:27.181440px;}
._2f{width:28.553760px;}
._8{width:29.777760px;}
._30{width:31.632480px;}
._37{width:33.102720px;}
._32{width:35.046720px;}
._e{width:36.675360px;}
._f{width:37.834560px;}
._1f{width:38.868480px;}
._11{width:40.653600px;}
._2a{width:41.701440px;}
._21{width:42.740640px;}
._31{width:43.826400px;}
._28{width:44.840640px;}
._25{width:46.081440px;}
._26{width:47.895840px;}
._24{width:50.060160px;}
._23{width:51.089760px;}
._6{width:52.299360px;}
._5{width:53.765280px;}
._1b{width:55.321920px;}
._35{width:57.192960px;}
._2d{width:60.174720px;}
._2e{width:61.510080px;}
._1e{width:63.224640px;}
._1d{width:64.555200px;}
._33{width:66.931200px;}
._34{width:68.542560px;}
._2b{width:76.269600px;}
._2c{width:77.880960px;}
._15{width:85.432320px;}
._14{width:86.505120px;}
._17{width:87.999840px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.240000px;}
.y3{bottom:51.120000px;}
.y9{bottom:56.880000px;}
.y8{bottom:75.636000px;}
.y2{bottom:85.710000px;}
.y7{bottom:94.716000px;}
.y63{bottom:119.556000px;}
.y57{bottom:143.676000px;}
.y20{bottom:152.670000px;}
.y4d{bottom:155.910000px;}
.y37{bottom:168.150000px;}
.y56{bottom:180.030000px;}
.y1f{bottom:189.030000px;}
.y4c{bottom:191.910000px;}
.y36{bottom:216.435000px;}
.y4b{bottom:228.315000px;}
.y1e{bottom:237.315000px;}
.y62{bottom:240.195000px;}
.y55{bottom:252.435000px;}
.y35{bottom:252.795000px;}
.y4a{bottom:264.675000px;}
.y1d{bottom:273.315000px;}
.y61{bottom:276.555000px;}
.y54{bottom:288.795000px;}
.y49{bottom:300.675000px;}
.y34{bottom:301.035000px;}
.y1c{bottom:309.675000px;}
.y60{bottom:312.915000px;}
.y53{bottom:325.185000px;}
.y33{bottom:337.065000px;}
.y1b{bottom:345.705000px;}
.y5f{bottom:348.945000px;}
.y52{bottom:361.185000px;}
.y6d{bottom:361.545000px;}
.y48{bottom:373.065000px;}
.y32{bottom:373.425000px;}
.y1a{bottom:382.065000px;}
.y5e{bottom:385.305000px;}
.y47{bottom:409.425000px;}
.y31{bottom:409.785000px;}
.y19{bottom:418.425000px;}
.y5d{bottom:421.305000px;}
.y30{bottom:445.785000px;}
.y18{bottom:454.470000px;}
.y5c{bottom:457.710000px;}
.y6c{bottom:458.070000px;}
.y46{bottom:481.830000px;}
.y2f{bottom:482.190000px;}
.y17{bottom:490.830000px;}
.y5b{bottom:494.070000px;}
.y6b{bottom:494.430000px;}
.y45{bottom:518.190000px;}
.y2e{bottom:518.550000px;}
.y5a{bottom:530.070000px;}
.y16{bottom:539.070000px;}
.y6a{bottom:542.670000px;}
.y2d{bottom:554.550000px;}
.y59{bottom:566.430000px;}
.y69{bottom:578.700000px;}
.y15{bottom:587.340000px;}
.y44{bottom:590.580000px;}
.y58{bottom:602.460000px;}
.y2c{bottom:602.820000px;}
.y14{bottom:625.860000px;}
.y51{bottom:626.940000px;}
.y43{bottom:638.820000px;}
.y2b{bottom:651.060000px;}
.y50{bottom:662.940000px;}
.y68{bottom:663.300000px;}
.y42{bottom:675.180000px;}
.y13{bottom:677.340000px;}
.y2a{bottom:687.420000px;}
.y4f{bottom:699.330000px;}
.y41{bottom:711.210000px;}
.y67{bottom:711.570000px;}
.y12{bottom:713.370000px;}
.y29{bottom:723.450000px;}
.y4e{bottom:735.690000px;}
.y40{bottom:747.570000px;}
.y66{bottom:747.930000px;}
.y11{bottom:752.250000px;}
.y28{bottom:771.690000px;}
.y3f{bottom:783.930000px;}
.y10{bottom:794.010000px;}
.y65{bottom:796.170000px;}
.y27{bottom:808.050000px;}
.y3e{bottom:819.930000px;}
.y64{bottom:832.215000px;}
.yf{bottom:835.815000px;}
.y26{bottom:844.095000px;}
.y3d{bottom:856.335000px;}
.ye{bottom:877.575000px;}
.y25{bottom:880.455000px;}
.y3c{bottom:892.335000px;}
.y24{bottom:916.815000px;}
.y3b{bottom:928.695000px;}
.yd{bottom:929.055000px;}
.y23{bottom:952.845000px;}
.y3a{bottom:965.085000px;}
.yc{bottom:977.325000px;}
.y22{bottom:989.205000px;}
.y39{bottom:1001.085000px;}
.yb{bottom:1025.205000px;}
.y21{bottom:1025.565000px;}
.y38{bottom:1037.445000px;}
.ya{bottom:1073.805000px;}
.y1{bottom:1126.410000px;}
.y6{bottom:1175.730000px;}
.y5{bottom:1194.810000px;}
.h9{height:58.561875px;}
.h5{height:65.010937px;}
.h6{height:81.970312px;}
.h7{height:84.172500px;}
.h4{height:94.689844px;}
.h8{height:97.233750px;}
.h3{height:117.302344px;}
.h2{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:890.609973px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:75.635973px;}
.x4{left:127.475987px;}
.x6{left:159.554987px;}
.x2{left:161.714973px;}
.xd{left:164.594987px;}
.x3{left:271.544973px;}
.x7{left:283.784987px;}
.xe{left:288.464987px;}
.x9{left:292.064987px;}
.xb{left:309.344987px;}
.xc{left:316.184987px;}
.xa{left:324.104987px;}
.xf{left:419.189987px;}
.x11{left:424.979987px;}
.x10{left:427.859987px;}
.x5{left:474.299987px;}
.x8{left:494.459987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.317440pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.600000pt;}
.ws1{word-spacing:-27.200000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws4{word-spacing:-18.560000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-4.971093pt;}
._13{margin-left:-3.823360pt;}
._4{margin-left:-2.867200pt;}
._3{margin-left:-1.789440pt;}
._1{margin-left:-0.890027pt;}
._0{width:1.288960pt;}
._2{width:2.795520pt;}
._27{width:3.795200pt;}
._d{width:4.724480pt;}
._10{width:6.406400pt;}
._12{width:7.633920pt;}
._38{width:8.558080pt;}
._c{width:9.450240pt;}
._b{width:10.366720pt;}
._16{width:11.262720pt;}
._36{width:12.544000pt;}
._19{width:13.998080pt;}
._1a{width:15.322027pt;}
._18{width:16.299520pt;}
._22{width:17.296640pt;}
._20{width:19.582720pt;}
._9{width:21.102080pt;}
._29{width:22.151680pt;}
._a{width:23.228160pt;}
._7{width:24.161280pt;}
._2f{width:25.381120pt;}
._8{width:26.469120pt;}
._30{width:28.117760pt;}
._37{width:29.424640pt;}
._32{width:31.152640pt;}
._e{width:32.600320pt;}
._f{width:33.630720pt;}
._1f{width:34.549760pt;}
._11{width:36.136533pt;}
._2a{width:37.067947pt;}
._21{width:37.991680pt;}
._31{width:38.956800pt;}
._28{width:39.858347pt;}
._25{width:40.961280pt;}
._26{width:42.574080pt;}
._24{width:44.497920pt;}
._23{width:45.413120pt;}
._6{width:46.488320pt;}
._5{width:47.791360pt;}
._1b{width:49.175040pt;}
._35{width:50.838187pt;}
._2d{width:53.488640pt;}
._2e{width:54.675627pt;}
._1e{width:56.199680pt;}
._1d{width:57.382400pt;}
._33{width:59.494400pt;}
._34{width:60.926720pt;}
._2b{width:67.795200pt;}
._2c{width:69.227520pt;}
._15{width:75.939840pt;}
._14{width:76.893440pt;}
._17{width:78.222080pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.880000pt;}
.y3{bottom:45.440000pt;}
.y9{bottom:50.560000pt;}
.y8{bottom:67.232000pt;}
.y2{bottom:76.186667pt;}
.y7{bottom:84.192000pt;}
.y63{bottom:106.272000pt;}
.y57{bottom:127.712000pt;}
.y20{bottom:135.706667pt;}
.y4d{bottom:138.586667pt;}
.y37{bottom:149.466667pt;}
.y56{bottom:160.026667pt;}
.y1f{bottom:168.026667pt;}
.y4c{bottom:170.586667pt;}
.y36{bottom:192.386667pt;}
.y4b{bottom:202.946667pt;}
.y1e{bottom:210.946667pt;}
.y62{bottom:213.506667pt;}
.y55{bottom:224.386667pt;}
.y35{bottom:224.706667pt;}
.y4a{bottom:235.266667pt;}
.y1d{bottom:242.946667pt;}
.y61{bottom:245.826667pt;}
.y54{bottom:256.706667pt;}
.y49{bottom:267.266667pt;}
.y34{bottom:267.586667pt;}
.y1c{bottom:275.266667pt;}
.y60{bottom:278.146667pt;}
.y53{bottom:289.053333pt;}
.y33{bottom:299.613333pt;}
.y1b{bottom:307.293333pt;}
.y5f{bottom:310.173333pt;}
.y52{bottom:321.053333pt;}
.y6d{bottom:321.373333pt;}
.y48{bottom:331.613333pt;}
.y32{bottom:331.933333pt;}
.y1a{bottom:339.613333pt;}
.y5e{bottom:342.493333pt;}
.y47{bottom:363.933333pt;}
.y31{bottom:364.253333pt;}
.y19{bottom:371.933333pt;}
.y5d{bottom:374.493333pt;}
.y30{bottom:396.253333pt;}
.y18{bottom:403.973333pt;}
.y5c{bottom:406.853333pt;}
.y6c{bottom:407.173333pt;}
.y46{bottom:428.293333pt;}
.y2f{bottom:428.613333pt;}
.y17{bottom:436.293333pt;}
.y5b{bottom:439.173333pt;}
.y6b{bottom:439.493333pt;}
.y45{bottom:460.613333pt;}
.y2e{bottom:460.933333pt;}
.y5a{bottom:471.173333pt;}
.y16{bottom:479.173333pt;}
.y6a{bottom:482.373333pt;}
.y2d{bottom:492.933333pt;}
.y59{bottom:503.493333pt;}
.y69{bottom:514.400000pt;}
.y15{bottom:522.080000pt;}
.y44{bottom:524.960000pt;}
.y58{bottom:535.520000pt;}
.y2c{bottom:535.840000pt;}
.y14{bottom:556.320000pt;}
.y51{bottom:557.280000pt;}
.y43{bottom:567.840000pt;}
.y2b{bottom:578.720000pt;}
.y50{bottom:589.280000pt;}
.y68{bottom:589.600000pt;}
.y42{bottom:600.160000pt;}
.y13{bottom:602.080000pt;}
.y2a{bottom:611.040000pt;}
.y4f{bottom:621.626667pt;}
.y41{bottom:632.186667pt;}
.y67{bottom:632.506667pt;}
.y12{bottom:634.106667pt;}
.y29{bottom:643.066667pt;}
.y4e{bottom:653.946667pt;}
.y40{bottom:664.506667pt;}
.y66{bottom:664.826667pt;}
.y11{bottom:668.666667pt;}
.y28{bottom:685.946667pt;}
.y3f{bottom:696.826667pt;}
.y10{bottom:705.786667pt;}
.y65{bottom:707.706667pt;}
.y27{bottom:718.266667pt;}
.y3e{bottom:728.826667pt;}
.y64{bottom:739.746667pt;}
.yf{bottom:742.946667pt;}
.y26{bottom:750.306667pt;}
.y3d{bottom:761.186667pt;}
.ye{bottom:780.066667pt;}
.y25{bottom:782.626667pt;}
.y3c{bottom:793.186667pt;}
.y24{bottom:814.946667pt;}
.y3b{bottom:825.506667pt;}
.yd{bottom:825.826667pt;}
.y23{bottom:846.973333pt;}
.y3a{bottom:857.853333pt;}
.yc{bottom:868.733333pt;}
.y22{bottom:879.293333pt;}
.y39{bottom:889.853333pt;}
.yb{bottom:911.293333pt;}
.y21{bottom:911.613333pt;}
.y38{bottom:922.173333pt;}
.ya{bottom:954.493333pt;}
.y1{bottom:1001.253333pt;}
.y6{bottom:1045.093333pt;}
.y5{bottom:1062.053333pt;}
.h9{height:52.055000pt;}
.h5{height:57.787500pt;}
.h6{height:72.862500pt;}
.h7{height:74.820000pt;}
.h4{height:84.168750pt;}
.h8{height:86.430000pt;}
.h3{height:104.268750pt;}
.h2{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:791.653310pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:67.231976pt;}
.x4{left:113.311988pt;}
.x6{left:141.826655pt;}
.x2{left:143.746643pt;}
.xd{left:146.306655pt;}
.x3{left:241.373310pt;}
.x7{left:252.253322pt;}
.xe{left:256.413322pt;}
.x9{left:259.613322pt;}
.xb{left:274.973322pt;}
.xc{left:281.053322pt;}
.xa{left:288.093322pt;}
.xf{left:372.613322pt;}
.x11{left:377.759988pt;}
.x10{left:380.319988pt;}
.x5{left:421.599988pt;}
.x8{left:439.519988pt;}
}




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