
    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_733a291f2cea2c36a60bf8ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196023;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_d7deb002bc910d381139f227.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.196023;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_18ee849a11dcce4dc2fada98.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.196023;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_3ee67f2815e1885000045071.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_8bae49426c2d059a912fcf41.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692383;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_336f36c8da4f8334bc513eb9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e733aa2d86682c7d21ba7a74.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196023;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_fbfb01dd33e68d0fe6fd4179.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196023;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_59503a3162051e9cf632c73b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196023;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:ffa;src:url('chunks/assets/font_56941cee964422ff698f3f2a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196023;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:ffb;src:url('chunks/assets/font_525ece5a7dff0d06b9598648.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196023;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:ffc;src:url('chunks/assets/font_131abd787599d72fb573e321.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.196023;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(0.253834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.092000px;}
.v3{vertical-align:16.590000px;}
.v2{vertical-align:22.890000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.027577px;}
.ls7{letter-spacing:0.029754px;}
.ls3{letter-spacing:0.035837px;}
.ls5{letter-spacing:0.058267px;}
.ls4{letter-spacing:0.062173px;}
.ls6{letter-spacing:0.063152px;}
.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;}
}
.ws14{word-spacing:-37.264412px;}
.ws16{word-spacing:-35.142595px;}
.ws15{word-spacing:-28.511917px;}
.ws13{word-spacing:-26.390100px;}
.ws7{word-spacing:-15.174000px;}
.ws5{word-spacing:-14.328000px;}
.wsd{word-spacing:-12.729018px;}
.wse{word-spacing:-12.004234px;}
.wsb{word-spacing:-11.802000px;}
.ws4{word-spacing:-11.610000px;}
.wsf{word-spacing:-11.234151px;}
.ws10{word-spacing:-10.509367px;}
.ws11{word-spacing:-9.739284px;}
.ws3{word-spacing:-9.561600px;}
.ws12{word-spacing:-9.014500px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:-8.358000px;}
.wsa{word-spacing:-3.444600px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:251.481600px;}
.ws2{word-spacing:369.388800px;}
.ws1{word-spacing:390.578400px;}
.ws8{word-spacing:420.746400px;}
._1a{margin-left:-8.560800px;}
._15{margin-left:-6.645600px;}
._3{margin-left:-5.289000px;}
._1b{margin-left:-4.271400px;}
._2{margin-left:-2.985600px;}
._1{margin-left:-1.776000px;}
._0{width:1.123200px;}
._17{width:2.451000px;}
._18{width:251.568000px;}
._16{width:268.200000px;}
._b{width:357.714000px;}
._e{width:371.351400px;}
._4{width:385.779600px;}
._12{width:388.285800px;}
._c{width:412.234200px;}
._19{width:421.233600px;}
._14{width:442.050000px;}
._d{width:456.529800px;}
._6{width:461.567400px;}
._5{width:476.141400px;}
._a{width:492.991200px;}
._13{width:532.362600px;}
._9{width:534.773400px;}
._10{width:537.432000px;}
._11{width:539.410200px;}
._8{width:540.985200px;}
._f{width:547.271400px;}
._7{width:632.385600px;}
._1c{width:1096.302000px;}
.fcd{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(21,65,107);}
.fc4{color:rgb(22,20,18);}
.fcc{color:rgb(79,141,45);}
.fcb{color:rgb(250,183,10);}
.fc5{color:rgb(36,40,34);}
.fc7{color:rgb(19,110,157);}
.fc6{color:rgb(76,140,53);}
.fc9{color:rgb(24,103,165);}
.fc8{color:rgb(215,25,49);}
.fc3{color:transparent;}
.fca{color:rgb(223,28,40);}
.fs6{font-size:30.000000px;}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:43.200000px;}
.fs7{font-size:45.298997px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:132.613567px;}
.y0{bottom:0.000000px;}
.y1{bottom:14.400000px;}
.y53{bottom:17.902719px;}
.y52{bottom:29.227543px;}
.y51{bottom:40.552218px;}
.y31{bottom:44.214450px;}
.y50{bottom:58.091619px;}
.y30{bottom:65.214450px;}
.y4f{bottom:69.416443px;}
.y2f{bottom:75.714450px;}
.y4e{bottom:80.741118px;}
.y2e{bottom:86.214450px;}
.y4d{bottom:98.279919px;}
.y5f{bottom:106.047150px;}
.y2d{bottom:107.214450px;}
.y4c{bottom:109.604743px;}
.y2c{bottom:117.714450px;}
.y4b{bottom:120.929418px;}
.y63{bottom:123.397974px;}
.y5e{bottom:125.547150px;}
.y2b{bottom:128.214450px;}
.y1f{bottom:136.556400px;}
.y4a{bottom:138.469419px;}
.y2a{bottom:138.714450px;}
.y5d{bottom:145.047150px;}
.y49{bottom:149.794243px;}
.y1e{bottom:156.057000px;}
.y62{bottom:156.551217px;}
.y29{bottom:159.714000px;}
.y16{bottom:160.032000px;}
.y48{bottom:161.118918px;}
.y5c{bottom:164.547000px;}
.y28{bottom:170.214000px;}
.yd{bottom:172.582500px;}
.y34{bottom:178.627500px;}
.y47{bottom:178.657419px;}
.y15{bottom:181.032000px;}
.y5b{bottom:184.047000px;}
.y3e{bottom:185.547000px;}
.y61{bottom:189.704609px;}
.y46{bottom:189.982243px;}
.yc{bottom:192.082500px;}
.y1d{bottom:195.057000px;}
.y33{bottom:198.127500px;}
.y3{bottom:198.649500px;}
.y45{bottom:201.306918px;}
.y14{bottom:202.032000px;}
.y5a{bottom:203.547000px;}
.y3d{bottom:205.047000px;}
.yb{bottom:211.582500px;}
.y2{bottom:213.649500px;}
.y1c{bottom:214.557000px;}
.y32{bottom:217.627500px;}
.y44{bottom:218.846919px;}
.y60{bottom:222.857852px;}
.y13{bottom:223.032000px;}
.y59{bottom:223.047000px;}
.y3c{bottom:224.547000px;}
.y43{bottom:230.171743px;}
.ya{bottom:231.082500px;}
.y27{bottom:237.127500px;}
.y42{bottom:241.496418px;}
.y58{bottom:242.547000px;}
.y12{bottom:244.032000px;}
.y3b{bottom:244.047000px;}
.y9{bottom:250.582500px;}
.y1b{bottom:253.557000px;}
.y26{bottom:256.627500px;}
.y41{bottom:259.034919px;}
.y57{bottom:262.047000px;}
.y11{bottom:265.032000px;}
.y1a{bottom:268.557000px;}
.y22{bottom:268.582500px;}
.y8{bottom:270.082500px;}
.y40{bottom:270.359743px;}
.y25{bottom:276.127500px;}
.y3a{bottom:281.547000px;}
.y3f{bottom:281.684418px;}
.y10{bottom:286.032000px;}
.y19{bottom:288.057000px;}
.y21{bottom:288.082500px;}
.y7{bottom:289.582500px;}
.y24{bottom:295.627500px;}
.y38{bottom:299.224419px;}
.y39{bottom:301.047000px;}
.y18{bottom:303.057000px;}
.yf{bottom:307.032000px;}
.y20{bottom:307.582500px;}
.y37{bottom:310.549243px;}
.y35{bottom:310.863000px;}
.y23{bottom:315.127500px;}
.y36{bottom:321.873918px;}
.y6{bottom:327.082500px;}
.ye{bottom:328.032000px;}
.y56{bottom:339.413919px;}
.y5{bottom:343.309500px;}
.y17{bottom:349.032000px;}
.y55{bottom:350.738743px;}
.y4{bottom:361.182375px;}
.y54{bottom:362.063418px;}
.h7{height:28.546875px;}
.h2{height:34.619318px;}
.h8{height:40.389205px;}
.h4{height:42.335156px;}
.ha{height:43.561678px;}
.h9{height:45.439432px;}
.h3{height:46.159091px;}
.h6{height:51.928977px;}
.h5{height:69.238636px;}
.hb{height:127.527535px;}
.h1{height:388.500000px;}
.h0{height:388.800000px;}
.w0{width:691.200000px;}
.w1{width:691.500000px;}
.x0{left:0.000000px;}
.x4{left:32.400000px;}
.xe{left:36.456000px;}
.x5{left:230.400000px;}
.x1{left:233.113500px;}
.x7{left:302.778000px;}
.xd{left:371.064954px;}
.x8{left:375.603000px;}
.x9{left:447.532500px;}
.xc{left:459.757749px;}
.x6{left:462.600000px;}
.x3{left:481.647585px;}
.xf{left:501.897673px;}
.xa{left:519.910500px;}
.x2{left:529.453500px;}
.xb{left:592.735500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.637333pt;}
.v3{vertical-align:14.746667pt;}
.v2{vertical-align:20.346667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.024513pt;}
.ls7{letter-spacing:0.026448pt;}
.ls3{letter-spacing:0.031855pt;}
.ls5{letter-spacing:0.051793pt;}
.ls4{letter-spacing:0.055265pt;}
.ls6{letter-spacing:0.056135pt;}
.ws14{word-spacing:-33.123922pt;}
.ws16{word-spacing:-31.237862pt;}
.ws15{word-spacing:-25.343926pt;}
.ws13{word-spacing:-23.457866pt;}
.ws7{word-spacing:-13.488000pt;}
.ws5{word-spacing:-12.736000pt;}
.wsd{word-spacing:-11.314683pt;}
.wse{word-spacing:-10.670430pt;}
.wsb{word-spacing:-10.490667pt;}
.ws4{word-spacing:-10.320000pt;}
.wsf{word-spacing:-9.985912pt;}
.ws10{word-spacing:-9.341660pt;}
.ws11{word-spacing:-8.657142pt;}
.ws3{word-spacing:-8.499200pt;}
.ws12{word-spacing:-8.012889pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:-7.429333pt;}
.wsa{word-spacing:-3.061867pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:223.539200pt;}
.ws2{word-spacing:328.345600pt;}
.ws1{word-spacing:347.180800pt;}
.ws8{word-spacing:373.996800pt;}
._1a{margin-left:-7.609600pt;}
._15{margin-left:-5.907200pt;}
._3{margin-left:-4.701333pt;}
._1b{margin-left:-3.796800pt;}
._2{margin-left:-2.653867pt;}
._1{margin-left:-1.578667pt;}
._0{width:0.998400pt;}
._17{width:2.178667pt;}
._18{width:223.616000pt;}
._16{width:238.400000pt;}
._b{width:317.968000pt;}
._e{width:330.090133pt;}
._4{width:342.915200pt;}
._12{width:345.142933pt;}
._c{width:366.430400pt;}
._19{width:374.429867pt;}
._14{width:392.933333pt;}
._d{width:405.804267pt;}
._6{width:410.282133pt;}
._5{width:423.236800pt;}
._a{width:438.214400pt;}
._13{width:473.211200pt;}
._9{width:475.354133pt;}
._10{width:477.717333pt;}
._11{width:479.475733pt;}
._8{width:480.875733pt;}
._f{width:486.463467pt;}
._7{width:562.120533pt;}
._1c{width:974.490667pt;}
.fs6{font-size:26.666667pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:38.400000pt;}
.fs7{font-size:40.265775pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:117.878726pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:12.800000pt;}
.y53{bottom:15.913528pt;}
.y52{bottom:25.980038pt;}
.y51{bottom:36.046416pt;}
.y31{bottom:39.301733pt;}
.y50{bottom:51.636995pt;}
.y30{bottom:57.968400pt;}
.y4f{bottom:61.703505pt;}
.y2f{bottom:67.301733pt;}
.y4e{bottom:71.769882pt;}
.y2e{bottom:76.635067pt;}
.y4d{bottom:87.359928pt;}
.y5f{bottom:94.264133pt;}
.y2d{bottom:95.301733pt;}
.y4c{bottom:97.426438pt;}
.y2c{bottom:104.635067pt;}
.y4b{bottom:107.492816pt;}
.y63{bottom:109.687088pt;}
.y5e{bottom:111.597467pt;}
.y2b{bottom:113.968400pt;}
.y1f{bottom:121.383467pt;}
.y4a{bottom:123.083928pt;}
.y2a{bottom:123.301733pt;}
.y5d{bottom:128.930800pt;}
.y49{bottom:133.150438pt;}
.y1e{bottom:138.717333pt;}
.y62{bottom:139.156637pt;}
.y29{bottom:141.968000pt;}
.y16{bottom:142.250667pt;}
.y48{bottom:143.216816pt;}
.y5c{bottom:146.264000pt;}
.y28{bottom:151.301333pt;}
.yd{bottom:153.406667pt;}
.y34{bottom:158.780000pt;}
.y47{bottom:158.806595pt;}
.y15{bottom:160.917333pt;}
.y5b{bottom:163.597333pt;}
.y3e{bottom:164.930667pt;}
.y61{bottom:168.626319pt;}
.y46{bottom:168.873105pt;}
.yc{bottom:170.740000pt;}
.y1d{bottom:173.384000pt;}
.y33{bottom:176.113333pt;}
.y3{bottom:176.577333pt;}
.y45{bottom:178.939482pt;}
.y14{bottom:179.584000pt;}
.y5a{bottom:180.930667pt;}
.y3d{bottom:182.264000pt;}
.yb{bottom:188.073333pt;}
.y2{bottom:189.910667pt;}
.y1c{bottom:190.717333pt;}
.y32{bottom:193.446667pt;}
.y44{bottom:194.530595pt;}
.y60{bottom:198.095868pt;}
.y13{bottom:198.250667pt;}
.y59{bottom:198.264000pt;}
.y3c{bottom:199.597333pt;}
.y43{bottom:204.597105pt;}
.ya{bottom:205.406667pt;}
.y27{bottom:210.780000pt;}
.y42{bottom:214.663482pt;}
.y58{bottom:215.597333pt;}
.y12{bottom:216.917333pt;}
.y3b{bottom:216.930667pt;}
.y9{bottom:222.740000pt;}
.y1b{bottom:225.384000pt;}
.y26{bottom:228.113333pt;}
.y41{bottom:230.253261pt;}
.y57{bottom:232.930667pt;}
.y11{bottom:235.584000pt;}
.y1a{bottom:238.717333pt;}
.y22{bottom:238.740000pt;}
.y8{bottom:240.073333pt;}
.y40{bottom:240.319771pt;}
.y25{bottom:245.446667pt;}
.y3a{bottom:250.264000pt;}
.y3f{bottom:250.386149pt;}
.y10{bottom:254.250667pt;}
.y19{bottom:256.050667pt;}
.y21{bottom:256.073333pt;}
.y7{bottom:257.406667pt;}
.y24{bottom:262.780000pt;}
.y38{bottom:265.977261pt;}
.y39{bottom:267.597333pt;}
.y18{bottom:269.384000pt;}
.yf{bottom:272.917333pt;}
.y20{bottom:273.406667pt;}
.y37{bottom:276.043771pt;}
.y35{bottom:276.322667pt;}
.y23{bottom:280.113333pt;}
.y36{bottom:286.110149pt;}
.y6{bottom:290.740000pt;}
.ye{bottom:291.584000pt;}
.y56{bottom:301.701261pt;}
.y5{bottom:305.164000pt;}
.y17{bottom:310.250667pt;}
.y55{bottom:311.767771pt;}
.y4{bottom:321.051000pt;}
.y54{bottom:321.834149pt;}
.h7{height:25.375000pt;}
.h2{height:30.772727pt;}
.h8{height:35.901515pt;}
.h4{height:37.631250pt;}
.ha{height:38.721491pt;}
.h9{height:40.390606pt;}
.h3{height:41.030303pt;}
.h6{height:46.159091pt;}
.h5{height:61.545455pt;}
.hb{height:113.357809pt;}
.h1{height:345.333333pt;}
.h0{height:345.600000pt;}
.w0{width:614.400000pt;}
.w1{width:614.666667pt;}
.x0{left:0.000000pt;}
.x4{left:28.800000pt;}
.xe{left:32.405333pt;}
.x5{left:204.800000pt;}
.x1{left:207.212000pt;}
.x7{left:269.136000pt;}
.xd{left:329.835515pt;}
.x8{left:333.869333pt;}
.x9{left:397.806667pt;}
.xc{left:408.673555pt;}
.x6{left:411.200000pt;}
.x3{left:428.131187pt;}
.xf{left:446.131265pt;}
.xa{left:462.142667pt;}
.x2{left:470.625333pt;}
.xb{left:526.876000pt;}
}




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