
    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_ab2902f657688ea2a31d60a9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_69c22b2dbf48e504fe32e18c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23d57694e4a8ac81f1b8230b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2e7ac0a55eaf8dc09ef04563.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_efaef344670ae9a77960f60f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_d0aac17c43ddd1a948e84af1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_67360022375c72f3efa3ff44.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968262;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_e721b5097a80014912e2219c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_34a3f8ce09439d2fa35f5882.woff')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.018720px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004080px;}
.lsf{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.129600px;}
.ls11{letter-spacing:0.208080px;}
.ls10{letter-spacing:0.485280px;}
.ls2{letter-spacing:6.300000px;}
.ls1{letter-spacing:6.480000px;}
.ls3{letter-spacing:20.700000px;}
.lsd{letter-spacing:22.260000px;}
.ls6{letter-spacing:32.220000px;}
.ls12{letter-spacing:33.984000px;}
.lse{letter-spacing:35.100000px;}
.lsc{letter-spacing:35.820000px;}
.ls4{letter-spacing:42.300000px;}
.ls0{letter-spacing:43.200000px;}
.lsb{letter-spacing:150.077280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.340160px;}
._3{width:1.176000px;}
._13{width:2.637840px;}
._22{width:4.365360px;}
._b{width:5.496000px;}
._9{width:6.672000px;}
._18{width:7.918560px;}
._c{width:9.519120px;}
._17{width:10.782720px;}
._1b{width:11.793600px;}
._6{width:12.932160px;}
._5{width:14.400000px;}
._23{width:16.939920px;}
._1e{width:18.601680px;}
._11{width:19.627920px;}
._2{width:20.736000px;}
._1{width:21.864000px;}
._8{width:23.040000px;}
._21{width:24.095280px;}
._d{width:25.095840px;}
._1a{width:26.447040px;}
._19{width:27.623040px;}
._a{width:29.536320px;}
._4{width:30.744000px;}
._16{width:31.970640px;}
._7{width:33.240000px;}
._20{width:35.048880px;}
._1f{width:36.054720px;}
._e{width:38.581920px;}
._10{width:40.216560px;}
._f{width:41.472000px;}
._12{width:42.571920px;}
._14{width:45.489600px;}
._15{width:46.569360px;}
._25{width:50.168640px;}
._24{width:51.302160px;}
._1c{width:54.587520px;}
._2a{width:55.766880px;}
._2c{width:57.888000px;}
._1d{width:80.617680px;}
._29{width:82.379040px;}
._28{width:84.013440px;}
._27{width:85.840560px;}
._26{width:87.096480px;}
._2d{width:114.600000px;}
._2b{width:131.976000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y4c{bottom:102.996000px;}
.y63{bottom:107.496000px;}
.y4b{bottom:130.716000px;}
.y62{bottom:135.216000px;}
.y2c{bottom:135.576000px;}
.y7a{bottom:152.850000px;}
.y4a{bottom:158.610000px;}
.y61{bottom:163.110000px;}
.y2b{bottom:163.470000px;}
.y79{bottom:173.550000px;}
.y49{bottom:186.330000px;}
.y60{bottom:190.830000px;}
.y2a{bottom:191.190000px;}
.y78{bottom:194.250000px;}
.y48{bottom:214.050000px;}
.y77{bottom:214.950000px;}
.y5f{bottom:218.550000px;}
.y29{bottom:218.910000px;}
.y76{bottom:235.650000px;}
.y47{bottom:241.770000px;}
.y5e{bottom:246.450000px;}
.y28{bottom:246.810000px;}
.y75{bottom:256.350000px;}
.y46{bottom:269.670000px;}
.y5d{bottom:274.170000px;}
.y27{bottom:274.530000px;}
.y74{bottom:277.050000px;}
.y45{bottom:297.435000px;}
.y73{bottom:297.795000px;}
.y5c{bottom:301.935000px;}
.y26{bottom:302.295000px;}
.y72{bottom:318.495000px;}
.y44{bottom:325.155000px;}
.y5b{bottom:329.655000px;}
.y25{bottom:330.015000px;}
.y71{bottom:339.195000px;}
.y43{bottom:353.055000px;}
.y5a{bottom:357.555000px;}
.y24{bottom:357.915000px;}
.y70{bottom:359.895000px;}
.y6f{bottom:380.595000px;}
.y42{bottom:380.775000px;}
.y59{bottom:385.275000px;}
.y23{bottom:385.635000px;}
.y6e{bottom:405.435000px;}
.y41{bottom:408.495000px;}
.y58{bottom:412.995000px;}
.y22{bottom:413.355000px;}
.y6d{bottom:433.335000px;}
.y40{bottom:436.215000px;}
.y57{bottom:440.895000px;}
.y21{bottom:441.075000px;}
.y6c{bottom:461.055000px;}
.y3f{bottom:464.115000px;}
.y20{bottom:464.655000px;}
.y56{bottom:468.615000px;}
.y1f{bottom:485.355000px;}
.y6b{bottom:488.775000px;}
.y3e{bottom:491.835000px;}
.y55{bottom:496.335000px;}
.y1e{bottom:506.055000px;}
.y6a{bottom:516.495000px;}
.y3d{bottom:519.555000px;}
.y54{bottom:524.055000px;}
.y1d{bottom:526.755000px;}
.y69{bottom:545.835000px;}
.y1c{bottom:547.455000px;}
.y53{bottom:551.955000px;}
.y1b{bottom:568.185000px;}
.y68{bottom:573.585000px;}
.y3c{bottom:575.205000px;}
.y52{bottom:579.705000px;}
.y1a{bottom:588.885000px;}
.y3b{bottom:602.745000px;}
.y67{bottom:602.925000px;}
.y51{bottom:607.425000px;}
.y19{bottom:609.585000px;}
.y18{bottom:630.285000px;}
.y66{bottom:630.645000px;}
.y3a{bottom:632.265000px;}
.y50{bottom:635.145000px;}
.y17{bottom:650.985000px;}
.y39{bottom:659.805000px;}
.y65{bottom:659.985000px;}
.y4f{bottom:663.045000px;}
.y16{bottom:671.685000px;}
.y64{bottom:687.705000px;}
.y38{bottom:689.325000px;}
.y4e{bottom:690.765000px;}
.y15{bottom:692.385000px;}
.y14{bottom:713.085000px;}
.y37{bottom:716.865000px;}
.y4d{bottom:718.485000px;}
.y13{bottom:733.785000px;}
.y36{bottom:746.385000px;}
.y12{bottom:754.485000px;}
.y35{bottom:774.105000px;}
.y11{bottom:775.185000px;}
.y10{bottom:795.885000px;}
.y34{bottom:801.825000px;}
.yf{bottom:816.585000px;}
.y33{bottom:829.545000px;}
.ye{bottom:837.285000px;}
.y32{bottom:857.490000px;}
.yd{bottom:858.030000px;}
.y31{bottom:885.210000px;}
.yc{bottom:899.430000px;}
.y30{bottom:912.930000px;}
.yb{bottom:920.130000px;}
.y81{bottom:930.570000px;}
.ya{bottom:940.830000px;}
.y80{bottom:951.270000px;}
.y9{bottom:961.530000px;}
.y2f{bottom:968.550000px;}
.y7f{bottom:971.970000px;}
.y8{bottom:982.230000px;}
.y7e{bottom:992.670000px;}
.y2e{bottom:996.270000px;}
.y7{bottom:1003.470000px;}
.y7d{bottom:1013.370000px;}
.y2d{bottom:1023.990000px;}
.y6{bottom:1027.770000px;}
.y7c{bottom:1034.070000px;}
.y5{bottom:1051.890000px;}
.y7b{bottom:1054.770000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h9{height:63.351562px;}
.h6{height:70.628906px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.ha{height:73.915664px;}
.he{height:74.004654px;}
.hd{height:74.121328px;}
.h5{height:74.820586px;}
.hb{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hc{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xe{left:90.035987px;}
.x4{left:105.155987px;}
.xf{left:117.035987px;}
.x5{left:126.575987px;}
.xb{left:138.095987px;}
.xc{left:212.609987px;}
.x9{left:277.769987px;}
.x8{left:287.354987px;}
.xa{left:310.934987px;}
.x6{left:399.674987px;}
.x2{left:409.035000px;}
.xd{left:423.974987px;}
.x7{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003627pt;}
.lsf{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.115200pt;}
.ls11{letter-spacing:0.184960pt;}
.ls10{letter-spacing:0.431360pt;}
.ls2{letter-spacing:5.600000pt;}
.ls1{letter-spacing:5.760000pt;}
.ls3{letter-spacing:18.400000pt;}
.lsd{letter-spacing:19.786667pt;}
.ls6{letter-spacing:28.640000pt;}
.ls12{letter-spacing:30.208000pt;}
.lse{letter-spacing:31.200000pt;}
.lsc{letter-spacing:31.840000pt;}
.ls4{letter-spacing:37.600000pt;}
.ls0{letter-spacing:38.400000pt;}
.lsb{letter-spacing:133.402027pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.191253pt;}
._3{width:1.045333pt;}
._13{width:2.344747pt;}
._22{width:3.880320pt;}
._b{width:4.885333pt;}
._9{width:5.930667pt;}
._18{width:7.038720pt;}
._c{width:8.461440pt;}
._17{width:9.584640pt;}
._1b{width:10.483200pt;}
._6{width:11.495253pt;}
._5{width:12.800000pt;}
._23{width:15.057707pt;}
._1e{width:16.534827pt;}
._11{width:17.447040pt;}
._2{width:18.432000pt;}
._1{width:19.434667pt;}
._8{width:20.480000pt;}
._21{width:21.418027pt;}
._d{width:22.307413pt;}
._1a{width:23.508480pt;}
._19{width:24.553813pt;}
._a{width:26.254507pt;}
._4{width:27.328000pt;}
._16{width:28.418347pt;}
._7{width:29.546667pt;}
._20{width:31.154560pt;}
._1f{width:32.048640pt;}
._e{width:34.295040pt;}
._10{width:35.748053pt;}
._f{width:36.864000pt;}
._12{width:37.841707pt;}
._14{width:40.435200pt;}
._15{width:41.394987pt;}
._25{width:44.594347pt;}
._24{width:45.601920pt;}
._1c{width:48.522240pt;}
._2a{width:49.570560pt;}
._2c{width:51.456000pt;}
._1d{width:71.660160pt;}
._29{width:73.225813pt;}
._28{width:74.678613pt;}
._27{width:76.302720pt;}
._26{width:77.419093pt;}
._2d{width:101.866667pt;}
._2b{width:117.312000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y4c{bottom:91.552000pt;}
.y63{bottom:95.552000pt;}
.y4b{bottom:116.192000pt;}
.y62{bottom:120.192000pt;}
.y2c{bottom:120.512000pt;}
.y7a{bottom:135.866667pt;}
.y4a{bottom:140.986667pt;}
.y61{bottom:144.986667pt;}
.y2b{bottom:145.306667pt;}
.y79{bottom:154.266667pt;}
.y49{bottom:165.626667pt;}
.y60{bottom:169.626667pt;}
.y2a{bottom:169.946667pt;}
.y78{bottom:172.666667pt;}
.y48{bottom:190.266667pt;}
.y77{bottom:191.066667pt;}
.y5f{bottom:194.266667pt;}
.y29{bottom:194.586667pt;}
.y76{bottom:209.466667pt;}
.y47{bottom:214.906667pt;}
.y5e{bottom:219.066667pt;}
.y28{bottom:219.386667pt;}
.y75{bottom:227.866667pt;}
.y46{bottom:239.706667pt;}
.y5d{bottom:243.706667pt;}
.y27{bottom:244.026667pt;}
.y74{bottom:246.266667pt;}
.y45{bottom:264.386667pt;}
.y73{bottom:264.706667pt;}
.y5c{bottom:268.386667pt;}
.y26{bottom:268.706667pt;}
.y72{bottom:283.106667pt;}
.y44{bottom:289.026667pt;}
.y5b{bottom:293.026667pt;}
.y25{bottom:293.346667pt;}
.y71{bottom:301.506667pt;}
.y43{bottom:313.826667pt;}
.y5a{bottom:317.826667pt;}
.y24{bottom:318.146667pt;}
.y70{bottom:319.906667pt;}
.y6f{bottom:338.306667pt;}
.y42{bottom:338.466667pt;}
.y59{bottom:342.466667pt;}
.y23{bottom:342.786667pt;}
.y6e{bottom:360.386667pt;}
.y41{bottom:363.106667pt;}
.y58{bottom:367.106667pt;}
.y22{bottom:367.426667pt;}
.y6d{bottom:385.186667pt;}
.y40{bottom:387.746667pt;}
.y57{bottom:391.906667pt;}
.y21{bottom:392.066667pt;}
.y6c{bottom:409.826667pt;}
.y3f{bottom:412.546667pt;}
.y20{bottom:413.026667pt;}
.y56{bottom:416.546667pt;}
.y1f{bottom:431.426667pt;}
.y6b{bottom:434.466667pt;}
.y3e{bottom:437.186667pt;}
.y55{bottom:441.186667pt;}
.y1e{bottom:449.826667pt;}
.y6a{bottom:459.106667pt;}
.y3d{bottom:461.826667pt;}
.y54{bottom:465.826667pt;}
.y1d{bottom:468.226667pt;}
.y69{bottom:485.186667pt;}
.y1c{bottom:486.626667pt;}
.y53{bottom:490.626667pt;}
.y1b{bottom:505.053333pt;}
.y68{bottom:509.853333pt;}
.y3c{bottom:511.293333pt;}
.y52{bottom:515.293333pt;}
.y1a{bottom:523.453333pt;}
.y3b{bottom:535.773333pt;}
.y67{bottom:535.933333pt;}
.y51{bottom:539.933333pt;}
.y19{bottom:541.853333pt;}
.y18{bottom:560.253333pt;}
.y66{bottom:560.573333pt;}
.y3a{bottom:562.013333pt;}
.y50{bottom:564.573333pt;}
.y17{bottom:578.653333pt;}
.y39{bottom:586.493333pt;}
.y65{bottom:586.653333pt;}
.y4f{bottom:589.373333pt;}
.y16{bottom:597.053333pt;}
.y64{bottom:611.293333pt;}
.y38{bottom:612.733333pt;}
.y4e{bottom:614.013333pt;}
.y15{bottom:615.453333pt;}
.y14{bottom:633.853333pt;}
.y37{bottom:637.213333pt;}
.y4d{bottom:638.653333pt;}
.y13{bottom:652.253333pt;}
.y36{bottom:663.453333pt;}
.y12{bottom:670.653333pt;}
.y35{bottom:688.093333pt;}
.y11{bottom:689.053333pt;}
.y10{bottom:707.453333pt;}
.y34{bottom:712.733333pt;}
.yf{bottom:725.853333pt;}
.y33{bottom:737.373333pt;}
.ye{bottom:744.253333pt;}
.y32{bottom:762.213333pt;}
.yd{bottom:762.693333pt;}
.y31{bottom:786.853333pt;}
.yc{bottom:799.493333pt;}
.y30{bottom:811.493333pt;}
.yb{bottom:817.893333pt;}
.y81{bottom:827.173333pt;}
.ya{bottom:836.293333pt;}
.y80{bottom:845.573333pt;}
.y9{bottom:854.693333pt;}
.y2f{bottom:860.933333pt;}
.y7f{bottom:863.973333pt;}
.y8{bottom:873.093333pt;}
.y7e{bottom:882.373333pt;}
.y2e{bottom:885.573333pt;}
.y7{bottom:891.973333pt;}
.y7d{bottom:900.773333pt;}
.y2d{bottom:910.213333pt;}
.y6{bottom:913.573333pt;}
.y7c{bottom:919.173333pt;}
.y5{bottom:935.013333pt;}
.y7b{bottom:937.573333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h9{height:56.312500pt;}
.h6{height:62.781250pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.ha{height:65.702812pt;}
.he{height:65.781915pt;}
.hd{height:65.885625pt;}
.h5{height:66.507188pt;}
.hb{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hc{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xe{left:80.031988pt;}
.x4{left:93.471988pt;}
.xf{left:104.031988pt;}
.x5{left:112.511988pt;}
.xb{left:122.751988pt;}
.xc{left:188.986655pt;}
.x9{left:246.906655pt;}
.x8{left:255.426655pt;}
.xa{left:276.386655pt;}
.x6{left:355.266655pt;}
.x2{left:363.586667pt;}
.xd{left:376.866655pt;}
.x7{left:396.866655pt;}
}




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