
    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_b2d6c81baf6c0f2897d0942c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_34896497c0a6efcc0c0158e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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;}
.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;}
}
.ws13{word-spacing:-32.278875px;}
.ws10{word-spacing:-19.510886px;}
.wsa{word-spacing:-2.008474px;}
.wsf{word-spacing:-0.286925px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:0.286925px;}
.wsb{word-spacing:3.156173px;}
.wse{word-spacing:3.227904px;}
.ws3{word-spacing:3.873485px;}
.ws5{word-spacing:3.945216px;}
.ws1{word-spacing:4.648169px;}
.ws4{word-spacing:6.352483px;}
.ws2{word-spacing:6.455775px;}
.ws0{word-spacing:7.748437px;}
.wsd{word-spacing:7.890432px;}
.wsc{word-spacing:11.046605px;}
.ws8{word-spacing:14.704896px;}
.ws9{word-spacing:18.076262px;}
.ws12{word-spacing:18.540986px;}
.ws7{word-spacing:19.367325px;}
._6{margin-left:-9.709486px;}
._0{margin-left:-7.058330px;}
._4{margin-left:-5.881958px;}
._9{margin-left:-4.269414px;}
._1{margin-left:-2.238007px;}
._8{margin-left:-1.104679px;}
._3{width:2.008474px;}
._7{width:3.305357px;}
._c{width:4.389943px;}
._a{width:24.431628px;}
._5{width:25.602268px;}
._b{width:40.671590px;}
._2{width:51.646200px;}
._d{width:87.901832px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.ydc{bottom:108.000000px;}
.y59{bottom:112.371000px;}
.yc2{bottom:116.680500px;}
.y9d{bottom:118.597500px;}
.y1c{bottom:128.542500px;}
.y74{bottom:130.129500px;}
.y58{bottom:138.373500px;}
.yc1{bottom:142.683000px;}
.y9c{bottom:144.600000px;}
.ydb{bottom:151.761000px;}
.y1b{bottom:154.545000px;}
.y73{bottom:156.132000px;}
.y8a{bottom:162.358500px;}
.y57{bottom:164.376000px;}
.yc0{bottom:168.685500px;}
.y9b{bottom:170.602500px;}
.ya6{bottom:173.890500px;}
.y3a{bottom:175.908000px;}
.y72{bottom:182.134500px;}
.y89{bottom:188.361000px;}
.y9a{bottom:196.605000px;}
.y1a{bottom:198.306000px;}
.y7f{bottom:199.893000px;}
.y39{bottom:201.910500px;}
.y56{bottom:208.137000px;}
.ybf{bottom:212.445000px;}
.y88{bottom:214.363500px;}
.yda{bottom:216.945000px;}
.y99{bottom:222.607500px;}
.y71{bottom:225.895500px;}
.y38{bottom:227.913000px;}
.y7c{bottom:234.139500px;}
.y87{bottom:240.366000px;}
.yd9{bottom:242.947500px;}
.y98{bottom:248.610000px;}
.y76{bottom:251.898000px;}
.y37{bottom:253.915500px;}
.yb1{bottom:260.142000px;}
.y19{bottom:264.781500px;}
.y7e{bottom:266.368500px;}
.yd8{bottom:268.950000px;}
.y55{bottom:274.612500px;}
.y7b{bottom:277.900500px;}
.ybe{bottom:278.922000px;}
.y36{bottom:279.918000px;}
.yb0{bottom:286.144500px;}
.y18{bottom:290.784000px;}
.y70{bottom:292.371000px;}
.yd7{bottom:294.952500px;}
.y54{bottom:300.615000px;}
.ybd{bottom:304.923000px;}
.y17{bottom:316.785000px;}
.y6f{bottom:318.373500px;}
.yd6{bottom:320.955000px;}
.y35{bottom:323.677500px;}
.y53{bottom:326.617500px;}
.yaf{bottom:329.905500px;}
.ybc{bottom:330.925500px;}
.y16{bottom:342.787500px;}
.y6e{bottom:344.376000px;}
.yd5{bottom:346.957500px;}
.y52{bottom:352.620000px;}
.ybb{bottom:356.928000px;}
.y6d{bottom:370.378500px;}
.yd4{bottom:372.960000px;}
.y51{bottom:378.622500px;}
.yba{bottom:382.930500px;}
.ya4{bottom:384.849000px;}
.y15{bottom:386.548500px;}
.y34{bottom:390.154500px;}
.y6c{bottom:396.381000px;}
.yd3{bottom:398.962500px;}
.y50{bottom:404.625000px;}
.yb9{bottom:408.933000px;}
.ya3{bottom:410.851500px;}
.y33{bottom:416.155500px;}
.y6b{bottom:422.383500px;}
.yd2{bottom:424.965000px;}
.y4f{bottom:430.627500px;}
.yb8{bottom:434.935500px;}
.y97{bottom:436.854000px;}
.y32{bottom:442.158000px;}
.y6a{bottom:448.386000px;}
.yd1{bottom:450.967500px;}
.y14{bottom:453.024000px;}
.y4e{bottom:456.630000px;}
.yb7{bottom:460.938000px;}
.y96{bottom:462.856500px;}
.yab{bottom:466.144500px;}
.y31{bottom:468.160500px;}
.y69{bottom:474.388500px;}
.yd0{bottom:476.970000px;}
.y13{bottom:479.026500px;}
.y4d{bottom:482.632500px;}
.yb6{bottom:486.940500px;}
.y95{bottom:488.859000px;}
.y86{bottom:492.147000px;}
.y30{bottom:494.163000px;}
.y68{bottom:500.389500px;}
.y12{bottom:505.029000px;}
.y4c{bottom:508.633500px;}
.yb5{bottom:512.943000px;}
.y94{bottom:514.861500px;}
.y2f{bottom:520.165500px;}
.ycf{bottom:520.731000px;}
.y67{bottom:526.392000px;}
.y11{bottom:531.031500px;}
.yaa{bottom:532.620000px;}
.yb4{bottom:538.945500px;}
.y93{bottom:540.864000px;}
.ya2{bottom:544.150500px;}
.y4b{bottom:552.394500px;}
.y10{bottom:557.034000px;}
.y85{bottom:558.622500px;}
.y2e{bottom:563.926500px;}
.y92{bottom:566.866500px;}
.y66{bottom:570.153000px;}
.y7a{bottom:578.397000px;}
.yb3{bottom:582.706500px;}
.ya9{bottom:584.623500px;}
.y84{bottom:584.625000px;}
.yce{bottom:585.915000px;}
.y91{bottom:592.867500px;}
.y75{bottom:596.155500px;}
.yf{bottom:600.795000px;}
.y79{bottom:604.399500px;}
.y83{bottom:610.626000px;}
.ycd{bottom:611.917500px;}
.y4a{bottom:618.870000px;}
.ya5{bottom:622.158000px;}
.y2d{bottom:630.402000px;}
.y65{bottom:636.628500px;}
.ycc{bottom:637.920000px;}
.y49{bottom:644.872500px;}
.y78{bottom:648.160500px;}
.y2c{bottom:656.404500px;}
.y64{bottom:662.631000px;}
.ycb{bottom:663.922500px;}
.ye{bottom:667.270500px;}
.y48{bottom:670.875000px;}
.ya1{bottom:674.163000px;}
.y2b{bottom:682.407000px;}
.y63{bottom:688.633500px;}
.yca{bottom:689.925000px;}
.yd{bottom:693.273000px;}
.y47{bottom:696.877500px;}
.yae{bottom:700.165500px;}
.y2a{bottom:708.409500px;}
.y62{bottom:714.636000px;}
.yc9{bottom:715.927500px;}
.yc{bottom:719.275500px;}
.y46{bottom:722.880000px;}
.y29{bottom:734.412000px;}
.y61{bottom:740.638500px;}
.yc8{bottom:741.930000px;}
.yb{bottom:745.278000px;}
.y45{bottom:748.882500px;}
.y60{bottom:766.641000px;}
.yc7{bottom:767.932500px;}
.ya{bottom:771.280500px;}
.y44{bottom:774.885000px;}
.y28{bottom:778.173000px;}
.y5f{bottom:792.643500px;}
.yc6{bottom:793.935000px;}
.y43{bottom:800.887500px;}
.y90{bottom:807.114000px;}
.y9{bottom:815.041500px;}
.y5e{bottom:818.646000px;}
.yc5{bottom:819.937500px;}
.y42{bottom:826.890000px;}
.y8f{bottom:833.116500px;}
.ya8{bottom:836.404500px;}
.y27{bottom:844.648500px;}
.yc4{bottom:845.940000px;}
.y41{bottom:852.892500px;}
.y8e{bottom:859.119000px;}
.y82{bottom:862.407000px;}
.y26{bottom:870.651000px;}
.y8{bottom:881.517000px;}
.y8d{bottom:885.121500px;}
.yc3{bottom:889.701000px;}
.y25{bottom:896.653500px;}
.ya7{bottom:902.880000px;}
.y7{bottom:907.519500px;}
.y8c{bottom:911.124000px;}
.y5d{bottom:914.412000px;}
.y24{bottom:922.656000px;}
.y81{bottom:928.882500px;}
.y6{bottom:933.522000px;}
.y8b{bottom:937.126500px;}
.y7d{bottom:940.414500px;}
.y23{bottom:948.658500px;}
.y80{bottom:954.885000px;}
.y5{bottom:959.524500px;}
.y40{bottom:963.129000px;}
.y77{bottom:966.417000px;}
.ya0{bottom:974.661000px;}
.y5c{bottom:980.887500px;}
.y3f{bottom:989.131500px;}
.y22{bottom:992.419500px;}
.y9f{bottom:1000.663500px;}
.y4{bottom:1003.285500px;}
.y5b{bottom:1006.890000px;}
.y3e{bottom:1015.134000px;}
.yb2{bottom:1018.422000px;}
.yad{bottom:1026.666000px;}
.y5a{bottom:1032.892500px;}
.y3d{bottom:1041.136500px;}
.y9e{bottom:1044.424500px;}
.y21{bottom:1058.895000px;}
.y3c{bottom:1067.139000px;}
.y3{bottom:1069.761000px;}
.yac{bottom:1070.427000px;}
.y20{bottom:1084.897500px;}
.y3b{bottom:1093.141500px;}
.y2{bottom:1104.267000px;}
.y1f{bottom:1110.900000px;}
.y1{bottom:1133.311500px;}
.y1e{bottom:1136.902500px;}
.h5{height:53.798400px;}
.h3{height:64.557900px;}
.h4{height:77.469300px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x5{left:134.338500px;}
.x1{left:154.572000px;}
.x3{left:206.578500px;}
.x2{left:391.410000px;}
.x7{left:437.677500px;}
.x6{left:442.066500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-28.692333pt;}
.ws10{word-spacing:-17.343010pt;}
.wsa{word-spacing:-1.785310pt;}
.wsf{word-spacing:-0.255044pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:0.255044pt;}
.wsb{word-spacing:2.805487pt;}
.wse{word-spacing:2.869248pt;}
.ws3{word-spacing:3.443098pt;}
.ws5{word-spacing:3.506859pt;}
.ws1{word-spacing:4.131706pt;}
.ws4{word-spacing:5.646651pt;}
.ws2{word-spacing:5.738467pt;}
.ws0{word-spacing:6.887500pt;}
.wsd{word-spacing:7.013717pt;}
.wsc{word-spacing:9.819204pt;}
.ws8{word-spacing:13.071019pt;}
.ws9{word-spacing:16.067789pt;}
.ws12{word-spacing:16.480876pt;}
.ws7{word-spacing:17.215400pt;}
._6{margin-left:-8.630654pt;}
._0{margin-left:-6.274071pt;}
._4{margin-left:-5.228407pt;}
._9{margin-left:-3.795035pt;}
._1{margin-left:-1.989340pt;}
._8{margin-left:-0.981937pt;}
._3{width:1.785310pt;}
._7{width:2.938095pt;}
._c{width:3.902172pt;}
._a{width:21.717003pt;}
._5{width:22.757572pt;}
._b{width:36.152525pt;}
._2{width:45.907733pt;}
._d{width:78.134962pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.ydc{bottom:96.000000pt;}
.y59{bottom:99.885333pt;}
.yc2{bottom:103.716000pt;}
.y9d{bottom:105.420000pt;}
.y1c{bottom:114.260000pt;}
.y74{bottom:115.670667pt;}
.y58{bottom:122.998667pt;}
.yc1{bottom:126.829333pt;}
.y9c{bottom:128.533333pt;}
.ydb{bottom:134.898667pt;}
.y1b{bottom:137.373333pt;}
.y73{bottom:138.784000pt;}
.y8a{bottom:144.318667pt;}
.y57{bottom:146.112000pt;}
.yc0{bottom:149.942667pt;}
.y9b{bottom:151.646667pt;}
.ya6{bottom:154.569333pt;}
.y3a{bottom:156.362667pt;}
.y72{bottom:161.897333pt;}
.y89{bottom:167.432000pt;}
.y9a{bottom:174.760000pt;}
.y1a{bottom:176.272000pt;}
.y7f{bottom:177.682667pt;}
.y39{bottom:179.476000pt;}
.y56{bottom:185.010667pt;}
.ybf{bottom:188.840000pt;}
.y88{bottom:190.545333pt;}
.yda{bottom:192.840000pt;}
.y99{bottom:197.873333pt;}
.y71{bottom:200.796000pt;}
.y38{bottom:202.589333pt;}
.y7c{bottom:208.124000pt;}
.y87{bottom:213.658667pt;}
.yd9{bottom:215.953333pt;}
.y98{bottom:220.986667pt;}
.y76{bottom:223.909333pt;}
.y37{bottom:225.702667pt;}
.yb1{bottom:231.237333pt;}
.y19{bottom:235.361333pt;}
.y7e{bottom:236.772000pt;}
.yd8{bottom:239.066667pt;}
.y55{bottom:244.100000pt;}
.y7b{bottom:247.022667pt;}
.ybe{bottom:247.930667pt;}
.y36{bottom:248.816000pt;}
.yb0{bottom:254.350667pt;}
.y18{bottom:258.474667pt;}
.y70{bottom:259.885333pt;}
.yd7{bottom:262.180000pt;}
.y54{bottom:267.213333pt;}
.ybd{bottom:271.042667pt;}
.y17{bottom:281.586667pt;}
.y6f{bottom:282.998667pt;}
.yd6{bottom:285.293333pt;}
.y35{bottom:287.713333pt;}
.y53{bottom:290.326667pt;}
.yaf{bottom:293.249333pt;}
.ybc{bottom:294.156000pt;}
.y16{bottom:304.700000pt;}
.y6e{bottom:306.112000pt;}
.yd5{bottom:308.406667pt;}
.y52{bottom:313.440000pt;}
.ybb{bottom:317.269333pt;}
.y6d{bottom:329.225333pt;}
.yd4{bottom:331.520000pt;}
.y51{bottom:336.553333pt;}
.yba{bottom:340.382667pt;}
.ya4{bottom:342.088000pt;}
.y15{bottom:343.598667pt;}
.y34{bottom:346.804000pt;}
.y6c{bottom:352.338667pt;}
.yd3{bottom:354.633333pt;}
.y50{bottom:359.666667pt;}
.yb9{bottom:363.496000pt;}
.ya3{bottom:365.201333pt;}
.y33{bottom:369.916000pt;}
.y6b{bottom:375.452000pt;}
.yd2{bottom:377.746667pt;}
.y4f{bottom:382.780000pt;}
.yb8{bottom:386.609333pt;}
.y97{bottom:388.314667pt;}
.y32{bottom:393.029333pt;}
.y6a{bottom:398.565333pt;}
.yd1{bottom:400.860000pt;}
.y14{bottom:402.688000pt;}
.y4e{bottom:405.893333pt;}
.yb7{bottom:409.722667pt;}
.y96{bottom:411.428000pt;}
.yab{bottom:414.350667pt;}
.y31{bottom:416.142667pt;}
.y69{bottom:421.678667pt;}
.yd0{bottom:423.973333pt;}
.y13{bottom:425.801333pt;}
.y4d{bottom:429.006667pt;}
.yb6{bottom:432.836000pt;}
.y95{bottom:434.541333pt;}
.y86{bottom:437.464000pt;}
.y30{bottom:439.256000pt;}
.y68{bottom:444.790667pt;}
.y12{bottom:448.914667pt;}
.y4c{bottom:452.118667pt;}
.yb5{bottom:455.949333pt;}
.y94{bottom:457.654667pt;}
.y2f{bottom:462.369333pt;}
.ycf{bottom:462.872000pt;}
.y67{bottom:467.904000pt;}
.y11{bottom:472.028000pt;}
.yaa{bottom:473.440000pt;}
.yb4{bottom:479.062667pt;}
.y93{bottom:480.768000pt;}
.ya2{bottom:483.689333pt;}
.y4b{bottom:491.017333pt;}
.y10{bottom:495.141333pt;}
.y85{bottom:496.553333pt;}
.y2e{bottom:501.268000pt;}
.y92{bottom:503.881333pt;}
.y66{bottom:506.802667pt;}
.y7a{bottom:514.130667pt;}
.yb3{bottom:517.961333pt;}
.ya9{bottom:519.665333pt;}
.y84{bottom:519.666667pt;}
.yce{bottom:520.813333pt;}
.y91{bottom:526.993333pt;}
.y75{bottom:529.916000pt;}
.yf{bottom:534.040000pt;}
.y79{bottom:537.244000pt;}
.y83{bottom:542.778667pt;}
.ycd{bottom:543.926667pt;}
.y4a{bottom:550.106667pt;}
.ya5{bottom:553.029333pt;}
.y2d{bottom:560.357333pt;}
.y65{bottom:565.892000pt;}
.ycc{bottom:567.040000pt;}
.y49{bottom:573.220000pt;}
.y78{bottom:576.142667pt;}
.y2c{bottom:583.470667pt;}
.y64{bottom:589.005333pt;}
.ycb{bottom:590.153333pt;}
.ye{bottom:593.129333pt;}
.y48{bottom:596.333333pt;}
.ya1{bottom:599.256000pt;}
.y2b{bottom:606.584000pt;}
.y63{bottom:612.118667pt;}
.yca{bottom:613.266667pt;}
.yd{bottom:616.242667pt;}
.y47{bottom:619.446667pt;}
.yae{bottom:622.369333pt;}
.y2a{bottom:629.697333pt;}
.y62{bottom:635.232000pt;}
.yc9{bottom:636.380000pt;}
.yc{bottom:639.356000pt;}
.y46{bottom:642.560000pt;}
.y29{bottom:652.810667pt;}
.y61{bottom:658.345333pt;}
.yc8{bottom:659.493333pt;}
.yb{bottom:662.469333pt;}
.y45{bottom:665.673333pt;}
.y60{bottom:681.458667pt;}
.yc7{bottom:682.606667pt;}
.ya{bottom:685.582667pt;}
.y44{bottom:688.786667pt;}
.y28{bottom:691.709333pt;}
.y5f{bottom:704.572000pt;}
.yc6{bottom:705.720000pt;}
.y43{bottom:711.900000pt;}
.y90{bottom:717.434667pt;}
.y9{bottom:724.481333pt;}
.y5e{bottom:727.685333pt;}
.yc5{bottom:728.833333pt;}
.y42{bottom:735.013333pt;}
.y8f{bottom:740.548000pt;}
.ya8{bottom:743.470667pt;}
.y27{bottom:750.798667pt;}
.yc4{bottom:751.946667pt;}
.y41{bottom:758.126667pt;}
.y8e{bottom:763.661333pt;}
.y82{bottom:766.584000pt;}
.y26{bottom:773.912000pt;}
.y8{bottom:783.570667pt;}
.y8d{bottom:786.774667pt;}
.yc3{bottom:790.845333pt;}
.y25{bottom:797.025333pt;}
.ya7{bottom:802.560000pt;}
.y7{bottom:806.684000pt;}
.y8c{bottom:809.888000pt;}
.y5d{bottom:812.810667pt;}
.y24{bottom:820.138667pt;}
.y81{bottom:825.673333pt;}
.y6{bottom:829.797333pt;}
.y8b{bottom:833.001333pt;}
.y7d{bottom:835.924000pt;}
.y23{bottom:843.252000pt;}
.y80{bottom:848.786667pt;}
.y5{bottom:852.910667pt;}
.y40{bottom:856.114667pt;}
.y77{bottom:859.037333pt;}
.ya0{bottom:866.365333pt;}
.y5c{bottom:871.900000pt;}
.y3f{bottom:879.228000pt;}
.y22{bottom:882.150667pt;}
.y9f{bottom:889.478667pt;}
.y4{bottom:891.809333pt;}
.y5b{bottom:895.013333pt;}
.y3e{bottom:902.341333pt;}
.yb2{bottom:905.264000pt;}
.yad{bottom:912.592000pt;}
.y5a{bottom:918.126667pt;}
.y3d{bottom:925.454667pt;}
.y9e{bottom:928.377333pt;}
.y21{bottom:941.240000pt;}
.y3c{bottom:948.568000pt;}
.y3{bottom:950.898667pt;}
.yac{bottom:951.490667pt;}
.y20{bottom:964.353333pt;}
.y3b{bottom:971.681333pt;}
.y2{bottom:981.570667pt;}
.y1f{bottom:987.466667pt;}
.y1{bottom:1007.388000pt;}
.y1e{bottom:1010.580000pt;}
.h5{height:47.820800pt;}
.h3{height:57.384800pt;}
.h4{height:68.861600pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x5{left:119.412000pt;}
.x1{left:137.397333pt;}
.x3{left:183.625333pt;}
.x2{left:347.920000pt;}
.x7{left:389.046667pt;}
.x6{left:392.948000pt;}
}




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