
    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_d1e4897598dd582fad2cbf3a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_2b4997db76e52c4ba1c65e70.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_2739fce4204e47b996a97b7c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_aa4f6448b6e9d21370bd59d0.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_c1ec391aad3e789cb45b5ca5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_f756a7c5584c7775db89119c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_460ce4917a4d882b1a2fcde5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e394680effed9e32616e1c9f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.857910;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_9091661adfdab285f78660ce.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8cfcf397fab02190dd5fd1ee.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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;}
.ls7{letter-spacing:-0.393120px;}
.ls9{letter-spacing:-0.332640px;}
.ls6{letter-spacing:-0.302400px;}
.ls5{letter-spacing:-0.260064px;}
.ls1{letter-spacing:-0.205344px;}
.ls4{letter-spacing:-0.198720px;}
.ls2{letter-spacing:-0.158976px;}
.ls8{letter-spacing:-0.151200px;}
.ls3{letter-spacing:-0.079488px;}
.lsc{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.014400px;}
.lsa{letter-spacing:3.983904px;}
.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;}
}
.ws7{word-spacing:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.361280px;}
.ws1{word-spacing:-16.354656px;}
.ws4{word-spacing:-15.120000px;}
.ws5{word-spacing:-13.275360px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-4.509216px;}
._8{margin-left:-3.183264px;}
._6{margin-left:-2.088000px;}
._1{margin-left:-1.036800px;}
._2{width:1.012752px;}
._b{width:2.434608px;}
._a{width:3.754512px;}
._4{width:5.479200px;}
._7{width:6.537600px;}
._12{width:7.658928px;}
._14{width:8.978400px;}
._f{width:10.274400px;}
._16{width:11.455200px;}
._c{width:12.463200px;}
._15{width:14.241600px;}
._e{width:15.357600px;}
._1c{width:16.560000px;}
._18{width:19.784880px;}
._1b{width:20.851200px;}
._17{width:22.384800px;}
._d{width:24.609600px;}
._19{width:25.732800px;}
._13{width:27.165600px;}
._11{width:30.456000px;}
._5{width:32.392800px;}
._20{width:33.703200px;}
._10{width:35.949600px;}
._1d{width:37.022400px;}
._9{width:42.652800px;}
._1e{width:49.708800px;}
._3{width:50.938560px;}
._21{width:57.880800px;}
._0{width:63.225792px;}
._22{width:66.722400px;}
._1f{width:154.108800px;}
._23{width:202.737600px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(27,28,29);}
.fs4{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:108.688800px;}
.y1b{bottom:114.088800px;}
.y73{bottom:116.608800px;}
.y61{bottom:117.688800px;}
.y99{bottom:120.928800px;}
.y3b{bottom:126.688800px;}
.y1a{bottom:127.048800px;}
.y19{bottom:132.448800px;}
.y72{bottom:137.488800px;}
.y98{bottom:141.808800px;}
.y18{bottom:145.768800px;}
.y60{bottom:148.648800px;}
.y54{bottom:152.968800px;}
.y3a{bottom:157.648800px;}
.y71{bottom:158.368800px;}
.y70{bottom:178.888800px;}
.y5f{bottom:179.968800px;}
.y97{bottom:183.208800px;}
.y53{bottom:183.928800px;}
.y39{bottom:188.968800px;}
.y17{bottom:192.928800px;}
.y6f{bottom:199.768800px;}
.y96{bottom:204.088800px;}
.y5e{bottom:210.928800px;}
.y52{bottom:214.888800px;}
.y38{bottom:219.928800px;}
.y95{bottom:224.968800px;}
.y16{bottom:230.728800px;}
.y6e{bottom:240.808800px;}
.y5d{bottom:241.888800px;}
.y51{bottom:245.848800px;}
.y37{bottom:250.888800px;}
.y15{bottom:253.768800px;}
.y6d{bottom:262.048800px;}
.y94{bottom:266.008800px;}
.y5c{bottom:272.848800px;}
.y50{bottom:276.808800px;}
.y36{bottom:281.848800px;}
.y6c{bottom:282.568800px;}
.y93{bottom:287.248800px;}
.y5b{bottom:303.808800px;}
.y92{bottom:307.768800px;}
.y4f{bottom:308.128800px;}
.y35{bottom:312.808800px;}
.y6b{bottom:323.968800px;}
.y5a{bottom:335.128800px;}
.y34{bottom:344.128800px;}
.y6a{bottom:345.208800px;}
.y4e{bottom:348.088800px;}
.y91{bottom:349.168800px;}
.y69{bottom:365.728800px;}
.y59{bottom:366.088800px;}
.y90{bottom:370.408800px;}
.y33{bottom:375.088800px;}
.y4d{bottom:379.048800px;}
.y8f{bottom:390.928800px;}
.y32{bottom:406.048800px;}
.y68{bottom:407.128800px;}
.y4c{bottom:410.008800px;}
.y8e{bottom:432.328800px;}
.y31{bottom:437.008800px;}
.y4b{bottom:441.328800px;}
.y8d{bottom:453.568800px;}
.y67{bottom:459.328800px;}
.y30{bottom:468.328800px;}
.y8c{bottom:474.088800px;}
.y4a{bottom:481.288800px;}
.y66{bottom:490.288800px;}
.y2f{bottom:499.288800px;}
.y49{bottom:512.248800px;}
.y8b{bottom:515.488800px;}
.y65{bottom:521.248800px;}
.y2e{bottom:530.248800px;}
.ya8{bottom:536.008800px;}
.y8a{bottom:536.368800px;}
.y48{bottom:543.208800px;}
.y64{bottom:552.208800px;}
.y89{bottom:557.248800px;}
.y2d{bottom:561.208800px;}
.ya7{bottom:577.408800px;}
.y14{bottom:580.648800px;}
.y47{bottom:583.528800px;}
.y2c{bottom:592.528800px;}
.y88{bottom:598.648800px;}
.y46{bottom:614.488800px;}
.ya6{bottom:619.168800px;}
.y87{bottom:619.528800px;}
.y13{bottom:620.608800px;}
.y2b{bottom:623.488800px;}
.y86{bottom:640.408800px;}
.y45{bottom:645.448800px;}
.y12{bottom:651.568800px;}
.y2a{bottom:654.448800px;}
.ya5{bottom:660.568800px;}
.y44{bottom:676.408800px;}
.y85{bottom:681.808800px;}
.y11{bottom:682.528800px;}
.y29{bottom:685.408800px;}
.ya4{bottom:702.328800px;}
.y84{bottom:702.688800px;}
.y10{bottom:713.848800px;}
.y28{bottom:716.728800px;}
.y83{bottom:723.568800px;}
.y58{bottom:725.728800px;}
.ya3{bottom:743.728800px;}
.y82{bottom:744.088800px;}
.yf{bottom:744.808800px;}
.y27{bottom:747.688800px;}
.y57{bottom:756.688800px;}
.y81{bottom:764.968800px;}
.y26{bottom:778.648800px;}
.ye{bottom:784.768800px;}
.ya2{bottom:785.488800px;}
.y56{bottom:787.648800px;}
.y80{bottom:806.008800px;}
.y25{bottom:809.608800px;}
.yd{bottom:815.728800px;}
.y55{bottom:818.608800px;}
.ya1{bottom:826.888800px;}
.y7f{bottom:827.248800px;}
.y63{bottom:827.608800px;}
.yc{bottom:847.048800px;}
.ya0{bottom:847.768800px;}
.y24{bottom:849.928800px;}
.y62{bottom:858.928800px;}
.y7e{bottom:868.648800px;}
.yb{bottom:878.008800px;}
.y23{bottom:880.888800px;}
.y7d{bottom:889.528800px;}
.y43{bottom:889.888800px;}
.y9f{bottom:910.048800px;}
.y7c{bottom:910.408800px;}
.y22{bottom:911.848800px;}
.ya{bottom:917.968800px;}
.y42{bottom:920.848800px;}
.y9e{bottom:930.928800px;}
.y21{bottom:942.808800px;}
.y7b{bottom:951.448800px;}
.y41{bottom:951.808800px;}
.y9{bottom:957.928800px;}
.y9d{bottom:972.328800px;}
.y7a{bottom:972.688800px;}
.y20{bottom:974.128800px;}
.y8{bottom:978.448800px;}
.y40{bottom:983.128800px;}
.y79{bottom:993.208800px;}
.y7{bottom:997.528800px;}
.y1f{bottom:1005.088800px;}
.y9c{bottom:1013.728800px;}
.y3f{bottom:1014.088800px;}
.y6{bottom:1016.968800px;}
.y9b{bottom:1034.608800px;}
.y1e{bottom:1036.048800px;}
.y5{bottom:1037.848800px;}
.y3e{bottom:1045.048800px;}
.y78{bottom:1055.488800px;}
.y4{bottom:1058.368800px;}
.y1d{bottom:1067.008800px;}
.y3d{bottom:1076.008800px;}
.y77{bottom:1076.368800px;}
.y76{bottom:1097.248800px;}
.y2{bottom:1098.328800px;}
.y3{bottom:1104.448800px;}
.y3c{bottom:1107.328800px;}
.y9a{bottom:1117.408800px;}
.y75{bottom:1117.768800px;}
.y1{bottom:1138.288800px;}
.y74{bottom:1138.648800px;}
.h9{height:25.913672px;}
.h5{height:32.113125px;}
.ha{height:41.137031px;}
.h7{height:41.993438px;}
.h8{height:44.149219px;}
.h6{height:45.992813px;}
.h2{height:49.289063px;}
.h3{height:50.027344px;}
.h4{height:1245.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:874.913400px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:18.000000px;}
.xb{left:110.865900px;}
.x8{left:128.865792px;}
.xc{left:133.905936px;}
.xd{left:182.865792px;}
.x1{left:198.252876px;}
.xe{left:215.865768px;}
.x2{left:258.459420px;}
.xa{left:398.040780px;}
.x4{left:411.465900px;}
.x5{left:435.526860px;}
.x6{left:613.065900px;}
.x7{left:637.071780px;}
.x9{left:766.425900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.349440pt;}
.ls9{letter-spacing:-0.295680pt;}
.ls6{letter-spacing:-0.268800pt;}
.ls5{letter-spacing:-0.231168pt;}
.ls1{letter-spacing:-0.182528pt;}
.ls4{letter-spacing:-0.176640pt;}
.ls2{letter-spacing:-0.141312pt;}
.ls8{letter-spacing:-0.134400pt;}
.ls3{letter-spacing:-0.070656pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.012800pt;}
.lsa{letter-spacing:3.541248pt;}
.ws7{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.543360pt;}
.ws1{word-spacing:-14.537472pt;}
.ws4{word-spacing:-13.440000pt;}
.ws5{word-spacing:-11.800320pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-4.008192pt;}
._8{margin-left:-2.829568pt;}
._6{margin-left:-1.856000pt;}
._1{margin-left:-0.921600pt;}
._2{width:0.900224pt;}
._b{width:2.164096pt;}
._a{width:3.337344pt;}
._4{width:4.870400pt;}
._7{width:5.811200pt;}
._12{width:6.807936pt;}
._14{width:7.980800pt;}
._f{width:9.132800pt;}
._16{width:10.182400pt;}
._c{width:11.078400pt;}
._15{width:12.659200pt;}
._e{width:13.651200pt;}
._1c{width:14.720000pt;}
._18{width:17.586560pt;}
._1b{width:18.534400pt;}
._17{width:19.897600pt;}
._d{width:21.875200pt;}
._19{width:22.873600pt;}
._13{width:24.147200pt;}
._11{width:27.072000pt;}
._5{width:28.793600pt;}
._20{width:29.958400pt;}
._10{width:31.955200pt;}
._1d{width:32.908800pt;}
._9{width:37.913600pt;}
._1e{width:44.185600pt;}
._3{width:45.278720pt;}
._21{width:51.449600pt;}
._0{width:56.200704pt;}
._22{width:59.308800pt;}
._1f{width:136.985600pt;}
._23{width:180.211200pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:96.612267pt;}
.y1b{bottom:101.412267pt;}
.y73{bottom:103.652267pt;}
.y61{bottom:104.612267pt;}
.y99{bottom:107.492267pt;}
.y3b{bottom:112.612267pt;}
.y1a{bottom:112.932267pt;}
.y19{bottom:117.732267pt;}
.y72{bottom:122.212267pt;}
.y98{bottom:126.052267pt;}
.y18{bottom:129.572267pt;}
.y60{bottom:132.132267pt;}
.y54{bottom:135.972267pt;}
.y3a{bottom:140.132267pt;}
.y71{bottom:140.772267pt;}
.y70{bottom:159.012267pt;}
.y5f{bottom:159.972267pt;}
.y97{bottom:162.852267pt;}
.y53{bottom:163.492267pt;}
.y39{bottom:167.972267pt;}
.y17{bottom:171.492267pt;}
.y6f{bottom:177.572267pt;}
.y96{bottom:181.412267pt;}
.y5e{bottom:187.492267pt;}
.y52{bottom:191.012267pt;}
.y38{bottom:195.492267pt;}
.y95{bottom:199.972267pt;}
.y16{bottom:205.092267pt;}
.y6e{bottom:214.052267pt;}
.y5d{bottom:215.012267pt;}
.y51{bottom:218.532267pt;}
.y37{bottom:223.012267pt;}
.y15{bottom:225.572267pt;}
.y6d{bottom:232.932267pt;}
.y94{bottom:236.452267pt;}
.y5c{bottom:242.532267pt;}
.y50{bottom:246.052267pt;}
.y36{bottom:250.532267pt;}
.y6c{bottom:251.172267pt;}
.y93{bottom:255.332267pt;}
.y5b{bottom:270.052267pt;}
.y92{bottom:273.572267pt;}
.y4f{bottom:273.892267pt;}
.y35{bottom:278.052267pt;}
.y6b{bottom:287.972267pt;}
.y5a{bottom:297.892267pt;}
.y34{bottom:305.892267pt;}
.y6a{bottom:306.852267pt;}
.y4e{bottom:309.412267pt;}
.y91{bottom:310.372267pt;}
.y69{bottom:325.092267pt;}
.y59{bottom:325.412267pt;}
.y90{bottom:329.252267pt;}
.y33{bottom:333.412267pt;}
.y4d{bottom:336.932267pt;}
.y8f{bottom:347.492267pt;}
.y32{bottom:360.932267pt;}
.y68{bottom:361.892267pt;}
.y4c{bottom:364.452267pt;}
.y8e{bottom:384.292267pt;}
.y31{bottom:388.452267pt;}
.y4b{bottom:392.292267pt;}
.y8d{bottom:403.172267pt;}
.y67{bottom:408.292267pt;}
.y30{bottom:416.292267pt;}
.y8c{bottom:421.412267pt;}
.y4a{bottom:427.812267pt;}
.y66{bottom:435.812267pt;}
.y2f{bottom:443.812267pt;}
.y49{bottom:455.332267pt;}
.y8b{bottom:458.212267pt;}
.y65{bottom:463.332267pt;}
.y2e{bottom:471.332267pt;}
.ya8{bottom:476.452267pt;}
.y8a{bottom:476.772267pt;}
.y48{bottom:482.852267pt;}
.y64{bottom:490.852267pt;}
.y89{bottom:495.332267pt;}
.y2d{bottom:498.852267pt;}
.ya7{bottom:513.252267pt;}
.y14{bottom:516.132267pt;}
.y47{bottom:518.692267pt;}
.y2c{bottom:526.692267pt;}
.y88{bottom:532.132267pt;}
.y46{bottom:546.212267pt;}
.ya6{bottom:550.372267pt;}
.y87{bottom:550.692267pt;}
.y13{bottom:551.652267pt;}
.y2b{bottom:554.212267pt;}
.y86{bottom:569.252267pt;}
.y45{bottom:573.732267pt;}
.y12{bottom:579.172267pt;}
.y2a{bottom:581.732267pt;}
.ya5{bottom:587.172267pt;}
.y44{bottom:601.252267pt;}
.y85{bottom:606.052267pt;}
.y11{bottom:606.692267pt;}
.y29{bottom:609.252267pt;}
.ya4{bottom:624.292267pt;}
.y84{bottom:624.612267pt;}
.y10{bottom:634.532267pt;}
.y28{bottom:637.092267pt;}
.y83{bottom:643.172267pt;}
.y58{bottom:645.092267pt;}
.ya3{bottom:661.092267pt;}
.y82{bottom:661.412267pt;}
.yf{bottom:662.052267pt;}
.y27{bottom:664.612267pt;}
.y57{bottom:672.612267pt;}
.y81{bottom:679.972267pt;}
.y26{bottom:692.132267pt;}
.ye{bottom:697.572267pt;}
.ya2{bottom:698.212267pt;}
.y56{bottom:700.132267pt;}
.y80{bottom:716.452267pt;}
.y25{bottom:719.652267pt;}
.yd{bottom:725.092267pt;}
.y55{bottom:727.652267pt;}
.ya1{bottom:735.012267pt;}
.y7f{bottom:735.332267pt;}
.y63{bottom:735.652267pt;}
.yc{bottom:752.932267pt;}
.ya0{bottom:753.572267pt;}
.y24{bottom:755.492267pt;}
.y62{bottom:763.492267pt;}
.y7e{bottom:772.132267pt;}
.yb{bottom:780.452267pt;}
.y23{bottom:783.012267pt;}
.y7d{bottom:790.692267pt;}
.y43{bottom:791.012267pt;}
.y9f{bottom:808.932267pt;}
.y7c{bottom:809.252267pt;}
.y22{bottom:810.532267pt;}
.ya{bottom:815.972267pt;}
.y42{bottom:818.532267pt;}
.y9e{bottom:827.492267pt;}
.y21{bottom:838.052267pt;}
.y7b{bottom:845.732267pt;}
.y41{bottom:846.052267pt;}
.y9{bottom:851.492267pt;}
.y9d{bottom:864.292267pt;}
.y7a{bottom:864.612267pt;}
.y20{bottom:865.892267pt;}
.y8{bottom:869.732267pt;}
.y40{bottom:873.892267pt;}
.y79{bottom:882.852267pt;}
.y7{bottom:886.692267pt;}
.y1f{bottom:893.412267pt;}
.y9c{bottom:901.092267pt;}
.y3f{bottom:901.412267pt;}
.y6{bottom:903.972267pt;}
.y9b{bottom:919.652267pt;}
.y1e{bottom:920.932267pt;}
.y5{bottom:922.532267pt;}
.y3e{bottom:928.932267pt;}
.y78{bottom:938.212267pt;}
.y4{bottom:940.772267pt;}
.y1d{bottom:948.452267pt;}
.y3d{bottom:956.452267pt;}
.y77{bottom:956.772267pt;}
.y76{bottom:975.332267pt;}
.y2{bottom:976.292267pt;}
.y3{bottom:981.732267pt;}
.y3c{bottom:984.292267pt;}
.y9a{bottom:993.252267pt;}
.y75{bottom:993.572267pt;}
.y1{bottom:1011.812267pt;}
.y74{bottom:1012.132267pt;}
.h9{height:23.034375pt;}
.h5{height:28.545000pt;}
.ha{height:36.566250pt;}
.h7{height:37.327500pt;}
.h8{height:39.243750pt;}
.h6{height:40.882500pt;}
.h2{height:43.812500pt;}
.h3{height:44.468750pt;}
.h4{height:1106.666667pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:777.700800pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:16.000000pt;}
.xb{left:98.547467pt;}
.x8{left:114.547371pt;}
.xc{left:119.027499pt;}
.xd{left:162.547371pt;}
.x1{left:176.224779pt;}
.xe{left:191.880683pt;}
.x2{left:229.741707pt;}
.xa{left:353.814027pt;}
.x4{left:365.747467pt;}
.x5{left:387.134987pt;}
.x6{left:544.947467pt;}
.x7{left:566.286027pt;}
.x9{left:681.267467pt;}
}




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