
    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_b664ce61ea641ce560ffb18b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_21ae68f66ad79eefdc917897.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_a2099aa667f56b54d2f44d84.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-114.750004px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:22.250251px;}
.v4{vertical-align:40.989385px;}
.v6{vertical-align:61.618790px;}
.v3{vertical-align:63.000002px;}
.v1{vertical-align:114.750004px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:138.021097px;}
.ls0{letter-spacing:145.319228px;}
.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;}
}
.ws8{word-spacing:-81.090003px;}
.ws0{word-spacing:-72.522002px;}
.ws2{word-spacing:-72.414486px;}
.ws4{word-spacing:-63.600000px;}
.ws3{word-spacing:-57.931652px;}
.ws7{word-spacing:-57.240002px;}
.ws1{word-spacing:-54.060004px;}
.ws9{word-spacing:-48.233926px;}
.ws6{word-spacing:-44.520000px;}
.ws5{word-spacing:-29.680001px;}
.wsa{word-spacing:0.000000px;}
._8{margin-left:-29.040000px;}
._e{margin-left:-19.547992px;}
._7{margin-left:-18.000000px;}
._f{margin-left:-15.912446px;}
._b{margin-left:-14.301928px;}
._d{margin-left:-13.299221px;}
._9{margin-left:-10.800000px;}
._c{margin-left:-8.957999px;}
._a{margin-left:-7.920000px;}
._1{margin-left:-5.880000px;}
._0{margin-left:-4.872000px;}
._2{margin-left:-3.360000px;}
._4{margin-left:-2.100001px;}
._3{margin-left:-1.008000px;}
._5{width:1.140001px;}
._6{width:2.640000px;}
._16{width:11.568000px;}
._15{width:12.684001px;}
._1d{width:13.824000px;}
._17{width:49.236002px;}
._18{width:51.024001px;}
._19{width:52.428002px;}
._13{width:68.472002px;}
._11{width:108.000138px;}
._10{width:138.000150px;}
._1c{width:154.056003px;}
._1b{width:155.364006px;}
._14{width:169.656005px;}
._1a{width:209.304007px;}
._1e{width:653.229560px;}
._12{width:3960.089736px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(116,181,73);}
.fc2{color:rgb(0,145,122);}
.fc1{color:rgb(167,198,55);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:72.870006px;}
.fsa{font-size:109.305003px;}
.fs8{font-size:112.000005px;}
.fs1{font-size:132.000007px;}
.fs0{font-size:167.999999px;}
.fsd{font-size:182.014813px;}
.fs4{font-size:204.000017px;}
.fs9{font-size:214.749007px;}
.fsc{font-size:216.000007px;}
.fs6{font-size:218.610007px;}
.fs7{font-size:240.000002px;}
.fs5{font-size:273.262212px;}
.fs3{font-size:306.000010px;}
.fs2{font-size:600.000004px;}
.y0{bottom:0.000000px;}
.y14{bottom:770.306908px;}
.y13{bottom:818.186898px;}
.y12{bottom:866.066888px;}
.y11{bottom:913.946879px;}
.y10{bottom:961.826872px;}
.yf{bottom:1010.710486px;}
.y2{bottom:1116.664798px;}
.y37{bottom:1116.666260px;}
.y31{bottom:1125.078099px;}
.y1{bottom:1167.064793px;}
.y36{bottom:1167.066255px;}
.y30{bottom:1193.869196px;}
.y34{bottom:1262.121902px;}
.y2f{bottom:1262.660294px;}
.y33{bottom:1312.521897px;}
.y2e{bottom:1331.451391px;}
.y39{bottom:1345.246355px;}
.y38{bottom:1395.646350px;}
.y2d{bottom:1400.242466px;}
.y35{bottom:1439.353355px;}
.y32{bottom:1445.416576px;}
.y2c{bottom:1469.033551px;}
.y3a{bottom:1520.797429px;}
.y2b{bottom:1537.824649px;}
.y3d{bottom:1544.743061px;}
.y2a{bottom:1606.615750px;}
.y3c{bottom:1613.534163px;}
.y29{bottom:1675.406857px;}
.y3b{bottom:1682.325269px;}
.y28{bottom:1771.067295px;}
.y3f{bottom:2096.631865px;}
.y27{bottom:2102.107173px;}
.y3e{bottom:2190.907973px;}
.y26{bottom:2196.383267px;}
.y25{bottom:2290.659317px;}
.y24{bottom:2384.935422px;}
.y23{bottom:2479.211528px;}
.y22{bottom:2573.487635px;}
.y21{bottom:2705.275987px;}
.y19{bottom:2828.367067px;}
.y20{bottom:2831.118480px;}
.y18{bottom:2892.791761px;}
.y1f{bottom:2895.543173px;}
.y15{bottom:3027.367469px;}
.ye{bottom:3031.952035px;}
.y1e{bottom:3134.251967px;}
.y1d{bottom:3216.230607px;}
.y1c{bottom:3298.209281px;}
.y17{bottom:3321.615548px;}
.yd{bottom:3362.534455px;}
.y16{bottom:3403.594211px;}
.y1a{bottom:3515.242938px;}
.y1b{bottom:3605.442404px;}
.yc{bottom:3735.407223px;}
.yb{bottom:3827.207226px;}
.ya{bottom:3919.007240px;}
.y9{bottom:4010.807254px;}
.y8{bottom:4102.607257px;}
.y5{bottom:4221.162911px;}
.y4{bottom:4280.562924px;}
.y3{bottom:4339.962915px;}
.y7{bottom:4506.702522px;}
.y6{bottom:4668.702516px;}
.hb{height:117.502892px;}
.h2{height:138.600008px;}
.h1{height:176.399999px;}
.h9{height:180.600007px;}
.hf{height:191.115554px;}
.ha{height:225.486457px;}
.hc{height:226.800007px;}
.h7{height:229.540507px;}
.h8{height:252.000002px;}
.he{height:252.734344px;}
.h6{height:286.925322px;}
.h5{height:321.300010px;}
.h4{height:328.950021px;}
.hd{height:343.550261px;}
.h3{height:630.000004px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x3{left:255.937564px;}
.x6{left:257.586263px;}
.x7{left:264.540067px;}
.x1a{left:314.483275px;}
.x8{left:315.569874px;}
.x15{left:359.601424px;}
.x4{left:361.875587px;}
.x5{left:370.916662px;}
.x16{left:373.696151px;}
.x17{left:375.105388px;}
.x18{left:423.105392px;}
.x14{left:439.872545px;}
.x19{left:541.136897px;}
.xd{left:852.199286px;}
.xc{left:866.291208px;}
.x25{left:888.495115px;}
.x13{left:1417.764955px;}
.x12{left:1493.351440px;}
.xe{left:1718.933005px;}
.x1d{left:1736.198349px;}
.x24{left:1737.200868px;}
.x1c{left:1779.368603px;}
.x2{left:1787.846400px;}
.x1{left:1795.342526px;}
.x1b{left:1853.614080px;}
.x26{left:2081.247592px;}
.x10{left:2086.230145px;}
.xf{left:2141.730777px;}
.x11{left:2150.132812px;}
.x20{left:2625.387872px;}
.x1f{left:2660.264212px;}
.x1e{left:2662.358244px;}
.xa{left:2842.412431px;}
.x9{left:2877.693712px;}
.xb{left:2882.987620px;}
.x22{left:3041.806102px;}
.x23{left:3069.516571px;}
.x21{left:3109.836857px;}
@media print{
.v2{vertical-align:-102.000003pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.778001pt;}
.v4{vertical-align:36.435009pt;}
.v6{vertical-align:54.772258pt;}
.v3{vertical-align:56.000002pt;}
.v1{vertical-align:102.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:122.685420pt;}
.ls0{letter-spacing:129.172647pt;}
.ws8{word-spacing:-72.080002pt;}
.ws0{word-spacing:-64.464002pt;}
.ws2{word-spacing:-64.368432pt;}
.ws4{word-spacing:-56.533334pt;}
.ws3{word-spacing:-51.494802pt;}
.ws7{word-spacing:-50.880002pt;}
.ws1{word-spacing:-48.053337pt;}
.ws9{word-spacing:-42.874600pt;}
.ws6{word-spacing:-39.573333pt;}
.ws5{word-spacing:-26.382223pt;}
.wsa{word-spacing:0.000000pt;}
._8{margin-left:-25.813334pt;}
._e{margin-left:-17.375993pt;}
._7{margin-left:-16.000000pt;}
._f{margin-left:-14.144396pt;}
._b{margin-left:-12.712825pt;}
._d{margin-left:-11.821529pt;}
._9{margin-left:-9.600000pt;}
._c{margin-left:-7.962666pt;}
._a{margin-left:-7.040000pt;}
._1{margin-left:-5.226667pt;}
._0{margin-left:-4.330667pt;}
._2{margin-left:-2.986667pt;}
._4{margin-left:-1.866667pt;}
._3{margin-left:-0.896000pt;}
._5{width:1.013334pt;}
._6{width:2.346667pt;}
._16{width:10.282667pt;}
._15{width:11.274668pt;}
._1d{width:12.288000pt;}
._17{width:43.765335pt;}
._18{width:45.354668pt;}
._19{width:46.602669pt;}
._13{width:60.864002pt;}
._11{width:96.000123pt;}
._10{width:122.666800pt;}
._1c{width:136.938670pt;}
._1b{width:138.101338pt;}
._14{width:150.805338pt;}
._1a{width:186.048006pt;}
._1e{width:580.648498pt;}
._12{width:3520.079766pt;}
.fsb{font-size:64.773339pt;}
.fsa{font-size:97.160003pt;}
.fs8{font-size:99.555560pt;}
.fs1{font-size:117.333340pt;}
.fs0{font-size:149.333333pt;}
.fsd{font-size:161.790945pt;}
.fs4{font-size:181.333348pt;}
.fs9{font-size:190.888006pt;}
.fsc{font-size:192.000006pt;}
.fs6{font-size:194.320006pt;}
.fs7{font-size:213.333335pt;}
.fs5{font-size:242.899744pt;}
.fs3{font-size:272.000009pt;}
.fs2{font-size:533.333337pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:684.717251pt;}
.y13{bottom:727.277243pt;}
.y12{bottom:769.837234pt;}
.y11{bottom:812.397226pt;}
.y10{bottom:854.957220pt;}
.yf{bottom:898.409321pt;}
.y2{bottom:992.590931pt;}
.y37{bottom:992.592231pt;}
.y31{bottom:1000.069422pt;}
.y1{bottom:1037.390927pt;}
.y36{bottom:1037.392227pt;}
.y30{bottom:1061.217064pt;}
.y34{bottom:1121.886135pt;}
.y2f{bottom:1122.364705pt;}
.y33{bottom:1166.686131pt;}
.y2e{bottom:1183.512347pt;}
.y39{bottom:1195.774538pt;}
.y38{bottom:1240.574533pt;}
.y2d{bottom:1244.659969pt;}
.y35{bottom:1279.425204pt;}
.y32{bottom:1284.814735pt;}
.y2c{bottom:1305.807601pt;}
.y3a{bottom:1351.819937pt;}
.y2b{bottom:1366.955243pt;}
.y3d{bottom:1373.104943pt;}
.y2a{bottom:1428.102889pt;}
.y3c{bottom:1434.252589pt;}
.y29{bottom:1489.250539pt;}
.y3b{bottom:1495.400239pt;}
.y28{bottom:1574.282040pt;}
.y3f{bottom:1863.672769pt;}
.y27{bottom:1868.539709pt;}
.y3e{bottom:1947.473754pt;}
.y26{bottom:1952.340682pt;}
.y25{bottom:2036.141615pt;}
.y24{bottom:2119.942597pt;}
.y23{bottom:2203.743580pt;}
.y22{bottom:2287.544565pt;}
.y21{bottom:2404.689766pt;}
.y19{bottom:2514.104060pt;}
.y20{bottom:2516.549760pt;}
.y18{bottom:2571.370454pt;}
.y1f{bottom:2573.816154pt;}
.y15{bottom:2690.993306pt;}
.ye{bottom:2695.068476pt;}
.y1e{bottom:2786.001749pt;}
.y1d{bottom:2858.871651pt;}
.y1c{bottom:2931.741583pt;}
.y17{bottom:2952.547154pt;}
.yd{bottom:2988.919515pt;}
.y16{bottom:3025.417076pt;}
.y1a{bottom:3124.660390pt;}
.y1b{bottom:3204.837692pt;}
.yc{bottom:3320.361976pt;}
.yb{bottom:3401.961978pt;}
.ya{bottom:3483.561991pt;}
.y9{bottom:3565.162004pt;}
.y8{bottom:3646.762006pt;}
.y5{bottom:3752.144810pt;}
.y4{bottom:3804.944821pt;}
.y3{bottom:3857.744813pt;}
.y7{bottom:4005.957798pt;}
.y6{bottom:4149.957792pt;}
.hb{height:104.447015pt;}
.h2{height:123.200007pt;}
.h1{height:156.799999pt;}
.h9{height:160.533340pt;}
.hf{height:169.880492pt;}
.ha{height:200.432406pt;}
.hc{height:201.600006pt;}
.h7{height:204.036007pt;}
.h8{height:224.000002pt;}
.he{height:224.652750pt;}
.h6{height:255.044731pt;}
.h5{height:285.600009pt;}
.h4{height:292.400019pt;}
.hd{height:305.378010pt;}
.h3{height:560.000004pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x3{left:227.500057pt;}
.x6{left:228.965567pt;}
.x7{left:235.146727pt;}
.x1a{left:279.540689pt;}
.x8{left:280.506555pt;}
.x15{left:319.645710pt;}
.x4{left:321.667188pt;}
.x5{left:329.703700pt;}
.x16{left:332.174357pt;}
.x17{left:333.427012pt;}
.x18{left:376.093682pt;}
.x14{left:390.997818pt;}
.x19{left:481.010575pt;}
.xd{left:757.510476pt;}
.xc{left:770.036630pt;}
.x25{left:789.773435pt;}
.x13{left:1260.235515pt;}
.x12{left:1327.423502pt;}
.xe{left:1527.940449pt;}
.x1d{left:1543.287421pt;}
.x24{left:1544.178549pt;}
.x1c{left:1581.660981pt;}
.x2{left:1589.196800pt;}
.x1{left:1595.860023pt;}
.x1b{left:1647.656960pt;}
.x26{left:1849.997859pt;}
.x10{left:1854.426795pt;}
.xf{left:1903.760691pt;}
.x11{left:1911.229166pt;}
.x20{left:2333.678109pt;}
.x1f{left:2364.679300pt;}
.x1e{left:2366.540662pt;}
.xa{left:2526.588828pt;}
.x9{left:2557.949966pt;}
.xb{left:2562.655662pt;}
.x22{left:2703.827647pt;}
.x23{left:2728.459174pt;}
.x21{left:2764.299428pt;}
}




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