
    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_9ada6603462d52b8cd191b30.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999023;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_c23b15657ad573b293d63999.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998047;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_f60f1429b13f514f87b4a21b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981445;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_dc5155315b6c966da4dcac87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.211426;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_94c319e50d9bd238385e7425.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193848;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_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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);}
.v2{vertical-align:-12.240144px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120072px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001395px;}
.ls0{letter-spacing:0.001494px;}
.ls4{letter-spacing:0.001498px;}
.ls1{letter-spacing:0.001566px;}
.ls5{letter-spacing:5.221256px;}
.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:-13.498763px;}
.ws1{word-spacing:-8.279235px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-5.138896px;}
._3{margin-left:-3.465767px;}
._2{margin-left:-2.390184px;}
._0{margin-left:-1.195092px;}
._4{width:1.185937px;}
._b{width:2.656208px;}
._7{width:3.672507px;}
._8{width:4.682449px;}
._12{width:6.282708px;}
._11{width:7.292917px;}
._10{width:8.789182px;}
._5{width:10.082162px;}
._6{width:11.260399px;}
._15{width:12.281415px;}
._c{width:14.571281px;}
._17{width:16.360711px;}
._1a{width:17.494734px;}
._18{width:18.502969px;}
._d{width:19.588448px;}
._e{width:20.660377px;}
._13{width:21.753467px;}
._16{width:24.980192px;}
._f{width:26.345844px;}
._a{width:28.611682px;}
._9{width:29.717737px;}
._19{width:30.793320px;}
._14{width:45.823725px;}
.fc1{color:rgb(46,42,37);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.237210px;}
.fs4{font-size:33.116940px;}
.fs3{font-size:48.235500px;}
.fs0{font-size:53.995050px;}
.fs2{font-size:59.754600px;}
.fs1{font-size:71.993250px;}
.y0{bottom:0.000000px;}
.y2{bottom:37.080024px;}
.y2b{bottom:75.779983px;}
.y54{bottom:83.340018px;}
.y7e{bottom:85.860008px;}
.y2a{bottom:95.039978px;}
.y53{bottom:101.519988px;}
.y7d{bottom:103.139991px;}
.y29{bottom:108.180037px;}
.y55{bottom:109.620003px;}
.y52{bottom:119.879997px;}
.y7c{bottom:120.420043px;}
.y28{bottom:127.440033px;}
.y7b{bottom:137.700027px;}
.y51{bottom:138.060035px;}
.y27{bottom:142.019988px;}
.y7a{bottom:154.800041px;}
.y50{bottom:156.240005px;}
.y26{bottom:165.060035px;}
.y79{bottom:172.080024px;}
.y4f{bottom:174.420043px;}
.y25{bottom:183.060035px;}
.y78{bottom:189.360008px;}
.y4e{bottom:192.600013px;}
.y24{bottom:201.060035px;}
.y77{bottom:206.639991px;}
.y4d{bottom:210.779983px;}
.y23{bottom:219.060035px;}
.y76{bottom:223.920043px;}
.y4c{bottom:229.139991px;}
.y22{bottom:237.060035px;}
.y75{bottom:241.200027px;}
.y4b{bottom:247.320030px;}
.y21{bottom:255.060035px;}
.y74{bottom:258.300041px;}
.y4a{bottom:265.499999px;}
.y20{bottom:273.060035px;}
.y73{bottom:275.580024px;}
.y49{bottom:283.680037px;}
.y1f{bottom:291.060035px;}
.y72{bottom:292.860008px;}
.y48{bottom:301.860008px;}
.y1e{bottom:309.060035px;}
.y71{bottom:310.139991px;}
.y47{bottom:320.220016px;}
.y1d{bottom:327.060000px;}
.y70{bottom:327.420009px;}
.y46{bottom:338.400021px;}
.y6f{bottom:344.700027px;}
.y1c{bottom:345.060000px;}
.y45{bottom:356.580024px;}
.y6e{bottom:361.800006px;}
.y1b{bottom:363.060000px;}
.y44{bottom:374.759994px;}
.y6d{bottom:379.080024px;}
.y1a{bottom:381.060000px;}
.y43{bottom:392.939998px;}
.y6c{bottom:396.360008px;}
.y19{bottom:399.060000px;}
.y42{bottom:411.300006px;}
.y6b{bottom:413.640025px;}
.y18{bottom:417.060000px;}
.y41{bottom:429.480010px;}
.y6a{bottom:430.920009px;}
.y17{bottom:435.060000px;}
.y40{bottom:447.660015px;}
.y69{bottom:448.200027px;}
.y16{bottom:453.060000px;}
.y68{bottom:465.300006px;}
.y3f{bottom:465.840018px;}
.y15{bottom:471.060000px;}
.y67{bottom:482.580024px;}
.y3e{bottom:484.020023px;}
.y14{bottom:489.060000px;}
.y66{bottom:499.860008px;}
.y3d{bottom:502.200027px;}
.y13{bottom:507.060000px;}
.y65{bottom:517.140025px;}
.y3c{bottom:520.560000px;}
.y12{bottom:525.060000px;}
.y64{bottom:534.420009px;}
.y3b{bottom:538.740005px;}
.y11{bottom:543.060000px;}
.y63{bottom:551.700027px;}
.y3a{bottom:556.920009px;}
.y10{bottom:561.060000px;}
.y62{bottom:568.800006px;}
.y39{bottom:575.100013px;}
.yf{bottom:579.060000px;}
.y61{bottom:586.080024px;}
.y38{bottom:593.280017px;}
.ye{bottom:597.060000px;}
.y60{bottom:603.360008px;}
.y37{bottom:611.640008px;}
.yd{bottom:615.060018px;}
.y5f{bottom:620.640008px;}
.y36{bottom:629.820013px;}
.yc{bottom:633.420009px;}
.y5e{bottom:637.920009px;}
.y35{bottom:648.000016px;}
.yb{bottom:650.520006px;}
.y5d{bottom:655.200009px;}
.ya{bottom:665.280017px;}
.y34{bottom:666.180004px;}
.y5c{bottom:672.300006px;}
.y9{bottom:681.300006px;}
.y33{bottom:684.360008px;}
.y5b{bottom:689.580007px;}
.y8{bottom:698.400003px;}
.y32{bottom:702.540012px;}
.y5a{bottom:706.860008px;}
.y7{bottom:714.420009px;}
.y31{bottom:720.900003px;}
.y59{bottom:724.140008px;}
.y6{bottom:732.420009px;}
.y30{bottom:739.080007px;}
.y58{bottom:741.420009px;}
.y5{bottom:751.500008px;}
.y2f{bottom:757.260012px;}
.y57{bottom:758.700009px;}
.y4{bottom:770.760012px;}
.y2e{bottom:775.440007px;}
.y56{bottom:775.800006px;}
.y3{bottom:789.660015px;}
.y2d{bottom:792.720007px;}
.y2c{bottom:809.460013px;}
.y1{bottom:826.200009px;}
.h8{height:32.627350px;}
.ha{height:32.627624px;}
.h6{height:37.848852px;}
.h2{height:42.368186px;}
.h9{height:44.867494px;}
.h5{height:45.136898px;}
.h4{height:50.224888px;}
.h3{height:54.381620px;}
.h7{height:60.849764px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x1{left:72.360000px;}
.x2{left:93.599997px;}
.x3{left:504.720017px;}
.x5{left:534.600014px;}
.x4{left:557.100014px;}
@media print{
.v2{vertical-align:-10.880128pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440064pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001240pt;}
.ls0{letter-spacing:0.001328pt;}
.ls4{letter-spacing:0.001332pt;}
.ls1{letter-spacing:0.001392pt;}
.ls5{letter-spacing:4.641116pt;}
.ws2{word-spacing:-11.998900pt;}
.ws1{word-spacing:-7.359320pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-4.567907pt;}
._3{margin-left:-3.080682pt;}
._2{margin-left:-2.124608pt;}
._0{margin-left:-1.062304pt;}
._4{width:1.054166pt;}
._b{width:2.361074pt;}
._7{width:3.264451pt;}
._8{width:4.162177pt;}
._12{width:5.584630pt;}
._11{width:6.482593pt;}
._10{width:7.812606pt;}
._5{width:8.961921pt;}
._6{width:10.009244pt;}
._15{width:10.916814pt;}
._c{width:12.952250pt;}
._17{width:14.542854pt;}
._1a{width:15.550875pt;}
._18{width:16.447084pt;}
._d{width:17.411954pt;}
._e{width:18.364779pt;}
._13{width:19.336415pt;}
._16{width:22.204615pt;}
._f{width:23.418528pt;}
._a{width:25.432606pt;}
._9{width:26.415766pt;}
._19{width:27.371840pt;}
._14{width:40.732200pt;}
.fs5{font-size:26.877520pt;}
.fs4{font-size:29.437280pt;}
.fs3{font-size:42.876000pt;}
.fs0{font-size:47.995600pt;}
.fs2{font-size:53.115200pt;}
.fs1{font-size:63.994000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:32.960021pt;}
.y2b{bottom:67.359985pt;}
.y54{bottom:74.080016pt;}
.y7e{bottom:76.320007pt;}
.y2a{bottom:84.479980pt;}
.y53{bottom:90.239989pt;}
.y7d{bottom:91.679992pt;}
.y29{bottom:96.160033pt;}
.y55{bottom:97.440002pt;}
.y52{bottom:106.559997pt;}
.y7c{bottom:107.040038pt;}
.y28{bottom:113.280029pt;}
.y7b{bottom:122.400024pt;}
.y51{bottom:122.720031pt;}
.y27{bottom:126.239989pt;}
.y7a{bottom:137.600036pt;}
.y50{bottom:138.880004pt;}
.y26{bottom:146.720031pt;}
.y79{bottom:152.960021pt;}
.y4f{bottom:155.040038pt;}
.y25{bottom:162.720031pt;}
.y78{bottom:168.320007pt;}
.y4e{bottom:171.200011pt;}
.y24{bottom:178.720031pt;}
.y77{bottom:183.679992pt;}
.y4d{bottom:187.359985pt;}
.y23{bottom:194.720031pt;}
.y76{bottom:199.040038pt;}
.y4c{bottom:203.679992pt;}
.y22{bottom:210.720031pt;}
.y75{bottom:214.400024pt;}
.y4b{bottom:219.840026pt;}
.y21{bottom:226.720031pt;}
.y74{bottom:229.600036pt;}
.y4a{bottom:235.999999pt;}
.y20{bottom:242.720031pt;}
.y73{bottom:244.960021pt;}
.y49{bottom:252.160033pt;}
.y1f{bottom:258.720031pt;}
.y72{bottom:260.320007pt;}
.y48{bottom:268.320007pt;}
.y1e{bottom:274.720031pt;}
.y71{bottom:275.679992pt;}
.y47{bottom:284.640014pt;}
.y1d{bottom:290.720000pt;}
.y70{bottom:291.040008pt;}
.y46{bottom:300.800018pt;}
.y6f{bottom:306.400024pt;}
.y1c{bottom:306.720000pt;}
.y45{bottom:316.960021pt;}
.y6e{bottom:321.600005pt;}
.y1b{bottom:322.720000pt;}
.y44{bottom:333.119994pt;}
.y6d{bottom:336.960021pt;}
.y1a{bottom:338.720000pt;}
.y43{bottom:349.279998pt;}
.y6c{bottom:352.320007pt;}
.y19{bottom:354.720000pt;}
.y42{bottom:365.600005pt;}
.y6b{bottom:367.680022pt;}
.y18{bottom:370.720000pt;}
.y41{bottom:381.760009pt;}
.y6a{bottom:383.040008pt;}
.y17{bottom:386.720000pt;}
.y40{bottom:397.920013pt;}
.y69{bottom:398.400024pt;}
.y16{bottom:402.720000pt;}
.y68{bottom:413.600005pt;}
.y3f{bottom:414.080016pt;}
.y15{bottom:418.720000pt;}
.y67{bottom:428.960021pt;}
.y3e{bottom:430.240020pt;}
.y14{bottom:434.720000pt;}
.y66{bottom:444.320007pt;}
.y3d{bottom:446.400024pt;}
.y13{bottom:450.720000pt;}
.y65{bottom:459.680022pt;}
.y3c{bottom:462.720000pt;}
.y12{bottom:466.720000pt;}
.y64{bottom:475.040008pt;}
.y3b{bottom:478.880004pt;}
.y11{bottom:482.720000pt;}
.y63{bottom:490.400024pt;}
.y3a{bottom:495.040008pt;}
.y10{bottom:498.720000pt;}
.y62{bottom:505.600005pt;}
.y39{bottom:511.200011pt;}
.yf{bottom:514.720000pt;}
.y61{bottom:520.960021pt;}
.y38{bottom:527.360015pt;}
.ye{bottom:530.720000pt;}
.y60{bottom:536.320007pt;}
.y37{bottom:543.680007pt;}
.yd{bottom:546.720016pt;}
.y5f{bottom:551.680007pt;}
.y36{bottom:559.840011pt;}
.yc{bottom:563.040008pt;}
.y5e{bottom:567.040008pt;}
.y35{bottom:576.000014pt;}
.yb{bottom:578.240005pt;}
.y5d{bottom:582.400008pt;}
.ya{bottom:591.360015pt;}
.y34{bottom:592.160003pt;}
.y5c{bottom:597.600005pt;}
.y9{bottom:605.600005pt;}
.y33{bottom:608.320007pt;}
.y5b{bottom:612.960006pt;}
.y8{bottom:620.800002pt;}
.y32{bottom:624.480010pt;}
.y5a{bottom:628.320007pt;}
.y7{bottom:635.040008pt;}
.y31{bottom:640.800002pt;}
.y59{bottom:643.680007pt;}
.y6{bottom:651.040008pt;}
.y30{bottom:656.960006pt;}
.y58{bottom:659.040008pt;}
.y5{bottom:668.000007pt;}
.y2f{bottom:673.120010pt;}
.y57{bottom:674.400008pt;}
.y4{bottom:685.120010pt;}
.y2e{bottom:689.280006pt;}
.y56{bottom:689.600005pt;}
.y3{bottom:701.920013pt;}
.y2d{bottom:704.640006pt;}
.y2c{bottom:719.520011pt;}
.y1{bottom:734.400008pt;}
.h8{height:29.002089pt;}
.ha{height:29.002333pt;}
.h6{height:33.643424pt;}
.h2{height:37.660610pt;}
.h9{height:39.882217pt;}
.h5{height:40.121687pt;}
.h4{height:44.644345pt;}
.h3{height:48.339218pt;}
.h7{height:54.088679pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x1{left:64.320000pt;}
.x2{left:83.199997pt;}
.x3{left:448.640015pt;}
.x5{left:475.200012pt;}
.x4{left:495.200012pt;}
}




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