
    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_361a6ac5ada560c4ec3715ec.woff')format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_8f8759bdf1d209b7fd44e5ac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_582ebd9431bef36fa1bbdf09.woff')format("woff");}.ff3{font-family:ff3;line-height:0.806000;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_5a0528196860b15f1f5bcad3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.806000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d59ce895ad80e47cc349807c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.766000;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_c56514fd834a1e1e09247b35.woff')format("woff");}.ff7{font-family:ff7;line-height:0.884000;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:ff8;src:url('chunks/assets/font_08db8e1644b105d1d08873da.woff')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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:ff9;src:url('chunks/assets/font_56642b14d0df37d918cd5f44.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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;}
}
.ws1{word-spacing:-14.585495px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-8.128844px;}
._16{margin-left:-5.834751px;}
._14{margin-left:-4.693581px;}
._13{margin-left:-1.486095px;}
._5{width:1.225670px;}
._3{width:2.251680px;}
._7{width:3.412183px;}
._f{width:5.249880px;}
._2{width:6.975413px;}
._c{width:8.392527px;}
._12{width:10.083523px;}
._8{width:11.694557px;}
._1{width:12.919324px;}
._a{width:15.247230px;}
._9{width:16.845857px;}
._19{width:18.335806px;}
._0{width:19.987565px;}
._17{width:21.556898px;}
._4{width:22.628975px;}
._6{width:24.892070px;}
._18{width:26.333537px;}
._b{width:27.625551px;}
._11{width:28.933196px;}
._d{width:30.001850px;}
._15{width:33.405267px;}
._1a{width:40.793973px;}
._1b{width:60.956459px;}
._e{width:81.171978px;}
.fc3{color:transparent;}
.fc2{color:rgb(205,125,100);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(25,25,25);}
.fs7{font-size:48.018742px;}
.fs6{font-size:48.019141px;}
.fs5{font-size:51.019060px;}
.fs0{font-size:54.020354px;}
.fs1{font-size:54.290457px;}
.fs4{font-size:72.027138px;}
.fs2{font-size:84.001650px;}
.fs3{font-size:300.083082px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y50{bottom:3.009968px;}
.y52{bottom:3.032648px;}
.y3e{bottom:3.354090px;}
.y4f{bottom:16.015152px;}
.y3d{bottom:18.234649px;}
.y3c{bottom:33.115208px;}
.y4e{bottom:45.135019px;}
.y3b{bottom:47.995767px;}
.y51{bottom:51.615019px;}
.y3a{bottom:62.876326px;}
.y39{bottom:77.756885px;}
.y38{bottom:92.637444px;}
.y2a{bottom:109.895029px;}
.y37{bottom:122.398562px;}
.y7b{bottom:124.320030px;}
.y29{bottom:125.650965px;}
.yf{bottom:133.880990px;}
.y36{bottom:137.279121px;}
.y7a{bottom:140.075966px;}
.y28{bottom:141.406902px;}
.ye{bottom:149.636926px;}
.y35{bottom:152.159681px;}
.y79{bottom:155.831903px;}
.y27{bottom:157.162838px;}
.yd{bottom:165.392863px;}
.y34{bottom:167.040240px;}
.y78{bottom:171.587839px;}
.y26{bottom:172.918775px;}
.yc{bottom:181.148799px;}
.y33{bottom:181.920799px;}
.y77{bottom:187.343775px;}
.y25{bottom:188.674711px;}
.y32{bottom:196.801358px;}
.yb{bottom:196.904736px;}
.y76{bottom:203.099712px;}
.ya{bottom:212.660672px;}
.y24{bottom:220.434703px;}
.y9{bottom:228.416609px;}
.y75{bottom:234.611585px;}
.y23{bottom:236.190639px;}
.y8{bottom:244.172545px;}
.y74{bottom:250.367521px;}
.y22{bottom:251.946576px;}
.y73{bottom:266.123458px;}
.y21{bottom:267.702512px;}
.y7{bottom:275.684418px;}
.y72{bottom:281.879394px;}
.y6{bottom:291.440354px;}
.y71{bottom:297.635331px;}
.y5{bottom:307.196291px;}
.y20{bottom:322.952209px;}
.y4{bottom:322.952227px;}
.y70{bottom:335.411033px;}
.y1f{bottom:338.708145px;}
.y3{bottom:338.708164px;}
.y6f{bottom:351.166969px;}
.y6b{bottom:352.348526px;}
.y1e{bottom:354.464082px;}
.y2{bottom:354.464100px;}
.y6e{bottom:366.922906px;}
.y6a{bottom:368.104462px;}
.y1d{bottom:370.220018px;}
.y6d{bottom:382.678842px;}
.y69{bottom:383.860399px;}
.y1c{bottom:385.975955px;}
.y14{bottom:387.101379px;}
.y6c{bottom:398.434779px;}
.y68{bottom:399.616335px;}
.y1b{bottom:401.731891px;}
.y13{bottom:402.857315px;}
.y67{bottom:415.372272px;}
.y1a{bottom:417.487827px;}
.y12{bottom:418.613252px;}
.y66{bottom:431.128208px;}
.y19{bottom:433.243764px;}
.y11{bottom:434.369188px;}
.y65{bottom:446.884145px;}
.y18{bottom:448.999700px;}
.y10{bottom:450.125124px;}
.y4d{bottom:462.640071px;}
.y4c{bottom:478.396008px;}
.y64{bottom:478.396018px;}
.y4b{bottom:494.151944px;}
.y63{bottom:494.151954px;}
.y4a{bottom:509.907880px;}
.y62{bottom:509.907891px;}
.y49{bottom:525.663817px;}
.y61{bottom:525.663827px;}
.y48{bottom:541.419753px;}
.y60{bottom:541.419763px;}
.y47{bottom:557.175690px;}
.y5f{bottom:557.175700px;}
.y46{bottom:572.931626px;}
.y2c{bottom:574.596553px;}
.y45{bottom:588.687563px;}
.y57{bottom:593.972072px;}
.y2b{bottom:601.606730px;}
.y56{bottom:609.728009px;}
.y44{bottom:620.199436px;}
.y55{bottom:625.483945px;}
.y43{bottom:635.955372px;}
.y54{bottom:641.239882px;}
.y42{bottom:651.711309px;}
.y53{bottom:656.995818px;}
.y41{bottom:667.467245px;}
.y40{bottom:683.223182px;}
.y3f{bottom:698.979118px;}
.y5e{bottom:718.161749px;}
.y5d{bottom:733.917685px;}
.y7f{bottom:740.563703px;}
.y5c{bottom:749.673622px;}
.y7e{bottom:756.319640px;}
.y5b{bottom:765.429558px;}
.y7d{bottom:772.075576px;}
.y5a{bottom:781.185495px;}
.y7c{bottom:787.831513px;}
.y59{bottom:796.941431px;}
.y58{bottom:812.697368px;}
.y2f{bottom:874.158746px;}
.y2e{bottom:901.168923px;}
.y2d{bottom:928.179100px;}
.y31{bottom:983.294980px;}
.y15{bottom:1039.368636px;}
.y16{bottom:1124.358994px;}
.y17{bottom:1127.674810px;}
.y30{bottom:1201.916996px;}
.hf{height:14.039999px;}
.hd{height:27.359999px;}
.h10{height:36.014056px;}
.he{height:36.014356px;}
.hb{height:38.264295px;}
.hc{height:40.515265px;}
.h3{height:41.055469px;}
.h4{height:41.260747px;}
.h8{height:54.020354px;}
.h9{height:54.740625px;}
.h5{height:66.613308px;}
.ha{height:208.799991px;}
.h6{height:237.965884px;}
.h7{height:285.078928px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:89.279996px;}
.w4{width:117.359995px;}
.w3{width:441.359982px;}
.w2{width:860.759964px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:36.607537px;}
.xc{left:56.879998px;}
.x1{left:63.023743px;}
.x8{left:68.383181px;}
.xb{left:163.170110px;}
.x4{left:196.843746px;}
.x3{left:200.159559px;}
.x2{left:270.346629px;}
.xa{left:331.503809px;}
.x7{left:377.467946px;}
.xd{left:478.656632px;}
.xe{left:482.039980px;}
.x5{left:485.161414px;}
.xf{left:686.519971px;}
.x6{left:698.723753px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-12.964885pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-7.225640pt;}
._16{margin-left:-5.186445pt;}
._14{margin-left:-4.172072pt;}
._13{margin-left:-1.320974pt;}
._5{width:1.089484pt;}
._3{width:2.001493pt;}
._7{width:3.033052pt;}
._f{width:4.666560pt;}
._2{width:6.200367pt;}
._c{width:7.460024pt;}
._12{width:8.963132pt;}
._8{width:10.395162pt;}
._1{width:11.483843pt;}
._a{width:13.553094pt;}
._9{width:14.974095pt;}
._19{width:16.298494pt;}
._0{width:17.766725pt;}
._17{width:19.161687pt;}
._4{width:20.114644pt;}
._6{width:22.126285pt;}
._18{width:23.407588pt;}
._b{width:24.556045pt;}
._11{width:25.718397pt;}
._d{width:26.668311pt;}
._15{width:29.693570pt;}
._1a{width:36.261309pt;}
._1b{width:54.183519pt;}
._e{width:72.152869pt;}
.fs7{font-size:42.683326pt;}
.fs6{font-size:42.683681pt;}
.fs5{font-size:45.350275pt;}
.fs0{font-size:48.018092pt;}
.fs1{font-size:48.258184pt;}
.fs4{font-size:64.024123pt;}
.fs2{font-size:74.668133pt;}
.fs3{font-size:266.740518pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y50{bottom:2.675527pt;}
.y52{bottom:2.695687pt;}
.y3e{bottom:2.981413pt;}
.y4f{bottom:14.235690pt;}
.y3d{bottom:16.208577pt;}
.y3c{bottom:29.435741pt;}
.y4e{bottom:40.120017pt;}
.y3b{bottom:42.662904pt;}
.y51{bottom:45.880016pt;}
.y3a{bottom:55.890068pt;}
.y39{bottom:69.117231pt;}
.y38{bottom:82.344395pt;}
.y2a{bottom:97.684470pt;}
.y37{bottom:108.798722pt;}
.y7b{bottom:110.506693pt;}
.y29{bottom:111.689747pt;}
.yf{bottom:119.005324pt;}
.y36{bottom:122.025886pt;}
.y7a{bottom:124.511970pt;}
.y28{bottom:125.695024pt;}
.ye{bottom:133.010601pt;}
.y35{bottom:135.253049pt;}
.y79{bottom:138.517247pt;}
.y27{bottom:139.700301pt;}
.yd{bottom:147.015878pt;}
.y34{bottom:148.480213pt;}
.y78{bottom:152.522524pt;}
.y26{bottom:153.705578pt;}
.yc{bottom:161.021155pt;}
.y33{bottom:161.707377pt;}
.y77{bottom:166.527800pt;}
.y25{bottom:167.710854pt;}
.y32{bottom:174.934540pt;}
.yb{bottom:175.026432pt;}
.y76{bottom:180.533077pt;}
.ya{bottom:189.031709pt;}
.y24{bottom:195.941958pt;}
.y9{bottom:203.036985pt;}
.y75{bottom:208.543631pt;}
.y23{bottom:209.947235pt;}
.y8{bottom:217.042262pt;}
.y74{bottom:222.548908pt;}
.y22{bottom:223.952512pt;}
.y73{bottom:236.554185pt;}
.y21{bottom:237.957788pt;}
.y7{bottom:245.052816pt;}
.y72{bottom:250.559462pt;}
.y6{bottom:259.058093pt;}
.y71{bottom:264.564738pt;}
.y5{bottom:273.063370pt;}
.y20{bottom:287.068630pt;}
.y4{bottom:287.068647pt;}
.y70{bottom:298.143140pt;}
.y1f{bottom:301.073907pt;}
.y3{bottom:301.073923pt;}
.y6f{bottom:312.148417pt;}
.y6b{bottom:313.198690pt;}
.y1e{bottom:315.079184pt;}
.y2{bottom:315.079200pt;}
.y6e{bottom:326.153694pt;}
.y6a{bottom:327.203967pt;}
.y1d{bottom:329.084461pt;}
.y6d{bottom:340.158971pt;}
.y69{bottom:341.209243pt;}
.y1c{bottom:343.089737pt;}
.y14{bottom:344.090114pt;}
.y6c{bottom:354.164248pt;}
.y68{bottom:355.214520pt;}
.y1b{bottom:357.095014pt;}
.y13{bottom:358.095391pt;}
.y67{bottom:369.219797pt;}
.y1a{bottom:371.100291pt;}
.y12{bottom:372.100668pt;}
.y66{bottom:383.225074pt;}
.y19{bottom:385.105568pt;}
.y11{bottom:386.105945pt;}
.y65{bottom:397.230351pt;}
.y18{bottom:399.110845pt;}
.y10{bottom:400.111222pt;}
.y4d{bottom:411.235619pt;}
.y4c{bottom:425.240896pt;}
.y64{bottom:425.240905pt;}
.y4b{bottom:439.246172pt;}
.y63{bottom:439.246181pt;}
.y4a{bottom:453.251449pt;}
.y62{bottom:453.251458pt;}
.y49{bottom:467.256726pt;}
.y61{bottom:467.256735pt;}
.y48{bottom:481.262003pt;}
.y60{bottom:481.262012pt;}
.y47{bottom:495.267280pt;}
.y5f{bottom:495.267289pt;}
.y46{bottom:509.272557pt;}
.y2c{bottom:510.752491pt;}
.y45{bottom:523.277834pt;}
.y57{bottom:527.975175pt;}
.y2b{bottom:534.761537pt;}
.y56{bottom:541.980452pt;}
.y44{bottom:551.288387pt;}
.y55{bottom:555.985729pt;}
.y43{bottom:565.293664pt;}
.y54{bottom:569.991006pt;}
.y42{bottom:579.298941pt;}
.y53{bottom:583.996283pt;}
.y41{bottom:593.304218pt;}
.y40{bottom:607.309495pt;}
.y3f{bottom:621.314772pt;}
.y5e{bottom:638.365999pt;}
.y5d{bottom:652.371276pt;}
.y7f{bottom:658.278847pt;}
.y5c{bottom:666.376553pt;}
.y7e{bottom:672.284124pt;}
.y5b{bottom:680.381830pt;}
.y7d{bottom:686.289401pt;}
.y5a{bottom:694.387106pt;}
.y7c{bottom:700.294678pt;}
.y59{bottom:708.392383pt;}
.y58{bottom:722.397660pt;}
.y2f{bottom:777.029996pt;}
.y2e{bottom:801.039042pt;}
.y2d{bottom:825.048089pt;}
.y31{bottom:874.039982pt;}
.y15{bottom:923.883232pt;}
.y16{bottom:999.430217pt;}
.y17{bottom:1002.377609pt;}
.y30{bottom:1068.370663pt;}
.hf{height:12.479999pt;}
.hd{height:24.319999pt;}
.h10{height:32.012495pt;}
.he{height:32.012761pt;}
.hb{height:34.012706pt;}
.hc{height:36.013569pt;}
.h3{height:36.493750pt;}
.h4{height:36.676220pt;}
.h8{height:48.018092pt;}
.h9{height:48.658333pt;}
.h5{height:59.211830pt;}
.ha{height:185.599992pt;}
.h6{height:211.525230pt;}
.h7{height:253.403492pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:79.359997pt;}
.w4{width:104.319996pt;}
.w3{width:392.319984pt;}
.w2{width:765.119968pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:32.540033pt;}
.xc{left:50.559998pt;}
.x1{left:56.021105pt;}
.x8{left:60.785050pt;}
.xb{left:145.040097pt;}
.x4{left:174.972218pt;}
.x3{left:177.919608pt;}
.x2{left:240.308115pt;}
.xa{left:294.670053pt;}
.x7{left:335.527063pt;}
.xd{left:425.472561pt;}
.xe{left:428.479982pt;}
.x5{left:431.254590pt;}
.xf{left:610.239975pt;}
.x6{left:621.087781pt;}
}




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