
    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_2cdf73e2a83e966a0d6e24d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_ce889dc833aab65f7b5d2a12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769531;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_31e0af19617fcf6cbac4e108.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_04440eecadf11b66164172be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_6dea026a6d473a301bc363e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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;}
.v1{vertical-align:25.919771px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.462777px;}
.ls1{letter-spacing:0.462849px;}
.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;}
}
.ws2{word-spacing:-16.097187px;}
.ws3{word-spacing:-16.096254px;}
.ws4{word-spacing:-13.121898px;}
.ws0{word-spacing:-10.148195px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-2040.548316px;}
._9{margin-left:-3.697760px;}
._a{margin-left:-2.516753px;}
._2{margin-left:-1.116451px;}
._1{width:1.235464px;}
._b{width:3.356170px;}
._c{width:4.553311px;}
._22{width:5.565103px;}
._7{width:6.757740px;}
._8{width:7.781119px;}
._17{width:9.504106px;}
._f{width:10.901154px;}
._e{width:11.976264px;}
._1a{width:13.186463px;}
._d{width:14.570110px;}
._18{width:17.450434px;}
._28{width:19.179120px;}
._12{width:20.541860px;}
._3{width:21.568201px;}
._4{width:22.589120px;}
._14{width:24.041991px;}
._13{width:25.414003px;}
._1e{width:26.638458px;}
._24{width:28.551147px;}
._23{width:30.229700px;}
._15{width:34.553504px;}
._5{width:36.063240px;}
._6{width:37.649607px;}
._19{width:40.092201px;}
._20{width:41.396650px;}
._1b{width:44.556898px;}
._1c{width:46.178416px;}
._27{width:47.290030px;}
._2e{width:51.493254px;}
._1f{width:60.784214px;}
._2a{width:63.827873px;}
._29{width:65.072041px;}
._11{width:67.125581px;}
._10{width:68.414170px;}
._26{width:74.130311px;}
._25{width:75.756832px;}
._30{width:92.857344px;}
._33{width:101.232475px;}
._32{width:118.629278px;}
._16{width:122.307689px;}
._1d{width:137.244880px;}
._21{width:179.291016px;}
._35{width:198.778631px;}
._31{width:210.147107px;}
._34{width:238.976784px;}
._36{width:245.440872px;}
._2d{width:388.771735px;}
._2f{width:478.145954px;}
._2c{width:581.434703px;}
._2b{width:592.275776px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,105,180);}
.fc2{color:rgb(114,119,119);}
.fc1{color:rgb(114,114,119);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:16.888905px;}
.fs6{font-size:39.180060px;}
.fs0{font-size:39.182220px;}
.fs8{font-size:50.663700px;}
.fs3{font-size:50.666850px;}
.fs2{font-size:56.071350px;}
.fs7{font-size:62.147700px;}
.fs5{font-size:62.151300px;}
.fs4{font-size:67.555350px;}
.y0{bottom:0.000000px;}
.y88{bottom:4.500000px;}
.y2c{bottom:55.799973px;}
.y4a{bottom:55.980011px;}
.y4{bottom:75.600013px;}
.y70{bottom:89.460022px;}
.y2b{bottom:95.580025px;}
.y6f{bottom:99.000000px;}
.y96{bottom:103.679970px;}
.y49{bottom:104.039977px;}
.y2a{bottom:116.820030px;}
.y48{bottom:121.320030px;}
.y6e{bottom:136.980011px;}
.y29{bottom:137.879998px;}
.y95{bottom:138.240006px;}
.y47{bottom:151.740006px;}
.y28{bottom:159.120002px;}
.y94{bottom:161.820030px;}
.y6d{bottom:174.960022px;}
.y27{bottom:180.179970px;}
.y93{bottom:184.679970px;}
.y6c{bottom:196.200027px;}
.y26{bottom:201.240006px;}
.y92{bottom:207.539977px;}
.y6b{bottom:217.259994px;}
.y25{bottom:222.299973px;}
.y91{bottom:230.940033px;}
.y24{bottom:243.539977px;}
.y90{bottom:253.620002px;}
.y6a{bottom:255.419975px;}
.y23{bottom:264.600013px;}
.y69{bottom:276.480011px;}
.y22{bottom:285.840019px;}
.y68{bottom:297.539977px;}
.y8f{bottom:299.340019px;}
.y21{bottom:306.899986px;}
.y67{bottom:318.600013px;}
.y8e{bottom:322.019989px;}
.y20{bottom:327.960022px;}
.y66{bottom:339.840019px;}
.y8d{bottom:345.600013px;}
.y1f{bottom:349.019989px;}
.y65{bottom:360.899986px;}
.y8c{bottom:368.460022px;}
.y1e{bottom:370.259994px;}
.y1d{bottom:391.320030px;}
.y8b{bottom:391.860008px;}
.y64{bottom:399.059967px;}
.y8a{bottom:414.720017px;}
.y63{bottom:420.120002px;}
.y1c{bottom:429.480011px;}
.y46{bottom:435.600013px;}
.y89{bottom:437.399986px;}
.y62{bottom:441.179970px;}
.y1b{bottom:450.539977px;}
.y61{bottom:462.240006px;}
.y87{bottom:467.820030px;}
.y1a{bottom:471.600013px;}
.y86{bottom:472.320030px;}
.y45{bottom:473.580025px;}
.y60{bottom:483.480011px;}
.y19{bottom:492.840019px;}
.y44{bottom:494.820030px;}
.y85{bottom:495.179970px;}
.y5f{bottom:504.539977px;}
.y18{bottom:513.899986px;}
.y43{bottom:515.879998px;}
.y84{bottom:518.580025px;}
.y5e{bottom:525.779983px;}
.y17{bottom:535.139992px;}
.y42{bottom:537.120002px;}
.y83{bottom:541.259994px;}
.y5d{bottom:546.840019px;}
.y16{bottom:556.200027px;}
.y41{bottom:558.000000px;}
.y82{bottom:564.120002px;}
.y5c{bottom:567.899986px;}
.y15{bottom:577.440033px;}
.y81{bottom:586.980011px;}
.y5b{bottom:588.960022px;}
.y40{bottom:596.159981px;}
.y14{bottom:598.320030px;}
.y3f{bottom:617.220017px;}
.y13{bottom:619.560001px;}
.y80{bottom:625.139992px;}
.y5a{bottom:627.120002px;}
.y3e{bottom:638.459988px;}
.y12{bottom:640.620002px;}
.y3d{bottom:659.519989px;}
.y59{bottom:661.139992px;}
.y11{bottom:661.860008px;}
.y7f{bottom:662.939999px;}
.y3c{bottom:680.759994px;}
.y7e{bottom:697.139992px;}
.y58{bottom:699.120002px;}
.y10{bottom:699.839985px;}
.y3b{bottom:701.639992px;}
.y7d{bottom:719.819995px;}
.y3a{bottom:722.879998px;}
.y57{bottom:737.279983px;}
.yf{bottom:737.819995px;}
.y7c{bottom:742.680004px;}
.y39{bottom:743.939999px;}
.y56{bottom:758.339985px;}
.ye{bottom:758.879998px;}
.y38{bottom:765.180004px;}
.y7b{bottom:765.540012px;}
.y55{bottom:779.579990px;}
.yd{bottom:780.120002px;}
.y37{bottom:786.420010px;}
.y7a{bottom:788.399986px;}
.y54{bottom:800.639992px;}
.yc{bottom:800.819995px;}
.y36{bottom:807.480011px;}
.y79{bottom:811.079990px;}
.yb{bottom:820.800007px;}
.y53{bottom:821.879998px;}
.y35{bottom:828.540012px;}
.y78{bottom:833.939999px;}
.y52{bottom:842.759994px;}
.ya{bottom:843.839985px;}
.y34{bottom:849.600013px;}
.y77{bottom:856.620002px;}
.y51{bottom:864.000000px;}
.y9{bottom:866.879998px;}
.y33{bottom:870.839985px;}
.y76{bottom:879.300007px;}
.y50{bottom:885.060001px;}
.y8{bottom:889.920010px;}
.y75{bottom:902.159998px;}
.y4f{bottom:906.300007px;}
.y32{bottom:908.819996px;}
.y7{bottom:912.960004px;}
.y74{bottom:925.020006px;}
.y31{bottom:930.060001px;}
.y6{bottom:936.000000px;}
.y4e{bottom:940.319996px;}
.y73{bottom:947.879998px;}
.y30{bottom:951.120002px;}
.y4d{bottom:963.180004px;}
.y72{bottom:970.560001px;}
.y2f{bottom:972.180004px;}
.y98{bottom:979.199993px;}
.y4c{bottom:985.860008px;}
.y71{bottom:993.419992px;}
.y97{bottom:996.479994px;}
.y4b{bottom:1008.719999px;}
.y2e{bottom:1010.159998px;}
.y2d{bottom:1031.400003px;}
.y5{bottom:1043.099997px;}
.y3{bottom:1059.480002px;}
.y2{bottom:1071.180004px;}
.y1{bottom:1075.680004px;}
.h2{height:15.082914px;}
.hd{height:21.059967px;}
.ha{height:34.990395px;}
.h1{height:34.992324px;}
.h4{height:38.494931px;}
.he{height:45.246048px;}
.h9{height:45.248862px;}
.hc{height:47.551487px;}
.h7{height:47.554242px;}
.h3{height:50.075439px;}
.h5{height:51.689079px;}
.hb{height:55.502023px;}
.h6{height:55.505238px;}
.h8{height:60.912095px;}
.h0{height:1188.000000px;}
.w1{width:7.200028px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.939999px;}
.x7{left:208.800007px;}
.xa{left:374.759994px;}
.x8{left:627.120002px;}
.x9{left:738.539978px;}
.x4{left:747.899987px;}
.x6{left:758.159981px;}
.x5{left:768.419975px;}
.x1{left:776.700027px;}
.x3{left:798.480011px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.039796pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.411358pt;}
.ls1{letter-spacing:0.411422pt;}
.ws2{word-spacing:-14.308610pt;}
.ws3{word-spacing:-14.307782pt;}
.ws4{word-spacing:-11.663910pt;}
.ws0{word-spacing:-9.020618pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1813.820726pt;}
._9{margin-left:-3.286897pt;}
._a{margin-left:-2.237114pt;}
._2{margin-left:-0.992401pt;}
._1{width:1.098191pt;}
._b{width:2.983262pt;}
._c{width:4.047388pt;}
._22{width:4.946758pt;}
._7{width:6.006880pt;}
._8{width:6.916550pt;}
._17{width:8.448094pt;}
._f{width:9.689914pt;}
._e{width:10.645568pt;}
._1a{width:11.721300pt;}
._d{width:12.951209pt;}
._18{width:15.511497pt;}
._28{width:17.048107pt;}
._12{width:18.259431pt;}
._3{width:19.171734pt;}
._4{width:20.079217pt;}
._14{width:21.370658pt;}
._13{width:22.590225pt;}
._1e{width:23.678629pt;}
._24{width:25.378797pt;}
._23{width:26.870845pt;}
._15{width:30.714226pt;}
._5{width:32.056213pt;}
._6{width:33.466317pt;}
._19{width:35.637512pt;}
._20{width:36.797023pt;}
._1b{width:39.606132pt;}
._1c{width:41.047481pt;}
._27{width:42.035582pt;}
._2e{width:45.771781pt;}
._1f{width:54.030413pt;}
._2a{width:56.735887pt;}
._29{width:57.841814pt;}
._11{width:59.667183pt;}
._10{width:60.812595pt;}
._26{width:65.893609pt;}
._25{width:67.339407pt;}
._30{width:82.539862pt;}
._33{width:89.984422pt;}
._32{width:105.448247pt;}
._16{width:108.717946pt;}
._1d{width:121.995449pt;}
._21{width:159.369792pt;}
._35{width:176.692117pt;}
._31{width:186.797428pt;}
._34{width:212.423808pt;}
._36{width:218.169664pt;}
._2d{width:345.574875pt;}
._2f{width:425.018625pt;}
._2c{width:516.830847pt;}
._2b{width:526.467357pt;}
.fs1{font-size:15.012360pt;}
.fs6{font-size:34.826720pt;}
.fs0{font-size:34.828640pt;}
.fs8{font-size:45.034400pt;}
.fs3{font-size:45.037200pt;}
.fs2{font-size:49.841200pt;}
.fs7{font-size:55.242400pt;}
.fs5{font-size:55.245600pt;}
.fs4{font-size:60.049200pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:4.000000pt;}
.y2c{bottom:49.599976pt;}
.y4a{bottom:49.760010pt;}
.y4{bottom:67.200012pt;}
.y70{bottom:79.520020pt;}
.y2b{bottom:84.960022pt;}
.y6f{bottom:88.000000pt;}
.y96{bottom:92.159973pt;}
.y49{bottom:92.479980pt;}
.y2a{bottom:103.840027pt;}
.y48{bottom:107.840027pt;}
.y6e{bottom:121.760010pt;}
.y29{bottom:122.559998pt;}
.y95{bottom:122.880005pt;}
.y47{bottom:134.880005pt;}
.y28{bottom:141.440002pt;}
.y94{bottom:143.840027pt;}
.y6d{bottom:155.520020pt;}
.y27{bottom:160.159973pt;}
.y93{bottom:164.159973pt;}
.y6c{bottom:174.400024pt;}
.y26{bottom:178.880005pt;}
.y92{bottom:184.479980pt;}
.y6b{bottom:193.119995pt;}
.y25{bottom:197.599976pt;}
.y91{bottom:205.280029pt;}
.y24{bottom:216.479980pt;}
.y90{bottom:225.440002pt;}
.y6a{bottom:227.039978pt;}
.y23{bottom:235.200012pt;}
.y69{bottom:245.760010pt;}
.y22{bottom:254.080017pt;}
.y68{bottom:264.479980pt;}
.y8f{bottom:266.080017pt;}
.y21{bottom:272.799988pt;}
.y67{bottom:283.200012pt;}
.y8e{bottom:286.239990pt;}
.y20{bottom:291.520020pt;}
.y66{bottom:302.080017pt;}
.y8d{bottom:307.200012pt;}
.y1f{bottom:310.239990pt;}
.y65{bottom:320.799988pt;}
.y8c{bottom:327.520020pt;}
.y1e{bottom:329.119995pt;}
.y1d{bottom:347.840027pt;}
.y8b{bottom:348.320007pt;}
.y64{bottom:354.719971pt;}
.y8a{bottom:368.640015pt;}
.y63{bottom:373.440002pt;}
.y1c{bottom:381.760010pt;}
.y46{bottom:387.200012pt;}
.y89{bottom:388.799988pt;}
.y62{bottom:392.159973pt;}
.y1b{bottom:400.479980pt;}
.y61{bottom:410.880005pt;}
.y87{bottom:415.840027pt;}
.y1a{bottom:419.200012pt;}
.y86{bottom:419.840027pt;}
.y45{bottom:420.960022pt;}
.y60{bottom:429.760010pt;}
.y19{bottom:438.080017pt;}
.y44{bottom:439.840027pt;}
.y85{bottom:440.159973pt;}
.y5f{bottom:448.479980pt;}
.y18{bottom:456.799988pt;}
.y43{bottom:458.559998pt;}
.y84{bottom:460.960022pt;}
.y5e{bottom:467.359985pt;}
.y17{bottom:475.679993pt;}
.y42{bottom:477.440002pt;}
.y83{bottom:481.119995pt;}
.y5d{bottom:486.080017pt;}
.y16{bottom:494.400024pt;}
.y41{bottom:496.000000pt;}
.y82{bottom:501.440002pt;}
.y5c{bottom:504.799988pt;}
.y15{bottom:513.280029pt;}
.y81{bottom:521.760010pt;}
.y5b{bottom:523.520020pt;}
.y40{bottom:529.919983pt;}
.y14{bottom:531.840027pt;}
.y3f{bottom:548.640015pt;}
.y13{bottom:550.720001pt;}
.y80{bottom:555.679993pt;}
.y5a{bottom:557.440002pt;}
.y3e{bottom:567.519989pt;}
.y12{bottom:569.440002pt;}
.y3d{bottom:586.239990pt;}
.y59{bottom:587.679993pt;}
.y11{bottom:588.320007pt;}
.y7f{bottom:589.279999pt;}
.y3c{bottom:605.119995pt;}
.y7e{bottom:619.679993pt;}
.y58{bottom:621.440002pt;}
.y10{bottom:622.079987pt;}
.y3b{bottom:623.679993pt;}
.y7d{bottom:639.839996pt;}
.y3a{bottom:642.559998pt;}
.y57{bottom:655.359985pt;}
.yf{bottom:655.839996pt;}
.y7c{bottom:660.160004pt;}
.y39{bottom:661.279999pt;}
.y56{bottom:674.079987pt;}
.ye{bottom:674.559998pt;}
.y38{bottom:680.160004pt;}
.y7b{bottom:680.480011pt;}
.y55{bottom:692.959991pt;}
.yd{bottom:693.440002pt;}
.y37{bottom:699.040009pt;}
.y7a{bottom:700.799988pt;}
.y54{bottom:711.679993pt;}
.yc{bottom:711.839996pt;}
.y36{bottom:717.760010pt;}
.y79{bottom:720.959991pt;}
.yb{bottom:729.600006pt;}
.y53{bottom:730.559998pt;}
.y35{bottom:736.480011pt;}
.y78{bottom:741.279999pt;}
.y52{bottom:749.119995pt;}
.ya{bottom:750.079987pt;}
.y34{bottom:755.200012pt;}
.y77{bottom:761.440002pt;}
.y51{bottom:768.000000pt;}
.y9{bottom:770.559998pt;}
.y33{bottom:774.079987pt;}
.y76{bottom:781.600006pt;}
.y50{bottom:786.720001pt;}
.y8{bottom:791.040009pt;}
.y75{bottom:801.919998pt;}
.y4f{bottom:805.600006pt;}
.y32{bottom:807.839996pt;}
.y7{bottom:811.520004pt;}
.y74{bottom:822.240005pt;}
.y31{bottom:826.720001pt;}
.y6{bottom:832.000000pt;}
.y4e{bottom:835.839996pt;}
.y73{bottom:842.559998pt;}
.y30{bottom:845.440002pt;}
.y4d{bottom:856.160004pt;}
.y72{bottom:862.720001pt;}
.y2f{bottom:864.160004pt;}
.y98{bottom:870.399994pt;}
.y4c{bottom:876.320007pt;}
.y71{bottom:883.039993pt;}
.y97{bottom:885.759995pt;}
.y4b{bottom:896.639999pt;}
.y2e{bottom:897.919998pt;}
.y2d{bottom:916.800003pt;}
.y5{bottom:927.199997pt;}
.y3{bottom:941.760002pt;}
.y2{bottom:952.160004pt;}
.y1{bottom:956.160004pt;}
.h2{height:13.407034pt;}
.hd{height:18.719971pt;}
.ha{height:31.102574pt;}
.h1{height:31.104288pt;}
.h4{height:34.217716pt;}
.he{height:40.218710pt;}
.h9{height:40.221210pt;}
.hc{height:42.267989pt;}
.h7{height:42.270437pt;}
.h3{height:44.511501pt;}
.h5{height:45.945848pt;}
.hb{height:49.335132pt;}
.h6{height:49.337989pt;}
.h8{height:54.144084pt;}
.h0{height:1056.000000pt;}
.w1{width:6.400025pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.279999pt;}
.x7{left:185.600006pt;}
.xa{left:333.119995pt;}
.x8{left:557.440002pt;}
.x9{left:656.479980pt;}
.x4{left:664.799988pt;}
.x6{left:673.919983pt;}
.x5{left:683.039978pt;}
.x1{left:690.400024pt;}
.x3{left:709.760010pt;}
}




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