
    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_46fc759de66e2fd12077bfdb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_12e679a87bde8108c7abbdbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_44a1e96f14d7d812ab215562.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_242814f0cdc7f4ec6b28e442.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.810059;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_c7624f08b7001080187fd2d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_99553dd77f047421a73303ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_f261d1bfc8b26417a50f2f6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_ce83c7a1e011aab4d67b48fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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;}
.m3{transform:matrix(0.000000,-0.186724,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.186724,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.186724,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.251130,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251130,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251130,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,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);}
.m1{transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.334719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334719,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-11.208597px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.627109px;}
.v5{vertical-align:12.596757px;}
.v7{vertical-align:23.465736px;}
.v1{vertical-align:33.120000px;}
.ls6{letter-spacing:-0.768000px;}
.ls8{letter-spacing:-0.561600px;}
.ls5{letter-spacing:-0.303000px;}
.lsb{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.205800px;}
.ls10{letter-spacing:-0.130987px;}
.lse{letter-spacing:-0.099880px;}
.ls7{letter-spacing:-0.048960px;}
.lsa{letter-spacing:-0.046080px;}
.lsf{letter-spacing:-0.018580px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsc{letter-spacing:0.129600px;}
.ls9{letter-spacing:0.132600px;}
.ls3{letter-spacing:8.105614px;}
.ls2{letter-spacing:8.341788px;}
.ls1{letter-spacing:24.426720px;}
.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;}
}
.ws0{word-spacing:-21.338760px;}
.ws2{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.099840px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.924160px;}
.ws6{word-spacing:-14.754240px;}
.ws9{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.299960px;}
.ws1{word-spacing:-10.902240px;}
.ws3{word-spacing:-9.437760px;}
.wsb{word-spacing:-9.353366px;}
.wsd{word-spacing:-6.549281px;}
.ws10{word-spacing:-6.157599px;}
.ws11{word-spacing:0.000000px;}
.wsa{word-spacing:23.160603px;}
.wsc{word-spacing:55.386108px;}
.wsf{word-spacing:95.940310px;}
.wse{word-spacing:386.534772px;}
._c{margin-left:-3.023369px;}
._1{margin-left:-1.011360px;}
._0{width:1.463280px;}
._2{width:2.511120px;}
._a{width:3.516720px;}
._b{width:4.622640px;}
._4{width:7.811520px;}
._3{width:8.838720px;}
._9{width:9.890880px;}
._5{width:16.758720px;}
._8{width:18.243840px;}
._7{width:22.654560px;}
._6{width:23.713920px;}
._d{width:26.843026px;}
._e{width:118.342852px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:17.518161px;}
.fs9{font-size:21.323795px;}
.fsd{font-size:23.558564px;}
.fs11{font-size:24.630396px;}
.fsc{font-size:25.129430px;}
.fse{font-size:27.994917px;}
.fsf{font-size:28.548589px;}
.fs8{font-size:28.549927px;}
.fs10{font-size:28.677580px;}
.fsb{font-size:33.305133px;}
.fsa{font-size:33.645202px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:43.816943px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y36{bottom:12.604586px;}
.y45{bottom:13.882725px;}
.y2{bottom:23.040000px;}
.y2b{bottom:25.039753px;}
.y3b{bottom:25.209050px;}
.y29{bottom:31.928188px;}
.y3c{bottom:33.047962px;}
.y2c{bottom:43.906828px;}
.y3d{bottom:59.107950px;}
.y2d{bottom:66.156928px;}
.y44{bottom:78.868365px;}
.y3e{bottom:85.171524px;}
.y2e{bottom:88.321110px;}
.y35{bottom:90.097198px;}
.y33{bottom:103.209103px;}
.y42{bottom:103.906511px;}
.y2f{bottom:110.571209px;}
.y3f{bottom:111.231513px;}
.y30{bottom:132.735391px;}
.y4b{bottom:133.245697px;}
.y4a{bottom:134.505255px;}
.y40{bottom:137.295087px;}
.y49{bottom:141.635561px;}
.y39{bottom:153.716857px;}
.y31{bottom:154.985491px;}
.y38{bottom:162.432173px;}
.y41{bottom:163.358660px;}
.y47{bottom:167.529693px;}
.y27{bottom:169.410000px;}
.y46{bottom:171.109132px;}
.y37{bottom:171.146146px;}
.y48{bottom:171.299875px;}
.y32{bottom:177.151015px;}
.y26{bottom:189.030000px;}
.y34{bottom:190.939526px;}
.y43{bottom:192.230809px;}
.y25{bottom:207.930000px;}
.y24{bottom:245.910000px;}
.y23{bottom:269.310000px;}
.y22{bottom:306.390000px;}
.y21{bottom:327.630000px;}
.y20{bottom:359.850000px;}
.y28{bottom:359.985000px;}
.y2a{bottom:360.663954px;}
.y3a{bottom:360.985969px;}
.y1f{bottom:575.175000px;}
.y1e{bottom:595.335000px;}
.y1d{bottom:615.495000px;}
.y1c{bottom:635.655000px;}
.y1b{bottom:655.845000px;}
.y1a{bottom:676.005000px;}
.y19{bottom:696.165000px;}
.y18{bottom:716.325000px;}
.y17{bottom:736.305000px;}
.y16{bottom:756.465000px;}
.y15{bottom:776.625000px;}
.y14{bottom:796.785000px;}
.y13{bottom:816.945000px;}
.y12{bottom:837.105000px;}
.y11{bottom:856.725000px;}
.y10{bottom:875.625000px;}
.yf{bottom:903.210000px;}
.ye{bottom:915.810000px;}
.yd{bottom:943.530000px;}
.yc{bottom:963.690000px;}
.yb{bottom:983.850000px;}
.ya{bottom:1004.010000px;}
.y9{bottom:1016.790000px;}
.y8{bottom:1038.750000px;}
.y7{bottom:1060.710000px;}
.y6{bottom:1082.490000px;}
.y5{bottom:1104.630000px;}
.y4{bottom:1133.970000px;}
.y3{bottom:1181.520000px;}
.y1{bottom:1197.180000px;}
.h10{height:12.753700px;}
.h12{height:15.524306px;}
.h16{height:17.151279px;}
.h14{height:18.294912px;}
.h18{height:20.784153px;}
.h11{height:20.785128px;}
.h19{height:20.878063px;}
.h1d{height:24.173387px;}
.h13{height:24.494627px;}
.h1a{height:27.475480px;}
.h7{height:28.934297px;}
.h1c{height:32.800496px;}
.h17{height:40.072237px;}
.h2{height:40.140000px;}
.h9{height:41.318438px;}
.hb{height:41.405977px;}
.he{height:44.159263px;}
.ha{height:45.281250px;}
.h8{height:45.798750px;}
.h4{height:45.895781px;}
.h1e{height:47.639123px;}
.h3{height:49.886719px;}
.hc{height:61.423863px;}
.h5{height:65.460938px;}
.h6{height:66.544102px;}
.hf{height:207.269333px;}
.h15{height:208.668740px;}
.h1b{height:209.315230px;}
.hd{height:210.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:271.817453px;}
.w6{width:271.864298px;}
.w7{width:272.510533px;}
.w2{width:366.733500px;}
.w3{width:366.735000px;}
.w4{width:662.469104px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.918500px;}
.x1f{left:25.233673px;}
.x19{left:28.201231px;}
.x16{left:34.145239px;}
.x1e{left:35.767830px;}
.x15{left:44.595332px;}
.x1d{left:53.864117px;}
.x1{left:77.041500px;}
.x5{left:84.960000px;}
.xf{left:102.456000px;}
.xd{left:105.516000px;}
.x6{left:107.496000px;}
.x20{left:115.289175px;}
.x21{left:123.017872px;}
.x8{left:125.316000px;}
.xb{left:129.996000px;}
.x1a{left:135.996799px;}
.x12{left:138.996000px;}
.x18{left:140.411217px;}
.x13{left:145.350000px;}
.x23{left:159.431943px;}
.x24{left:165.898251px;}
.x22{left:167.245757px;}
.xa{left:174.270000px;}
.xc{left:180.390000px;}
.x1b{left:202.249023px;}
.x25{left:208.605158px;}
.x17{left:245.314766px;}
.x14{left:318.823676px;}
.x4{left:358.635000px;}
.x7{left:378.975000px;}
.x10{left:382.575000px;}
.xe{left:383.655000px;}
.x3{left:443.775000px;}
.x9{left:446.475000px;}
.x1c{left:534.964205px;}
.x11{left:807.990000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-9.963197pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.668541pt;}
.v5{vertical-align:11.197117pt;}
.v7{vertical-align:20.858432pt;}
.v1{vertical-align:29.440000pt;}
.ls6{letter-spacing:-0.682667pt;}
.ls8{letter-spacing:-0.499200pt;}
.ls5{letter-spacing:-0.269333pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.182933pt;}
.ls10{letter-spacing:-0.116433pt;}
.lse{letter-spacing:-0.088782pt;}
.ls7{letter-spacing:-0.043520pt;}
.lsa{letter-spacing:-0.040960pt;}
.lsf{letter-spacing:-0.016515pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsc{letter-spacing:0.115200pt;}
.ls9{letter-spacing:0.117867pt;}
.ls3{letter-spacing:7.204990pt;}
.ls2{letter-spacing:7.414923pt;}
.ls1{letter-spacing:21.712640pt;}
.ws0{word-spacing:-18.967787pt;}
.ws2{word-spacing:-14.464000pt;}
.ws7{word-spacing:-13.422080pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.265920pt;}
.ws6{word-spacing:-13.114880pt;}
.ws9{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.822187pt;}
.ws1{word-spacing:-9.690880pt;}
.ws3{word-spacing:-8.389120pt;}
.wsb{word-spacing:-8.314103pt;}
.wsd{word-spacing:-5.821583pt;}
.ws10{word-spacing:-5.473421pt;}
.ws11{word-spacing:0.000000pt;}
.wsa{word-spacing:20.587203pt;}
.wsc{word-spacing:49.232096pt;}
.wsf{word-spacing:85.280275pt;}
.wse{word-spacing:343.586464pt;}
._c{margin-left:-2.687439pt;}
._1{margin-left:-0.898987pt;}
._0{width:1.300693pt;}
._2{width:2.232107pt;}
._a{width:3.125973pt;}
._b{width:4.109013pt;}
._4{width:6.943573pt;}
._3{width:7.856640pt;}
._9{width:8.791893pt;}
._5{width:14.896640pt;}
._8{width:16.216747pt;}
._7{width:20.137387pt;}
._6{width:21.079040pt;}
._d{width:23.860468pt;}
._e{width:105.193646pt;}
.fs7{font-size:15.571699pt;}
.fs9{font-size:18.954485pt;}
.fsd{font-size:20.940946pt;}
.fs11{font-size:21.893685pt;}
.fsc{font-size:22.337271pt;}
.fse{font-size:24.884371pt;}
.fsf{font-size:25.376523pt;}
.fs8{font-size:25.377713pt;}
.fs10{font-size:25.491182pt;}
.fsb{font-size:29.604563pt;}
.fsa{font-size:29.906846pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:38.948394pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:11.204077pt;}
.y45{bottom:12.340200pt;}
.y2{bottom:20.480000pt;}
.y2b{bottom:22.257558pt;}
.y3b{bottom:22.408045pt;}
.y29{bottom:28.380612pt;}
.y3c{bottom:29.375966pt;}
.y2c{bottom:39.028291pt;}
.y3d{bottom:52.540400pt;}
.y2d{bottom:58.806158pt;}
.y44{bottom:70.105214pt;}
.y3e{bottom:75.708021pt;}
.y2e{bottom:78.507653pt;}
.y35{bottom:80.086398pt;}
.y33{bottom:91.741425pt;}
.y42{bottom:92.361343pt;}
.y2f{bottom:98.285519pt;}
.y3f{bottom:98.872456pt;}
.y30{bottom:117.987014pt;}
.y4b{bottom:118.440620pt;}
.y4a{bottom:119.560227pt;}
.y40{bottom:122.040077pt;}
.y49{bottom:125.898276pt;}
.y39{bottom:136.637206pt;}
.y31{bottom:137.764881pt;}
.y38{bottom:144.384154pt;}
.y41{bottom:145.207698pt;}
.y47{bottom:148.915283pt;}
.y27{bottom:150.586667pt;}
.y46{bottom:152.097006pt;}
.y37{bottom:152.129908pt;}
.y48{bottom:152.266555pt;}
.y32{bottom:157.467569pt;}
.y26{bottom:168.026667pt;}
.y34{bottom:169.724023pt;}
.y43{bottom:170.871830pt;}
.y25{bottom:184.826667pt;}
.y24{bottom:218.586667pt;}
.y23{bottom:239.386667pt;}
.y22{bottom:272.346667pt;}
.y21{bottom:291.226667pt;}
.y20{bottom:319.866667pt;}
.y28{bottom:319.986667pt;}
.y2a{bottom:320.590181pt;}
.y3a{bottom:320.876417pt;}
.y1f{bottom:511.266667pt;}
.y1e{bottom:529.186667pt;}
.y1d{bottom:547.106667pt;}
.y1c{bottom:565.026667pt;}
.y1b{bottom:582.973333pt;}
.y1a{bottom:600.893333pt;}
.y19{bottom:618.813333pt;}
.y18{bottom:636.733333pt;}
.y17{bottom:654.493333pt;}
.y16{bottom:672.413333pt;}
.y15{bottom:690.333333pt;}
.y14{bottom:708.253333pt;}
.y13{bottom:726.173333pt;}
.y12{bottom:744.093333pt;}
.y11{bottom:761.533333pt;}
.y10{bottom:778.333333pt;}
.yf{bottom:802.853333pt;}
.ye{bottom:814.053333pt;}
.yd{bottom:838.693333pt;}
.yc{bottom:856.613333pt;}
.yb{bottom:874.533333pt;}
.ya{bottom:892.453333pt;}
.y9{bottom:903.813333pt;}
.y8{bottom:923.333333pt;}
.y7{bottom:942.853333pt;}
.y6{bottom:962.213333pt;}
.y5{bottom:981.893333pt;}
.y4{bottom:1007.973333pt;}
.y3{bottom:1050.240000pt;}
.y1{bottom:1064.160000pt;}
.h10{height:11.336623pt;}
.h12{height:13.799383pt;}
.h16{height:15.245581pt;}
.h14{height:16.262144pt;}
.h18{height:18.474803pt;}
.h11{height:18.475669pt;}
.h19{height:18.558278pt;}
.h1d{height:21.487455pt;}
.h13{height:21.773001pt;}
.h1a{height:24.422649pt;}
.h7{height:25.719375pt;}
.h1c{height:29.155996pt;}
.h17{height:35.619766pt;}
.h2{height:35.680000pt;}
.h9{height:36.727500pt;}
.hb{height:36.805312pt;}
.he{height:39.252678pt;}
.ha{height:40.250000pt;}
.h8{height:40.710000pt;}
.h4{height:40.796250pt;}
.h1e{height:42.345887pt;}
.h3{height:44.343750pt;}
.hc{height:54.598989pt;}
.h5{height:58.187500pt;}
.h6{height:59.150312pt;}
.hf{height:184.239407pt;}
.h15{height:185.483324pt;}
.h1b{height:186.057982pt;}
.hd{height:187.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:241.615514pt;}
.w6{width:241.657154pt;}
.w7{width:242.231585pt;}
.w2{width:325.985333pt;}
.w3{width:325.986667pt;}
.w4{width:588.861426pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.038667pt;}
.x1f{left:22.429931pt;}
.x19{left:25.067761pt;}
.x16{left:30.351323pt;}
.x1e{left:31.793626pt;}
.x15{left:39.640295pt;}
.x1d{left:47.879215pt;}
.x1{left:68.481333pt;}
.x5{left:75.520000pt;}
.xf{left:91.072000pt;}
.xd{left:93.792000pt;}
.x6{left:95.552000pt;}
.x20{left:102.479267pt;}
.x21{left:109.349220pt;}
.x8{left:111.392000pt;}
.xb{left:115.552000pt;}
.x1a{left:120.886044pt;}
.x12{left:123.552000pt;}
.x18{left:124.809971pt;}
.x13{left:129.200000pt;}
.x23{left:141.717283pt;}
.x24{left:147.465112pt;}
.x22{left:148.662895pt;}
.xa{left:154.906667pt;}
.xc{left:160.346667pt;}
.x1b{left:179.776909pt;}
.x25{left:185.426807pt;}
.x17{left:218.057570pt;}
.x14{left:283.398823pt;}
.x4{left:318.786667pt;}
.x7{left:336.866667pt;}
.x10{left:340.066667pt;}
.xe{left:341.026667pt;}
.x3{left:394.466667pt;}
.x9{left:396.866667pt;}
.x1c{left:475.523737pt;}
.x11{left:718.213333pt;}
}




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