
    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_7377f4f2ae2daec4e6976927.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e956d6a09773dd89a5bb64cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937012;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_de6802a0967cdf19b5081152.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.772949;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_99ed0a8a9c77c98865d6619b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.085449;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_8e1fe3316b8a6131a3674b20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.085449;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_40934a282b348bc76c78a021.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62c3f5736303eaf43810bdc9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_830c34714743ed2614e597d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955078;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;}
.m1{transform:matrix(0.204356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204356,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.ls7{letter-spacing:-4.594376px;}
.ls9{letter-spacing:-4.456655px;}
.ls8{letter-spacing:-3.938824px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.192520px;}
.ls23{letter-spacing:5.961150px;}
.ls13{letter-spacing:6.900000px;}
.ls1d{letter-spacing:7.200000px;}
.ls4{letter-spacing:7.260000px;}
.ls18{letter-spacing:7.740000px;}
.ls3{letter-spacing:7.800000px;}
.ls1a{letter-spacing:8.100000px;}
.ls2{letter-spacing:8.263800px;}
.ls1{letter-spacing:8.346900px;}
.ls1b{letter-spacing:8.700000px;}
.ls26{letter-spacing:8.760000px;}
.ls1f{letter-spacing:8.820000px;}
.lse{letter-spacing:9.000000px;}
.ls25{letter-spacing:9.001950px;}
.ls19{letter-spacing:9.060000px;}
.lsc{letter-spacing:9.675000px;}
.ls14{letter-spacing:11.040000px;}
.ls17{letter-spacing:11.280000px;}
.ls5{letter-spacing:11.580000px;}
.lsb{letter-spacing:12.000000px;}
.lsa{letter-spacing:12.180000px;}
.ls15{letter-spacing:12.600000px;}
.ls11{letter-spacing:20.728800px;}
.lsf{letter-spacing:20.811900px;}
.ls1c{letter-spacing:26.493600px;}
.ls12{letter-spacing:26.643600px;}
.ls10{letter-spacing:26.712300px;}
.ls1e{letter-spacing:28.057800px;}
.ls16{letter-spacing:28.140900px;}
.ls27{letter-spacing:30.684300px;}
.ls24{letter-spacing:35.301150px;}
.ls28{letter-spacing:35.385000px;}
.ls22{letter-spacing:36.867300px;}
.ls20{letter-spacing:40.755900px;}
.ls21{letter-spacing:43.024650px;}
.lsd{letter-spacing:43.395000px;}
.ls29{letter-spacing:49.530000px;}
.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:-58.517100px;}
.ws2{word-spacing:-46.385100px;}
.wsc{word-spacing:-45.250050px;}
.ws0{word-spacing:-43.798800px;}
.wse{word-spacing:-42.560550px;}
.ws10{word-spacing:-42.054600px;}
.wsb{word-spacing:-41.142600px;}
.wsf{word-spacing:-40.340550px;}
.ws11{word-spacing:-39.380550px;}
.ws8{word-spacing:-36.163050px;}
.ws12{word-spacing:-35.583600px;}
.ws16{word-spacing:-33.819900px;}
.wsa{word-spacing:-33.445050px;}
.ws13{word-spacing:-31.280550px;}
.wsd{word-spacing:-28.351050px;}
.ws15{word-spacing:-26.398050px;}
.ws6{word-spacing:-25.483916px;}
.ws9{word-spacing:-24.445050px;}
.ws19{word-spacing:-23.468550px;}
.ws7{word-spacing:-20.889539px;}
.ws14{word-spacing:-18.586050px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:5.579843px;}
.ws4{word-spacing:9.135824px;}
.ws17{word-spacing:17.668200px;}
.ws18{word-spacing:19.217100px;}
._12{margin-left:-11.305075px;}
._10{margin-left:-8.742228px;}
._e{margin-left:-5.820689px;}
._15{margin-left:-4.691850px;}
._a{margin-left:-3.677100px;}
._9{margin-left:-2.271150px;}
._8{width:1.405950px;}
._b{width:2.834250px;}
._5{width:3.876000px;}
._4{width:5.426400px;}
._1{width:6.589200px;}
._2{width:7.752000px;}
._0{width:9.496200px;}
._3{width:11.046600px;}
._7{width:12.819000px;}
._6{width:13.824000px;}
._c{width:14.880300px;}
._d{width:16.596000px;}
._13{width:19.387091px;}
._11{width:20.957700px;}
._f{width:24.269903px;}
._17{width:38.299500px;}
._14{width:47.856450px;}
._16{width:276.932850px;}
.fca{color:rgb(146,139,112);}
.fc6{color:rgb(191,151,77);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(83,73,73);}
.fc7{color:rgb(196,171,143);}
.fc1{color:rgb(198,105,81);}
.fc9{color:rgb(89,89,89);}
.fc8{color:rgb(204,153,0);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:54.000000px;}
.fs11{font-size:85.650000px;}
.fs6{font-size:101.935662px;}
.fs2{font-size:108.150000px;}
.fs9{font-size:112.650000px;}
.fsa{font-size:112.800000px;}
.fs12{font-size:121.650000px;}
.fsd{font-size:130.650000px;}
.fse{font-size:130.800000px;}
.fsf{font-size:144.150000px;}
.fs10{font-size:144.300000px;}
.fs1{font-size:148.800000px;}
.fsb{font-size:157.650000px;}
.fsc{font-size:157.800000px;}
.fs8{font-size:166.650000px;}
.fs3{font-size:180.150000px;}
.fs4{font-size:180.300000px;}
.fs0{font-size:193.800000px;}
.fs5{font-size:216.300000px;}
.y0{bottom:0.000000px;}
.yd{bottom:6.750150px;}
.ye{bottom:8.713891px;}
.yf{bottom:17.062500px;}
.y2d{bottom:57.187500px;}
.y22{bottom:73.237500px;}
.y44{bottom:84.187500px;}
.y50{bottom:90.075000px;}
.y2c{bottom:96.600000px;}
.y21{bottom:101.400000px;}
.y5{bottom:101.700000px;}
.y39{bottom:106.725000px;}
.ya{bottom:114.525000px;}
.y43{bottom:120.225000px;}
.y20{bottom:128.437500px;}
.y2b{bottom:129.300000px;}
.y4f{bottom:132.900000px;}
.y38{bottom:149.512500px;}
.y1f{bottom:155.475000px;}
.y42{bottom:164.175000px;}
.y2a{bottom:169.845000px;}
.y4e{bottom:176.805000px;}
.y1e{bottom:183.645000px;}
.y41{bottom:200.220000px;}
.y37{bottom:202.470000px;}
.y1d{bottom:210.675000px;}
.y4d{bottom:219.630000px;}
.y9{bottom:233.925000px;}
.y1c{bottom:237.720000px;}
.y36{bottom:245.280000px;}
.y29{bottom:262.230000px;}
.y1b{bottom:265.875000px;}
.y4c{bottom:269.205000px;}
.y40{bottom:285.825000px;}
.y28{bottom:293.775000px;}
.y35{bottom:297.120000px;}
.y4b{bottom:301.875000px;}
.y27{bottom:333.195000px;}
.y1a{bottom:333.450000px;}
.y34{bottom:339.900000px;}
.y4a{bottom:340.170000px;}
.y8{bottom:352.200000px;}
.y3f{bottom:371.445000px;}
.y49{bottom:372.870000px;}
.y26{bottom:374.880000px;}
.y33{bottom:391.725000px;}
.y19{bottom:402.195000px;}
.y3e{bottom:410.880000px;}
.y48{bottom:412.275000px;}
.y18{bottom:430.350000px;}
.y32{bottom:431.175000px;}
.y47{bottom:456.225000px;}
.y17{bottom:457.380000px;}
.y25{bottom:467.250000px;}
.y7{bottom:471.630000px;}
.y31{bottom:479.580000px;}
.y16{bottom:484.425000px;}
.y4{bottom:489.045000px;}
.y2f{bottom:489.780000px;}
.y3d{bottom:494.250000px;}
.y46{bottom:501.255000px;}
.y24{bottom:507.825000px;}
.y6{bottom:520.050000px;}
.y30{bottom:522.405000px;}
.y3c{bottom:529.155000px;}
.y3a{bottom:538.500000px;}
.y2e{bottom:541.620000px;}
.y45{bottom:544.095000px;}
.y23{bottom:544.995000px;}
.y15{bottom:553.125000px;}
.y3b{bottom:570.945000px;}
.y3{bottom:594.945000px;}
.y14{bottom:621.870000px;}
.y13{bottom:648.900000px;}
.y2{bottom:652.380000px;}
.y12{bottom:675.945000px;}
.yb{bottom:687.300000px;}
.yc{bottom:689.325000px;}
.y10{bottom:691.350000px;}
.y11{bottom:704.100000px;}
.y1{bottom:709.845000px;}
.h8{height:29.250000px;}
.ha{height:43.294922px;}
.h14{height:68.670557px;}
.h9{height:70.827367px;}
.h16{height:86.710107px;}
.hc{height:90.318018px;}
.hd{height:90.438281px;}
.h15{height:97.533838px;}
.h10{height:104.749658px;}
.h11{height:104.869922px;}
.h3{height:107.569116px;}
.h2{height:112.980469px;}
.h12{height:115.573389px;}
.h13{height:115.693652px;}
.he{height:126.397119px;}
.hf{height:126.517383px;}
.hb{height:133.612939px;}
.h4{height:144.436670px;}
.h5{height:144.556934px;}
.h7{height:155.380664px;}
.h6{height:173.420215px;}
.h1{height:192.759082px;}
.h0{height:810.000000px;}
.w2{width:412.875000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x8{left:36.000000px;}
.x1a{left:45.937484px;}
.xc{left:47.587484px;}
.x1{left:59.024984px;}
.x11{left:61.274984px;}
.x3{left:72.899984px;}
.xd{left:74.624984px;}
.x1b{left:83.812484px;}
.xe{left:85.424984px;}
.x5{left:86.699984px;}
.xb{left:88.537484px;}
.x7{left:92.212484px;}
.x4{left:99.937484px;}
.xf{left:107.062484px;}
.xa{left:110.849984px;}
.x13{left:115.537484px;}
.x6{left:121.762484px;}
.x15{left:126.374984px;}
.x1d{left:131.549984px;}
.x16{left:147.974984px;}
.x1e{left:153.149984px;}
.x1c{left:265.154984px;}
.x10{left:283.649984px;}
.x14{left:307.994984px;}
.x1f{left:409.124984px;}
.x17{left:462.449984px;}
.x12{left:468.494984px;}
.x2{left:841.349984px;}
.x18{left:874.874984px;}
.x19{left:881.924984px;}
.x9{left:1036.199984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-4.083890pt;}
.ls9{letter-spacing:-3.961471pt;}
.ls8{letter-spacing:-3.501177pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.948907pt;}
.ls23{letter-spacing:5.298800pt;}
.ls13{letter-spacing:6.133333pt;}
.ls1d{letter-spacing:6.400000pt;}
.ls4{letter-spacing:6.453333pt;}
.ls18{letter-spacing:6.880000pt;}
.ls3{letter-spacing:6.933333pt;}
.ls1a{letter-spacing:7.200000pt;}
.ls2{letter-spacing:7.345600pt;}
.ls1{letter-spacing:7.419467pt;}
.ls1b{letter-spacing:7.733333pt;}
.ls26{letter-spacing:7.786667pt;}
.ls1f{letter-spacing:7.840000pt;}
.lse{letter-spacing:8.000000pt;}
.ls25{letter-spacing:8.001733pt;}
.ls19{letter-spacing:8.053333pt;}
.lsc{letter-spacing:8.600000pt;}
.ls14{letter-spacing:9.813333pt;}
.ls17{letter-spacing:10.026667pt;}
.ls5{letter-spacing:10.293333pt;}
.lsb{letter-spacing:10.666667pt;}
.lsa{letter-spacing:10.826667pt;}
.ls15{letter-spacing:11.200000pt;}
.ls11{letter-spacing:18.425600pt;}
.lsf{letter-spacing:18.499467pt;}
.ls1c{letter-spacing:23.549867pt;}
.ls12{letter-spacing:23.683200pt;}
.ls10{letter-spacing:23.744267pt;}
.ls1e{letter-spacing:24.940267pt;}
.ls16{letter-spacing:25.014133pt;}
.ls27{letter-spacing:27.274933pt;}
.ls24{letter-spacing:31.378800pt;}
.ls28{letter-spacing:31.453333pt;}
.ls22{letter-spacing:32.770933pt;}
.ls20{letter-spacing:36.227467pt;}
.ls21{letter-spacing:38.244133pt;}
.lsd{letter-spacing:38.573333pt;}
.ls29{letter-spacing:44.026667pt;}
.ws3{word-spacing:-52.015200pt;}
.ws2{word-spacing:-41.231200pt;}
.wsc{word-spacing:-40.222267pt;}
.ws0{word-spacing:-38.932267pt;}
.wse{word-spacing:-37.831600pt;}
.ws10{word-spacing:-37.381867pt;}
.wsb{word-spacing:-36.571200pt;}
.wsf{word-spacing:-35.858267pt;}
.ws11{word-spacing:-35.004933pt;}
.ws8{word-spacing:-32.144933pt;}
.ws12{word-spacing:-31.629867pt;}
.ws16{word-spacing:-30.062133pt;}
.wsa{word-spacing:-29.728933pt;}
.ws13{word-spacing:-27.804933pt;}
.wsd{word-spacing:-25.200933pt;}
.ws15{word-spacing:-23.464933pt;}
.ws6{word-spacing:-22.652369pt;}
.ws9{word-spacing:-21.728933pt;}
.ws19{word-spacing:-20.860933pt;}
.ws7{word-spacing:-18.568479pt;}
.ws14{word-spacing:-16.520933pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:4.959860pt;}
.ws4{word-spacing:8.120732pt;}
.ws17{word-spacing:15.705067pt;}
.ws18{word-spacing:17.081867pt;}
._12{margin-left:-10.048955pt;}
._10{margin-left:-7.770869pt;}
._e{margin-left:-5.173946pt;}
._15{margin-left:-4.170533pt;}
._a{margin-left:-3.268533pt;}
._9{margin-left:-2.018800pt;}
._8{width:1.249733pt;}
._b{width:2.519333pt;}
._5{width:3.445333pt;}
._4{width:4.823467pt;}
._1{width:5.857067pt;}
._2{width:6.890667pt;}
._0{width:8.441067pt;}
._3{width:9.819200pt;}
._7{width:11.394667pt;}
._6{width:12.288000pt;}
._c{width:13.226933pt;}
._d{width:14.752000pt;}
._13{width:17.232970pt;}
._11{width:18.629067pt;}
._f{width:21.573247pt;}
._17{width:34.044000pt;}
._14{width:42.539067pt;}
._16{width:246.162533pt;}
.fs7{font-size:48.000000pt;}
.fs11{font-size:76.133333pt;}
.fs6{font-size:90.609478pt;}
.fs2{font-size:96.133333pt;}
.fs9{font-size:100.133333pt;}
.fsa{font-size:100.266667pt;}
.fs12{font-size:108.133333pt;}
.fsd{font-size:116.133333pt;}
.fse{font-size:116.266667pt;}
.fsf{font-size:128.133333pt;}
.fs10{font-size:128.266667pt;}
.fs1{font-size:132.266667pt;}
.fsb{font-size:140.133333pt;}
.fsc{font-size:140.266667pt;}
.fs8{font-size:148.133333pt;}
.fs3{font-size:160.133333pt;}
.fs4{font-size:160.266667pt;}
.fs0{font-size:172.266667pt;}
.fs5{font-size:192.266667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:6.000133pt;}
.ye{bottom:7.745680pt;}
.yf{bottom:15.166667pt;}
.y2d{bottom:50.833333pt;}
.y22{bottom:65.100000pt;}
.y44{bottom:74.833333pt;}
.y50{bottom:80.066667pt;}
.y2c{bottom:85.866667pt;}
.y21{bottom:90.133333pt;}
.y5{bottom:90.400000pt;}
.y39{bottom:94.866667pt;}
.ya{bottom:101.800000pt;}
.y43{bottom:106.866667pt;}
.y20{bottom:114.166667pt;}
.y2b{bottom:114.933333pt;}
.y4f{bottom:118.133333pt;}
.y38{bottom:132.900000pt;}
.y1f{bottom:138.200000pt;}
.y42{bottom:145.933333pt;}
.y2a{bottom:150.973333pt;}
.y4e{bottom:157.160000pt;}
.y1e{bottom:163.240000pt;}
.y41{bottom:177.973333pt;}
.y37{bottom:179.973333pt;}
.y1d{bottom:187.266667pt;}
.y4d{bottom:195.226667pt;}
.y9{bottom:207.933333pt;}
.y1c{bottom:211.306667pt;}
.y36{bottom:218.026667pt;}
.y29{bottom:233.093333pt;}
.y1b{bottom:236.333333pt;}
.y4c{bottom:239.293333pt;}
.y40{bottom:254.066667pt;}
.y28{bottom:261.133333pt;}
.y35{bottom:264.106667pt;}
.y4b{bottom:268.333333pt;}
.y27{bottom:296.173333pt;}
.y1a{bottom:296.400000pt;}
.y34{bottom:302.133333pt;}
.y4a{bottom:302.373333pt;}
.y8{bottom:313.066667pt;}
.y3f{bottom:330.173333pt;}
.y49{bottom:331.440000pt;}
.y26{bottom:333.226667pt;}
.y33{bottom:348.200000pt;}
.y19{bottom:357.506667pt;}
.y3e{bottom:365.226667pt;}
.y48{bottom:366.466667pt;}
.y18{bottom:382.533333pt;}
.y32{bottom:383.266667pt;}
.y47{bottom:405.533333pt;}
.y17{bottom:406.560000pt;}
.y25{bottom:415.333333pt;}
.y7{bottom:419.226667pt;}
.y31{bottom:426.293333pt;}
.y16{bottom:430.600000pt;}
.y4{bottom:434.706667pt;}
.y2f{bottom:435.360000pt;}
.y3d{bottom:439.333333pt;}
.y46{bottom:445.560000pt;}
.y24{bottom:451.400000pt;}
.y6{bottom:462.266667pt;}
.y30{bottom:464.360000pt;}
.y3c{bottom:470.360000pt;}
.y3a{bottom:478.666667pt;}
.y2e{bottom:481.440000pt;}
.y45{bottom:483.640000pt;}
.y23{bottom:484.440000pt;}
.y15{bottom:491.666667pt;}
.y3b{bottom:507.506667pt;}
.y3{bottom:528.840000pt;}
.y14{bottom:552.773333pt;}
.y13{bottom:576.800000pt;}
.y2{bottom:579.893333pt;}
.y12{bottom:600.840000pt;}
.yb{bottom:610.933333pt;}
.yc{bottom:612.733333pt;}
.y10{bottom:614.533333pt;}
.y11{bottom:625.866667pt;}
.y1{bottom:630.973333pt;}
.h8{height:26.000000pt;}
.ha{height:38.484375pt;}
.h14{height:61.040495pt;}
.h9{height:62.957659pt;}
.h16{height:77.075651pt;}
.hc{height:80.282682pt;}
.hd{height:80.389583pt;}
.h15{height:86.696745pt;}
.h10{height:93.110807pt;}
.h11{height:93.217708pt;}
.h3{height:95.616992pt;}
.h2{height:100.427083pt;}
.h12{height:102.731901pt;}
.h13{height:102.838802pt;}
.he{height:112.352995pt;}
.hf{height:112.459896pt;}
.hb{height:118.767057pt;}
.h4{height:128.388151pt;}
.h5{height:128.495052pt;}
.h7{height:138.116146pt;}
.h6{height:154.151302pt;}
.h1{height:171.341406pt;}
.h0{height:720.000000pt;}
.w2{width:367.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x8{left:32.000000pt;}
.x1a{left:40.833319pt;}
.xc{left:42.299986pt;}
.x1{left:52.466652pt;}
.x11{left:54.466652pt;}
.x3{left:64.799986pt;}
.xd{left:66.333319pt;}
.x1b{left:74.499986pt;}
.xe{left:75.933319pt;}
.x5{left:77.066652pt;}
.xb{left:78.699986pt;}
.x7{left:81.966652pt;}
.x4{left:88.833319pt;}
.xf{left:95.166652pt;}
.xa{left:98.533319pt;}
.x13{left:102.699986pt;}
.x6{left:108.233319pt;}
.x15{left:112.333319pt;}
.x1d{left:116.933319pt;}
.x16{left:131.533319pt;}
.x1e{left:136.133319pt;}
.x1c{left:235.693319pt;}
.x10{left:252.133319pt;}
.x14{left:273.773319pt;}
.x1f{left:363.666652pt;}
.x17{left:411.066652pt;}
.x12{left:416.439986pt;}
.x2{left:747.866652pt;}
.x18{left:777.666652pt;}
.x19{left:783.933319pt;}
.x9{left:921.066652pt;}
}




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