
    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_6ac2082abc9121ada7dd486a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_d1686ecfaf8dc82adec6e1e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_ab5738f08496b04e0e1916c2.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.161880px;}
.ls1{letter-spacing:33.295440px;}
.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:-16.271993px;}
.ws2{word-spacing:-14.939994px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.230877px;}
._1{width:1.003494px;}
._12{width:2.539239px;}
._f{width:3.615611px;}
._e{width:4.978617px;}
._4{width:6.148811px;}
._3{width:7.328996px;}
._14{width:8.576805px;}
._d{width:9.601926px;}
._c{width:10.633399px;}
._a{width:12.201720px;}
._7{width:14.337151px;}
._16{width:17.491510px;}
._15{width:18.940148px;}
._11{width:20.512484px;}
._10{width:22.083861px;}
._18{width:23.661296px;}
._9{width:24.840821px;}
._8{width:25.966573px;}
._17{width:27.087149px;}
._19{width:28.194551px;}
._6{width:29.236508px;}
._5{width:30.401466px;}
._13{width:32.749463px;}
._2{width:41.472204px;}
._1a{width:1369.103452px;}
._b{width:2044.145182px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.239981px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.900277px;}
.y5{bottom:78.060269px;}
.y4{bottom:96.780261px;}
.y3{bottom:111.540255px;}
.y9d{bottom:145.379942px;}
.y67{bottom:152.039939px;}
.yad{bottom:152.939939px;}
.y3d{bottom:157.259937px;}
.y7c{bottom:166.079934px;}
.y91{bottom:166.259933px;}
.y66{bottom:173.819930px;}
.yac{bottom:174.719930px;}
.y7b{bottom:187.859925px;}
.y65{bottom:195.779922px;}
.yab{bottom:196.679921px;}
.y29{bottom:202.799919px;}
.y90{bottom:204.419918px;}
.y57{bottom:208.019917px;}
.y52{bottom:212.519915px;}
.y64{bottom:217.919913px;}
.yaa{bottom:218.639913px;}
.y7a{bottom:231.059908px;}
.y51{bottom:234.299906px;}
.y28{bottom:240.959904px;}
.y79{bottom:252.839899px;}
.y63{bottom:256.079898px;}
.ya9{bottom:261.839895px;}
.y50{bottom:277.499889px;}
.y3c{bottom:294.419882px;}
.y78{bottom:295.859882px;}
.y4f{bottom:299.279880px;}
.ya8{bottom:304.679878px;}
.y87{bottom:314.939874px;}
.yf{bottom:317.279873px;}
.y4e{bottom:321.239872px;}
.y3b{bottom:332.399867px;}
.y86{bottom:336.719865px;}
.y77{bottom:338.879864px;}
.y4d{bottom:343.199863px;}
.ya7{bottom:347.519861px;}
.y1b{bottom:363.719855px;}
.y4c{bottom:365.159854px;}
.y76{bottom:377.039849px;}
.y85{bottom:379.919848px;}
.y1a{bottom:385.499846px;}
.y4b{bottom:387.119845px;}
.y19{bottom:407.459837px;}
.y4a{bottom:409.079836px;}
.y84{bottom:422.939831px;}
.y18{bottom:429.419828px;}
.y49{bottom:431.039828px;}
.y9c{bottom:434.639826px;}
.y27{bottom:447.419821px;}
.y75{bottom:450.299820px;}
.y3a{bottom:459.839816px;}
.y83{bottom:465.779814px;}
.y74{bottom:472.079811px;}
.y17{bottom:472.619811px;}
.y48{bottom:474.239810px;}
.y8f{bottom:487.739805px;}
.y26{bottom:490.439804px;}
.y39{bottom:502.859799px;}
.y25{bottom:512.219795px;}
.y73{bottom:515.279794px;}
.y16{bottom:515.459794px;}
.y62{bottom:523.199791px;}
.y38{bottom:524.639790px;}
.y8e{bottom:530.579788px;}
.y24{bottom:534.179786px;}
.y72{bottom:537.059785px;}
.y61{bottom:544.979782px;}
.y37{bottom:546.599781px;}
.y15{bottom:553.439779px;}
.y71{bottom:559.019776px;}
.y36{bottom:568.559773px;}
.ya6{bottom:569.279772px;}
.ye{bottom:569.999772px;}
.y8d{bottom:573.599771px;}
.y23{bottom:577.379769px;}
.y56{bottom:587.639765px;}
.y60{bottom:588.179765px;}
.y35{bottom:590.519764px;}
.ya5{bottom:591.059764px;}
.y8c{bottom:595.379762px;}
.y22{bottom:599.159760px;}
.y70{bottom:602.219759px;}
.y9b{bottom:608.879756px;}
.y55{bottom:609.419756px;}
.y5f{bottom:609.959756px;}
.y34{bottom:612.479755px;}
.y21{bottom:621.119752px;}
.ya4{bottom:629.219748px;}
.y8b{bottom:633.539747px;}
.y33{bottom:634.439746px;}
.y6f{bottom:645.239742px;}
.y9a{bottom:651.719739px;}
.y54{bottom:652.259739px;}
.y5e{bottom:653.159739px;}
.y20{bottom:659.279736px;}
.y99{bottom:673.499731px;}
.y32{bottom:677.639729px;}
.y47{bottom:679.979728px;}
.y82{bottom:683.759726px;}
.y6e{bottom:688.079725px;}
.y53{bottom:688.979724px;}
.y98{bottom:695.639722px;}
.y5d{bottom:695.999722px;}
.y46{bottom:701.759719px;}
.y81{bottom:705.539718px;}
.y5c{bottom:717.779713px;}
.y31{bottom:720.479712px;}
.y80{bottom:727.499709px;}
.y6d{bottom:731.099708px;}
.y97{bottom:738.659705px;}
.y45{bottom:740.099704px;}
.y96{bottom:760.439696px;}
.y5b{bottom:760.979696px;}
.y30{bottom:763.499695px;}
.y7f{bottom:765.839694px;}
.y6c{bottom:769.259692px;}
.y1f{bottom:782.039687px;}
.y95{bottom:782.399687px;}
.y2f{bottom:785.279686px;}
.y5a{bottom:798.959680px;}
.y1e{bottom:803.819678px;}
.y94{bottom:825.599670px;}
.y1d{bottom:825.779670px;}
.y2e{bottom:828.479669px;}
.y2d{bottom:850.259660px;}
.y14{bottom:857.099657px;}
.y93{bottom:868.619653px;}
.y1c{bottom:868.979652px;}
.y44{bottom:869.519652px;}
.y8a{bottom:877.799649px;}
.y13{bottom:878.879648px;}
.y43{bottom:891.299643px;}
.y7e{bottom:891.479643px;}
.y2c{bottom:893.459643px;}
.y12{bottom:900.839640px;}
.yd{bottom:901.919639px;}
.y92{bottom:906.779637px;}
.y89{bottom:920.819632px;}
.y11{bottom:922.799631px;}
.ya3{bottom:922.979631px;}
.y7d{bottom:929.639628px;}
.y42{bottom:934.319626px;}
.y2b{bottom:936.479625px;}
.ya2{bottom:944.759622px;}
.yc{bottom:944.939622px;}
.y6b{bottom:951.059620px;}
.y88{bottom:958.979616px;}
.y10{bottom:961.139616px;}
.yb{bottom:966.719613px;}
.y6a{bottom:972.839611px;}
.y2a{bottom:974.459610px;}
.y41{bottom:977.339609px;}
.y69{bottom:994.799602px;}
.ya{bottom:1009.919596px;}
.y40{bottom:1015.499594px;}
.ya1{bottom:1031.699587px;}
.y68{bottom:1033.139587px;}
.y9{bottom:1052.939579px;}
.ya0{bottom:1053.659579px;}
.yaf{bottom:1073.819570px;}
.yae{bottom:1095.599562px;}
.y59{bottom:1095.779562px;}
.y9f{bottom:1096.859561px;}
.y8{bottom:1098.119561px;}
.y58{bottom:1117.739553px;}
.y3f{bottom:1117.919553px;}
.y7{bottom:1131.059548px;}
.y3e{bottom:1139.699544px;}
.y9e{bottom:1139.879544px;}
.y2{bottom:1174.259530px;}
.y1{bottom:1194.419522px;}
.h2{height:39.783851px;}
.h1{height:54.628572px;}
.h4{height:59.378882px;}
.h6{height:62.327788px;}
.h5{height:75.093720px;}
.h3{height:89.068324px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620091px;}
.x3{left:151.739939px;}
.xa{left:154.616751px;}
.xb{left:181.619927px;}
.x4{left:373.319851px;}
.x10{left:406.619837px;}
.x14{left:486.359805px;}
.x15{left:498.782115px;}
.x13{left:557.280515px;}
.x5{left:624.958797px;}
.xc{left:628.021487px;}
.x6{left:629.819748px;}
.x9{left:633.781280px;}
.x8{left:636.300242px;}
.x7{left:638.999875px;}
.xe{left:640.619445px;}
.xd{left:643.859742px;}
.x12{left:651.779739px;}
.xf{left:658.619012px;}
.x11{left:748.619701px;}
.x1{left:757.079697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.143893pt;}
.ls1{letter-spacing:29.595947pt;}
.ws0{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.094113pt;}
._1{width:0.891994pt;}
._12{width:2.257101pt;}
._f{width:3.213877pt;}
._e{width:4.425437pt;}
._4{width:5.465610pt;}
._3{width:6.514663pt;}
._14{width:7.623827pt;}
._d{width:8.535045pt;}
._c{width:9.451910pt;}
._a{width:10.845973pt;}
._7{width:12.744134pt;}
._16{width:15.548009pt;}
._15{width:16.835687pt;}
._11{width:18.233319pt;}
._10{width:19.630099pt;}
._18{width:21.032263pt;}
._9{width:22.080730pt;}
._8{width:23.081398pt;}
._17{width:24.077466pt;}
._19{width:25.061823pt;}
._6{width:25.988007pt;}
._5{width:27.023525pt;}
._13{width:29.110633pt;}
._2{width:36.864181pt;}
._1a{width:1216.980847pt;}
._b{width:1817.017940pt;}
.fs1{font-size:42.879983pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:51.466913pt;}
.y5{bottom:69.386906pt;}
.y4{bottom:86.026899pt;}
.y3{bottom:99.146894pt;}
.y9d{bottom:129.226615pt;}
.y67{bottom:135.146613pt;}
.yad{bottom:135.946612pt;}
.y3d{bottom:139.786611pt;}
.y7c{bottom:147.626608pt;}
.y91{bottom:147.786608pt;}
.y66{bottom:154.506605pt;}
.yac{bottom:155.306605pt;}
.y7b{bottom:166.986600pt;}
.y65{bottom:174.026597pt;}
.yab{bottom:174.826597pt;}
.y29{bottom:180.266595pt;}
.y90{bottom:181.706594pt;}
.y57{bottom:184.906593pt;}
.y52{bottom:188.906591pt;}
.y64{bottom:193.706589pt;}
.yaa{bottom:194.346589pt;}
.y7a{bottom:205.386585pt;}
.y51{bottom:208.266583pt;}
.y28{bottom:214.186581pt;}
.y79{bottom:224.746577pt;}
.y63{bottom:227.626576pt;}
.ya9{bottom:232.746574pt;}
.y50{bottom:246.666568pt;}
.y3c{bottom:261.706562pt;}
.y78{bottom:262.986561pt;}
.y4f{bottom:266.026560pt;}
.ya8{bottom:270.826558pt;}
.y87{bottom:279.946555pt;}
.yf{bottom:282.026554pt;}
.y4e{bottom:285.546552pt;}
.y3b{bottom:295.466548pt;}
.y86{bottom:299.306547pt;}
.y77{bottom:301.226546pt;}
.y4d{bottom:305.066545pt;}
.ya7{bottom:308.906543pt;}
.y1b{bottom:323.306537pt;}
.y4c{bottom:324.586537pt;}
.y76{bottom:335.146533pt;}
.y85{bottom:337.706532pt;}
.y1a{bottom:342.666530pt;}
.y4b{bottom:344.106529pt;}
.y19{bottom:362.186522pt;}
.y4a{bottom:363.626521pt;}
.y84{bottom:375.946516pt;}
.y18{bottom:381.706514pt;}
.y49{bottom:383.146513pt;}
.y9c{bottom:386.346512pt;}
.y27{bottom:397.706508pt;}
.y75{bottom:400.266507pt;}
.y3a{bottom:408.746503pt;}
.y83{bottom:414.026501pt;}
.y74{bottom:419.626499pt;}
.y17{bottom:420.106499pt;}
.y48{bottom:421.546498pt;}
.y8f{bottom:433.546493pt;}
.y26{bottom:435.946492pt;}
.y39{bottom:446.986488pt;}
.y25{bottom:455.306485pt;}
.y73{bottom:458.026483pt;}
.y16{bottom:458.186483pt;}
.y62{bottom:465.066481pt;}
.y38{bottom:466.346480pt;}
.y8e{bottom:471.626478pt;}
.y24{bottom:474.826477pt;}
.y72{bottom:477.386476pt;}
.y61{bottom:484.426473pt;}
.y37{bottom:485.866472pt;}
.y15{bottom:491.946470pt;}
.y71{bottom:496.906468pt;}
.y36{bottom:505.386465pt;}
.ya6{bottom:506.026464pt;}
.ye{bottom:506.666464pt;}
.y8d{bottom:509.866463pt;}
.y23{bottom:513.226461pt;}
.y56{bottom:522.346458pt;}
.y60{bottom:522.826458pt;}
.y35{bottom:524.906457pt;}
.ya5{bottom:525.386457pt;}
.y8c{bottom:529.226455pt;}
.y22{bottom:532.586454pt;}
.y70{bottom:535.306453pt;}
.y9b{bottom:541.226450pt;}
.y55{bottom:541.706450pt;}
.y5f{bottom:542.186450pt;}
.y34{bottom:544.426449pt;}
.y21{bottom:552.106446pt;}
.ya4{bottom:559.306443pt;}
.y8b{bottom:563.146441pt;}
.y33{bottom:563.946441pt;}
.y6f{bottom:573.546437pt;}
.y9a{bottom:579.306435pt;}
.y54{bottom:579.786435pt;}
.y5e{bottom:580.586434pt;}
.y20{bottom:586.026432pt;}
.y99{bottom:598.666427pt;}
.y32{bottom:602.346426pt;}
.y47{bottom:604.426425pt;}
.y82{bottom:607.786424pt;}
.y6e{bottom:611.626422pt;}
.y53{bottom:612.426422pt;}
.y98{bottom:618.346419pt;}
.y5d{bottom:618.666419pt;}
.y46{bottom:623.786417pt;}
.y81{bottom:627.146416pt;}
.y5c{bottom:638.026411pt;}
.y31{bottom:640.426410pt;}
.y80{bottom:646.666408pt;}
.y6d{bottom:649.866407pt;}
.y97{bottom:656.586404pt;}
.y45{bottom:657.866404pt;}
.y96{bottom:675.946396pt;}
.y5b{bottom:676.426396pt;}
.y30{bottom:678.666395pt;}
.y7f{bottom:680.746394pt;}
.y6c{bottom:683.786393pt;}
.y1f{bottom:695.146389pt;}
.y95{bottom:695.466388pt;}
.y2f{bottom:698.026387pt;}
.y5a{bottom:710.186383pt;}
.y1e{bottom:714.506381pt;}
.y94{bottom:733.866373pt;}
.y1d{bottom:734.026373pt;}
.y2e{bottom:736.426372pt;}
.y2d{bottom:755.786364pt;}
.y14{bottom:761.866362pt;}
.y93{bottom:772.106358pt;}
.y1c{bottom:772.426358pt;}
.y44{bottom:772.906358pt;}
.y8a{bottom:780.266355pt;}
.y13{bottom:781.226354pt;}
.y43{bottom:792.266350pt;}
.y7e{bottom:792.426350pt;}
.y2c{bottom:794.186349pt;}
.y12{bottom:800.746346pt;}
.yd{bottom:801.706346pt;}
.y92{bottom:806.026344pt;}
.y89{bottom:818.506339pt;}
.y11{bottom:820.266339pt;}
.ya3{bottom:820.426338pt;}
.y7d{bottom:826.346336pt;}
.y42{bottom:830.506334pt;}
.y2b{bottom:832.426334pt;}
.ya2{bottom:839.786331pt;}
.yc{bottom:839.946331pt;}
.y6b{bottom:845.386329pt;}
.y88{bottom:852.426326pt;}
.y10{bottom:854.346325pt;}
.yb{bottom:859.306323pt;}
.y6a{bottom:864.746321pt;}
.y2a{bottom:866.186320pt;}
.y41{bottom:868.746319pt;}
.y69{bottom:884.266313pt;}
.ya{bottom:897.706308pt;}
.y40{bottom:902.666306pt;}
.ya1{bottom:917.066300pt;}
.y68{bottom:918.346299pt;}
.y9{bottom:935.946292pt;}
.ya0{bottom:936.586292pt;}
.yaf{bottom:954.506285pt;}
.yae{bottom:973.866277pt;}
.y59{bottom:974.026277pt;}
.y9f{bottom:974.986277pt;}
.y8{bottom:976.106276pt;}
.y58{bottom:993.546269pt;}
.y3f{bottom:993.706269pt;}
.y7{bottom:1005.386265pt;}
.y3e{bottom:1013.066261pt;}
.y9e{bottom:1013.226261pt;}
.y2{bottom:1043.786249pt;}
.y1{bottom:1061.706242pt;}
.h2{height:35.363423pt;}
.h1{height:48.558731pt;}
.h4{height:52.781229pt;}
.h6{height:55.402478pt;}
.h5{height:66.749973pt;}
.h3{height:79.171843pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440081pt;}
.x3{left:134.879946pt;}
.xa{left:137.437112pt;}
.xb{left:161.439935pt;}
.x4{left:331.839867pt;}
.x10{left:361.439855pt;}
.x14{left:432.319827pt;}
.x15{left:443.361880pt;}
.x13{left:495.360457pt;}
.x5{left:555.518930pt;}
.xc{left:558.241322pt;}
.x6{left:559.839776pt;}
.x9{left:563.361138pt;}
.x8{left:565.600215pt;}
.x7{left:567.999889pt;}
.xe{left:569.439507pt;}
.xd{left:572.319771pt;}
.x12{left:579.359768pt;}
.xf{left:585.439122pt;}
.x11{left:665.439734pt;}
.x1{left:672.959731pt;}
}




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