
    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_28d70c600070bdf0c2065c15.woff')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_09d69cfce46a095d9fcd0f3f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_bb3a9dfc4fb9fe7910bbe495.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d569a1801d94e3b9ac58a4e0.woff')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_d3b04c9cedb0d610739c0ab0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_39d19827553c02b8be5e2921.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.306000px;}
.ls6{letter-spacing:71.040000px;}
.ls3{letter-spacing:71.640000px;}
.ls9{letter-spacing:73.170000px;}
.ls2{letter-spacing:73.770000px;}
.ls5{letter-spacing:82.440000px;}
.ls8{letter-spacing:84.570000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.606000px;}
.ws7{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.944000px;}
.ws2{word-spacing:-18.282000px;}
.ws0{word-spacing:-16.620000px;}
.ws3{word-spacing:-13.296000px;}
.ws5{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-1343.472000px;}
._e{margin-left:-1279.728000px;}
._c{margin-left:-676.392000px;}
._8{margin-left:-516.120000px;}
._1a{margin-left:-198.312000px;}
._1e{margin-left:-195.036000px;}
._1c{margin-left:-177.132000px;}
._7{margin-left:-8.112000px;}
._6{margin-left:-6.255000px;}
._2{margin-left:-4.914000px;}
._4{margin-left:-3.666000px;}
._1{margin-left:-2.079000px;}
._3{margin-left:-1.008000px;}
._0{width:1.572000px;}
._5{width:3.336000px;}
._15{width:4.554000px;}
._17{width:7.032000px;}
._16{width:8.082000px;}
._11{width:11.352000px;}
._10{width:12.672000px;}
._20{width:15.978000px;}
._12{width:23.166000px;}
._13{width:26.466000px;}
._14{width:27.522000px;}
._19{width:28.557000px;}
._18{width:29.700000px;}
._1d{width:138.864000px;}
._1f{width:157.476000px;}
._1b{width:161.040000px;}
._9{width:476.784000px;}
._d{width:636.984000px;}
._f{width:1241.208000px;}
._b{width:1304.784000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,205);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,139);}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y18{bottom:48.241500px;}
.y1a{bottom:88.591500px;}
.y7e{bottom:92.641500px;}
.y98{bottom:101.941500px;}
.y19{bottom:109.291500px;}
.yb2{bottom:115.741500px;}
.y7d{bottom:120.991500px;}
.y35{bottom:124.141500px;}
.y51{bottom:125.191500px;}
.y97{bottom:130.291500px;}
.y60{bottom:140.491500px;}
.yb1{bottom:141.541500px;}
.y7c{bottom:149.491500px;}
.y34{bottom:155.191500px;}
.y50{bottom:156.241500px;}
.yb0{bottom:167.491500px;}
.y5f{bottom:168.841500px;}
.y7b{bottom:177.841500px;}
.y96{bottom:191.041500px;}
.y33{bottom:194.791500px;}
.y4f{bottom:195.841500px;}
.y5e{bottom:197.341500px;}
.y7a{bottom:206.341500px;}
.yaf{bottom:222.991500px;}
.y32{bottom:225.841500px;}
.y4e{bottom:226.891500px;}
.y79{bottom:234.691500px;}
.yae{bottom:251.341500px;}
.y17{bottom:253.141500px;}
.y31{bottom:256.891500px;}
.y5d{bottom:257.941500px;}
.y95{bottom:260.341500px;}
.y78{bottom:263.191500px;}
.y4d{bottom:266.491500px;}
.yad{bottom:279.841500px;}
.y16{bottom:281.491500px;}
.y77{bottom:291.541500px;}
.y30{bottom:296.491500px;}
.y94{bottom:297.241500px;}
.y4c{bottom:297.541500px;}
.yac{bottom:308.191500px;}
.y15{bottom:309.991500px;}
.y76{bottom:320.041500px;}
.y93{bottom:325.741500px;}
.y2f{bottom:327.541500px;}
.y5c{bottom:328.591500px;}
.y4b{bottom:337.141500px;}
.y14{bottom:338.341500px;}
.y75{bottom:348.841500px;}
.yab{bottom:350.641500px;}
.y5b{bottom:359.641500px;}
.y92{bottom:362.641500px;}
.y13{bottom:366.841500px;}
.y2e{bottom:367.141500px;}
.y4a{bottom:368.191500px;}
.y5a{bottom:390.691500px;}
.y12{bottom:395.191500px;}
.y2d{bottom:398.191500px;}
.y49{bottom:399.241500px;}
.y91{bottom:399.541500px;}
.y74{bottom:409.441500px;}
.yaa{bottom:419.941500px;}
.y11{bottom:423.691500px;}
.y90{bottom:427.891500px;}
.y48{bottom:430.291500px;}
.y2c{bottom:437.791500px;}
.y10{bottom:452.641500px;}
.ya9{bottom:456.841500px;}
.y59{bottom:461.341500px;}
.y8f{bottom:464.791500px;}
.y2b{bottom:468.841500px;}
.y47{bottom:469.891500px;}
.y73{bottom:478.891500px;}
.yf{bottom:481.141500px;}
.ya8{bottom:493.741500px;}
.y2a{bottom:499.891500px;}
.y46{bottom:500.941500px;}
.y8e{bottom:501.691500px;}
.y72{bottom:507.691500px;}
.y8d{bottom:530.191500px;}
.ya7{bottom:530.641500px;}
.y58{bottom:531.991500px;}
.y29{bottom:539.491500px;}
.y45{bottom:540.541500px;}
.ye{bottom:541.741500px;}
.y71{bottom:544.591500px;}
.ya6{bottom:559.141500px;}
.y8c{bottom:567.091500px;}
.y28{bottom:570.541500px;}
.y44{bottom:571.591500px;}
.y70{bottom:572.941500px;}
.y8b{bottom:595.441500px;}
.ya5{bottom:596.041500px;}
.y6f{bottom:601.441500px;}
.y27{bottom:601.591500px;}
.y57{bottom:602.641500px;}
.yd{bottom:603.841500px;}
.y43{bottom:611.191500px;}
.ya4{bottom:624.391500px;}
.y6e{bottom:629.791500px;}
.y8a{bottom:632.341500px;}
.y26{bottom:641.191500px;}
.y42{bottom:642.241500px;}
.yc{bottom:665.941500px;}
.y6d{bottom:666.691500px;}
.ya3{bottom:666.841500px;}
.y25{bottom:672.241500px;}
.y56{bottom:673.291500px;}
.y41{bottom:681.841500px;}
.y89{bottom:692.791500px;}
.y6c{bottom:695.191500px;}
.y55{bottom:704.341500px;}
.y24{bottom:711.841500px;}
.y40{bottom:712.891500px;}
.ya2{bottom:727.741500px;}
.yb{bottom:729.391500px;}
.y6b{bottom:732.091500px;}
.y54{bottom:743.941500px;}
.y3f{bottom:752.491500px;}
.y88{bottom:753.391500px;}
.ya1{bottom:756.091500px;}
.y6a{bottom:760.441500px;}
.y23{bottom:773.941500px;}
.y53{bottom:774.991500px;}
.y3e{bottom:783.541500px;}
.y69{bottom:788.941500px;}
.ya{bottom:790.441500px;}
.ya0{bottom:812.941500px;}
.y52{bottom:814.591500px;}
.y9{bottom:816.391500px;}
.y87{bottom:822.841500px;}
.y3d{bottom:823.141500px;}
.y68{bottom:825.841500px;}
.y22{bottom:834.841500px;}
.y9f{bottom:841.741500px;}
.y8{bottom:842.191500px;}
.y86{bottom:851.191500px;}
.y3c{bottom:854.191500px;}
.y21{bottom:863.341500px;}
.y7{bottom:868.141500px;}
.y9e{bottom:870.241500px;}
.y85{bottom:879.691500px;}
.y3b{bottom:885.241500px;}
.y67{bottom:891.091500px;}
.y20{bottom:891.691500px;}
.y6{bottom:895.291500px;}
.y9d{bottom:899.041500px;}
.y84{bottom:908.041500px;}
.y3a{bottom:916.291500px;}
.y66{bottom:919.591500px;}
.y1f{bottom:920.191500px;}
.y9c{bottom:927.991500px;}
.y83{bottom:936.541500px;}
.y65{bottom:947.941500px;}
.y1e{bottom:948.541500px;}
.y5{bottom:954.091500px;}
.y39{bottom:955.891500px;}
.y9b{bottom:956.491500px;}
.y82{bottom:973.441500px;}
.y64{bottom:976.441500px;}
.y1d{bottom:977.041500px;}
.y9a{bottom:984.841500px;}
.y38{bottom:986.941500px;}
.y81{bottom:1002.241500px;}
.y1c{bottom:1005.391500px;}
.y4{bottom:1008.541500px;}
.y63{bottom:1013.341500px;}
.y37{bottom:1026.541500px;}
.y80{bottom:1039.141500px;}
.y62{bottom:1041.691500px;}
.y36{bottom:1057.591500px;}
.y3{bottom:1062.991500px;}
.y1b{bottom:1066.141500px;}
.y7f{bottom:1067.491500px;}
.y61{bottom:1070.191500px;}
.y99{bottom:1098.541500px;}
.y2{bottom:1140.991500px;}
.ha{height:41.625000px;}
.h9{height:52.031250px;}
.h5{height:53.408203px;}
.h4{height:56.078613px;}
.h8{height:57.234375px;}
.h3{height:58.749023px;}
.hb{height:62.437500px;}
.h7{height:64.089844px;}
.h6{height:69.430664px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.200000px;}
.x12{left:110.700000px;}
.xc{left:112.200000px;}
.xe{left:115.050000px;}
.x11{left:123.450000px;}
.x2{left:132.450000px;}
.x7{left:136.200000px;}
.xd{left:139.200000px;}
.xf{left:140.550000px;}
.x3{left:141.750000px;}
.xb{left:153.300000px;}
.x8{left:161.700000px;}
.x5{left:174.600000px;}
.x4{left:175.950000px;}
.x10{left:178.800000px;}
.x1{left:206.400000px;}
.x9{left:308.850000px;}
.xa{left:477.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.272000pt;}
.ls6{letter-spacing:63.146667pt;}
.ls3{letter-spacing:63.680000pt;}
.ls9{letter-spacing:65.040000pt;}
.ls2{letter-spacing:65.573333pt;}
.ls5{letter-spacing:73.280000pt;}
.ls8{letter-spacing:75.173333pt;}
.ws1{word-spacing:-19.205333pt;}
.ws7{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.728000pt;}
.ws2{word-spacing:-16.250667pt;}
.ws0{word-spacing:-14.773333pt;}
.ws3{word-spacing:-11.818667pt;}
.ws5{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-1194.197333pt;}
._e{margin-left:-1137.536000pt;}
._c{margin-left:-601.237333pt;}
._8{margin-left:-458.773333pt;}
._1a{margin-left:-176.277333pt;}
._1e{margin-left:-173.365333pt;}
._1c{margin-left:-157.450667pt;}
._7{margin-left:-7.210667pt;}
._6{margin-left:-5.560000pt;}
._2{margin-left:-4.368000pt;}
._4{margin-left:-3.258667pt;}
._1{margin-left:-1.848000pt;}
._3{margin-left:-0.896000pt;}
._0{width:1.397333pt;}
._5{width:2.965333pt;}
._15{width:4.048000pt;}
._17{width:6.250667pt;}
._16{width:7.184000pt;}
._11{width:10.090667pt;}
._10{width:11.264000pt;}
._20{width:14.202667pt;}
._12{width:20.592000pt;}
._13{width:23.525333pt;}
._14{width:24.464000pt;}
._19{width:25.384000pt;}
._18{width:26.400000pt;}
._1d{width:123.434667pt;}
._1f{width:139.978667pt;}
._1b{width:143.146667pt;}
._9{width:423.808000pt;}
._d{width:566.208000pt;}
._f{width:1103.296000pt;}
._b{width:1159.808000pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y18{bottom:42.881333pt;}
.y1a{bottom:78.748000pt;}
.y7e{bottom:82.348000pt;}
.y98{bottom:90.614667pt;}
.y19{bottom:97.148000pt;}
.yb2{bottom:102.881333pt;}
.y7d{bottom:107.548000pt;}
.y35{bottom:110.348000pt;}
.y51{bottom:111.281333pt;}
.y97{bottom:115.814667pt;}
.y60{bottom:124.881333pt;}
.yb1{bottom:125.814667pt;}
.y7c{bottom:132.881333pt;}
.y34{bottom:137.948000pt;}
.y50{bottom:138.881333pt;}
.yb0{bottom:148.881333pt;}
.y5f{bottom:150.081333pt;}
.y7b{bottom:158.081333pt;}
.y96{bottom:169.814667pt;}
.y33{bottom:173.148000pt;}
.y4f{bottom:174.081333pt;}
.y5e{bottom:175.414667pt;}
.y7a{bottom:183.414667pt;}
.yaf{bottom:198.214667pt;}
.y32{bottom:200.748000pt;}
.y4e{bottom:201.681333pt;}
.y79{bottom:208.614667pt;}
.yae{bottom:223.414667pt;}
.y17{bottom:225.014667pt;}
.y31{bottom:228.348000pt;}
.y5d{bottom:229.281333pt;}
.y95{bottom:231.414667pt;}
.y78{bottom:233.948000pt;}
.y4d{bottom:236.881333pt;}
.yad{bottom:248.748000pt;}
.y16{bottom:250.214667pt;}
.y77{bottom:259.148000pt;}
.y30{bottom:263.548000pt;}
.y94{bottom:264.214667pt;}
.y4c{bottom:264.481333pt;}
.yac{bottom:273.948000pt;}
.y15{bottom:275.548000pt;}
.y76{bottom:284.481333pt;}
.y93{bottom:289.548000pt;}
.y2f{bottom:291.148000pt;}
.y5c{bottom:292.081333pt;}
.y4b{bottom:299.681333pt;}
.y14{bottom:300.748000pt;}
.y75{bottom:310.081333pt;}
.yab{bottom:311.681333pt;}
.y5b{bottom:319.681333pt;}
.y92{bottom:322.348000pt;}
.y13{bottom:326.081333pt;}
.y2e{bottom:326.348000pt;}
.y4a{bottom:327.281333pt;}
.y5a{bottom:347.281333pt;}
.y12{bottom:351.281333pt;}
.y2d{bottom:353.948000pt;}
.y49{bottom:354.881333pt;}
.y91{bottom:355.148000pt;}
.y74{bottom:363.948000pt;}
.yaa{bottom:373.281333pt;}
.y11{bottom:376.614667pt;}
.y90{bottom:380.348000pt;}
.y48{bottom:382.481333pt;}
.y2c{bottom:389.148000pt;}
.y10{bottom:402.348000pt;}
.ya9{bottom:406.081333pt;}
.y59{bottom:410.081333pt;}
.y8f{bottom:413.148000pt;}
.y2b{bottom:416.748000pt;}
.y47{bottom:417.681333pt;}
.y73{bottom:425.681333pt;}
.yf{bottom:427.681333pt;}
.ya8{bottom:438.881333pt;}
.y2a{bottom:444.348000pt;}
.y46{bottom:445.281333pt;}
.y8e{bottom:445.948000pt;}
.y72{bottom:451.281333pt;}
.y8d{bottom:471.281333pt;}
.ya7{bottom:471.681333pt;}
.y58{bottom:472.881333pt;}
.y29{bottom:479.548000pt;}
.y45{bottom:480.481333pt;}
.ye{bottom:481.548000pt;}
.y71{bottom:484.081333pt;}
.ya6{bottom:497.014667pt;}
.y8c{bottom:504.081333pt;}
.y28{bottom:507.148000pt;}
.y44{bottom:508.081333pt;}
.y70{bottom:509.281333pt;}
.y8b{bottom:529.281333pt;}
.ya5{bottom:529.814667pt;}
.y6f{bottom:534.614667pt;}
.y27{bottom:534.748000pt;}
.y57{bottom:535.681333pt;}
.yd{bottom:536.748000pt;}
.y43{bottom:543.281333pt;}
.ya4{bottom:555.014667pt;}
.y6e{bottom:559.814667pt;}
.y8a{bottom:562.081333pt;}
.y26{bottom:569.948000pt;}
.y42{bottom:570.881333pt;}
.yc{bottom:591.948000pt;}
.y6d{bottom:592.614667pt;}
.ya3{bottom:592.748000pt;}
.y25{bottom:597.548000pt;}
.y56{bottom:598.481333pt;}
.y41{bottom:606.081333pt;}
.y89{bottom:615.814667pt;}
.y6c{bottom:617.948000pt;}
.y55{bottom:626.081333pt;}
.y24{bottom:632.748000pt;}
.y40{bottom:633.681333pt;}
.ya2{bottom:646.881333pt;}
.yb{bottom:648.348000pt;}
.y6b{bottom:650.748000pt;}
.y54{bottom:661.281333pt;}
.y3f{bottom:668.881333pt;}
.y88{bottom:669.681333pt;}
.ya1{bottom:672.081333pt;}
.y6a{bottom:675.948000pt;}
.y23{bottom:687.948000pt;}
.y53{bottom:688.881333pt;}
.y3e{bottom:696.481333pt;}
.y69{bottom:701.281333pt;}
.ya{bottom:702.614667pt;}
.ya0{bottom:722.614667pt;}
.y52{bottom:724.081333pt;}
.y9{bottom:725.681333pt;}
.y87{bottom:731.414667pt;}
.y3d{bottom:731.681333pt;}
.y68{bottom:734.081333pt;}
.y22{bottom:742.081333pt;}
.y9f{bottom:748.214667pt;}
.y8{bottom:748.614667pt;}
.y86{bottom:756.614667pt;}
.y3c{bottom:759.281333pt;}
.y21{bottom:767.414667pt;}
.y7{bottom:771.681333pt;}
.y9e{bottom:773.548000pt;}
.y85{bottom:781.948000pt;}
.y3b{bottom:786.881333pt;}
.y67{bottom:792.081333pt;}
.y20{bottom:792.614667pt;}
.y6{bottom:795.814667pt;}
.y9d{bottom:799.148000pt;}
.y84{bottom:807.148000pt;}
.y3a{bottom:814.481333pt;}
.y66{bottom:817.414667pt;}
.y1f{bottom:817.948000pt;}
.y9c{bottom:824.881333pt;}
.y83{bottom:832.481333pt;}
.y65{bottom:842.614667pt;}
.y1e{bottom:843.148000pt;}
.y5{bottom:848.081333pt;}
.y39{bottom:849.681333pt;}
.y9b{bottom:850.214667pt;}
.y82{bottom:865.281333pt;}
.y64{bottom:867.948000pt;}
.y1d{bottom:868.481333pt;}
.y9a{bottom:875.414667pt;}
.y38{bottom:877.281333pt;}
.y81{bottom:890.881333pt;}
.y1c{bottom:893.681333pt;}
.y4{bottom:896.481333pt;}
.y63{bottom:900.748000pt;}
.y37{bottom:912.481333pt;}
.y80{bottom:923.681333pt;}
.y62{bottom:925.948000pt;}
.y36{bottom:940.081333pt;}
.y3{bottom:944.881333pt;}
.y1b{bottom:947.681333pt;}
.y7f{bottom:948.881333pt;}
.y61{bottom:951.281333pt;}
.y99{bottom:976.481333pt;}
.y2{bottom:1014.214667pt;}
.ha{height:37.000000pt;}
.h9{height:46.250000pt;}
.h5{height:47.473958pt;}
.h4{height:49.847656pt;}
.h8{height:50.875000pt;}
.h3{height:52.221354pt;}
.hb{height:55.500000pt;}
.h7{height:56.968750pt;}
.h6{height:61.716146pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.733333pt;}
.x12{left:98.400000pt;}
.xc{left:99.733333pt;}
.xe{left:102.266667pt;}
.x11{left:109.733333pt;}
.x2{left:117.733333pt;}
.x7{left:121.066667pt;}
.xd{left:123.733333pt;}
.xf{left:124.933333pt;}
.x3{left:126.000000pt;}
.xb{left:136.266667pt;}
.x8{left:143.733333pt;}
.x5{left:155.200000pt;}
.x4{left:156.400000pt;}
.x10{left:158.933333pt;}
.x1{left:183.466667pt;}
.x9{left:274.533333pt;}
.xa{left:424.800000pt;}
}




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