
    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_e70f6bda743fc4906929f5e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977539;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_e6eabe38b0c7981e4b4409cd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_67afde1799cafd3f5eeb8e9e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_270ec19f28004195228c39f2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_e51d6fe7b46671ed526cbd2f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec6f34f3f89018c684e6e8dd.woff')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c5569606f98b212270ea8f45.woff')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_05ad44f30a27bb995ed3ce98.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8991807f31a88cc61e9462a7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7ef8dc293611f980104417eb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-0.684000px;}
.ls1d{letter-spacing:-0.529800px;}
.ls2a{letter-spacing:-0.378600px;}
.lsb{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.282000px;}
.ls5{letter-spacing:-0.183600px;}
.ls1b{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.073200px;}
.ls12{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.190200px;}
.ls0{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.378600px;}
.ls26{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.540000px;}
.ls21{letter-spacing:1.260000px;}
.ls25{letter-spacing:1.980000px;}
.lsa{letter-spacing:5.580000px;}
.ls24{letter-spacing:13.500000px;}
.ls20{letter-spacing:17.100000px;}
.ls1a{letter-spacing:17.820000px;}
.ls13{letter-spacing:20.700000px;}
.ls23{letter-spacing:21.221280px;}
.lsf{letter-spacing:23.580000px;}
.ls10{letter-spacing:24.300000px;}
.lse{letter-spacing:25.020000px;}
.ls27{letter-spacing:27.900000px;}
.ls1e{letter-spacing:41.381280px;}
.ls19{letter-spacing:44.460000px;}
.ls3{letter-spacing:46.020000px;}
.ls18{letter-spacing:48.780000px;}
.ls1f{letter-spacing:65.340000px;}
.ls28{letter-spacing:97.020000px;}
.ls9{letter-spacing:127.980000px;}
.ls14{letter-spacing:179.226720px;}
.ls15{letter-spacing:211.277280px;}
.lsd{letter-spacing:221.682720px;}
.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;}
}
.wsc{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.022560px;}
.ws9{word-spacing:-20.880000px;}
.ws4{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.376000px;}
.ws8{word-spacing:-19.726560px;}
.ws0{word-spacing:-19.542960px;}
.ws3{word-spacing:0.000000px;}
._56{margin-left:-20.559600px;}
._34{margin-left:-6.233760px;}
._33{margin-left:-4.970160px;}
._1e{margin-left:-3.285360px;}
._9{margin-left:-2.190240px;}
._2{margin-left:-1.095120px;}
._3{width:1.783680px;}
._a{width:3.106800px;}
._d{width:5.054400px;}
._26{width:6.476160px;}
._27{width:7.875600px;}
._2a{width:9.183840px;}
._29{width:10.469280px;}
._c{width:11.962080px;}
._b{width:13.225680px;}
._22{width:14.320080px;}
._21{width:15.331680px;}
._20{width:16.511040px;}
._1f{width:17.606160px;}
._23{width:19.038240px;}
._43{width:20.049120px;}
._1d{width:22.814400px;}
._1b{width:24.513840px;}
._1c{width:25.762800px;}
._24{width:27.209520px;}
._25{width:28.210560px;}
._11{width:29.736720px;}
._17{width:30.985680px;}
._13{width:32.432400px;}
._12{width:33.611760px;}
._57{width:34.706880px;}
._e{width:35.717760px;}
._45{width:37.342320px;}
._16{width:38.413440px;}
._15{width:39.424320px;}
._35{width:41.193360px;}
._36{width:42.204240px;}
._4d{width:43.635360px;}
._6{width:44.984160px;}
._5{width:45.995040px;}
._28{width:47.412480px;}
._44{width:49.364640px;}
._19{width:50.984160px;}
._1a{width:52.041360px;}
._10{width:53.071200px;}
._f{width:54.082080px;}
._2e{width:55.990320px;}
._3e{width:57.466320px;}
._30{width:58.546800px;}
._4c{width:60.147360px;}
._38{width:61.187520px;}
._37{width:62.224080px;}
._2b{width:63.249600px;}
._3b{width:64.864800px;}
._4e{width:66.044160px;}
._53{width:67.194240px;}
._42{width:68.402880px;}
._3c{width:69.750720px;}
._3d{width:70.999680px;}
._4{width:73.036080px;}
._40{width:74.215440px;}
._41{width:75.342000px;}
._2f{width:77.079600px;}
._32{width:81.544320px;}
._31{width:82.639440px;}
._5d{width:84.591600px;}
._4b{width:85.741680px;}
._7{width:86.767200px;}
._8{width:87.845040px;}
._5a{width:89.497440px;}
._52{width:97.886880px;}
._51{width:98.897760px;}
._3a{width:102.113520px;}
._39{width:103.600560px;}
._47{width:106.984800px;}
._48{width:108.079920px;}
._46{width:109.343520px;}
._5c{width:110.871120px;}
._5b{width:112.207680px;}
._14{width:118.357200px;}
._2d{width:124.829040px;}
._2c{width:127.474320px;}
._18{width:128.550240px;}
._4f{width:132.425280px;}
._50{width:145.383600px;}
._59{width:151.968960px;}
._58{width:153.148320px;}
._54{width:154.759440px;}
._55{width:156.075600px;}
._4a{width:169.490880px;}
._49{width:171.102000px;}
._3f{width:179.683920px;}
._0{width:292.222560px;}
._1{width:1555.426560px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,102,153);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,153,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:10.835850px;}
.y7{bottom:32.616000px;}
.y6{bottom:54.936000px;}
.y2d{bottom:94.716000px;}
.y2c{bottom:122.436000px;}
.y2b{bottom:150.330000px;}
.y2a{bottom:178.050000px;}
.y29{bottom:205.770000px;}
.y28{bottom:233.490000px;}
.y27{bottom:261.390000px;}
.y26{bottom:289.155000px;}
.y25{bottom:316.875000px;}
.y24{bottom:344.775000px;}
.y23{bottom:372.495000px;}
.y22{bottom:400.215000px;}
.y21{bottom:427.935000px;}
.y20{bottom:455.835000px;}
.y1f{bottom:483.555000px;}
.y1e{bottom:511.275000px;}
.y1d{bottom:538.995000px;}
.y1c{bottom:566.925000px;}
.y1b{bottom:594.645000px;}
.y1a{bottom:622.365000px;}
.y19{bottom:650.265000px;}
.y18{bottom:677.985000px;}
.y17{bottom:705.705000px;}
.y16{bottom:733.425000px;}
.y15{bottom:761.325000px;}
.y14{bottom:789.045000px;}
.y13{bottom:816.765000px;}
.y12{bottom:844.665000px;}
.y11{bottom:872.430000px;}
.y10{bottom:900.150000px;}
.yf{bottom:927.870000px;}
.ye{bottom:955.770000px;}
.yd{bottom:983.490000px;}
.yc{bottom:1011.210000px;}
.yb{bottom:1038.930000px;}
.ya{bottom:1066.830000px;}
.y9{bottom:1094.550000px;}
.y5{bottom:1118.130000px;}
.y4{bottom:1139.040000px;}
.y3{bottom:1162.620000px;}
.y2{bottom:1186.200000px;}
.y1{bottom:1210.680000px;}
.h5{height:53.424000px;}
.h2{height:67.169883px;}
.h4{height:70.628906px;}
.h6{height:72.846211px;}
.h9{height:74.244727px;}
.h3{height:76.355508px;}
.h8{height:82.676953px;}
.h7{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:42.479987px;}
.x5{left:84.959987px;}
.x10{left:95.435987px;}
.x11{left:104.975987px;}
.x1{left:106.415987px;}
.x12{left:111.635987px;}
.x7{left:113.255987px;}
.x8{left:156.809987px;}
.xd{left:169.589987px;}
.x15{left:181.289987px;}
.xc{left:184.709987px;}
.x16{left:203.789987px;}
.xe{left:205.229987px;}
.x9{left:254.369987px;}
.xb{left:262.469987px;}
.x13{left:281.054987px;}
.x14{left:304.814987px;}
.xf{left:375.914987px;}
.x17{left:391.934987px;}
.xa{left:446.474987px;}
.x2{left:550.544987px;}
.x3{left:631.904987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.608000pt;}
.ls1d{letter-spacing:-0.470933pt;}
.ls2a{letter-spacing:-0.336533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.250667pt;}
.ls5{letter-spacing:-0.163200pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.065067pt;}
.ls12{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.169067pt;}
.ls0{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.336533pt;}
.ls26{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls21{letter-spacing:1.120000pt;}
.ls25{letter-spacing:1.760000pt;}
.lsa{letter-spacing:4.960000pt;}
.ls24{letter-spacing:12.000000pt;}
.ls20{letter-spacing:15.200000pt;}
.ls1a{letter-spacing:15.840000pt;}
.ls13{letter-spacing:18.400000pt;}
.ls23{letter-spacing:18.863360pt;}
.lsf{letter-spacing:20.960000pt;}
.ls10{letter-spacing:21.600000pt;}
.lse{letter-spacing:22.240000pt;}
.ls27{letter-spacing:24.800000pt;}
.ls1e{letter-spacing:36.783360pt;}
.ls19{letter-spacing:39.520000pt;}
.ls3{letter-spacing:40.906667pt;}
.ls18{letter-spacing:43.360000pt;}
.ls1f{letter-spacing:58.080000pt;}
.ls28{letter-spacing:86.240000pt;}
.ls9{letter-spacing:113.760000pt;}
.ls14{letter-spacing:159.312640pt;}
.ls15{letter-spacing:187.802027pt;}
.lsd{letter-spacing:197.051307pt;}
.wsc{word-spacing:-19.056533pt;}
.ws2{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.686720pt;}
.ws9{word-spacing:-18.560000pt;}
.ws4{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.112000pt;}
.ws8{word-spacing:-17.534720pt;}
.ws0{word-spacing:-17.371520pt;}
.ws3{word-spacing:0.000000pt;}
._56{margin-left:-18.275200pt;}
._34{margin-left:-5.541120pt;}
._33{margin-left:-4.417920pt;}
._1e{margin-left:-2.920320pt;}
._9{margin-left:-1.946880pt;}
._2{margin-left:-0.973440pt;}
._3{width:1.585493pt;}
._a{width:2.761600pt;}
._d{width:4.492800pt;}
._26{width:5.756587pt;}
._27{width:7.000533pt;}
._2a{width:8.163413pt;}
._29{width:9.306027pt;}
._c{width:10.632960pt;}
._b{width:11.756160pt;}
._22{width:12.728960pt;}
._21{width:13.628160pt;}
._20{width:14.676480pt;}
._1f{width:15.649920pt;}
._23{width:16.922880pt;}
._43{width:17.821440pt;}
._1d{width:20.279467pt;}
._1b{width:21.790080pt;}
._1c{width:22.900267pt;}
._24{width:24.186240pt;}
._25{width:25.076053pt;}
._11{width:26.432640pt;}
._17{width:27.542827pt;}
._13{width:28.828800pt;}
._12{width:29.877120pt;}
._57{width:30.850560pt;}
._e{width:31.749120pt;}
._45{width:33.193173pt;}
._16{width:34.145280pt;}
._15{width:35.043840pt;}
._35{width:36.616320pt;}
._36{width:37.514880pt;}
._4d{width:38.786987pt;}
._6{width:39.985920pt;}
._5{width:40.884480pt;}
._28{width:42.144427pt;}
._44{width:43.879680pt;}
._19{width:45.319253pt;}
._1a{width:46.258987pt;}
._10{width:47.174400pt;}
._f{width:48.072960pt;}
._2e{width:49.769173pt;}
._3e{width:51.081173pt;}
._30{width:52.041600pt;}
._4c{width:53.464320pt;}
._38{width:54.388907pt;}
._37{width:55.310293pt;}
._2b{width:56.221867pt;}
._3b{width:57.657600pt;}
._4e{width:58.705920pt;}
._53{width:59.728213pt;}
._42{width:60.802560pt;}
._3c{width:62.000640pt;}
._3d{width:63.110827pt;}
._4{width:64.920960pt;}
._40{width:65.969280pt;}
._41{width:66.970667pt;}
._2f{width:68.515200pt;}
._32{width:72.483840pt;}
._31{width:73.457280pt;}
._5d{width:75.192533pt;}
._4b{width:76.214827pt;}
._7{width:77.126400pt;}
._8{width:78.084480pt;}
._5a{width:79.553280pt;}
._52{width:87.010560pt;}
._51{width:87.909120pt;}
._3a{width:90.767573pt;}
._39{width:92.089387pt;}
._47{width:95.097600pt;}
._48{width:96.071040pt;}
._46{width:97.194240pt;}
._5c{width:98.552107pt;}
._5b{width:99.740160pt;}
._14{width:105.206400pt;}
._2d{width:110.959147pt;}
._2c{width:113.310507pt;}
._18{width:114.266880pt;}
._4f{width:117.711360pt;}
._50{width:129.229867pt;}
._59{width:135.083520pt;}
._58{width:136.131840pt;}
._54{width:137.563947pt;}
._55{width:138.733867pt;}
._4a{width:150.658560pt;}
._49{width:152.090667pt;}
._3f{width:159.719040pt;}
._0{width:259.753387pt;}
._1{width:1382.601387pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:9.631867pt;}
.y7{bottom:28.992000pt;}
.y6{bottom:48.832000pt;}
.y2d{bottom:84.192000pt;}
.y2c{bottom:108.832000pt;}
.y2b{bottom:133.626667pt;}
.y2a{bottom:158.266667pt;}
.y29{bottom:182.906667pt;}
.y28{bottom:207.546667pt;}
.y27{bottom:232.346667pt;}
.y26{bottom:257.026667pt;}
.y25{bottom:281.666667pt;}
.y24{bottom:306.466667pt;}
.y23{bottom:331.106667pt;}
.y22{bottom:355.746667pt;}
.y21{bottom:380.386667pt;}
.y20{bottom:405.186667pt;}
.y1f{bottom:429.826667pt;}
.y1e{bottom:454.466667pt;}
.y1d{bottom:479.106667pt;}
.y1c{bottom:503.933333pt;}
.y1b{bottom:528.573333pt;}
.y1a{bottom:553.213333pt;}
.y19{bottom:578.013333pt;}
.y18{bottom:602.653333pt;}
.y17{bottom:627.293333pt;}
.y16{bottom:651.933333pt;}
.y15{bottom:676.733333pt;}
.y14{bottom:701.373333pt;}
.y13{bottom:726.013333pt;}
.y12{bottom:750.813333pt;}
.y11{bottom:775.493333pt;}
.y10{bottom:800.133333pt;}
.yf{bottom:824.773333pt;}
.ye{bottom:849.573333pt;}
.yd{bottom:874.213333pt;}
.yc{bottom:898.853333pt;}
.yb{bottom:923.493333pt;}
.ya{bottom:948.293333pt;}
.y9{bottom:972.933333pt;}
.y5{bottom:993.893333pt;}
.y4{bottom:1012.480000pt;}
.y3{bottom:1033.440000pt;}
.y2{bottom:1054.400000pt;}
.y1{bottom:1076.160000pt;}
.h5{height:47.488000pt;}
.h2{height:59.706562pt;}
.h4{height:62.781250pt;}
.h6{height:64.752187pt;}
.h9{height:65.995312pt;}
.h3{height:67.871563pt;}
.h8{height:73.490625pt;}
.h7{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:37.759988pt;}
.x5{left:75.519988pt;}
.x10{left:84.831988pt;}
.x11{left:93.311988pt;}
.x1{left:94.591988pt;}
.x12{left:99.231988pt;}
.x7{left:100.671988pt;}
.x8{left:139.386655pt;}
.xd{left:150.746655pt;}
.x15{left:161.146655pt;}
.xc{left:164.186655pt;}
.x16{left:181.146655pt;}
.xe{left:182.426655pt;}
.x9{left:226.106655pt;}
.xb{left:233.306655pt;}
.x13{left:249.826655pt;}
.x14{left:270.946655pt;}
.xf{left:334.146655pt;}
.x17{left:348.386655pt;}
.xa{left:396.866655pt;}
.x2{left:489.373322pt;}
.x3{left:561.693322pt;}
.x4{left:718.213322pt;}
}




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