
    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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4d6628f64eabd4f74c335d58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_88f4e6aa8dee45d7471d05d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_ba43df1b50abf7909ea19cd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:198.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;}
}
.ws1{word-spacing:-29.999999px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-9.281249px;}
._5{margin-left:-7.980620px;}
._1{margin-left:-6.609375px;}
._d{margin-left:-5.343749px;}
._e{margin-left:-2.883005px;}
._0{margin-left:-1.010042px;}
._3{width:4.500000px;}
._4{width:9.000040px;}
._2{width:13.499987px;}
._6{width:22.499999px;}
._9{width:27.000000px;}
._b{width:31.500012px;}
._a{width:35.999999px;}
._c{width:40.500002px;}
._8{width:44.999982px;}
._7{width:49.500001px;}
._11{width:54.000010px;}
._10{width:58.499999px;}
._f{width:198.000000px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.yce{bottom:4.124266px;}
.yb1{bottom:4.124634px;}
.y2{bottom:4.124988px;}
.y87{bottom:4.125000px;}
.y2c{bottom:4.125092px;}
.y5b{bottom:4.125183px;}
.yb0{bottom:68.474848px;}
.y5a{bottom:68.475224px;}
.y2a{bottom:70.444613px;}
.y29{bottom:101.705748px;}
.y59{bottom:110.622624px;}
.ycd{bottom:118.717525px;}
.yaf{bottom:121.415769px;}
.y28{bottom:130.954278px;}
.y58{bottom:131.320867px;}
.y85{bottom:131.321041px;}
.ycc{bottom:139.415768px;}
.yae{bottom:142.114012px;}
.y27{bottom:148.202823px;}
.y57{bottom:152.019108px;}
.y84{bottom:152.019283px;}
.yad{bottom:162.812253px;}
.y56{bottom:172.717351px;}
.y83{bottom:172.717525px;}
.ycb{bottom:178.114015px;}
.yac{bottom:183.510496px;}
.y26{bottom:184.109798px;}
.y55{bottom:193.415593px;}
.y82{bottom:193.415768px;}
.yca{bottom:198.812257px;}
.yab{bottom:204.208738px;}
.y54{bottom:214.113835px;}
.y81{bottom:214.114017px;}
.y25{bottom:218.446657px;}
.yc9{bottom:219.510503px;}
.yaa{bottom:224.906980px;}
.y53{bottom:234.812077px;}
.y80{bottom:234.812259px;}
.yc8{bottom:240.208748px;}
.ya9{bottom:245.605223px;}
.y24{bottom:252.783592px;}
.y52{bottom:255.510322px;}
.y7f{bottom:255.510502px;}
.yc7{bottom:260.906978px;}
.y51{bottom:276.208563px;}
.y7e{bottom:276.208743px;}
.yc6{bottom:281.605223px;}
.ya8{bottom:284.303469px;}
.y23{bottom:287.120354px;}
.y50{bottom:296.906806px;}
.y7d{bottom:296.906986px;}
.yc5{bottom:302.303463px;}
.ya7{bottom:305.001712px;}
.y22{bottom:309.457207px;}
.y4f{bottom:317.605048px;}
.y7c{bottom:317.605228px;}
.yc4{bottom:323.001706px;}
.ya6{bottom:325.699953px;}
.y21{bottom:331.794067px;}
.y4e{bottom:338.303290px;}
.y7b{bottom:338.303470px;}
.yc3{bottom:343.699948px;}
.ya5{bottom:346.398196px;}
.y20{bottom:354.130930px;}
.y4d{bottom:359.001533px;}
.y7a{bottom:359.001713px;}
.yc2{bottom:364.398190px;}
.ya4{bottom:367.096438px;}
.y1f{bottom:376.467783px;}
.y4c{bottom:379.699762px;}
.y79{bottom:379.699957px;}
.yc1{bottom:385.096433px;}
.ya3{bottom:387.794680px;}
.y1e{bottom:398.804635px;}
.y4b{bottom:400.398003px;}
.y78{bottom:400.398188px;}
.yc0{bottom:405.794677px;}
.ya2{bottom:408.492923px;}
.y4a{bottom:421.096246px;}
.y77{bottom:421.096433px;}
.y1d{bottom:421.141488px;}
.ybf{bottom:426.492918px;}
.y49{bottom:441.794488px;}
.y76{bottom:441.794673px;}
.y1c{bottom:443.478340px;}
.ya1{bottom:447.191161px;}
.y48{bottom:462.492730px;}
.y75{bottom:462.492918px;}
.y1b{bottom:465.815193px;}
.ya0{bottom:467.889403px;}
.y47{bottom:483.190972px;}
.y74{bottom:483.191159px;}
.y1a{bottom:488.152045px;}
.y9f{bottom:488.587645px;}
.y46{bottom:503.889218px;}
.y73{bottom:503.889402px;}
.y9e{bottom:509.285888px;}
.y19{bottom:510.488898px;}
.y45{bottom:524.587463px;}
.y72{bottom:524.587644px;}
.ybe{bottom:529.984128px;}
.y18{bottom:532.825750px;}
.y44{bottom:545.285708px;}
.y71{bottom:545.285887px;}
.y9d{bottom:547.984132px;}
.ybd{bottom:550.682371px;}
.y17{bottom:555.162603px;}
.y43{bottom:565.983943px;}
.y70{bottom:565.984128px;}
.ybc{bottom:571.380613px;}
.y16{bottom:577.499455px;}
.y42{bottom:586.682185px;}
.y6f{bottom:586.682371px;}
.y9c{bottom:586.682373px;}
.ybb{bottom:592.078855px;}
.y15{bottom:599.836308px;}
.y41{bottom:607.380427px;}
.y6e{bottom:607.380613px;}
.y9b{bottom:607.380616px;}
.yba{bottom:612.777098px;}
.y14{bottom:622.173183px;}
.y40{bottom:628.078673px;}
.y6d{bottom:628.078855px;}
.y9a{bottom:628.078858px;}
.yb9{bottom:633.475342px;}
.y13{bottom:644.510035px;}
.y3f{bottom:648.776918px;}
.y6c{bottom:648.777098px;}
.y99{bottom:648.777100px;}
.yb8{bottom:654.173583px;}
.y12{bottom:666.846888px;}
.y3e{bottom:669.475163px;}
.y6b{bottom:669.475342px;}
.yb7{bottom:674.871826px;}
.y11{bottom:689.183740px;}
.y3d{bottom:690.173397px;}
.y6a{bottom:690.173584px;}
.y98{bottom:690.173589px;}
.yb6{bottom:695.570068px;}
.y3c{bottom:710.871639px;}
.y97{bottom:710.871832px;}
.y69{bottom:710.871835px;}
.y10{bottom:711.520593px;}
.yb5{bottom:716.268310px;}
.yd8{bottom:724.363043px;}
.y3b{bottom:731.569882px;}
.y68{bottom:731.569888px;}
.y96{bottom:731.570073px;}
.yf{bottom:733.857444px;}
.yb4{bottom:736.966553px;}
.y3a{bottom:752.268123px;}
.y67{bottom:752.268130px;}
.y95{bottom:752.268316px;}
.ye{bottom:756.194280px;}
.yd7{bottom:763.061272px;}
.y39{bottom:772.966366px;}
.y66{bottom:772.966373px;}
.y94{bottom:772.966558px;}
.yb3{bottom:775.664798px;}
.yd{bottom:778.531141px;}
.y65{bottom:793.664604px;}
.y38{bottom:793.664608px;}
.y93{bottom:793.664800px;}
.yc{bottom:800.867995px;}
.yd6{bottom:801.759523px;}
.y64{bottom:814.362847px;}
.y37{bottom:814.362850px;}
.yb2{bottom:814.363034px;}
.y92{bottom:814.363043px;}
.yd5{bottom:822.457765px;}
.yb{bottom:823.204856px;}
.y63{bottom:835.061088px;}
.y36{bottom:835.061092px;}
.y91{bottom:835.061277px;}
.yd4{bottom:843.156007px;}
.ya{bottom:845.541704px;}
.y62{bottom:855.759331px;}
.y35{bottom:855.759339px;}
.y90{bottom:855.759519px;}
.y9{bottom:867.878579px;}
.y61{bottom:876.457573px;}
.y34{bottom:876.457582px;}
.y8f{bottom:876.457762px;}
.yd3{bottom:881.854255px;}
.y8{bottom:890.215433px;}
.y60{bottom:897.155815px;}
.y33{bottom:897.155823px;}
.y8e{bottom:897.156003px;}
.yd2{bottom:902.552497px;}
.y7{bottom:912.552262px;}
.y5f{bottom:917.854057px;}
.y32{bottom:917.854066px;}
.y8d{bottom:917.854246px;}
.y6{bottom:934.889122px;}
.y5e{bottom:938.552302px;}
.y31{bottom:938.552308px;}
.y8c{bottom:938.552488px;}
.yd1{bottom:941.250733px;}
.y5{bottom:957.225982px;}
.y5d{bottom:959.250548px;}
.y30{bottom:959.250550px;}
.y8b{bottom:959.250730px;}
.yd0{bottom:961.948975px;}
.y2f{bottom:979.948792px;}
.y8a{bottom:979.948973px;}
.ycf{bottom:982.647218px;}
.y4{bottom:992.484879px;}
.y2e{bottom:1000.647033px;}
.y5c{bottom:1000.647034px;}
.y89{bottom:1000.647217px;}
.y3{bottom:1018.544540px;}
.y2d{bottom:1021.345276px;}
.y88{bottom:1021.345460px;}
.y2b{bottom:1038.149964px;}
.y1{bottom:1038.150009px;}
.y86{bottom:1038.150147px;}
.ha{height:39.990233px;}
.h2{height:43.989259px;}
.h7{height:53.789061px;}
.h4{height:63.949219px;}
.h5{height:64.546875px;}
.h3{height:74.607419px;}
.h9{height:105.899775px;}
.hc{height:105.900150px;}
.h6{height:162.206730px;}
.hb{height:224.849853px;}
.h1{height:224.849991px;}
.h8{height:224.850036px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:127.575005px;}
.x2{left:145.067848px;}
.x6{left:180.450005px;}
.x7{left:181.575005px;}
.x5{left:227.894686px;}
.x3{left:384.352704px;}
.x1{left:636.019216px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ws1{word-spacing:-26.666666pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-8.249999pt;}
._5{margin-left:-7.093884pt;}
._1{margin-left:-5.875000pt;}
._d{margin-left:-4.749999pt;}
._e{margin-left:-2.562671pt;}
._0{margin-left:-0.897815pt;}
._3{width:4.000000pt;}
._4{width:8.000036pt;}
._2{width:11.999988pt;}
._6{width:19.999999pt;}
._9{width:24.000000pt;}
._b{width:28.000011pt;}
._a{width:31.999999pt;}
._c{width:36.000002pt;}
._8{width:39.999984pt;}
._7{width:44.000001pt;}
._11{width:48.000008pt;}
._10{width:52.000000pt;}
._f{width:176.000000pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.666015pt;}
.yb1{bottom:3.666341pt;}
.y2{bottom:3.666656pt;}
.y87{bottom:3.666667pt;}
.y2c{bottom:3.666748pt;}
.y5b{bottom:3.666829pt;}
.yb0{bottom:60.866532pt;}
.y5a{bottom:60.866865pt;}
.y2a{bottom:62.617434pt;}
.y29{bottom:90.405110pt;}
.y59{bottom:98.331221pt;}
.ycd{bottom:105.526689pt;}
.yaf{bottom:107.925128pt;}
.y28{bottom:116.403803pt;}
.y58{bottom:116.729659pt;}
.y85{bottom:116.729814pt;}
.ycc{bottom:123.925127pt;}
.yae{bottom:126.323566pt;}
.y27{bottom:131.735843pt;}
.y57{bottom:135.128096pt;}
.y84{bottom:135.128251pt;}
.yad{bottom:144.722003pt;}
.y56{bottom:153.526534pt;}
.y83{bottom:153.526689pt;}
.ycb{bottom:158.323569pt;}
.yac{bottom:163.120441pt;}
.y26{bottom:163.653153pt;}
.y55{bottom:171.924971pt;}
.y82{bottom:171.925127pt;}
.yca{bottom:176.722007pt;}
.yab{bottom:181.518878pt;}
.y54{bottom:190.323409pt;}
.y81{bottom:190.323571pt;}
.y25{bottom:194.174807pt;}
.yc9{bottom:195.120447pt;}
.yaa{bottom:199.917316pt;}
.y53{bottom:208.721847pt;}
.y80{bottom:208.722008pt;}
.yc8{bottom:213.518887pt;}
.ya9{bottom:218.315753pt;}
.y24{bottom:224.696527pt;}
.y52{bottom:227.120286pt;}
.y7f{bottom:227.120446pt;}
.yc7{bottom:231.917313pt;}
.y51{bottom:245.518723pt;}
.y7e{bottom:245.518883pt;}
.yc6{bottom:250.315753pt;}
.ya8{bottom:252.714195pt;}
.y23{bottom:255.218093pt;}
.y50{bottom:263.917161pt;}
.y7d{bottom:263.917321pt;}
.yc5{bottom:268.714190pt;}
.ya7{bottom:271.112633pt;}
.y22{bottom:275.073073pt;}
.y4f{bottom:282.315598pt;}
.y7c{bottom:282.315758pt;}
.yc4{bottom:287.112628pt;}
.ya6{bottom:289.511070pt;}
.y21{bottom:294.928060pt;}
.y4e{bottom:300.714036pt;}
.y7b{bottom:300.714196pt;}
.yc3{bottom:305.511065pt;}
.ya5{bottom:307.909508pt;}
.y20{bottom:314.783049pt;}
.y4d{bottom:319.112473pt;}
.y7a{bottom:319.112633pt;}
.yc2{bottom:323.909503pt;}
.ya4{bottom:326.307945pt;}
.y1f{bottom:334.638029pt;}
.y4c{bottom:337.510899pt;}
.y79{bottom:337.511073pt;}
.yc1{bottom:342.307940pt;}
.ya3{bottom:344.706383pt;}
.y1e{bottom:354.493009pt;}
.y4b{bottom:355.909336pt;}
.y78{bottom:355.909500pt;}
.yc0{bottom:360.706379pt;}
.ya2{bottom:363.104820pt;}
.y4a{bottom:374.307774pt;}
.y77{bottom:374.307940pt;}
.y1d{bottom:374.347989pt;}
.ybf{bottom:379.104816pt;}
.y49{bottom:392.706211pt;}
.y76{bottom:392.706376pt;}
.y1c{bottom:394.202969pt;}
.ya1{bottom:397.503254pt;}
.y48{bottom:411.104649pt;}
.y75{bottom:411.104816pt;}
.y1b{bottom:414.057949pt;}
.ya0{bottom:415.901691pt;}
.y47{bottom:429.503087pt;}
.y74{bottom:429.503253pt;}
.y1a{bottom:433.912929pt;}
.y9f{bottom:434.300129pt;}
.y46{bottom:447.901527pt;}
.y73{bottom:447.901691pt;}
.y9e{bottom:452.698567pt;}
.y19{bottom:453.767909pt;}
.y45{bottom:466.299967pt;}
.y72{bottom:466.300128pt;}
.ybe{bottom:471.097003pt;}
.y18{bottom:473.622889pt;}
.y44{bottom:484.698407pt;}
.y71{bottom:484.698566pt;}
.y9d{bottom:487.097007pt;}
.ybd{bottom:489.495441pt;}
.y17{bottom:493.477869pt;}
.y43{bottom:503.096838pt;}
.y70{bottom:503.097003pt;}
.ybc{bottom:507.893878pt;}
.y16{bottom:513.332849pt;}
.y42{bottom:521.495276pt;}
.y6f{bottom:521.495441pt;}
.y9c{bottom:521.495443pt;}
.ybb{bottom:526.292316pt;}
.y15{bottom:533.187829pt;}
.y41{bottom:539.893713pt;}
.y6e{bottom:539.893878pt;}
.y9b{bottom:539.893881pt;}
.yba{bottom:544.690753pt;}
.y14{bottom:553.042829pt;}
.y40{bottom:558.292153pt;}
.y6d{bottom:558.292316pt;}
.y9a{bottom:558.292318pt;}
.yb9{bottom:563.089192pt;}
.y13{bottom:572.897809pt;}
.y3f{bottom:576.690593pt;}
.y6c{bottom:576.690753pt;}
.y99{bottom:576.690756pt;}
.yb8{bottom:581.487629pt;}
.y12{bottom:592.752789pt;}
.y3e{bottom:595.089033pt;}
.y6b{bottom:595.089192pt;}
.yb7{bottom:599.886067pt;}
.y11{bottom:612.607769pt;}
.y3d{bottom:613.487464pt;}
.y6a{bottom:613.487630pt;}
.y98{bottom:613.487634pt;}
.yb6{bottom:618.284505pt;}
.y3c{bottom:631.885901pt;}
.y97{bottom:631.886072pt;}
.y69{bottom:631.886075pt;}
.y10{bottom:632.462749pt;}
.yb5{bottom:636.682942pt;}
.yd8{bottom:643.878260pt;}
.y3b{bottom:650.284339pt;}
.y68{bottom:650.284344pt;}
.y96{bottom:650.284509pt;}
.yf{bottom:652.317728pt;}
.yb4{bottom:655.081380pt;}
.y3a{bottom:668.682776pt;}
.y67{bottom:668.682783pt;}
.y95{bottom:668.682947pt;}
.ye{bottom:672.172693pt;}
.yd7{bottom:678.276686pt;}
.y39{bottom:687.081214pt;}
.y66{bottom:687.081220pt;}
.y94{bottom:687.081385pt;}
.yb3{bottom:689.479820pt;}
.yd{bottom:692.027681pt;}
.y65{bottom:705.479648pt;}
.y38{bottom:705.479651pt;}
.y93{bottom:705.479822pt;}
.yc{bottom:711.882662pt;}
.yd6{bottom:712.675131pt;}
.y64{bottom:723.878086pt;}
.y37{bottom:723.878089pt;}
.yb2{bottom:723.878253pt;}
.y92{bottom:723.878260pt;}
.yd5{bottom:731.073569pt;}
.yb{bottom:731.737650pt;}
.y63{bottom:742.276523pt;}
.y36{bottom:742.276527pt;}
.y91{bottom:742.276691pt;}
.yd4{bottom:749.472007pt;}
.ya{bottom:751.592626pt;}
.y62{bottom:760.674961pt;}
.y35{bottom:760.674968pt;}
.y90{bottom:760.675128pt;}
.y9{bottom:771.447626pt;}
.y61{bottom:779.073398pt;}
.y34{bottom:779.073406pt;}
.y8f{bottom:779.073566pt;}
.yd3{bottom:783.870449pt;}
.y8{bottom:791.302607pt;}
.y60{bottom:797.471836pt;}
.y33{bottom:797.471843pt;}
.y8e{bottom:797.472003pt;}
.yd2{bottom:802.268887pt;}
.y7{bottom:811.157567pt;}
.y5f{bottom:815.870273pt;}
.y32{bottom:815.870281pt;}
.y8d{bottom:815.870441pt;}
.y6{bottom:831.012553pt;}
.y5e{bottom:834.268713pt;}
.y31{bottom:834.268718pt;}
.y8c{bottom:834.268878pt;}
.yd1{bottom:836.667318pt;}
.y5{bottom:850.867540pt;}
.y5d{bottom:852.667153pt;}
.y30{bottom:852.667156pt;}
.y8b{bottom:852.667316pt;}
.yd0{bottom:855.065756pt;}
.y2f{bottom:871.065593pt;}
.y8a{bottom:871.065753pt;}
.ycf{bottom:873.464193pt;}
.y4{bottom:882.208781pt;}
.y2e{bottom:889.464029pt;}
.y5c{bottom:889.464030pt;}
.y89{bottom:889.464193pt;}
.y3{bottom:905.372924pt;}
.y2d{bottom:907.862468pt;}
.y88{bottom:907.862631pt;}
.y2b{bottom:922.799968pt;}
.y1{bottom:922.800008pt;}
.y86{bottom:922.800131pt;}
.ha{height:35.546874pt;}
.h2{height:39.101563pt;}
.h7{height:47.812499pt;}
.h4{height:56.843750pt;}
.h5{height:57.375000pt;}
.h3{height:66.317706pt;}
.h9{height:94.133133pt;}
.hc{height:94.133467pt;}
.h6{height:144.183760pt;}
.hb{height:199.866536pt;}
.h1{height:199.866659pt;}
.h8{height:199.866699pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:113.400004pt;}
.x2{left:128.949198pt;}
.x6{left:160.400004pt;}
.x7{left:161.400004pt;}
.x5{left:202.573054pt;}
.x3{left:341.646848pt;}
.x1{left:565.350414pt;}
}




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