
    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_cc1e0b261c957265b948568a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_5ad043c55672ba70c8ed6f3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.048000px;}
.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;}
}
.ws3{word-spacing:-23.400000px;}
.ws0{word-spacing:-17.160000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:1161.312000px;}
._0{width:274.740000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1b{bottom:35.058000px;}
.y2c{bottom:57.558000px;}
.y8e{bottom:119.358000px;}
.y5e{bottom:120.708000px;}
.y78{bottom:127.983000px;}
.y1a{bottom:129.783000px;}
.y4a{bottom:134.283000px;}
.y8d{bottom:145.233000px;}
.ybe{bottom:148.983000px;}
.y77{bottom:153.858000px;}
.y19{bottom:155.658000px;}
.y49{bottom:160.158000px;}
.y5d{bottom:161.583000px;}
.y8c{bottom:171.108000px;}
.ybd{bottom:174.858000px;}
.y18{bottom:181.533000px;}
.ya4{bottom:181.983000px;}
.y48{bottom:186.033000px;}
.y76{bottom:194.733000px;}
.y17{bottom:207.408000px;}
.y47{bottom:211.908000px;}
.y8b{bottom:211.983000px;}
.ybc{bottom:215.733000px;}
.ya3{bottom:222.858000px;}
.y5c{bottom:228.333000px;}
.y16{bottom:233.283000px;}
.y75{bottom:235.608000px;}
.y46{bottom:237.783000px;}
.ya2{bottom:248.733000px;}
.y2b{bottom:250.458000px;}
.y8a{bottom:252.858000px;}
.y5b{bottom:254.208000px;}
.ybb{bottom:256.608000px;}
.y15{bottom:259.158000px;}
.y74{bottom:261.483000px;}
.y45{bottom:263.658000px;}
.y2a{bottom:284.958000px;}
.y14{bottom:285.033000px;}
.yba{bottom:286.983000px;}
.y73{bottom:287.358000px;}
.y44{bottom:289.533000px;}
.ya1{bottom:289.608000px;}
.y89{bottom:293.733000px;}
.y13{bottom:310.908000px;}
.y72{bottom:313.233000px;}
.y43{bottom:315.408000px;}
.yb9{bottom:327.858000px;}
.ya0{bottom:330.483000px;}
.y5a{bottom:334.608000px;}
.y12{bottom:336.783000px;}
.y42{bottom:341.283000px;}
.yb8{bottom:353.733000px;}
.y71{bottom:354.108000px;}
.y9f{bottom:356.358000px;}
.y11{bottom:362.658000px;}
.y88{bottom:364.983000px;}
.y41{bottom:367.158000px;}
.y59{bottom:373.608000px;}
.yb7{bottom:379.608000px;}
.y9e{bottom:386.733000px;}
.y40{bottom:393.033000px;}
.y70{bottom:394.983000px;}
.y87{bottom:405.858000px;}
.y58{bottom:417.108000px;}
.y3f{bottom:418.908000px;}
.yb6{bottom:420.483000px;}
.y9d{bottom:427.608000px;}
.y6f{bottom:435.858000px;}
.y3e{bottom:444.783000px;}
.y29{bottom:445.683000px;}
.y86{bottom:446.733000px;}
.yb5{bottom:461.358000px;}
.y10{bottom:466.158000px;}
.y9c{bottom:468.483000px;}
.y3d{bottom:470.658000px;}
.y57{bottom:472.083000px;}
.y6e{bottom:476.733000px;}
.y28{bottom:480.183000px;}
.y85{bottom:487.608000px;}
.yb4{bottom:491.733000px;}
.yf{bottom:492.033000px;}
.y3c{bottom:496.533000px;}
.y9b{bottom:509.358000px;}
.y56{bottom:512.958000px;}
.y6d{bottom:517.608000px;}
.ye{bottom:517.908000px;}
.y3b{bottom:522.408000px;}
.yb3{bottom:526.608000px;}
.y84{bottom:528.483000px;}
.yd{bottom:543.783000px;}
.y9a{bottom:550.233000px;}
.y55{bottom:553.833000px;}
.y6c{bottom:558.483000px;}
.yb2{bottom:567.483000px;}
.y83{bottom:569.358000px;}
.yc{bottom:569.658000px;}
.y6b{bottom:584.358000px;}
.y54{bottom:586.308000px;}
.y27{bottom:590.958000px;}
.yb{bottom:595.533000px;}
.yb1{bottom:608.358000px;}
.y82{bottom:610.233000px;}
.ya{bottom:621.408000px;}
.y26{bottom:621.633000px;}
.y6a{bottom:625.233000px;}
.y3a{bottom:625.908000px;}
.y99{bottom:642.858000px;}
.y53{bottom:644.658000px;}
.y9{bottom:647.283000px;}
.yb0{bottom:649.233000px;}
.y81{bottom:651.108000px;}
.y39{bottom:651.783000px;}
.y25{bottom:652.308000px;}
.y69{bottom:666.108000px;}
.y98{bottom:668.733000px;}
.y52{bottom:670.533000px;}
.y8{bottom:673.158000px;}
.yaf{bottom:675.108000px;}
.y38{bottom:677.658000px;}
.y24{bottom:682.983000px;}
.y80{bottom:691.983000px;}
.y7{bottom:699.033000px;}
.y37{bottom:703.533000px;}
.y68{bottom:706.983000px;}
.y97{bottom:709.608000px;}
.y51{bottom:711.408000px;}
.yae{bottom:715.983000px;}
.y23{bottom:716.808000px;}
.yc2{bottom:726.858000px;}
.y36{bottom:729.408000px;}
.y7f{bottom:732.858000px;}
.y50{bottom:737.283000px;}
.y67{bottom:747.858000px;}
.y96{bottom:750.483000px;}
.y35{bottom:755.283000px;}
.yad{bottom:756.858000px;}
.y6{bottom:767.958000px;}
.y7e{bottom:773.733000px;}
.y95{bottom:776.358000px;}
.y4f{bottom:778.158000px;}
.y34{bottom:781.158000px;}
.y66{bottom:788.733000px;}
.yac{bottom:797.733000px;}
.y94{bottom:802.233000px;}
.y33{bottom:807.033000px;}
.yc1{bottom:808.608000px;}
.y4e{bottom:810.633000px;}
.y7d{bottom:814.608000px;}
.y93{bottom:828.108000px;}
.y65{bottom:829.608000px;}
.y32{bottom:832.908000px;}
.yab{bottom:838.608000px;}
.yc0{bottom:849.483000px;}
.y92{bottom:853.983000px;}
.y64{bottom:855.483000px;}
.y31{bottom:858.783000px;}
.yaa{bottom:864.483000px;}
.y4d{bottom:868.983000px;}
.y91{bottom:879.858000px;}
.y63{bottom:881.358000px;}
.ya9{bottom:890.358000px;}
.y5{bottom:895.383000px;}
.y7c{bottom:896.358000px;}
.y22{bottom:898.983000px;}
.y90{bottom:905.733000px;}
.y62{bottom:907.233000px;}
.y4c{bottom:909.858000px;}
.ya8{bottom:916.233000px;}
.y7b{bottom:922.233000px;}
.y21{bottom:924.858000px;}
.y4{bottom:927.858000px;}
.ybf{bottom:931.233000px;}
.y4b{bottom:935.733000px;}
.y30{bottom:940.533000px;}
.y8f{bottom:946.608000px;}
.y61{bottom:948.108000px;}
.y20{bottom:950.733000px;}
.y7a{bottom:952.608000px;}
.ya7{bottom:957.108000px;}
.y3{bottom:974.808000px;}
.y1f{bottom:976.608000px;}
.y60{bottom:978.483000px;}
.y2f{bottom:981.408000px;}
.y79{bottom:987.483000px;}
.ya6{bottom:997.983000px;}
.y1e{bottom:1002.483000px;}
.y2e{bottom:1007.283000px;}
.y5f{bottom:1013.358000px;}
.y2{bottom:1021.758000px;}
.ya5{bottom:1023.858000px;}
.y1d{bottom:1028.358000px;}
.y2d{bottom:1039.758000px;}
.y1c{bottom:1054.233000px;}
.h7{height:50.160000px;}
.h3{height:50.490000px;}
.h4{height:64.260000px;}
.h5{height:68.850000px;}
.h6{height:73.440000px;}
.h2{height:91.800000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:22.800000px;}
.x6{left:108.150000px;}
.x9{left:114.900000px;}
.xf{left:138.150000px;}
.x1{left:151.725000px;}
.x2{left:167.925000px;}
.x8{left:247.800000px;}
.xc{left:268.575000px;}
.xe{left:358.575000px;}
.x3{left:382.950000px;}
.xd{left:389.925000px;}
.xb{left:398.700000px;}
.x5{left:402.675000px;}
.x10{left:416.850000px;}
.x4{left:423.150000px;}
.xa{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042667pt;}
.ws3{word-spacing:-20.800000pt;}
.ws0{word-spacing:-15.253333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:1032.277333pt;}
._0{width:244.213333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1b{bottom:31.162667pt;}
.y2c{bottom:51.162667pt;}
.y8e{bottom:106.096000pt;}
.y5e{bottom:107.296000pt;}
.y78{bottom:113.762667pt;}
.y1a{bottom:115.362667pt;}
.y4a{bottom:119.362667pt;}
.y8d{bottom:129.096000pt;}
.ybe{bottom:132.429333pt;}
.y77{bottom:136.762667pt;}
.y19{bottom:138.362667pt;}
.y49{bottom:142.362667pt;}
.y5d{bottom:143.629333pt;}
.y8c{bottom:152.096000pt;}
.ybd{bottom:155.429333pt;}
.y18{bottom:161.362667pt;}
.ya4{bottom:161.762667pt;}
.y48{bottom:165.362667pt;}
.y76{bottom:173.096000pt;}
.y17{bottom:184.362667pt;}
.y47{bottom:188.362667pt;}
.y8b{bottom:188.429333pt;}
.ybc{bottom:191.762667pt;}
.ya3{bottom:198.096000pt;}
.y5c{bottom:202.962667pt;}
.y16{bottom:207.362667pt;}
.y75{bottom:209.429333pt;}
.y46{bottom:211.362667pt;}
.ya2{bottom:221.096000pt;}
.y2b{bottom:222.629333pt;}
.y8a{bottom:224.762667pt;}
.y5b{bottom:225.962667pt;}
.ybb{bottom:228.096000pt;}
.y15{bottom:230.362667pt;}
.y74{bottom:232.429333pt;}
.y45{bottom:234.362667pt;}
.y2a{bottom:253.296000pt;}
.y14{bottom:253.362667pt;}
.yba{bottom:255.096000pt;}
.y73{bottom:255.429333pt;}
.y44{bottom:257.362667pt;}
.ya1{bottom:257.429333pt;}
.y89{bottom:261.096000pt;}
.y13{bottom:276.362667pt;}
.y72{bottom:278.429333pt;}
.y43{bottom:280.362667pt;}
.yb9{bottom:291.429333pt;}
.ya0{bottom:293.762667pt;}
.y5a{bottom:297.429333pt;}
.y12{bottom:299.362667pt;}
.y42{bottom:303.362667pt;}
.yb8{bottom:314.429333pt;}
.y71{bottom:314.762667pt;}
.y9f{bottom:316.762667pt;}
.y11{bottom:322.362667pt;}
.y88{bottom:324.429333pt;}
.y41{bottom:326.362667pt;}
.y59{bottom:332.096000pt;}
.yb7{bottom:337.429333pt;}
.y9e{bottom:343.762667pt;}
.y40{bottom:349.362667pt;}
.y70{bottom:351.096000pt;}
.y87{bottom:360.762667pt;}
.y58{bottom:370.762667pt;}
.y3f{bottom:372.362667pt;}
.yb6{bottom:373.762667pt;}
.y9d{bottom:380.096000pt;}
.y6f{bottom:387.429333pt;}
.y3e{bottom:395.362667pt;}
.y29{bottom:396.162667pt;}
.y86{bottom:397.096000pt;}
.yb5{bottom:410.096000pt;}
.y10{bottom:414.362667pt;}
.y9c{bottom:416.429333pt;}
.y3d{bottom:418.362667pt;}
.y57{bottom:419.629333pt;}
.y6e{bottom:423.762667pt;}
.y28{bottom:426.829333pt;}
.y85{bottom:433.429333pt;}
.yb4{bottom:437.096000pt;}
.yf{bottom:437.362667pt;}
.y3c{bottom:441.362667pt;}
.y9b{bottom:452.762667pt;}
.y56{bottom:455.962667pt;}
.y6d{bottom:460.096000pt;}
.ye{bottom:460.362667pt;}
.y3b{bottom:464.362667pt;}
.yb3{bottom:468.096000pt;}
.y84{bottom:469.762667pt;}
.yd{bottom:483.362667pt;}
.y9a{bottom:489.096000pt;}
.y55{bottom:492.296000pt;}
.y6c{bottom:496.429333pt;}
.yb2{bottom:504.429333pt;}
.y83{bottom:506.096000pt;}
.yc{bottom:506.362667pt;}
.y6b{bottom:519.429333pt;}
.y54{bottom:521.162667pt;}
.y27{bottom:525.296000pt;}
.yb{bottom:529.362667pt;}
.yb1{bottom:540.762667pt;}
.y82{bottom:542.429333pt;}
.ya{bottom:552.362667pt;}
.y26{bottom:552.562667pt;}
.y6a{bottom:555.762667pt;}
.y3a{bottom:556.362667pt;}
.y99{bottom:571.429333pt;}
.y53{bottom:573.029333pt;}
.y9{bottom:575.362667pt;}
.yb0{bottom:577.096000pt;}
.y81{bottom:578.762667pt;}
.y39{bottom:579.362667pt;}
.y25{bottom:579.829333pt;}
.y69{bottom:592.096000pt;}
.y98{bottom:594.429333pt;}
.y52{bottom:596.029333pt;}
.y8{bottom:598.362667pt;}
.yaf{bottom:600.096000pt;}
.y38{bottom:602.362667pt;}
.y24{bottom:607.096000pt;}
.y80{bottom:615.096000pt;}
.y7{bottom:621.362667pt;}
.y37{bottom:625.362667pt;}
.y68{bottom:628.429333pt;}
.y97{bottom:630.762667pt;}
.y51{bottom:632.362667pt;}
.yae{bottom:636.429333pt;}
.y23{bottom:637.162667pt;}
.yc2{bottom:646.096000pt;}
.y36{bottom:648.362667pt;}
.y7f{bottom:651.429333pt;}
.y50{bottom:655.362667pt;}
.y67{bottom:664.762667pt;}
.y96{bottom:667.096000pt;}
.y35{bottom:671.362667pt;}
.yad{bottom:672.762667pt;}
.y6{bottom:682.629333pt;}
.y7e{bottom:687.762667pt;}
.y95{bottom:690.096000pt;}
.y4f{bottom:691.696000pt;}
.y34{bottom:694.362667pt;}
.y66{bottom:701.096000pt;}
.yac{bottom:709.096000pt;}
.y94{bottom:713.096000pt;}
.y33{bottom:717.362667pt;}
.yc1{bottom:718.762667pt;}
.y4e{bottom:720.562667pt;}
.y7d{bottom:724.096000pt;}
.y93{bottom:736.096000pt;}
.y65{bottom:737.429333pt;}
.y32{bottom:740.362667pt;}
.yab{bottom:745.429333pt;}
.yc0{bottom:755.096000pt;}
.y92{bottom:759.096000pt;}
.y64{bottom:760.429333pt;}
.y31{bottom:763.362667pt;}
.yaa{bottom:768.429333pt;}
.y4d{bottom:772.429333pt;}
.y91{bottom:782.096000pt;}
.y63{bottom:783.429333pt;}
.ya9{bottom:791.429333pt;}
.y5{bottom:795.896000pt;}
.y7c{bottom:796.762667pt;}
.y22{bottom:799.096000pt;}
.y90{bottom:805.096000pt;}
.y62{bottom:806.429333pt;}
.y4c{bottom:808.762667pt;}
.ya8{bottom:814.429333pt;}
.y7b{bottom:819.762667pt;}
.y21{bottom:822.096000pt;}
.y4{bottom:824.762667pt;}
.ybf{bottom:827.762667pt;}
.y4b{bottom:831.762667pt;}
.y30{bottom:836.029333pt;}
.y8f{bottom:841.429333pt;}
.y61{bottom:842.762667pt;}
.y20{bottom:845.096000pt;}
.y7a{bottom:846.762667pt;}
.ya7{bottom:850.762667pt;}
.y3{bottom:866.496000pt;}
.y1f{bottom:868.096000pt;}
.y60{bottom:869.762667pt;}
.y2f{bottom:872.362667pt;}
.y79{bottom:877.762667pt;}
.ya6{bottom:887.096000pt;}
.y1e{bottom:891.096000pt;}
.y2e{bottom:895.362667pt;}
.y5f{bottom:900.762667pt;}
.y2{bottom:908.229333pt;}
.ya5{bottom:910.096000pt;}
.y1d{bottom:914.096000pt;}
.y2d{bottom:924.229333pt;}
.y1c{bottom:937.096000pt;}
.h7{height:44.586667pt;}
.h3{height:44.880000pt;}
.h4{height:57.120000pt;}
.h5{height:61.200000pt;}
.h6{height:65.280000pt;}
.h2{height:81.600000pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:20.266667pt;}
.x6{left:96.133333pt;}
.x9{left:102.133333pt;}
.xf{left:122.800000pt;}
.x1{left:134.866667pt;}
.x2{left:149.266667pt;}
.x8{left:220.266667pt;}
.xc{left:238.733333pt;}
.xe{left:318.733333pt;}
.x3{left:340.400000pt;}
.xd{left:346.600000pt;}
.xb{left:354.400000pt;}
.x5{left:357.933333pt;}
.x10{left:370.533333pt;}
.x4{left:376.133333pt;}
.xa{left:421.266667pt;}
}




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