
    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_42c549cdf59e069f424f6bc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_a63d7481647db952025a686e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_4b41e7fd15858e24d8c5ffdf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_522eb0b2a5c82ed61b080a0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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:ff5;src:url('chunks/assets/font_bc920ba2e818759345a059a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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:ff6;src:url('chunks/assets/font_7f7c266d6407e9fbacbc5350.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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:ff7;src:url('chunks/assets/font_4d84275f6d7b36040073b57f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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;}
.v3{vertical-align:21.374999px;}
.v4{vertical-align:25.649999px;}
.v1{vertical-align:34.199999px;}
.v2{vertical-align:38.474998px;}
.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:-11.877319px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:167.827119px;}
.ws8{word-spacing:321.522548px;}
.ws9{word-spacing:360.498567px;}
.ws2{word-spacing:869.515760px;}
.ws1{word-spacing:961.403209px;}
.ws7{word-spacing:971.130503px;}
.wsd{word-spacing:973.301401px;}
.wsc{word-spacing:976.474252px;}
.ws4{word-spacing:1076.419072px;}
.ws6{word-spacing:1080.364262px;}
.wsa{word-spacing:1101.760135px;}
.ws5{word-spacing:1104.160648px;}
._9{margin-left:-6.262207px;}
._a{margin-left:-4.738395px;}
._1{margin-left:-3.172851px;}
._0{margin-left:-1.544680px;}
._3{width:26.493334px;}
._8{width:39.810961px;}
._f{width:158.625896px;}
._4{width:223.544105px;}
._6{width:227.468422px;}
._2{width:251.223060px;}
._7{width:320.107333px;}
._5{width:336.827426px;}
._10{width:985.178720px;}
._e{width:988.351572px;}
._c{width:1135.012453px;}
._d{width:1139.750856px;}
._b{width:1142.109620px;}
.fc3{color:rgb(14,32,52);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(66,80,96);}
.fc0{color:rgb(59,78,96);}
.fs3{font-size:38.474998px;}
.fs2{font-size:42.749998px;}
.fs1{font-size:68.399997px;}
.fs0{font-size:85.499996px;}
.y0{bottom:0.000000px;}
.y34{bottom:25.683726px;}
.y6e{bottom:32.096226px;}
.y6f{bottom:42.783725px;}
.y33{bottom:43.852475px;}
.y6d{bottom:47.058725px;}
.y32{bottom:62.021225px;}
.y30{bottom:76.983724px;}
.y31{bottom:80.189974px;}
.y6c{bottom:81.258724px;}
.y6b{bottom:99.427473px;}
.y2f{bottom:110.114973px;}
.y6a{bottom:117.596222px;}
.y2e{bottom:119.733722px;}
.y66{bottom:135.764972px;}
.y2d{bottom:146.452471px;}
.y69{bottom:153.933721px;}
.y2c{bottom:164.621220px;}
.y29{bottom:167.827470px;}
.y68{bottom:172.102470px;}
.y2b{bottom:176.377470px;}
.y2a{bottom:188.133719px;}
.y67{bottom:190.271219px;}
.y28{bottom:206.302469px;}
.y65{bottom:208.439968px;}
.y64{bottom:213.783718px;}
.y27{bottom:224.471218px;}
.y26{bottom:236.227467px;}
.y63{bottom:238.364967px;}
.y25{bottom:247.983717px;}
.y62{bottom:250.121217px;}
.y5f{bottom:255.464967px;}
.y24{bottom:259.739966px;}
.y61{bottom:261.877466px;}
.y60{bottom:273.633716px;}
.y23{bottom:277.908716px;}
.y22{bottom:289.664965px;}
.y5e{bottom:291.802465px;}
.y5d{bottom:297.146215px;}
.y21{bottom:301.421215px;}
.y57{bottom:309.971214px;}
.y20{bottom:313.177464px;}
.y5c{bottom:321.727464px;}
.y5b{bottom:327.071214px;}
.y1f{bottom:331.346213px;}
.y13{bottom:339.896213px;}
.y1e{bottom:343.102463px;}
.y5a{bottom:351.652463px;}
.y1d{bottom:354.858712px;}
.y1c{bottom:366.614962px;}
.y59{bottom:369.821212px;}
.y58{bottom:375.164962px;}
.y1b{bottom:384.783711px;}
.y1a{bottom:396.539961px;}
.y56{bottom:399.746211px;}
.y19{bottom:408.296210px;}
.y55{bottom:411.502460px;}
.y18{bottom:420.052460px;}
.y54{bottom:423.258710px;}
.y50{bottom:428.602459px;}
.y53{bottom:435.014959px;}
.y17{bottom:438.221209px;}
.y52{bottom:446.771209px;}
.y16{bottom:449.977458px;}
.y51{bottom:458.527458px;}
.y15{bottom:461.733708px;}
.y14{bottom:473.489957px;}
.y4f{bottom:476.696207px;}
.y46{bottom:488.452457px;}
.y12{bottom:491.658707px;}
.y4c{bottom:493.796207px;}
.y4e{bottom:500.208706px;}
.y11{bottom:509.827456px;}
.y4d{bottom:511.964956px;}
.yd{bottom:518.377456px;}
.y10{bottom:521.583705px;}
.y4b{bottom:530.133705px;}
.yf{bottom:533.339955px;}
.y4a{bottom:541.889955px;}
.ye{bottom:545.096204px;}
.y47{bottom:553.646204px;}
.ya{bottom:563.264954px;}
.y49{bottom:565.402454px;}
.yc{bottom:569.677453px;}
.y8{bottom:575.021203px;}
.y48{bottom:577.158703px;}
.y86{bottom:578.227453px;}
.yb{bottom:581.433703px;}
.y9{bottom:586.777453px;}
.y85{bottom:589.983703px;}
.y45{bottom:595.327452px;}
.y7{bottom:604.946202px;}
.y43{bottom:613.496202px;}
.y5{bottom:616.702451px;}
.y6{bottom:628.458701px;}
.y44{bottom:631.664951px;}
.y84{bottom:637.008701px;}
.y4{bottom:646.627450px;}
.y83{bottom:648.764950px;}
.y42{bottom:649.833700px;}
.y41{bottom:655.177450px;}
.y3{bottom:660.521200px;}
.y82{bottom:678.689949px;}
.y40{bottom:679.758699px;}
.y3f{bottom:688.308699px;}
.y81{bottom:690.446198px;}
.y80{bottom:702.202448px;}
.y2{bottom:704.339948px;}
.y7f{bottom:713.958697px;}
.y3e{bottom:716.096197px;}
.y7a{bottom:719.302447px;}
.y7e{bottom:725.714947px;}
.y3d{bottom:734.264947px;}
.y7d{bottom:737.471196px;}
.y7c{bottom:749.227446px;}
.y3c{bottom:752.433696px;}
.y70{bottom:757.777446px;}
.y7b{bottom:760.983695px;}
.y3b{bottom:770.602445px;}
.y79{bottom:779.152445px;}
.y3a{bottom:788.771194px;}
.y78{bottom:790.908694px;}
.y75{bottom:796.252444px;}
.y77{bottom:802.664944px;}
.y35{bottom:806.939944px;}
.y76{bottom:814.421193px;}
.y39{bottom:825.108693px;}
.y74{bottom:832.589942px;}
.y1{bottom:835.796192px;}
.y38{bottom:843.277442px;}
.y73{bottom:844.346192px;}
.y71{bottom:856.102442px;}
.y37{bottom:861.446191px;}
.y72{bottom:867.858691px;}
.y36{bottom:879.614941px;}
.ha{height:28.029638px;}
.h5{height:31.123168px;}
.h4{height:31.144042px;}
.h3{height:49.797068px;}
.h9{height:56.794041px;}
.h2{height:62.246335px;}
.h6{height:65.344040px;}
.h8{height:69.619040px;}
.h7{height:90.994039px;}
.h0{height:892.439940px;}
.h1{height:892.500000px;}
.w2{width:1262.865187px;}
.w0{width:1262.879970px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:22.761034px;}
.x3{left:26.501659px;}
.x4{left:189.085251px;}
.x1{left:200.106735px;}
.x5{left:488.869614px;}
.x6{left:586.476538px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.999999pt;}
.v4{vertical-align:22.799999pt;}
.v1{vertical-align:30.399999pt;}
.v2{vertical-align:34.199999pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-10.557617pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:149.179661pt;}
.ws8{word-spacing:285.797821pt;}
.ws9{word-spacing:320.443171pt;}
.ws2{word-spacing:772.902898pt;}
.ws1{word-spacing:854.580630pt;}
.ws7{word-spacing:863.227114pt;}
.wsd{word-spacing:865.156801pt;}
.wsc{word-spacing:867.977113pt;}
.ws4{word-spacing:956.816953pt;}
.ws6{word-spacing:960.323789pt;}
.wsa{word-spacing:979.342342pt;}
.ws5{word-spacing:981.476131pt;}
._9{margin-left:-5.566406pt;}
._a{margin-left:-4.211907pt;}
._1{margin-left:-2.820312pt;}
._0{margin-left:-1.373049pt;}
._3{width:23.549630pt;}
._8{width:35.387521pt;}
._f{width:141.000797pt;}
._4{width:198.705871pt;}
._6{width:202.194153pt;}
._2{width:223.309387pt;}
._7{width:284.539852pt;}
._5{width:299.402157pt;}
._10{width:875.714418pt;}
._e{width:878.534730pt;}
._c{width:1008.899958pt;}
._d{width:1013.111872pt;}
._b{width:1015.208551pt;}
.fs3{font-size:34.199999pt;}
.fs2{font-size:37.999998pt;}
.fs1{font-size:60.799997pt;}
.fs0{font-size:75.999997pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:22.829979pt;}
.y6e{bottom:28.529979pt;}
.y6f{bottom:38.029978pt;}
.y33{bottom:38.979978pt;}
.y6d{bottom:41.829978pt;}
.y32{bottom:55.129977pt;}
.y30{bottom:68.429977pt;}
.y31{bottom:71.279977pt;}
.y6c{bottom:72.229977pt;}
.y6b{bottom:88.379976pt;}
.y2f{bottom:97.879976pt;}
.y6a{bottom:104.529975pt;}
.y2e{bottom:106.429975pt;}
.y66{bottom:120.679975pt;}
.y2d{bottom:130.179974pt;}
.y69{bottom:136.829974pt;}
.y2c{bottom:146.329974pt;}
.y29{bottom:149.179974pt;}
.y68{bottom:152.979973pt;}
.y2b{bottom:156.779973pt;}
.y2a{bottom:167.229973pt;}
.y67{bottom:169.129973pt;}
.y28{bottom:183.379972pt;}
.y65{bottom:185.279972pt;}
.y64{bottom:190.029972pt;}
.y27{bottom:199.529971pt;}
.y26{bottom:209.979971pt;}
.y63{bottom:211.879971pt;}
.y25{bottom:220.429971pt;}
.y62{bottom:222.329970pt;}
.y5f{bottom:227.079970pt;}
.y24{bottom:230.879970pt;}
.y61{bottom:232.779970pt;}
.y60{bottom:243.229970pt;}
.y23{bottom:247.029969pt;}
.y22{bottom:257.479969pt;}
.y5e{bottom:259.379969pt;}
.y5d{bottom:264.129969pt;}
.y21{bottom:267.929969pt;}
.y57{bottom:275.529968pt;}
.y20{bottom:278.379968pt;}
.y5c{bottom:285.979968pt;}
.y5b{bottom:290.729968pt;}
.y1f{bottom:294.529967pt;}
.y13{bottom:302.129967pt;}
.y1e{bottom:304.979967pt;}
.y5a{bottom:312.579967pt;}
.y1d{bottom:315.429967pt;}
.y1c{bottom:325.879966pt;}
.y59{bottom:328.729966pt;}
.y58{bottom:333.479966pt;}
.y1b{bottom:342.029965pt;}
.y1a{bottom:352.479965pt;}
.y56{bottom:355.329965pt;}
.y19{bottom:362.929965pt;}
.y55{bottom:365.779964pt;}
.y18{bottom:373.379964pt;}
.y54{bottom:376.229964pt;}
.y50{bottom:380.979964pt;}
.y53{bottom:386.679964pt;}
.y17{bottom:389.529963pt;}
.y52{bottom:397.129963pt;}
.y16{bottom:399.979963pt;}
.y51{bottom:407.579963pt;}
.y15{bottom:410.429963pt;}
.y14{bottom:420.879962pt;}
.y4f{bottom:423.729962pt;}
.y46{bottom:434.179962pt;}
.y12{bottom:437.029962pt;}
.y4c{bottom:438.929961pt;}
.y4e{bottom:444.629961pt;}
.y11{bottom:453.179961pt;}
.y4d{bottom:455.079961pt;}
.yd{bottom:460.779961pt;}
.y10{bottom:463.629960pt;}
.y4b{bottom:471.229960pt;}
.yf{bottom:474.079960pt;}
.y4a{bottom:481.679960pt;}
.ye{bottom:484.529960pt;}
.y47{bottom:492.129959pt;}
.ya{bottom:500.679959pt;}
.y49{bottom:502.579959pt;}
.yc{bottom:506.379959pt;}
.y8{bottom:511.129958pt;}
.y48{bottom:513.029958pt;}
.y86{bottom:513.979958pt;}
.yb{bottom:516.829958pt;}
.y9{bottom:521.579958pt;}
.y85{bottom:524.429958pt;}
.y45{bottom:529.179958pt;}
.y7{bottom:537.729957pt;}
.y43{bottom:545.329957pt;}
.y5{bottom:548.179957pt;}
.y6{bottom:558.629956pt;}
.y44{bottom:561.479956pt;}
.y84{bottom:566.229956pt;}
.y4{bottom:574.779956pt;}
.y83{bottom:576.679956pt;}
.y42{bottom:577.629956pt;}
.y41{bottom:582.379955pt;}
.y3{bottom:587.129955pt;}
.y82{bottom:603.279955pt;}
.y40{bottom:604.229955pt;}
.y3f{bottom:611.829954pt;}
.y81{bottom:613.729954pt;}
.y80{bottom:624.179954pt;}
.y2{bottom:626.079954pt;}
.y7f{bottom:634.629953pt;}
.y3e{bottom:636.529953pt;}
.y7a{bottom:639.379953pt;}
.y7e{bottom:645.079953pt;}
.y3d{bottom:652.679953pt;}
.y7d{bottom:655.529952pt;}
.y7c{bottom:665.979952pt;}
.y3c{bottom:668.829952pt;}
.y70{bottom:673.579952pt;}
.y7b{bottom:676.429952pt;}
.y3b{bottom:684.979951pt;}
.y79{bottom:692.579951pt;}
.y3a{bottom:701.129951pt;}
.y78{bottom:703.029950pt;}
.y75{bottom:707.779950pt;}
.y77{bottom:713.479950pt;}
.y35{bottom:717.279950pt;}
.y76{bottom:723.929950pt;}
.y39{bottom:733.429949pt;}
.y74{bottom:740.079949pt;}
.y1{bottom:742.929949pt;}
.y38{bottom:749.579948pt;}
.y73{bottom:750.529948pt;}
.y71{bottom:760.979948pt;}
.y37{bottom:765.729948pt;}
.y72{bottom:771.429948pt;}
.y36{bottom:781.879947pt;}
.ha{height:24.915233pt;}
.h5{height:27.665038pt;}
.h4{height:27.683593pt;}
.h3{height:44.264061pt;}
.h9{height:50.483592pt;}
.h2{height:55.330076pt;}
.h6{height:58.083591pt;}
.h8{height:61.883591pt;}
.h7{height:80.883590pt;}
.h0{height:793.279947pt;}
.h1{height:793.333333pt;}
.w2{width:1122.546833pt;}
.w0{width:1122.559973pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:20.232030pt;}
.x3{left:23.557030pt;}
.x4{left:168.075779pt;}
.x1{left:177.872654pt;}
.x5{left:434.550768pt;}
.x6{left:521.312478pt;}
}




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