
    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_04974982c4bfe32b909c4cce.woff')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_bf05c3712f2b939d04d35874.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bb749b08e9cb0f5546265125.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2d5c4d74f01f58c5748efb77.woff')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_155b1087d6dc00245a0e21e0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_90e8f6088cc2f8bfaa3501b9.woff')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;}
.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);}
.v2{vertical-align:-25.044874px;}
.v4{vertical-align:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.044881px;}
.v1{vertical-align:27.321681px;}
.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;}
}
.ws5{word-spacing:-33.000001px;}
.ws1{word-spacing:-18.336914px;}
.ws0{word-spacing:-12.002344px;}
.ws3{word-spacing:-11.002149px;}
.ws4{word-spacing:-10.001953px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-8.282852px;}
._0{margin-left:-6.679687px;}
._1{margin-left:-4.965828px;}
._4{margin-left:-3.956871px;}
._3{margin-left:-2.480462px;}
._2{margin-left:-1.300782px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:39.600001px;}
.fs2{font-size:43.200002px;}
.fs7{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y67{bottom:111.343876px;}
.yc6{bottom:117.399896px;}
.y66{bottom:128.592411px;}
.ya7{bottom:129.385994px;}
.yb7{bottom:130.796635px;}
.y29{bottom:149.124944px;}
.ya6{bottom:151.205564px;}
.y65{bottom:151.532963px;}
.yb6{bottom:152.615478px;}
.y28{bottom:170.944330px;}
.y8c{bottom:172.277339px;}
.ya5{bottom:173.025149px;}
.yb5{bottom:174.435794px;}
.y64{bottom:188.895272px;}
.y27{bottom:192.763728px;}
.y8b{bottom:194.096909px;}
.ya4{bottom:194.844723px;}
.yb4{bottom:196.255361px;}
.y3d{bottom:206.302739px;}
.y7a{bottom:208.477289px;}
.y63{bottom:210.714480px;}
.y26{bottom:214.583125px;}
.y8a{bottom:215.916498px;}
.ya3{bottom:216.664308px;}
.y3c{bottom:228.122137px;}
.y79{bottom:230.296882px;}
.y62{bottom:232.534057px;}
.y25{bottom:236.402523px;}
.y89{bottom:237.735706px;}
.ya2{bottom:238.483139px;}
.y3b{bottom:249.941534px;}
.y78{bottom:252.116459px;}
.y61{bottom:254.353274px;}
.y24{bottom:258.221920px;}
.y88{bottom:259.554914px;}
.ya1{bottom:260.302733px;}
.y3a{bottom:271.760921px;}
.y77{bottom:273.935666px;}
.y60{bottom:276.172859px;}
.y23{bottom:280.041317px;}
.y87{bottom:281.374508px;}
.ya0{bottom:282.122311px;}
.y5f{bottom:297.992069px;}
.y22{bottom:301.860714px;}
.y86{bottom:303.194086px;}
.y9f{bottom:303.941158px;}
.y5e{bottom:319.811639px;}
.y21{bottom:323.680111px;}
.y85{bottom:325.013294px;}
.y9e{bottom:325.760740px;}
.y5d{bottom:341.630864px;}
.y20{bottom:345.499508px;}
.yae{bottom:345.708989px;}
.y84{bottom:346.832515px;}
.y9d{bottom:347.580322px;}
.y5c{bottom:363.450434px;}
.y1f{bottom:367.318905px;}
.yad{bottom:367.528556px;}
.y83{bottom:368.652097px;}
.y9c{bottom:369.399899px;}
.y5b{bottom:385.269659px;}
.y1e{bottom:389.138302px;}
.yac{bottom:389.347412px;}
.y82{bottom:390.471674px;}
.y9b{bottom:391.219484px;}
.y5a{bottom:407.089237px;}
.y1d{bottom:410.957699px;}
.yab{bottom:411.166984px;}
.y9a{bottom:413.038335px;}
.y81{bottom:424.174075px;}
.y59{bottom:428.908454px;}
.y1c{bottom:432.777104px;}
.yaa{bottom:432.986566px;}
.y99{bottom:434.857904px;}
.y58{bottom:450.728024px;}
.y1b{bottom:454.596495px;}
.ya9{bottom:454.805414px;}
.y98{bottom:456.677498px;}
.y1a{bottom:476.415892px;}
.ya8{bottom:476.624996px;}
.y97{bottom:478.496347px;}
.y80{bottom:480.028199px;}
.y57{bottom:484.430425px;}
.y19{bottom:498.235289px;}
.y96{bottom:500.315923px;}
.y7f{bottom:501.847409px;}
.y95{bottom:522.135505px;}
.y7e{bottom:523.666995px;}
.y18{bottom:531.937675px;}
.y56{bottom:540.284549px;}
.y94{bottom:543.955087px;}
.y7d{bottom:545.486572px;}
.y55{bottom:562.104122px;}
.y93{bottom:565.774664px;}
.y7c{bottom:567.305789px;}
.y76{bottom:569.403449px;}
.y54{bottom:583.923338px;}
.y17{bottom:587.791994px;}
.y7b{bottom:589.124996px;}
.y75{bottom:591.222659px;}
.y53{bottom:605.742916px;}
.y16{bottom:609.611388px;}
.y74{bottom:613.042237px;}
.y92{bottom:613.900628px;}
.y52{bottom:627.562124px;}
.y15{bottom:631.430785px;}
.y73{bottom:634.861454px;}
.y91{bottom:641.347409px;}
.y51{bottom:649.381710px;}
.yb3{bottom:651.472409px;}
.y14{bottom:653.250183px;}
.y72{bottom:656.681021px;}
.y90{bottom:663.166984px;}
.y50{bottom:671.200927px;}
.yb2{bottom:673.291984px;}
.y13{bottom:675.069580px;}
.y8f{bottom:684.986566px;}
.y4f{bottom:693.020504px;}
.yb1{bottom:695.110837px;}
.y12{bottom:696.888977px;}
.y8e{bottom:706.805414px;}
.y4e{bottom:714.839729px;}
.yb0{bottom:716.930414px;}
.y11{bottom:718.708374px;}
.y8d{bottom:728.624996px;}
.y4d{bottom:736.659307px;}
.yaf{bottom:738.749996px;}
.y10{bottom:740.527771px;}
.yd5{bottom:748.363769px;}
.y39{bottom:758.478513px;}
.yf{bottom:762.347168px;}
.yd4{bottom:770.182619px;}
.y38{bottom:780.297910px;}
.y4c{bottom:780.298098px;}
.ye{bottom:784.166565px;}
.yd3{bottom:792.002204px;}
.y4b{bottom:802.117307px;}
.y37{bottom:802.117308px;}
.yc5{bottom:802.117679px;}
.yd{bottom:805.985962px;}
.yd2{bottom:813.821039px;}
.yc4{bottom:823.936521px;}
.y36{bottom:823.936705px;}
.y4a{bottom:823.936884px;}
.yc{bottom:827.805359px;}
.yd1{bottom:835.641359px;}
.y49{bottom:845.756101px;}
.y35{bottom:845.756103px;}
.yc3{bottom:845.756110px;}
.yd0{bottom:857.460209px;}
.yb{bottom:861.507745px;}
.yc2{bottom:867.574956px;}
.y34{bottom:867.575500px;}
.y48{bottom:867.575687px;}
.ycf{bottom:879.280514px;}
.y47{bottom:889.394895px;}
.y33{bottom:889.394898px;}
.yc1{bottom:889.395265px;}
.yce{bottom:901.099369px;}
.yc0{bottom:911.214111px;}
.y32{bottom:911.214295px;}
.y46{bottom:911.214472px;}
.ya{bottom:917.362064px;}
.ycd{bottom:922.918951px;}
.y45{bottom:933.033689px;}
.y31{bottom:933.033693px;}
.ybf{bottom:933.034417px;}
.y71{bottom:943.148444px;}
.ycc{bottom:944.737799px;}
.y9{bottom:945.442672px;}
.y30{bottom:954.853089px;}
.y44{bottom:954.853274px;}
.ybe{bottom:954.853283px;}
.y70{bottom:964.968018px;}
.y8{bottom:967.262077px;}
.y2f{bottom:976.672487px;}
.y43{bottom:976.672489px;}
.ybd{bottom:976.672851px;}
.y7{bottom:983.396851px;}
.y6f{bottom:986.787603px;}
.ycb{bottom:992.863769px;}
.ybc{bottom:998.491699px;}
.y2e{bottom:998.491883px;}
.y42{bottom:998.492066px;}
.y6{bottom:1007.199829px;}
.y6e{bottom:1008.606812px;}
.y41{bottom:1020.311275px;}
.y2d{bottom:1020.311281px;}
.ybb{bottom:1020.311285px;}
.y6d{bottom:1030.426028px;}
.y5{bottom:1031.002808px;}
.yba{bottom:1042.130128px;}
.y2c{bottom:1042.130677px;}
.y40{bottom:1042.130860px;}
.yca{bottom:1046.617675px;}
.y6c{bottom:1052.245606px;}
.y4{bottom:1054.805786px;}
.y2b{bottom:1063.950075px;}
.y3f{bottom:1063.950078px;}
.yb9{bottom:1063.950439px;}
.yc9{bottom:1074.064453px;}
.y6b{bottom:1074.065192px;}
.y3{bottom:1078.608764px;}
.yb8{bottom:1085.769287px;}
.y2a{bottom:1085.769471px;}
.y3e{bottom:1085.769654px;}
.yc8{bottom:1095.884035px;}
.y6a{bottom:1095.884400px;}
.y2{bottom:1104.141540px;}
.y69{bottom:1117.703617px;}
.yc7{bottom:1117.704346px;}
.y1{bottom:1133.895263px;}
.y68{bottom:1139.523194px;}
.ha{height:26.226563px;}
.h5{height:28.829883px;}
.h4{height:28.849219px;}
.hb{height:43.710936px;}
.h8{height:48.049806px;}
.h6{height:48.082032px;}
.h2{height:52.453125px;}
.h9{height:53.894100px;}
.h3{height:58.772463px;}
.h1{height:65.522461px;}
.h7{height:69.937502px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x1{left:110.956205px;}
.x4{left:122.289700px;}
.x2{left:132.049955px;}
.x5{left:244.668607px;}
.x6{left:247.341076px;}
.x7{left:394.692649px;}
.x8{left:421.719581px;}
.x3{left:446.456700px;}
.xa{left:789.750000px;}
@media print{
.v2{vertical-align:-22.262110pt;}
.v4{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.262116pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-29.333334pt;}
.ws1{word-spacing:-16.299479pt;}
.ws0{word-spacing:-10.668750pt;}
.ws3{word-spacing:-9.779688pt;}
.ws4{word-spacing:-8.890625pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-7.362535pt;}
._0{margin-left:-5.937500pt;}
._1{margin-left:-4.414069pt;}
._4{margin-left:-3.517218pt;}
._3{margin-left:-2.204855pt;}
._2{margin-left:-1.156250pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:35.200001pt;}
.fs2{font-size:38.400002pt;}
.fs7{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:98.972334pt;}
.yc6{bottom:104.355463pt;}
.y66{bottom:114.304365pt;}
.ya7{bottom:115.009772pt;}
.yb7{bottom:116.263676pt;}
.y29{bottom:132.555505pt;}
.ya6{bottom:134.404945pt;}
.y65{bottom:134.695967pt;}
.yb6{bottom:135.658203pt;}
.y28{bottom:151.950516pt;}
.y8c{bottom:153.135412pt;}
.ya5{bottom:153.800132pt;}
.yb5{bottom:155.054039pt;}
.y64{bottom:167.906909pt;}
.y27{bottom:171.345536pt;}
.y8b{bottom:172.530586pt;}
.ya4{bottom:173.195309pt;}
.yb4{bottom:174.449210pt;}
.y3d{bottom:183.380212pt;}
.y7a{bottom:185.313145pt;}
.y63{bottom:187.301760pt;}
.y26{bottom:190.740556pt;}
.y8a{bottom:191.925776pt;}
.ya3{bottom:192.590496pt;}
.y3c{bottom:202.775233pt;}
.y79{bottom:204.708340pt;}
.y62{bottom:206.696940pt;}
.y25{bottom:210.135576pt;}
.y89{bottom:211.320628pt;}
.ya2{bottom:211.985012pt;}
.y3b{bottom:222.170252pt;}
.y78{bottom:224.103519pt;}
.y61{bottom:226.091799pt;}
.y24{bottom:229.530596pt;}
.y88{bottom:230.715479pt;}
.ya1{bottom:231.380207pt;}
.y3a{bottom:241.565263pt;}
.y77{bottom:243.498370pt;}
.y60{bottom:245.486985pt;}
.y23{bottom:248.925615pt;}
.y87{bottom:250.110674pt;}
.ya0{bottom:250.775387pt;}
.y5f{bottom:264.881839pt;}
.y22{bottom:268.320635pt;}
.y86{bottom:269.505854pt;}
.y9f{bottom:270.169918pt;}
.y5e{bottom:284.277012pt;}
.y21{bottom:287.715654pt;}
.y85{bottom:288.900706pt;}
.y9e{bottom:289.565102pt;}
.y5d{bottom:303.671879pt;}
.y20{bottom:307.110674pt;}
.yae{bottom:307.296879pt;}
.y84{bottom:308.295569pt;}
.y9d{bottom:308.960286pt;}
.y5c{bottom:323.067052pt;}
.y1f{bottom:326.505693pt;}
.yad{bottom:326.692050pt;}
.y83{bottom:327.690753pt;}
.y9c{bottom:328.355465pt;}
.y5b{bottom:342.461919pt;}
.y1e{bottom:345.900713pt;}
.yac{bottom:346.086589pt;}
.y82{bottom:347.085932pt;}
.y9b{bottom:347.750652pt;}
.y5a{bottom:361.857100pt;}
.y1d{bottom:365.295732pt;}
.yab{bottom:365.481764pt;}
.y9a{bottom:367.145187pt;}
.y81{bottom:377.043622pt;}
.y59{bottom:381.251959pt;}
.y1c{bottom:384.690759pt;}
.yaa{bottom:384.876948pt;}
.y99{bottom:386.540359pt;}
.y58{bottom:400.647132pt;}
.y1b{bottom:404.085773pt;}
.ya9{bottom:404.271479pt;}
.y98{bottom:405.935554pt;}
.y1a{bottom:423.480793pt;}
.ya8{bottom:423.666663pt;}
.y97{bottom:425.330086pt;}
.y80{bottom:426.691732pt;}
.y57{bottom:430.604822pt;}
.y19{bottom:442.875812pt;}
.y96{bottom:444.725265pt;}
.y7f{bottom:446.086585pt;}
.y95{bottom:464.120449pt;}
.y7e{bottom:465.481773pt;}
.y18{bottom:472.833489pt;}
.y56{bottom:480.252932pt;}
.y94{bottom:483.515633pt;}
.y7d{bottom:484.876953pt;}
.y55{bottom:499.648108pt;}
.y93{bottom:502.910812pt;}
.y7c{bottom:504.271812pt;}
.y76{bottom:506.136399pt;}
.y54{bottom:519.042967pt;}
.y17{bottom:522.481772pt;}
.y7b{bottom:523.666663pt;}
.y75{bottom:525.531252pt;}
.y53{bottom:538.438147pt;}
.y16{bottom:541.876789pt;}
.y74{bottom:544.926433pt;}
.y92{bottom:545.689447pt;}
.y52{bottom:557.832999pt;}
.y15{bottom:561.271809pt;}
.y73{bottom:564.321292pt;}
.y91{bottom:570.086585pt;}
.y51{bottom:577.228186pt;}
.yb3{bottom:579.086585pt;}
.y14{bottom:580.666829pt;}
.y72{bottom:583.716463pt;}
.y90{bottom:589.481764pt;}
.y50{bottom:596.623046pt;}
.yb2{bottom:598.481764pt;}
.y13{bottom:600.061849pt;}
.y8f{bottom:608.876948pt;}
.y4f{bottom:616.018225pt;}
.yb1{bottom:617.876300pt;}
.y12{bottom:619.456868pt;}
.y8e{bottom:628.271479pt;}
.y4e{bottom:635.413092pt;}
.yb0{bottom:637.271479pt;}
.y11{bottom:638.851888pt;}
.y8d{bottom:647.666663pt;}
.y4d{bottom:654.808273pt;}
.yaf{bottom:656.666663pt;}
.y10{bottom:658.246907pt;}
.yd5{bottom:665.212239pt;}
.y39{bottom:674.203123pt;}
.yf{bottom:677.641927pt;}
.yd4{bottom:684.606772pt;}
.y38{bottom:693.598143pt;}
.y4c{bottom:693.598310pt;}
.ye{bottom:697.036946pt;}
.yd3{bottom:704.001959pt;}
.y4b{bottom:712.993162pt;}
.y37{bottom:712.993163pt;}
.yc5{bottom:712.993492pt;}
.yd{bottom:716.431966pt;}
.yd2{bottom:723.396479pt;}
.yc4{bottom:732.388019pt;}
.y36{bottom:732.388183pt;}
.y4a{bottom:732.388342pt;}
.yc{bottom:735.826985pt;}
.yd1{bottom:742.792319pt;}
.y49{bottom:751.783201pt;}
.y35{bottom:751.783203pt;}
.yc3{bottom:751.783209pt;}
.yd0{bottom:762.186852pt;}
.yb{bottom:765.784662pt;}
.yc2{bottom:771.177739pt;}
.y34{bottom:771.178223pt;}
.y48{bottom:771.178389pt;}
.ycf{bottom:781.582679pt;}
.y47{bottom:790.573240pt;}
.y33{bottom:790.573243pt;}
.yc1{bottom:790.573569pt;}
.yce{bottom:800.977217pt;}
.yc0{bottom:809.968099pt;}
.y32{bottom:809.968263pt;}
.y46{bottom:809.968420pt;}
.ya{bottom:815.432945pt;}
.ycd{bottom:820.372401pt;}
.y45{bottom:829.363279pt;}
.y31{bottom:829.363283pt;}
.ybf{bottom:829.363927pt;}
.y71{bottom:838.354172pt;}
.ycc{bottom:839.766932pt;}
.y9{bottom:840.393486pt;}
.y30{bottom:848.758302pt;}
.y44{bottom:848.758465pt;}
.ybe{bottom:848.758474pt;}
.y70{bottom:857.749349pt;}
.y8{bottom:859.788513pt;}
.y2f{bottom:868.153322pt;}
.y43{bottom:868.153323pt;}
.ybd{bottom:868.153646pt;}
.y7{bottom:874.130534pt;}
.y6f{bottom:877.144536pt;}
.ycb{bottom:882.545573pt;}
.ybc{bottom:887.548177pt;}
.y2e{bottom:887.548341pt;}
.y42{bottom:887.548503pt;}
.y6{bottom:895.288737pt;}
.y6e{bottom:896.539388pt;}
.y41{bottom:906.943355pt;}
.y2d{bottom:906.943361pt;}
.ybb{bottom:906.943365pt;}
.y6d{bottom:915.934247pt;}
.y5{bottom:916.446940pt;}
.yba{bottom:926.337892pt;}
.y2c{bottom:926.338380pt;}
.y40{bottom:926.338542pt;}
.yca{bottom:930.326822pt;}
.y6c{bottom:935.329427pt;}
.y4{bottom:937.605143pt;}
.y2b{bottom:945.733400pt;}
.y3f{bottom:945.733402pt;}
.yb9{bottom:945.733724pt;}
.yc9{bottom:954.723958pt;}
.y6b{bottom:954.724615pt;}
.y3{bottom:958.763346pt;}
.yb8{bottom:965.128255pt;}
.y2a{bottom:965.128419pt;}
.y3e{bottom:965.128581pt;}
.yc8{bottom:974.119142pt;}
.y6a{bottom:974.119466pt;}
.y2{bottom:981.459147pt;}
.y69{bottom:993.514326pt;}
.yc7{bottom:993.514974pt;}
.y1{bottom:1007.906901pt;}
.y68{bottom:1012.909505pt;}
.ha{height:23.312500pt;}
.h5{height:25.626563pt;}
.h4{height:25.643751pt;}
.hb{height:38.854166pt;}
.h8{height:42.710938pt;}
.h6{height:42.739584pt;}
.h2{height:46.625000pt;}
.h9{height:47.905867pt;}
.h3{height:52.242190pt;}
.h1{height:58.242188pt;}
.h7{height:62.166669pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x1{left:98.627737pt;}
.x4{left:108.701956pt;}
.x2{left:117.377738pt;}
.x5{left:217.483206pt;}
.x6{left:219.858734pt;}
.x7{left:350.837910pt;}
.x8{left:374.861850pt;}
.x3{left:396.850400pt;}
.xa{left:702.000000pt;}
}




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