
    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_108d6181cdd1174fe120302d.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_4f57e19eaf5da5fa6149d15c.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_9ba3b1aac9f917fa4e6f6439.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8163403d0dc1214d5db4c832.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_adebf5f8277febe8390c0bc0.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8eaa7999fa3a0fecd3e7dbfb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5f4111e05094051aca3d5e8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885254;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;}
.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;}
}
.ws3{word-spacing:-36.000000px;}
.ws0{word-spacing:-33.000001px;}
.ws1{word-spacing:-22.500000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-8.125140px;}
._e{margin-left:-6.609375px;}
._2{margin-left:-4.952099px;}
._1{margin-left:-3.239958px;}
._0{margin-left:-2.103774px;}
._4{margin-left:-1.016549px;}
._13{width:2.671873px;}
._5{width:4.500000px;}
._6{width:9.000000px;}
._7{width:13.500003px;}
._9{width:22.500002px;}
._b{width:26.999990px;}
._a{width:31.499999px;}
._8{width:36.000001px;}
._16{width:44.171022px;}
._17{width:45.828956px;}
._d{width:49.776327px;}
._c{width:54.000000px;}
._12{width:58.499997px;}
._11{width:63.000000px;}
._10{width:121.500014px;}
._f{width:126.000002px;}
._15{width:130.500000px;}
._14{width:135.000000px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.999997px;}
.fs3{font-size:90.000000px;}
.fs1{font-size:114.000003px;}
.y0{bottom:0.000000px;}
.y2f{bottom:20.160278px;}
.y2{bottom:38.523194px;}
.y2e{bottom:39.996093px;}
.y50{bottom:60.040093px;}
.y73{bottom:60.040288px;}
.y2d{bottom:112.100458px;}
.y72{bottom:113.632315px;}
.y2c{bottom:133.919854px;}
.y71{bottom:144.679683px;}
.y2b{bottom:155.739253px;}
.y4f{bottom:170.552498px;}
.y70{bottom:175.727046px;}
.y2a{bottom:177.558658px;}
.y8b{bottom:180.643069px;}
.y29{bottom:199.378048px;}
.y4e{bottom:201.599849px;}
.y8a{bottom:204.446048px;}
.y6f{bottom:206.774409px;}
.y28{bottom:221.197453px;}
.y89{bottom:228.249030px;}
.y4d{bottom:232.647205px;}
.y6e{bottom:237.821773px;}
.y27{bottom:243.016843px;}
.y88{bottom:252.052009px;}
.y4c{bottom:263.694573px;}
.y26{bottom:264.836248px;}
.y6d{bottom:268.869136px;}
.y87{bottom:275.854987px;}
.y25{bottom:286.655638px;}
.y4b{bottom:294.741936px;}
.y86{bottom:299.657955px;}
.y6c{bottom:299.916499px;}
.y24{bottom:308.475043px;}
.y85{bottom:323.460934px;}
.y4a{bottom:325.789299px;}
.y23{bottom:330.877624px;}
.y6b{bottom:330.963863px;}
.y84{bottom:347.263913px;}
.y22{bottom:354.680603px;}
.y49{bottom:356.836663px;}
.y6a{bottom:362.011238px;}
.y83{bottom:371.066895px;}
.y21{bottom:377.900383px;}
.y48{bottom:387.884026px;}
.y69{bottom:393.058599px;}
.y82{bottom:394.869874px;}
.y20{bottom:400.302983px;}
.y81{bottom:418.672852px;}
.y47{bottom:418.931389px;}
.y1f{bottom:424.105959px;}
.y68{bottom:424.105963px;}
.y80{bottom:441.892453px;}
.ya6{bottom:447.908929px;}
.y1e{bottom:447.908937px;}
.y46{bottom:449.978753px;}
.y67{bottom:455.153326px;}
.y7f{bottom:466.044440px;}
.ya5{bottom:471.711908px;}
.y1d{bottom:471.711915px;}
.y45{bottom:481.026128px;}
.y66{bottom:486.200689px;}
.y7e{bottom:493.465573px;}
.y1c{bottom:495.514894px;}
.y44{bottom:512.073493px;}
.y7d{bottom:515.285158px;}
.y65{bottom:517.248052px;}
.y1b{bottom:519.317872px;}
.y7c{bottom:537.104368px;}
.ya4{bottom:543.120848px;}
.y1a{bottom:543.120850px;}
.y43{bottom:543.120856px;}
.y64{bottom:548.295412px;}
.y7b{bottom:558.923578px;}
.ya3{bottom:566.923827px;}
.y19{bottom:566.923829px;}
.y42{bottom:574.168219px;}
.y63{bottom:579.342771px;}
.y7a{bottom:580.743163px;}
.ya2{bottom:590.726805px;}
.y18{bottom:592.476380px;}
.y41{bottom:605.215582px;}
.y79{bottom:610.390131px;}
.y62{bottom:610.390134px;}
.ya1{bottom:614.529784px;}
.y17{bottom:619.897333px;}
.y40{bottom:636.262943px;}
.ya0{bottom:638.332763px;}
.y78{bottom:641.437494px;}
.y61{bottom:641.437498px;}
.y16{bottom:641.716738px;}
.y9f{bottom:662.135738px;}
.y15{bottom:663.536128px;}
.y3f{bottom:667.310296px;}
.y77{bottom:672.484858px;}
.y60{bottom:672.484861px;}
.y14{bottom:685.355533px;}
.y9e{bottom:685.938717px;}
.y3e{bottom:698.357659px;}
.y76{bottom:703.532221px;}
.y5f{bottom:703.532224px;}
.y13{bottom:707.174923px;}
.y9d{bottom:709.741695px;}
.y12{bottom:728.994328px;}
.y3d{bottom:729.405022px;}
.y9c{bottom:733.544674px;}
.y75{bottom:734.579584px;}
.y5e{bottom:734.579588px;}
.y11{bottom:750.813718px;}
.y9b{bottom:757.347652px;}
.y3c{bottom:760.452398px;}
.y5d{bottom:765.626948px;}
.y10{bottom:772.633123px;}
.y9a{bottom:781.150635px;}
.y3b{bottom:791.499763px;}
.yf{bottom:794.452513px;}
.y5c{bottom:796.674322px;}
.y99{bottom:804.953614px;}
.ye{bottom:816.271918px;}
.y3a{bottom:822.547126px;}
.y5b{bottom:827.721679px;}
.y74{bottom:827.721683px;}
.y98{bottom:828.756593px;}
.yd{bottom:838.091308px;}
.y97{bottom:852.559564px;}
.y39{bottom:853.594489px;}
.y5a{bottom:858.769042px;}
.yc{bottom:859.910698px;}
.y96{bottom:876.362543px;}
.yb{bottom:881.730103px;}
.y38{bottom:884.641853px;}
.y59{bottom:889.816405px;}
.y95{bottom:900.165529px;}
.ya{bottom:903.549493px;}
.y37{bottom:915.689212px;}
.y58{bottom:920.863769px;}
.y94{bottom:923.968507px;}
.y9{bottom:925.952089px;}
.y36{bottom:946.736572px;}
.y93{bottom:947.771483px;}
.y8{bottom:949.755067px;}
.y57{bottom:951.911132px;}
.y92{bottom:971.574463px;}
.y7{bottom:977.640389px;}
.y35{bottom:977.783935px;}
.y56{bottom:982.958495px;}
.y91{bottom:995.377442px;}
.y34{bottom:1008.831299px;}
.y55{bottom:1014.005859px;}
.y6{bottom:1015.328430px;}
.y90{bottom:1019.180419px;}
.y33{bottom:1039.878662px;}
.y8f{bottom:1042.983398px;}
.y54{bottom:1045.053222px;}
.y5{bottom:1053.016476px;}
.y8e{bottom:1066.786377px;}
.y32{bottom:1070.926025px;}
.y53{bottom:1076.100586px;}
.y8d{bottom:1090.589355px;}
.y4{bottom:1090.704530px;}
.y31{bottom:1101.973389px;}
.y52{bottom:1107.147949px;}
.y8c{bottom:1114.392334px;}
.y3{bottom:1128.392579px;}
.y30{bottom:1135.394531px;}
.y51{bottom:1138.195312px;}
.y1{bottom:1155.000000px;}
.h2{height:43.989259px;}
.hb{height:48.761719px;}
.h4{height:49.992188px;}
.h9{height:53.789061px;}
.h5{height:58.620119px;}
.h6{height:59.167970px;}
.h8{height:64.546875px;}
.ha{height:74.607419px;}
.h7{height:79.936523px;}
.h3{height:101.252932px;}
.hc{height:107.625000px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:135.000000px;}
.x4{left:162.000000px;}
.x2{left:776.669265px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws0{word-spacing:-29.333334pt;}
.ws1{word-spacing:-20.000000pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-7.222346pt;}
._e{margin-left:-5.875000pt;}
._2{margin-left:-4.401866pt;}
._1{margin-left:-2.879962pt;}
._0{margin-left:-1.870021pt;}
._4{margin-left:-0.903599pt;}
._13{width:2.374998pt;}
._5{width:4.000000pt;}
._6{width:8.000000pt;}
._7{width:12.000002pt;}
._9{width:20.000002pt;}
._b{width:23.999991pt;}
._a{width:27.999999pt;}
._8{width:32.000001pt;}
._16{width:39.263130pt;}
._17{width:40.736850pt;}
._d{width:44.245624pt;}
._c{width:48.000000pt;}
._12{width:51.999998pt;}
._11{width:56.000000pt;}
._10{width:108.000012pt;}
._f{width:112.000002pt;}
._15{width:116.000000pt;}
._14{width:120.000000pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666664pt;}
.fs3{font-size:80.000000pt;}
.fs1{font-size:101.333336pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:17.920247pt;}
.y2{bottom:34.242839pt;}
.y2e{bottom:35.552083pt;}
.y50{bottom:53.368972pt;}
.y73{bottom:53.369145pt;}
.y2d{bottom:99.644852pt;}
.y72{bottom:101.006502pt;}
.y2c{bottom:119.039870pt;}
.y71{bottom:128.604163pt;}
.y2b{bottom:138.434892pt;}
.y4f{bottom:151.602220pt;}
.y70{bottom:156.201818pt;}
.y2a{bottom:157.829919pt;}
.y8b{bottom:160.571617pt;}
.y29{bottom:177.224932pt;}
.y4e{bottom:179.199866pt;}
.y8a{bottom:181.729820pt;}
.y6f{bottom:183.799474pt;}
.y28{bottom:196.619959pt;}
.y89{bottom:202.888027pt;}
.y4d{bottom:206.797516pt;}
.y6e{bottom:211.397131pt;}
.y27{bottom:216.014972pt;}
.y88{bottom:224.046230pt;}
.y4c{bottom:234.395176pt;}
.y26{bottom:235.409999pt;}
.y6d{bottom:238.994788pt;}
.y87{bottom:245.204433pt;}
.y25{bottom:254.805012pt;}
.y4b{bottom:261.992832pt;}
.y86{bottom:266.362627pt;}
.y6c{bottom:266.592444pt;}
.y24{bottom:274.200039pt;}
.y85{bottom:287.520830pt;}
.y4a{bottom:289.590488pt;}
.y23{bottom:294.113443pt;}
.y6b{bottom:294.190100pt;}
.y84{bottom:308.679033pt;}
.y22{bottom:315.271647pt;}
.y49{bottom:317.188145pt;}
.y6a{bottom:321.787767pt;}
.y83{bottom:329.837240pt;}
.y21{bottom:335.911452pt;}
.y48{bottom:344.785801pt;}
.y69{bottom:349.385421pt;}
.y82{bottom:350.995443pt;}
.y20{bottom:355.824873pt;}
.y81{bottom:372.153647pt;}
.y47{bottom:372.383457pt;}
.y1f{bottom:376.983074pt;}
.y68{bottom:376.983078pt;}
.y80{bottom:392.793292pt;}
.ya6{bottom:398.141270pt;}
.y1e{bottom:398.141277pt;}
.y46{bottom:399.981113pt;}
.y67{bottom:404.580734pt;}
.y7f{bottom:414.261725pt;}
.ya5{bottom:419.299473pt;}
.y1d{bottom:419.299480pt;}
.y45{bottom:427.578780pt;}
.y66{bottom:432.178390pt;}
.y7e{bottom:438.636065pt;}
.y1c{bottom:440.457683pt;}
.y44{bottom:455.176438pt;}
.y7d{bottom:458.031252pt;}
.y65{bottom:459.776047pt;}
.y1b{bottom:461.615886pt;}
.y7c{bottom:477.426105pt;}
.ya4{bottom:482.774088pt;}
.y1a{bottom:482.774089pt;}
.y43{bottom:482.774094pt;}
.y64{bottom:487.373700pt;}
.y7b{bottom:496.820959pt;}
.ya3{bottom:503.932290pt;}
.y19{bottom:503.932292pt;}
.y42{bottom:510.371750pt;}
.y63{bottom:514.971352pt;}
.y7a{bottom:516.216145pt;}
.ya2{bottom:525.090494pt;}
.y18{bottom:526.645671pt;}
.y41{bottom:537.969407pt;}
.y79{bottom:542.569005pt;}
.y62{bottom:542.569008pt;}
.ya1{bottom:546.248697pt;}
.y17{bottom:551.019852pt;}
.y40{bottom:565.567060pt;}
.ya0{bottom:567.406900pt;}
.y78{bottom:570.166661pt;}
.y61{bottom:570.166665pt;}
.y16{bottom:570.414879pt;}
.y9f{bottom:588.565101pt;}
.y15{bottom:589.809892pt;}
.y3f{bottom:593.164707pt;}
.y77{bottom:597.764318pt;}
.y60{bottom:597.764321pt;}
.y14{bottom:609.204919pt;}
.y9e{bottom:609.723304pt;}
.y3e{bottom:620.762363pt;}
.y76{bottom:625.361974pt;}
.y5f{bottom:625.361977pt;}
.y13{bottom:628.599932pt;}
.y9d{bottom:630.881507pt;}
.y12{bottom:647.994959pt;}
.y3d{bottom:648.360020pt;}
.y9c{bottom:652.039710pt;}
.y75{bottom:652.959630pt;}
.y5e{bottom:652.959633pt;}
.y11{bottom:667.389972pt;}
.y9b{bottom:673.197913pt;}
.y3c{bottom:675.957687pt;}
.y5d{bottom:680.557287pt;}
.y10{bottom:686.784999pt;}
.y9a{bottom:694.356120pt;}
.y3b{bottom:703.555345pt;}
.yf{bottom:706.180012pt;}
.y5c{bottom:708.154953pt;}
.y99{bottom:715.514323pt;}
.ye{bottom:725.575039pt;}
.y3a{bottom:731.153001pt;}
.y5b{bottom:735.752604pt;}
.y74{bottom:735.752607pt;}
.y98{bottom:736.672527pt;}
.yd{bottom:744.970052pt;}
.y97{bottom:757.830723pt;}
.y39{bottom:758.750657pt;}
.y5a{bottom:763.350260pt;}
.yc{bottom:764.365065pt;}
.y96{bottom:778.988927pt;}
.yb{bottom:783.760092pt;}
.y38{bottom:786.348313pt;}
.y59{bottom:790.947916pt;}
.y95{bottom:800.147136pt;}
.ya{bottom:803.155105pt;}
.y37{bottom:813.945967pt;}
.y58{bottom:818.545573pt;}
.y94{bottom:821.305340pt;}
.y9{bottom:823.068523pt;}
.y36{bottom:841.543620pt;}
.y93{bottom:842.463540pt;}
.y8{bottom:844.226727pt;}
.y57{bottom:846.143229pt;}
.y92{bottom:863.621744pt;}
.y7{bottom:869.013679pt;}
.y35{bottom:869.141276pt;}
.y56{bottom:873.740885pt;}
.y91{bottom:884.779948pt;}
.y34{bottom:896.738932pt;}
.y55{bottom:901.338541pt;}
.y6{bottom:902.514160pt;}
.y90{bottom:905.938151pt;}
.y33{bottom:924.336589pt;}
.y8f{bottom:927.096354pt;}
.y54{bottom:928.936197pt;}
.y5{bottom:936.014646pt;}
.y8e{bottom:948.254557pt;}
.y32{bottom:951.934245pt;}
.y53{bottom:956.533854pt;}
.y8d{bottom:969.412760pt;}
.y4{bottom:969.515138pt;}
.y31{bottom:979.531901pt;}
.y52{bottom:984.131510pt;}
.y8c{bottom:990.570963pt;}
.y3{bottom:1003.015626pt;}
.y30{bottom:1009.239583pt;}
.y51{bottom:1011.729167pt;}
.y1{bottom:1026.666667pt;}
.h2{height:39.101563pt;}
.hb{height:43.343750pt;}
.h4{height:44.437500pt;}
.h9{height:47.812499pt;}
.h5{height:52.106772pt;}
.h6{height:52.593751pt;}
.h8{height:57.375000pt;}
.ha{height:66.317706pt;}
.h7{height:71.054688pt;}
.h3{height:90.002607pt;}
.hc{height:95.666667pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:120.000000pt;}
.x4{left:144.000000pt;}
.x2{left:690.372680pt;}
}




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