
    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_e45a47d33de182bed699ad81.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062988;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_8b7250e5c642f153e6be1c2c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_adc4511b456f0e556220c0f3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.062988;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_7435791e9465378adaea3c19.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_194117fec9baf8fe4cdf5ed9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_18b6548973c42470c2b423b4.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f1e00cfe61dd401b7d82d4e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_a8979e2e13075ad1b6254094.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_c1470fdee49d6f8659edc17a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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.180309,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.180309,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.180309,0.250000,0.000000,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(0.346626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346626,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);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.785689px;}
.ls10{letter-spacing:-1.077684px;}
.lsf{letter-spacing:-0.777266px;}
.lsb{letter-spacing:-0.390000px;}
.ls7{letter-spacing:-0.137400px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.033840px;}
.lsa{letter-spacing:0.042480px;}
.ls0{letter-spacing:0.081360px;}
.ls2{letter-spacing:0.094800px;}
.ls3{letter-spacing:0.095040px;}
.lse{letter-spacing:0.202200px;}
.ls8{letter-spacing:0.222600px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.383760px;}
.lsc{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.411600px;}
.ls4{letter-spacing:2.880000px;}
.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:-21.188880px;}
.ws4{word-spacing:-20.756400px;}
.ws8{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.716200px;}
.ws2{word-spacing:-14.493600px;}
.ws0{word-spacing:-14.356200px;}
.ws7{word-spacing:-13.428600px;}
.ws6{word-spacing:-10.628400px;}
.ws5{word-spacing:-10.533600px;}
.wsb{word-spacing:-8.624813px;}
.wsc{word-spacing:-7.357476px;}
.wsa{word-spacing:-6.220542px;}
.ws9{word-spacing:0.000000px;}
.ws12{word-spacing:48.609845px;}
.wsd{word-spacing:59.204023px;}
.wse{word-spacing:59.264909px;}
.ws11{word-spacing:59.356239px;}
.ws10{word-spacing:59.417125px;}
.wsf{word-spacing:59.447568px;}
._13{margin-left:-270.623189px;}
._12{margin-left:-262.859721px;}
._3{margin-left:-3.600000px;}
._1{margin-left:-2.202480px;}
._8{margin-left:-1.109520px;}
._0{width:1.152000px;}
._4{width:2.208000px;}
._a{width:3.240000px;}
._d{width:4.709520px;}
._c{width:6.048000px;}
._9{width:8.496000px;}
._6{width:9.504000px;}
._7{width:10.920000px;}
._e{width:12.336000px;}
._11{width:13.920000px;}
._b{width:15.264000px;}
._10{width:16.776000px;}
._5{width:19.440000px;}
._f{width:21.456000px;}
._2{width:26.035920px;}
._14{width:803.390777px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,128);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:22.376051px;}
.fs8{font-size:29.261665px;}
.fsa{font-size:29.316557px;}
.fs7{font-size:31.024509px;}
.fs9{font-size:40.571448px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y7{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.900000px;}
.y5b{bottom:1.116113px;}
.ya{bottom:1.260000px;}
.y10{bottom:2.430000px;}
.y4{bottom:3.690000px;}
.y6{bottom:7.110000px;}
.y3b{bottom:12.748602px;}
.y39{bottom:12.748667px;}
.yd{bottom:15.030000px;}
.yc{bottom:29.070000px;}
.y8{bottom:43.380000px;}
.y5{bottom:44.190000px;}
.y3{bottom:46.440000px;}
.y2{bottom:51.120000px;}
.y58{bottom:54.640254px;}
.y57{bottom:65.611967px;}
.y56{bottom:82.008114px;}
.y55{bottom:82.008115px;}
.y54{bottom:82.008116px;}
.y53{bottom:82.008117px;}
.y52{bottom:82.008118px;}
.y51{bottom:82.008119px;}
.y50{bottom:82.008120px;}
.y4f{bottom:82.008121px;}
.y4e{bottom:82.008126px;}
.y4d{bottom:82.008128px;}
.y4c{bottom:82.008129px;}
.y4b{bottom:82.008132px;}
.y4a{bottom:82.008134px;}
.y49{bottom:82.008136px;}
.y48{bottom:82.008138px;}
.y47{bottom:82.008140px;}
.y46{bottom:82.008143px;}
.y45{bottom:82.008145px;}
.y44{bottom:82.008146px;}
.y43{bottom:82.008147px;}
.y42{bottom:82.008148px;}
.y41{bottom:82.008149px;}
.y40{bottom:82.008150px;}
.y3f{bottom:82.008162px;}
.y3e{bottom:82.008164px;}
.y3d{bottom:82.008172px;}
.y59{bottom:128.342268px;}
.y5a{bottom:188.289505px;}
.y31{bottom:397.830000px;}
.y30{bottom:421.590000px;}
.y2f{bottom:445.440000px;}
.y2e{bottom:469.200000px;}
.y2d{bottom:492.960000px;}
.y2c{bottom:516.810000px;}
.y2b{bottom:540.570000px;}
.y2a{bottom:564.420000px;}
.y29{bottom:588.180000px;}
.y28{bottom:612.030000px;}
.y27{bottom:635.790000px;}
.y26{bottom:659.670000px;}
.y25{bottom:683.430000px;}
.y24{bottom:707.280000px;}
.y37{bottom:707.370000px;}
.y23{bottom:731.040000px;}
.y36{bottom:731.220000px;}
.y22{bottom:754.890000px;}
.y35{bottom:754.980000px;}
.y21{bottom:778.650000px;}
.y34{bottom:778.830000px;}
.y20{bottom:802.500000px;}
.y33{bottom:802.590000px;}
.y32{bottom:822.480000px;}
.y3c{bottom:823.005000px;}
.y1f{bottom:826.260000px;}
.y3a{bottom:835.078898px;}
.y38{bottom:835.078904px;}
.y1e{bottom:850.110000px;}
.y1d{bottom:873.870000px;}
.y1c{bottom:897.720000px;}
.y1b{bottom:921.480000px;}
.y1a{bottom:942.360000px;}
.y19{bottom:963.420000px;}
.y18{bottom:984.570000px;}
.y17{bottom:1005.630000px;}
.y16{bottom:1031.190000px;}
.y15{bottom:1052.340000px;}
.y14{bottom:1073.430000px;}
.y13{bottom:1090.710000px;}
.y12{bottom:1115.370000px;}
.y11{bottom:1153.710000px;}
.yf{bottom:1156.320000px;}
.yb{bottom:1173.870000px;}
.y9{bottom:1213.830000px;}
.y1{bottom:1245.780000px;}
.h1a{height:7.766626px;}
.ha{height:13.860000px;}
.hb{height:18.000000px;}
.h3{height:19.260000px;}
.h5{height:22.770000px;}
.h13{height:23.337522px;}
.h6{height:24.120000px;}
.h17{height:30.519002px;}
.h1b{height:30.576252px;}
.h14{height:31.056080px;}
.h12{height:31.056146px;}
.h16{height:32.357593px;}
.h8{height:40.500000px;}
.h9{height:40.539023px;}
.h19{height:42.314752px;}
.he{height:42.960938px;}
.h11{height:50.273438px;}
.hc{height:50.902383px;}
.h4{height:55.779258px;}
.h2{height:60.960938px;}
.h10{height:70.664062px;}
.hd{height:71.019492px;}
.hf{height:72.562500px;}
.h18{height:76.100406px;}
.h7{height:81.382852px;}
.h15{height:312.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:43.014504px;}
.w9{width:124.830000px;}
.w3{width:129.420000px;}
.w6{width:145.440000px;}
.w5{width:149.760000px;}
.w8{width:250.950000px;}
.w4{width:297.240000px;}
.w7{width:322.140000px;}
.wa{width:516.009639px;}
.wc{width:587.700000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x33{left:-89.631946px;}
.x0{left:0.000000px;}
.x14{left:3.412666px;}
.x5{left:10.800000px;}
.x32{left:30.522194px;}
.x3{left:50.940000px;}
.x4{left:78.300000px;}
.x1{left:85.049987px;}
.x9{left:123.779987px;}
.x12{left:127.649987px;}
.x16{left:152.625000px;}
.xe{left:163.109987px;}
.xf{left:166.439987px;}
.x7{left:172.560000px;}
.x17{left:210.376670px;}
.x18{left:220.331546px;}
.xa{left:265.529987px;}
.x31{left:270.341862px;}
.x11{left:278.039987px;}
.x19{left:308.806650px;}
.x1a{left:316.539184px;}
.x1b{left:324.302161px;}
.x1c{left:332.034695px;}
.x10{left:335.369987px;}
.x1d{left:339.889001px;}
.x1e{left:347.621534px;}
.x1f{left:355.361679px;}
.xb{left:378.239987px;}
.xc{left:380.579987px;}
.x20{left:383.270342px;}
.xd{left:388.319987px;}
.x2{left:391.560000px;}
.x21{left:394.070012px;}
.x22{left:409.953672px;}
.x23{left:423.401888px;}
.x24{left:436.507619px;}
.x25{left:460.390189px;}
.x26{left:468.130334px;}
.x27{left:483.100702px;}
.x28{left:515.339888px;}
.x29{left:524.975112px;}
.x2a{left:532.715257px;}
.x2b{left:540.455401px;}
.x2c{left:548.187935px;}
.x30{left:549.344772px;}
.x2d{left:555.928080px;}
.x2e{left:563.683446px;}
.x2f{left:571.423591px;}
.x6{left:676.080000px;}
.x15{left:682.973311px;}
.x8{left:688.140000px;}
.x13{left:740.429987px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:30.031723pt;}
.ls10{letter-spacing:-0.957941pt;}
.lsf{letter-spacing:-0.690903pt;}
.lsb{letter-spacing:-0.346667pt;}
.ls7{letter-spacing:-0.122133pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.030080pt;}
.lsa{letter-spacing:0.037760pt;}
.ls0{letter-spacing:0.072320pt;}
.ls2{letter-spacing:0.084267pt;}
.ls3{letter-spacing:0.084480pt;}
.lse{letter-spacing:0.179733pt;}
.ls8{letter-spacing:0.197867pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.341120pt;}
.lsc{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.365867pt;}
.ls4{letter-spacing:2.560000pt;}
.ws3{word-spacing:-18.834560pt;}
.ws4{word-spacing:-18.450133pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.081067pt;}
.ws2{word-spacing:-12.883200pt;}
.ws0{word-spacing:-12.761067pt;}
.ws7{word-spacing:-11.936533pt;}
.ws6{word-spacing:-9.447467pt;}
.ws5{word-spacing:-9.363200pt;}
.wsb{word-spacing:-7.666501pt;}
.wsc{word-spacing:-6.539979pt;}
.wsa{word-spacing:-5.529371pt;}
.ws9{word-spacing:0.000000pt;}
.ws12{word-spacing:43.208751pt;}
.wsd{word-spacing:52.625799pt;}
.wse{word-spacing:52.679919pt;}
.ws11{word-spacing:52.761101pt;}
.ws10{word-spacing:52.815222pt;}
.wsf{word-spacing:52.842282pt;}
._13{margin-left:-240.553946pt;}
._12{margin-left:-233.653085pt;}
._3{margin-left:-3.200000pt;}
._1{margin-left:-1.957760pt;}
._8{margin-left:-0.986240pt;}
._0{width:1.024000pt;}
._4{width:1.962667pt;}
._a{width:2.880000pt;}
._d{width:4.186240pt;}
._c{width:5.376000pt;}
._9{width:7.552000pt;}
._6{width:8.448000pt;}
._7{width:9.706667pt;}
._e{width:10.965333pt;}
._11{width:12.373333pt;}
._b{width:13.568000pt;}
._10{width:14.912000pt;}
._5{width:17.280000pt;}
._f{width:19.072000pt;}
._2{width:23.143040pt;}
._14{width:714.125135pt;}
.fs6{font-size:19.889823pt;}
.fs8{font-size:26.010369pt;}
.fsa{font-size:26.059161pt;}
.fs7{font-size:27.577341pt;}
.fs9{font-size:36.063509pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y7{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.800000pt;}
.y5b{bottom:0.992100pt;}
.ya{bottom:1.120000pt;}
.y10{bottom:2.160000pt;}
.y4{bottom:3.280000pt;}
.y6{bottom:6.320000pt;}
.y3b{bottom:11.332090pt;}
.y39{bottom:11.332149pt;}
.yd{bottom:13.360000pt;}
.yc{bottom:25.840000pt;}
.y8{bottom:38.560000pt;}
.y5{bottom:39.280000pt;}
.y3{bottom:41.280000pt;}
.y2{bottom:45.440000pt;}
.y58{bottom:48.569115pt;}
.y57{bottom:58.321749pt;}
.y56{bottom:72.896101pt;}
.y55{bottom:72.896102pt;}
.y54{bottom:72.896103pt;}
.y53{bottom:72.896104pt;}
.y52{bottom:72.896105pt;}
.y51{bottom:72.896106pt;}
.y50{bottom:72.896107pt;}
.y4f{bottom:72.896108pt;}
.y4e{bottom:72.896112pt;}
.y4d{bottom:72.896114pt;}
.y4c{bottom:72.896115pt;}
.y4b{bottom:72.896118pt;}
.y4a{bottom:72.896119pt;}
.y49{bottom:72.896121pt;}
.y48{bottom:72.896123pt;}
.y47{bottom:72.896124pt;}
.y46{bottom:72.896128pt;}
.y45{bottom:72.896128pt;}
.y44{bottom:72.896129pt;}
.y43{bottom:72.896130pt;}
.y42{bottom:72.896131pt;}
.y41{bottom:72.896132pt;}
.y40{bottom:72.896133pt;}
.y3f{bottom:72.896144pt;}
.y3e{bottom:72.896145pt;}
.y3d{bottom:72.896153pt;}
.y59{bottom:114.082016pt;}
.y5a{bottom:167.368449pt;}
.y31{bottom:353.626667pt;}
.y30{bottom:374.746667pt;}
.y2f{bottom:395.946667pt;}
.y2e{bottom:417.066667pt;}
.y2d{bottom:438.186667pt;}
.y2c{bottom:459.386667pt;}
.y2b{bottom:480.506667pt;}
.y2a{bottom:501.706667pt;}
.y29{bottom:522.826667pt;}
.y28{bottom:544.026667pt;}
.y27{bottom:565.146667pt;}
.y26{bottom:586.373333pt;}
.y25{bottom:607.493333pt;}
.y24{bottom:628.693333pt;}
.y37{bottom:628.773333pt;}
.y23{bottom:649.813333pt;}
.y36{bottom:649.973333pt;}
.y22{bottom:671.013333pt;}
.y35{bottom:671.093333pt;}
.y21{bottom:692.133333pt;}
.y34{bottom:692.293333pt;}
.y20{bottom:713.333333pt;}
.y33{bottom:713.413333pt;}
.y32{bottom:731.093333pt;}
.y3c{bottom:731.560000pt;}
.y1f{bottom:734.453333pt;}
.y3a{bottom:742.292354pt;}
.y38{bottom:742.292359pt;}
.y1e{bottom:755.653333pt;}
.y1d{bottom:776.773333pt;}
.y1c{bottom:797.973333pt;}
.y1b{bottom:819.093333pt;}
.y1a{bottom:837.653333pt;}
.y19{bottom:856.373333pt;}
.y18{bottom:875.173333pt;}
.y17{bottom:893.893333pt;}
.y16{bottom:916.613333pt;}
.y15{bottom:935.413333pt;}
.y14{bottom:954.160000pt;}
.y13{bottom:969.520000pt;}
.y12{bottom:991.440000pt;}
.y11{bottom:1025.520000pt;}
.yf{bottom:1027.840000pt;}
.yb{bottom:1043.440000pt;}
.y9{bottom:1078.960000pt;}
.y1{bottom:1107.360000pt;}
.h1a{height:6.903668pt;}
.ha{height:12.320000pt;}
.hb{height:16.000000pt;}
.h3{height:17.120000pt;}
.h5{height:20.240000pt;}
.h13{height:20.744464pt;}
.h6{height:21.440000pt;}
.h17{height:27.128002pt;}
.h1b{height:27.178891pt;}
.h14{height:27.605405pt;}
.h12{height:27.605463pt;}
.h16{height:28.762305pt;}
.h8{height:36.000000pt;}
.h9{height:36.034687pt;}
.h19{height:37.613113pt;}
.he{height:38.187500pt;}
.h11{height:44.687500pt;}
.hc{height:45.246562pt;}
.h4{height:49.581562pt;}
.h2{height:54.187500pt;}
.h10{height:62.812500pt;}
.hd{height:63.128437pt;}
.hf{height:64.500000pt;}
.h18{height:67.644806pt;}
.h7{height:72.340312pt;}
.h15{height:277.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:38.235114pt;}
.w9{width:110.960000pt;}
.w3{width:115.040000pt;}
.w6{width:129.280000pt;}
.w5{width:133.120000pt;}
.w8{width:223.066667pt;}
.w4{width:264.213333pt;}
.w7{width:286.346667pt;}
.wa{width:458.675235pt;}
.wc{width:522.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x33{left:-79.672841pt;}
.x0{left:0.000000pt;}
.x14{left:3.033481pt;}
.x5{left:9.600000pt;}
.x32{left:27.130839pt;}
.x3{left:45.280000pt;}
.x4{left:69.600000pt;}
.x1{left:75.599988pt;}
.x9{left:110.026655pt;}
.x12{left:113.466655pt;}
.x16{left:135.666667pt;}
.xe{left:144.986655pt;}
.xf{left:147.946655pt;}
.x7{left:153.386667pt;}
.x17{left:187.001484pt;}
.x18{left:195.850263pt;}
.xa{left:236.026655pt;}
.x31{left:240.303877pt;}
.x11{left:247.146655pt;}
.x19{left:274.494800pt;}
.x1a{left:281.368163pt;}
.x1b{left:288.268587pt;}
.x1c{left:295.141951pt;}
.x10{left:298.106655pt;}
.x1d{left:302.123556pt;}
.x1e{left:308.996919pt;}
.x1f{left:315.877048pt;}
.xb{left:336.213322pt;}
.xc{left:338.293322pt;}
.x20{left:340.684748pt;}
.xd{left:345.173322pt;}
.x2{left:348.053333pt;}
.x21{left:350.284456pt;}
.x22{left:364.403264pt;}
.x23{left:376.357234pt;}
.x24{left:388.006773pt;}
.x25{left:409.235724pt;}
.x26{left:416.115852pt;}
.x27{left:429.422846pt;}
.x28{left:458.079901pt;}
.x29{left:466.644544pt;}
.x2a{left:473.524673pt;}
.x2b{left:480.404801pt;}
.x2c{left:487.278165pt;}
.x30{left:488.306464pt;}
.x2d{left:494.158293pt;}
.x2e{left:501.051952pt;}
.x2f{left:507.932080pt;}
.x6{left:600.960000pt;}
.x15{left:607.087388pt;}
.x8{left:611.680000pt;}
.x13{left:658.159988pt;}
}




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