
    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_84b8a84b5ce39bcb97ea0362.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9b80ba8501540d5c2c6b8e54.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_9d6bdb0a060c3101d5258795.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.v1{vertical-align:10.625013px;}
.v3{vertical-align:77.991709px;}
.v2{vertical-align:90.555769px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-23.349832px;}
.ws8{word-spacing:-18.346332px;}
.ws1{word-spacing:-0.083992px;}
.wsa{word-spacing:-0.006599px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:1.234685px;}
.ws3{word-spacing:2.318185px;}
.ws4{word-spacing:66.548350px;}
.ws7{word-spacing:209.022796px;}
.ws6{word-spacing:587.369682px;}
.ws5{word-spacing:1166.710453px;}
._4{margin-left:-66.548350px;}
._3{margin-left:-25.642819px;}
._1{margin-left:-6.647402px;}
._0{margin-left:-4.896755px;}
._2{margin-left:-3.116111px;}
._5{margin-left:-1.194491px;}
._6{width:124.992636px;}
._a{width:145.114207px;}
._8{width:156.194599px;}
._9{width:218.017778px;}
._7{width:236.370710px;}
.fc1{color:rgb(6,122,61);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:53.995200px;}
.fs4{font-size:59.994600px;}
.fs1{font-size:65.994000px;}
.fs2{font-size:83.992200px;}
.fs3{font-size:179.983200px;}
.y0{bottom:0.000000px;}
.y4a{bottom:24.184500px;}
.y81{bottom:34.371668px;}
.y7d{bottom:41.103668px;}
.y5{bottom:41.417645px;}
.y79{bottom:51.732668px;}
.y80{bottom:53.867945px;}
.y7c{bottom:60.599945px;}
.y78{bottom:71.228945px;}
.y7f{bottom:73.364223px;}
.y4{bottom:74.414645px;}
.y1d{bottom:77.668500px;}
.y7b{bottom:80.096223px;}
.y77{bottom:90.725223px;}
.y7e{bottom:92.860500px;}
.y3{bottom:93.912573px;}
.y7a{bottom:99.592500px;}
.y2c{bottom:101.114277px;}
.y76{bottom:110.221500px;}
.y2{bottom:113.410500px;}
.y2b{bottom:125.112996px;}
.y23{bottom:141.429600px;}
.y1{bottom:145.708500px;}
.y2a{bottom:149.111714px;}
.y49{bottom:155.031375px;}
.y22{bottom:159.427980px;}
.y29{bottom:173.110432px;}
.y48{bottom:174.529303px;}
.y21{bottom:177.424860px;}
.y47{bottom:194.027230px;}
.y8b{bottom:194.662335px;}
.y20{bottom:195.423240px;}
.y28{bottom:197.107500px;}
.y1f{bottom:213.421620px;}
.y46{bottom:213.525157px;}
.y8a{bottom:214.158613px;}
.y1e{bottom:231.420000px;}
.y45{bottom:233.023085px;}
.y89{bottom:233.654890px;}
.y27{bottom:238.957114px;}
.y75{bottom:250.663445px;}
.y44{bottom:252.521012px;}
.y88{bottom:253.151168px;}
.y26{bottom:265.954307px;}
.y73{bottom:267.017058px;}
.y74{bottom:270.159723px;}
.y87{bottom:272.647445px;}
.y6b{bottom:282.655445px;}
.y43{bottom:285.518012px;}
.y72{bottom:286.513335px;}
.y86{bottom:292.143723px;}
.y25{bottom:292.951500px;}
.y6a{bottom:302.151723px;}
.y42{bottom:305.015939px;}
.y71{bottom:306.009613px;}
.y85{bottom:311.640000px;}
.y69{bottom:321.648000px;}
.y41{bottom:324.513867px;}
.y70{bottom:325.505890px;}
.y6f{bottom:345.002168px;}
.y5c{bottom:345.205772px;}
.y40{bottom:357.510867px;}
.y6e{bottom:364.498445px;}
.y5b{bottom:364.702050px;}
.y19{bottom:372.506577px;}
.y3f{bottom:377.008794px;}
.y6d{bottom:383.994723px;}
.y18{bottom:392.004505px;}
.y3e{bottom:396.506721px;}
.y6c{bottom:403.491000px;}
.y5a{bottom:403.699554px;}
.y17{bottom:411.502432px;}
.y3d{bottom:416.004648px;}
.y59{bottom:423.195832px;}
.y24{bottom:439.630500px;}
.y58{bottom:442.692109px;}
.y84{bottom:445.012445px;}
.y3c{bottom:449.001648px;}
.y16{bottom:450.499936px;}
.y83{bottom:464.508723px;}
.y3b{bottom:468.499576px;}
.y15{bottom:469.997864px;}
.y57{bottom:481.689614px;}
.y82{bottom:484.005000px;}
.y3a{bottom:487.997503px;}
.y14{bottom:489.495791px;}
.y56{bottom:501.187541px;}
.y39{bottom:507.495430px;}
.y13{bottom:508.993718px;}
.y1c{bottom:537.377580px;}
.y55{bottom:540.183396px;}
.y38{bottom:540.492430px;}
.y12{bottom:547.991223px;}
.y54{bottom:559.681323px;}
.y37{bottom:559.990358px;}
.y11{bottom:567.489150px;}
.y65{bottom:578.123346px;}
.y53{bottom:579.179250px;}
.y36{bottom:579.488285px;}
.y10{bottom:586.987077px;}
.y1b{bottom:591.372540px;}
.y64{bottom:597.621273px;}
.y35{bottom:598.986212px;}
.yf{bottom:606.485005px;}
.y52{bottom:618.176755px;}
.y34{bottom:618.484140px;}
.y63{bottom:636.617128px;}
.y51{bottom:637.674682px;}
.y1a{bottom:645.367500px;}
.ye{bottom:645.482509px;}
.y90{bottom:651.144829px;}
.y33{bottom:651.481140px;}
.y50{bottom:657.172609px;}
.yd{bottom:664.980436px;}
.y32{bottom:670.979067px;}
.y62{bottom:675.612983px;}
.yc{bottom:684.478364px;}
.y8f{bottom:689.126026px;}
.y31{bottom:690.476994px;}
.y61{bottom:695.110910px;}
.y4f{bottom:696.170114px;}
.y30{bottom:709.974921px;}
.y60{bottom:714.608837px;}
.y4e{bottom:715.668041px;}
.yb{bottom:723.475868px;}
.y8e{bottom:727.390997px;}
.y4d{bottom:735.165968px;}
.y2f{bottom:742.971921px;}
.ya{bottom:742.973795px;}
.y5f{bottom:753.604692px;}
.y8d{bottom:761.204673px;}
.y2e{bottom:762.469849px;}
.y9{bottom:762.471723px;}
.y5e{bottom:773.102619px;}
.y4c{bottom:774.163473px;}
.y8c{bottom:780.702600px;}
.y2d{bottom:781.967776px;}
.y8{bottom:781.969650px;}
.y5d{bottom:792.600546px;}
.y4b{bottom:793.661400px;}
.y7{bottom:812.486640px;}
.y67{bottom:819.926940px;}
.y6{bottom:837.684300px;}
.y68{bottom:842.466247px;}
.y66{bottom:845.124600px;}
.h2{height:56.315306px;}
.h6{height:62.572493px;}
.h3{height:68.829680px;}
.h4{height:87.601240px;}
.h7{height:98.226253px;}
.h9{height:146.821389px;}
.h8{height:159.385448px;}
.h5{height:187.716853px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x11{left:13.959300px;}
.x12{left:40.531500px;}
.x3{left:52.516050px;}
.xe{left:62.467200px;}
.xf{left:89.465345px;}
.x1b{left:239.292000px;}
.x18{left:426.361500px;}
.x1{left:443.733000px;}
.x2{left:451.173000px;}
.x13{left:455.059612px;}
.x14{left:531.504000px;}
.x10{left:580.125786px;}
.x19{left:649.072500px;}
.x15{left:714.112500px;}
.xd{left:854.007000px;}
.x9{left:877.204987px;}
.xb{left:888.873937px;}
.x1f{left:893.679442px;}
.xa{left:898.027613px;}
.x8{left:899.284500px;}
.x20{left:901.481583px;}
.x4{left:927.289500px;}
.x5{left:941.053715px;}
.x16{left:942.573000px;}
.xc{left:950.128424px;}
.x17{left:952.494000px;}
.x6{left:973.572180px;}
.x1c{left:1007.430000px;}
.x1a{left:1022.059500px;}
.x1d{left:1030.364565px;}
.x7{left:1137.082350px;}
.x1e{left:1145.585139px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.444456pt;}
.v3{vertical-align:69.325964pt;}
.v2{vertical-align:80.494017pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-20.755406pt;}
.ws8{word-spacing:-16.307851pt;}
.ws1{word-spacing:-0.074660pt;}
.wsa{word-spacing:-0.005866pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:1.097498pt;}
.ws3{word-spacing:2.060609pt;}
.ws4{word-spacing:59.154089pt;}
.ws7{word-spacing:185.798041pt;}
.ws6{word-spacing:522.106384pt;}
.ws5{word-spacing:1037.075958pt;}
._4{margin-left:-59.154089pt;}
._3{margin-left:-22.793617pt;}
._1{margin-left:-5.908801pt;}
._0{margin-left:-4.352671pt;}
._2{margin-left:-2.769876pt;}
._5{margin-left:-1.061770pt;}
._6{width:111.104565pt;}
._a{width:128.990406pt;}
._8{width:138.839644pt;}
._9{width:193.793581pt;}
._7{width:210.107298pt;}
.fs0{font-size:47.995733pt;}
.fs4{font-size:53.328533pt;}
.fs1{font-size:58.661333pt;}
.fs2{font-size:74.659733pt;}
.fs3{font-size:159.985067pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:21.497333pt;}
.y81{bottom:30.552593pt;}
.y7d{bottom:36.536593pt;}
.y5{bottom:36.815685pt;}
.y79{bottom:45.984593pt;}
.y80{bottom:47.882618pt;}
.y7c{bottom:53.866618pt;}
.y78{bottom:63.314618pt;}
.y7f{bottom:65.212642pt;}
.y4{bottom:66.146351pt;}
.y1d{bottom:69.038667pt;}
.y7b{bottom:71.196642pt;}
.y77{bottom:80.644642pt;}
.y7e{bottom:82.542667pt;}
.y3{bottom:83.477842pt;}
.y7a{bottom:88.526667pt;}
.y2c{bottom:89.879358pt;}
.y76{bottom:97.974667pt;}
.y2{bottom:100.809333pt;}
.y2b{bottom:111.211552pt;}
.y23{bottom:125.715200pt;}
.y1{bottom:129.518667pt;}
.y2a{bottom:132.543745pt;}
.y49{bottom:137.805667pt;}
.y22{bottom:141.713760pt;}
.y29{bottom:153.875939pt;}
.y48{bottom:155.137158pt;}
.y21{bottom:157.710987pt;}
.y47{bottom:172.468649pt;}
.y8b{bottom:173.033187pt;}
.y20{bottom:173.709547pt;}
.y28{bottom:175.206667pt;}
.y1f{bottom:189.708107pt;}
.y46{bottom:189.800140pt;}
.y8a{bottom:190.363211pt;}
.y1e{bottom:205.706667pt;}
.y45{bottom:207.131631pt;}
.y89{bottom:207.693236pt;}
.y27{bottom:212.406324pt;}
.y75{bottom:222.811951pt;}
.y44{bottom:224.463122pt;}
.y88{bottom:225.023260pt;}
.y26{bottom:236.403829pt;}
.y73{bottom:237.348496pt;}
.y74{bottom:240.141976pt;}
.y87{bottom:242.353285pt;}
.y6b{bottom:251.249285pt;}
.y43{bottom:253.793788pt;}
.y72{bottom:254.678520pt;}
.y86{bottom:259.683309pt;}
.y25{bottom:260.401333pt;}
.y6a{bottom:268.579309pt;}
.y42{bottom:271.125279pt;}
.y71{bottom:272.008545pt;}
.y85{bottom:277.013333pt;}
.y69{bottom:285.909333pt;}
.y41{bottom:288.456770pt;}
.y70{bottom:289.338569pt;}
.y6f{bottom:306.668593pt;}
.y5c{bottom:306.849575pt;}
.y40{bottom:317.787437pt;}
.y6e{bottom:323.998618pt;}
.y5b{bottom:324.179600pt;}
.y19{bottom:331.116958pt;}
.y3f{bottom:335.118928pt;}
.y6d{bottom:341.328642pt;}
.y18{bottom:348.448449pt;}
.y3e{bottom:352.450419pt;}
.y6c{bottom:358.658667pt;}
.y5a{bottom:358.844048pt;}
.y17{bottom:365.779939pt;}
.y3d{bottom:369.781910pt;}
.y59{bottom:376.174073pt;}
.y24{bottom:390.782667pt;}
.y58{bottom:393.504097pt;}
.y84{bottom:395.566618pt;}
.y3c{bottom:399.112576pt;}
.y16{bottom:400.444388pt;}
.y83{bottom:412.896642pt;}
.y3b{bottom:416.444067pt;}
.y15{bottom:417.775879pt;}
.y57{bottom:428.168545pt;}
.y82{bottom:430.226667pt;}
.y3a{bottom:433.775558pt;}
.y14{bottom:435.107370pt;}
.y56{bottom:445.500036pt;}
.y39{bottom:451.107049pt;}
.y13{bottom:452.438861pt;}
.y1c{bottom:477.668960pt;}
.y55{bottom:480.163018pt;}
.y38{bottom:480.437716pt;}
.y12{bottom:487.103309pt;}
.y54{bottom:497.494509pt;}
.y37{bottom:497.769207pt;}
.y11{bottom:504.434800pt;}
.y65{bottom:513.887419pt;}
.y53{bottom:514.826000pt;}
.y36{bottom:515.100698pt;}
.y10{bottom:521.766291pt;}
.y1b{bottom:525.664480pt;}
.y64{bottom:531.218910pt;}
.y35{bottom:532.432189pt;}
.yf{bottom:539.097782pt;}
.y52{bottom:549.490449pt;}
.y34{bottom:549.763680pt;}
.y63{bottom:565.881892pt;}
.y51{bottom:566.821939pt;}
.y1a{bottom:573.660000pt;}
.ye{bottom:573.762230pt;}
.y90{bottom:578.795404pt;}
.y33{bottom:579.094346pt;}
.y50{bottom:584.153430pt;}
.yd{bottom:591.093721pt;}
.y32{bottom:596.425837pt;}
.y62{bottom:600.544873pt;}
.yc{bottom:608.425212pt;}
.y8f{bottom:612.556467pt;}
.y31{bottom:613.757328pt;}
.y61{bottom:617.876364pt;}
.y4f{bottom:618.817879pt;}
.y30{bottom:631.088819pt;}
.y60{bottom:635.207855pt;}
.y4e{bottom:636.149370pt;}
.yb{bottom:643.089661pt;}
.y8e{bottom:646.569775pt;}
.y4d{bottom:653.480861pt;}
.y2f{bottom:660.419486pt;}
.ya{bottom:660.421151pt;}
.y5f{bottom:669.870837pt;}
.y8d{bottom:676.626376pt;}
.y2e{bottom:677.750977pt;}
.y9{bottom:677.752642pt;}
.y5e{bottom:687.202328pt;}
.y4c{bottom:688.145309pt;}
.y8c{bottom:693.957867pt;}
.y2d{bottom:695.082468pt;}
.y8{bottom:695.084133pt;}
.y5d{bottom:704.533819pt;}
.y4b{bottom:705.476800pt;}
.y7{bottom:722.210347pt;}
.y67{bottom:728.823947pt;}
.y6{bottom:744.608267pt;}
.y68{bottom:748.858886pt;}
.y66{bottom:751.221867pt;}
.h2{height:50.058050pt;}
.h6{height:55.619994pt;}
.h3{height:61.181938pt;}
.h4{height:77.867769pt;}
.h7{height:87.312225pt;}
.h9{height:130.507901pt;}
.h8{height:141.675954pt;}
.h5{height:166.859425pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x11{left:12.408267pt;}
.x12{left:36.028000pt;}
.x3{left:46.680933pt;}
.xe{left:55.526400pt;}
.xf{left:79.524751pt;}
.x1b{left:212.704000pt;}
.x18{left:378.988000pt;}
.x1{left:394.429333pt;}
.x2{left:401.042667pt;}
.x13{left:404.497433pt;}
.x14{left:472.448000pt;}
.x10{left:515.667365pt;}
.x19{left:576.953333pt;}
.x15{left:634.766667pt;}
.xd{left:759.117333pt;}
.x9{left:779.737767pt;}
.xb{left:790.110166pt;}
.x1f{left:794.381726pt;}
.xa{left:798.246767pt;}
.x8{left:799.364000pt;}
.x20{left:801.316962pt;}
.x4{left:824.257333pt;}
.x5{left:836.492191pt;}
.x16{left:837.842667pt;}
.xc{left:844.558599pt;}
.x17{left:846.661333pt;}
.x6{left:865.397493pt;}
.x1c{left:895.493333pt;}
.x1a{left:908.497333pt;}
.x1d{left:915.879613pt;}
.x7{left:1010.739867pt;}
.x1e{left:1018.297902pt;}
}




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