
    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_7f05bdb134b6737bc910496e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_908ec19ae7a76934702a9000.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.741699;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_d0d6e1fee796d53e22adff7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4eac0b90719b31e12cdb03bb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3598fe7cec5329798771af7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_768ed3a5e865d9b9cb6d048e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_025ff5f4be43fa6bf6febf24.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731445;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.119972px;}
.v2{vertical-align:-34.559986px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:34.559986px;}
.v4{vertical-align:69.119972px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006720px;}
.ls0{letter-spacing:0.229200px;}
.ls4{letter-spacing:3.559139px;}
.ls1{letter-spacing:16.752833px;}
.ls2{letter-spacing:17.247533px;}
.ls5{letter-spacing:27.333693px;}
.ls9{letter-spacing:74.162269px;}
.ls8{letter-spacing:74.164532px;}
.ls7{letter-spacing:607.290477px;}
.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:-44.819982px;}
.ws0{word-spacing:-16.613273px;}
.ws2{word-spacing:-10.808636px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-1.361033px;}
._0{width:1.136640px;}
._b{width:2.347107px;}
._e{width:4.249300px;}
._7{width:5.504981px;}
._6{width:6.845487px;}
._5{width:8.124742px;}
._8{width:9.514851px;}
._a{width:11.104514px;}
._9{width:12.168699px;}
._c{width:13.931274px;}
._d{width:15.032015px;}
._4{width:17.715523px;}
._11{width:18.795131px;}
._15{width:20.072000px;}
._13{width:21.873917px;}
._12{width:23.244179px;}
._17{width:24.717322px;}
._1{width:25.892802px;}
._2{width:26.934420px;}
._10{width:27.985523px;}
._f{width:29.640644px;}
._14{width:30.740826px;}
._18{width:32.659093px;}
._19{width:33.874584px;}
._16{width:35.690161px;}
._27{width:36.838755px;}
._31{width:39.916724px;}
._30{width:41.222050px;}
._47{width:42.946223px;}
._46{width:44.172372px;}
._34{width:45.487758px;}
._35{width:46.532200px;}
._21{width:49.806670px;}
._3b{width:54.614197px;}
._1e{width:56.669151px;}
._29{width:58.853548px;}
._37{width:59.896663px;}
._20{width:64.076439px;}
._22{width:65.719744px;}
._45{width:66.951135px;}
._2c{width:68.877640px;}
._2a{width:71.351978px;}
._23{width:74.162728px;}
._3e{width:92.193792px;}
._2d{width:94.967410px;}
._40{width:96.111240px;}
._3f{width:97.473115px;}
._2e{width:106.270612px;}
._38{width:109.307994px;}
._39{width:114.718966px;}
._3a{width:115.831810px;}
._43{width:117.919434px;}
._33{width:120.912225px;}
._3d{width:129.414834px;}
._28{width:143.660461px;}
._25{width:160.415968px;}
._41{width:168.018504px;}
._2b{width:178.441277px;}
._1c{width:180.672492px;}
._1d{width:185.250045px;}
._2f{width:197.285496px;}
._42{width:198.720092px;}
._26{width:240.770835px;}
._3c{width:249.970288px;}
._44{width:338.503850px;}
._36{width:359.717375px;}
._32{width:439.320130px;}
._1b{width:444.664862px;}
._1f{width:586.229388px;}
._1a{width:617.058472px;}
._24{width:656.371129px;}
.fc3{color:rgb(20,18,21);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,101,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.879984px;}
.fs0{font-size:59.759976px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.239039px;}
.yad{bottom:330.959868px;}
.y67{bottom:333.839866px;}
.y31{bottom:336.179866px;}
.yac{bottom:348.959860px;}
.y66{bottom:351.119860px;}
.y30{bottom:353.459859px;}
.yab{bottom:366.239854px;}
.y65{bottom:369.119852px;}
.y5b{bottom:370.739852px;}
.y2f{bottom:370.919852px;}
.yaa{bottom:383.339847px;}
.y97{bottom:384.239846px;}
.y64{bottom:386.399845px;}
.y2e{bottom:387.839845px;}
.ya9{bottom:400.619840px;}
.y96{bottom:401.339839px;}
.y63{bottom:403.679839px;}
.y2d{bottom:405.119838px;}
.y95{bottom:418.619833px;}
.y62{bottom:420.959832px;}
.y5a{bottom:422.399831px;}
.y2c{bottom:422.579831px;}
.y94{bottom:435.899826px;}
.y61{bottom:438.959824px;}
.y59{bottom:439.679824px;}
.y2b{bottom:439.859824px;}
.y93{bottom:453.179819px;}
.y60{bottom:456.239818px;}
.y58{bottom:456.959817px;}
.y2a{bottom:457.139817px;}
.y92{bottom:470.459812px;}
.y57{bottom:474.059810px;}
.y29{bottom:474.239810px;}
.y91{bottom:487.559805px;}
.y56{bottom:491.339803px;}
.y28{bottom:491.519803px;}
.y90{bottom:504.839798px;}
.y55{bottom:508.619797px;}
.y27{bottom:508.799796px;}
.y8f{bottom:522.119791px;}
.y54{bottom:525.899790px;}
.y26{bottom:526.079790px;}
.y8e{bottom:539.399784px;}
.y53{bottom:543.179783px;}
.y25{bottom:543.359783px;}
.y8d{bottom:556.679777px;}
.y52{bottom:560.459776px;}
.y24{bottom:560.639776px;}
.y8c{bottom:573.959770px;}
.y51{bottom:577.559769px;}
.y23{bottom:577.739769px;}
.y8b{bottom:591.059764px;}
.y50{bottom:594.839762px;}
.y22{bottom:595.019762px;}
.y8a{bottom:608.339757px;}
.y4f{bottom:612.119755px;}
.y21{bottom:612.299755px;}
.y89{bottom:625.619750px;}
.y4e{bottom:629.399748px;}
.y20{bottom:629.579748px;}
.y88{bottom:642.899743px;}
.y4d{bottom:646.679741px;}
.y1f{bottom:646.859741px;}
.y87{bottom:660.179736px;}
.y4c{bottom:663.959734px;}
.y1e{bottom:664.139734px;}
.y86{bottom:677.459729px;}
.y4b{bottom:681.059728px;}
.y1d{bottom:681.239728px;}
.y85{bottom:694.559722px;}
.y4a{bottom:698.339721px;}
.y1c{bottom:698.519721px;}
.y84{bottom:711.839715px;}
.y49{bottom:715.619714px;}
.y1b{bottom:715.799714px;}
.y83{bottom:729.119708px;}
.y48{bottom:732.899707px;}
.y1a{bottom:733.079707px;}
.yae{bottom:741.719703px;}
.y82{bottom:746.399701px;}
.y47{bottom:750.179700px;}
.y19{bottom:750.359700px;}
.ya8{bottom:763.679695px;}
.y81{bottom:764.399694px;}
.y46{bottom:767.459693px;}
.y18{bottom:767.639693px;}
.ya7{bottom:780.959688px;}
.y80{bottom:781.679687px;}
.y45{bottom:784.559686px;}
.y17{bottom:784.739686px;}
.ya6{bottom:798.059681px;}
.y7f{bottom:798.959680px;}
.y44{bottom:801.839679px;}
.y16{bottom:802.019679px;}
.ya5{bottom:815.339674px;}
.y7e{bottom:816.059674px;}
.y43{bottom:819.119672px;}
.y15{bottom:819.299672px;}
.ya4{bottom:832.619667px;}
.y7d{bottom:833.339667px;}
.y42{bottom:836.399665px;}
.y14{bottom:836.579665px;}
.ya3{bottom:849.899660px;}
.y7c{bottom:850.619660px;}
.y41{bottom:853.679659px;}
.y13{bottom:853.859658px;}
.ya2{bottom:867.179653px;}
.y7b{bottom:867.899653px;}
.y40{bottom:870.779652px;}
.y12{bottom:870.959652px;}
.ya1{bottom:884.279646px;}
.y7a{bottom:885.899646px;}
.y3f{bottom:888.059645px;}
.y11{bottom:888.239645px;}
.y78{bottom:899.940600px;}
.ya0{bottom:901.559639px;}
.y77{bottom:903.179639px;}
.y5e{bottom:905.339638px;}
.y10{bottom:905.519638px;}
.y9f{bottom:918.839632px;}
.y76{bottom:921.179632px;}
.y5d{bottom:922.619631px;}
.yf{bottom:922.799631px;}
.y9e{bottom:936.839625px;}
.y75{bottom:938.279625px;}
.y3e{bottom:939.899624px;}
.ye{bottom:940.079624px;}
.y9d{bottom:954.119618px;}
.y74{bottom:955.559618px;}
.y3d{bottom:957.179617px;}
.yd{bottom:957.359617px;}
.y9c{bottom:971.399611px;}
.y73{bottom:972.839611px;}
.y3c{bottom:974.279610px;}
.yc{bottom:974.459610px;}
.y9b{bottom:989.399604px;}
.y72{bottom:990.119604px;}
.y3b{bottom:991.559603px;}
.yb{bottom:991.739603px;}
.y9a{bottom:1006.679597px;}
.y71{bottom:1007.399597px;}
.y3a{bottom:1008.839596px;}
.ya{bottom:1009.019596px;}
.y99{bottom:1023.779590px;}
.y70{bottom:1024.679590px;}
.y39{bottom:1026.119590px;}
.y9{bottom:1026.299589px;}
.y5f{bottom:1033.679587px;}
.y98{bottom:1041.059584px;}
.y6f{bottom:1041.779583px;}
.y38{bottom:1043.399583px;}
.y8{bottom:1043.579583px;}
.y6e{bottom:1059.059576px;}
.y37{bottom:1060.679576px;}
.y7{bottom:1060.859576px;}
.y6d{bottom:1076.339569px;}
.y36{bottom:1077.779569px;}
.y6{bottom:1077.959569px;}
.y6c{bottom:1093.619563px;}
.y35{bottom:1095.059562px;}
.y5{bottom:1095.239562px;}
.y6b{bottom:1110.899556px;}
.y34{bottom:1112.339555px;}
.y4{bottom:1112.519555px;}
.y6a{bottom:1128.179549px;}
.y33{bottom:1129.619548px;}
.y3{bottom:1129.799548px;}
.y69{bottom:1146.179542px;}
.y32{bottom:1146.899541px;}
.y2{bottom:1147.079541px;}
.y68{bottom:1163.279535px;}
.y5c{bottom:1164.179534px;}
.y1{bottom:1164.359534px;}
.h4{height:16.560000px;}
.h2{height:40.550609px;}
.h1{height:62.327788px;}
.h3{height:131.447760px;}
.h0{height:1263.000000px;}
.w1{width:7.920000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:169.739932px;}
.x5{left:180.359200px;}
.x2{left:222.839911px;}
.x4{left:230.219908px;}
.x3{left:233.639871px;}
.xa{left:273.960000px;}
.x7{left:286.019996px;}
.x9{left:290.339890px;}
.xb{left:317.339941px;}
.x8{left:547.559707px;}
.xc{left:550.079358px;}
.x6{left:567.539649px;}
.xd{left:577.080503px;}
@media print{
.v1{vertical-align:-61.439975pt;}
.v2{vertical-align:-30.719988pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:30.719988pt;}
.v4{vertical-align:61.439975pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005973pt;}
.ls0{letter-spacing:0.203733pt;}
.ls4{letter-spacing:3.163679pt;}
.ls1{letter-spacing:14.891407pt;}
.ls2{letter-spacing:15.331141pt;}
.ls5{letter-spacing:24.296616pt;}
.ls9{letter-spacing:65.922017pt;}
.ls8{letter-spacing:65.924028pt;}
.ls7{letter-spacing:539.813757pt;}
.ws3{word-spacing:-39.839984pt;}
.ws0{word-spacing:-14.767354pt;}
.ws2{word-spacing:-9.607676pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-1.209808pt;}
._0{width:1.010347pt;}
._b{width:2.086317pt;}
._e{width:3.777156pt;}
._7{width:4.893317pt;}
._6{width:6.084877pt;}
._5{width:7.221993pt;}
._8{width:8.457645pt;}
._a{width:9.870679pt;}
._9{width:10.816622pt;}
._c{width:12.383354pt;}
._d{width:13.361791pt;}
._4{width:15.747131pt;}
._11{width:16.706783pt;}
._15{width:17.841777pt;}
._13{width:19.443482pt;}
._12{width:20.661492pt;}
._17{width:21.970953pt;}
._1{width:23.015824pt;}
._2{width:23.941707pt;}
._10{width:24.876020pt;}
._f{width:26.347239pt;}
._14{width:27.325179pt;}
._18{width:29.030305pt;}
._19{width:30.110741pt;}
._16{width:31.724587pt;}
._27{width:32.745560pt;}
._31{width:35.481532pt;}
._30{width:36.641822pt;}
._47{width:38.174421pt;}
._46{width:39.264331pt;}
._34{width:40.433563pt;}
._35{width:41.361956pt;}
._21{width:44.272596pt;}
._3b{width:48.545953pt;}
._1e{width:50.372579pt;}
._29{width:52.314265pt;}
._37{width:53.241478pt;}
._20{width:56.956835pt;}
._22{width:58.417550pt;}
._45{width:59.512120pt;}
._2c{width:61.224569pt;}
._2a{width:63.423981pt;}
._23{width:65.922425pt;}
._3e{width:81.950037pt;}
._2d{width:84.415476pt;}
._40{width:85.432214pt;}
._3f{width:86.642769pt;}
._2e{width:94.462766pt;}
._38{width:97.162661pt;}
._39{width:101.972414pt;}
._3a{width:102.961609pt;}
._43{width:104.817274pt;}
._33{width:107.477534pt;}
._3d{width:115.035408pt;}
._28{width:127.698187pt;}
._25{width:142.591972pt;}
._41{width:149.349782pt;}
._2b{width:158.614469pt;}
._1c{width:160.597770pt;}
._1d{width:164.666707pt;}
._2f{width:175.364885pt;}
._42{width:176.640082pt;}
._26{width:214.018520pt;}
._3c{width:222.195811pt;}
._44{width:300.892312pt;}
._36{width:319.748778pt;}
._32{width:390.506782pt;}
._1b{width:395.257655pt;}
._1f{width:521.092789pt;}
._1a{width:548.496419pt;}
._24{width:583.441004pt;}
.fs1{font-size:34.559986pt;}
.fs0{font-size:53.119979pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.879146pt;}
.yad{bottom:294.186549pt;}
.y67{bottom:296.746548pt;}
.y31{bottom:298.826547pt;}
.yac{bottom:310.186543pt;}
.y66{bottom:312.106542pt;}
.y30{bottom:314.186541pt;}
.yab{bottom:325.546536pt;}
.y65{bottom:328.106535pt;}
.y5b{bottom:329.546535pt;}
.y2f{bottom:329.706535pt;}
.yaa{bottom:340.746530pt;}
.y97{bottom:341.546530pt;}
.y64{bottom:343.466529pt;}
.y2e{bottom:344.746529pt;}
.ya9{bottom:356.106524pt;}
.y96{bottom:356.746524pt;}
.y63{bottom:358.826523pt;}
.y2d{bottom:360.106523pt;}
.y95{bottom:372.106518pt;}
.y62{bottom:374.186517pt;}
.y5a{bottom:375.466516pt;}
.y2c{bottom:375.626516pt;}
.y94{bottom:387.466512pt;}
.y61{bottom:390.186511pt;}
.y59{bottom:390.826510pt;}
.y2b{bottom:390.986510pt;}
.y93{bottom:402.826506pt;}
.y60{bottom:405.546504pt;}
.y58{bottom:406.186504pt;}
.y2a{bottom:406.346504pt;}
.y92{bottom:418.186499pt;}
.y57{bottom:421.386498pt;}
.y29{bottom:421.546498pt;}
.y91{bottom:433.386493pt;}
.y56{bottom:436.746492pt;}
.y28{bottom:436.906492pt;}
.y90{bottom:448.746487pt;}
.y55{bottom:452.106486pt;}
.y27{bottom:452.266486pt;}
.y8f{bottom:464.106481pt;}
.y54{bottom:467.466480pt;}
.y26{bottom:467.626480pt;}
.y8e{bottom:479.466475pt;}
.y53{bottom:482.826474pt;}
.y25{bottom:482.986473pt;}
.y8d{bottom:494.826469pt;}
.y52{bottom:498.186467pt;}
.y24{bottom:498.346467pt;}
.y8c{bottom:510.186463pt;}
.y51{bottom:513.386461pt;}
.y23{bottom:513.546461pt;}
.y8b{bottom:525.386457pt;}
.y50{bottom:528.746455pt;}
.y22{bottom:528.906455pt;}
.y8a{bottom:540.746450pt;}
.y4f{bottom:544.106449pt;}
.y21{bottom:544.266449pt;}
.y89{bottom:556.106444pt;}
.y4e{bottom:559.466443pt;}
.y20{bottom:559.626443pt;}
.y88{bottom:571.466438pt;}
.y4d{bottom:574.826437pt;}
.y1f{bottom:574.986437pt;}
.y87{bottom:586.826432pt;}
.y4c{bottom:590.186431pt;}
.y1e{bottom:590.346431pt;}
.y86{bottom:602.186426pt;}
.y4b{bottom:605.386425pt;}
.y1d{bottom:605.546424pt;}
.y85{bottom:617.386420pt;}
.y4a{bottom:620.746418pt;}
.y1c{bottom:620.906418pt;}
.y84{bottom:632.746414pt;}
.y49{bottom:636.106412pt;}
.y1b{bottom:636.266412pt;}
.y83{bottom:648.106407pt;}
.y48{bottom:651.466406pt;}
.y1a{bottom:651.626406pt;}
.yae{bottom:659.306403pt;}
.y82{bottom:663.466401pt;}
.y47{bottom:666.826400pt;}
.y19{bottom:666.986400pt;}
.ya8{bottom:678.826395pt;}
.y81{bottom:679.466395pt;}
.y46{bottom:682.186394pt;}
.y18{bottom:682.346394pt;}
.ya7{bottom:694.186389pt;}
.y80{bottom:694.826389pt;}
.y45{bottom:697.386388pt;}
.y17{bottom:697.546388pt;}
.ya6{bottom:709.386383pt;}
.y7f{bottom:710.186383pt;}
.y44{bottom:712.746382pt;}
.y16{bottom:712.906382pt;}
.ya5{bottom:724.746377pt;}
.y7e{bottom:725.386377pt;}
.y43{bottom:728.106375pt;}
.y15{bottom:728.266375pt;}
.ya4{bottom:740.106371pt;}
.y7d{bottom:740.746370pt;}
.y42{bottom:743.466369pt;}
.y14{bottom:743.626369pt;}
.ya3{bottom:755.466364pt;}
.y7c{bottom:756.106364pt;}
.y41{bottom:758.826363pt;}
.y13{bottom:758.986363pt;}
.ya2{bottom:770.826358pt;}
.y7b{bottom:771.466358pt;}
.y40{bottom:774.026357pt;}
.y12{bottom:774.186357pt;}
.ya1{bottom:786.026352pt;}
.y7a{bottom:787.466352pt;}
.y3f{bottom:789.386351pt;}
.y11{bottom:789.546351pt;}
.y78{bottom:799.947200pt;}
.ya0{bottom:801.386346pt;}
.y77{bottom:802.826346pt;}
.y5e{bottom:804.746345pt;}
.y10{bottom:804.906345pt;}
.y9f{bottom:816.746340pt;}
.y76{bottom:818.826339pt;}
.y5d{bottom:820.106339pt;}
.yf{bottom:820.266339pt;}
.y9e{bottom:832.746334pt;}
.y75{bottom:834.026333pt;}
.y3e{bottom:835.466332pt;}
.ye{bottom:835.626332pt;}
.y9d{bottom:848.106327pt;}
.y74{bottom:849.386327pt;}
.y3d{bottom:850.826326pt;}
.yd{bottom:850.986326pt;}
.y9c{bottom:863.466321pt;}
.y73{bottom:864.746321pt;}
.y3c{bottom:866.026320pt;}
.yc{bottom:866.186320pt;}
.y9b{bottom:879.466315pt;}
.y72{bottom:880.106315pt;}
.y3b{bottom:881.386314pt;}
.yb{bottom:881.546314pt;}
.y9a{bottom:894.826309pt;}
.y71{bottom:895.466308pt;}
.y3a{bottom:896.746308pt;}
.ya{bottom:896.906308pt;}
.y99{bottom:910.026303pt;}
.y70{bottom:910.826302pt;}
.y39{bottom:912.106302pt;}
.y9{bottom:912.266302pt;}
.y5f{bottom:918.826299pt;}
.y98{bottom:925.386297pt;}
.y6f{bottom:926.026296pt;}
.y38{bottom:927.466296pt;}
.y8{bottom:927.626296pt;}
.y6e{bottom:941.386290pt;}
.y37{bottom:942.826290pt;}
.y7{bottom:942.986289pt;}
.y6d{bottom:956.746284pt;}
.y36{bottom:958.026283pt;}
.y6{bottom:958.186283pt;}
.y6c{bottom:972.106278pt;}
.y35{bottom:973.386277pt;}
.y5{bottom:973.546277pt;}
.y6b{bottom:987.466272pt;}
.y34{bottom:988.746271pt;}
.y4{bottom:988.906271pt;}
.y6a{bottom:1002.826266pt;}
.y33{bottom:1004.106265pt;}
.y3{bottom:1004.266265pt;}
.y69{bottom:1018.826259pt;}
.y32{bottom:1019.466259pt;}
.y2{bottom:1019.626259pt;}
.y68{bottom:1034.026253pt;}
.y5c{bottom:1034.826253pt;}
.y1{bottom:1034.986253pt;}
.h4{height:14.720000pt;}
.h2{height:36.044986pt;}
.h1{height:55.402478pt;}
.h3{height:116.842453pt;}
.h0{height:1122.666667pt;}
.w1{width:7.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:150.879940pt;}
.x5{left:160.319289pt;}
.x2{left:198.079921pt;}
.x4{left:204.639918pt;}
.x3{left:207.679886pt;}
.xa{left:243.520000pt;}
.x7{left:254.239996pt;}
.x9{left:258.079902pt;}
.xb{left:282.079948pt;}
.x8{left:486.719740pt;}
.xc{left:488.959429pt;}
.x6{left:504.479688pt;}
.xd{left:512.960447pt;}
}




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