
    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_3e31ca7367a0b5cb72b121ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114746;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_6007bf13752e43c208af38b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')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_1b55a451a276447db6568a84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_f0bf90b04022e882f292b96e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_443dfe2d881cbb9ff57e8dde.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_c6453d0aaeefb26fefa66a64.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7f9be88087b7395cb9e0dbde.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_baddeab11c65837e765e7ed6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_626d98dbd21d6fcaa4ff6d6f.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.018720px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.151920px;}
.lsb{letter-spacing:0.252720px;}
.ls10{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.360000px;}
.ls3{letter-spacing:16.380000px;}
.lsf{letter-spacing:16.865280px;}
.lsa{letter-spacing:18.540000px;}
.ls2{letter-spacing:41.760000px;}
.lse{letter-spacing:55.980000px;}
.ls6{letter-spacing:68.220000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.041280px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-15.226440px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._2a{margin-left:-9.013680px;}
._2c{margin-left:-7.918560px;}
._29{margin-left:-6.149520px;}
._2b{margin-left:-3.201120px;}
._3{margin-left:-2.159280px;}
._1{margin-left:-1.126080px;}
._4{width:1.108560px;}
._7{width:2.610960px;}
._a{width:3.944880px;}
._18{width:5.475600px;}
._9{width:6.907680px;}
._8{width:8.645760px;}
._17{width:9.885120px;}
._16{width:11.497440px;}
._1c{width:12.549840px;}
._35{width:13.679760px;}
._b{width:15.792720px;}
._c{width:17.220480px;}
._1b{width:18.679680px;}
._24{width:19.943040px;}
._21{width:22.239360px;}
._22{width:23.250240px;}
._2f{width:24.385200px;}
._e{width:26.508960px;}
._d{width:27.745920px;}
._20{width:29.093760px;}
._1f{width:30.113520px;}
._f{width:31.873680px;}
._27{width:33.586560px;}
._28{width:34.928640px;}
._34{width:36.883680px;}
._15{width:39.690480px;}
._6{width:40.812000px;}
._5{width:42.042000px;}
._36{width:44.984160px;}
._2e{width:46.247760px;}
._1d{width:48.728640px;}
._1e{width:50.124720px;}
._32{width:51.342000px;}
._30{width:52.565760px;}
._31{width:53.997840px;}
._2d{width:55.424640px;}
._33{width:57.957120px;}
._23{width:59.703840px;}
._10{width:61.158240px;}
._19{width:67.223520px;}
._1a{width:68.889360px;}
._26{width:71.214000px;}
._13{width:86.133120px;}
._14{width:87.414720px;}
._12{width:98.130720px;}
._11{width:100.108080px;}
._25{width:105.786720px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y45{bottom:31.680000px;}
.y2d{bottom:31.860000px;}
.y31{bottom:32.040000px;}
.y48{bottom:32.076000px;}
.y38{bottom:32.220000px;}
.y3d{bottom:32.250000px;}
.y33{bottom:50.220000px;}
.y3b{bottom:50.250000px;}
.y35{bottom:50.265000px;}
.y4b{bottom:50.400000px;}
.y4e{bottom:50.445000px;}
.y2f{bottom:68.400000px;}
.y3c{bottom:68.430000px;}
.y36{bottom:68.445000px;}
.y2b{bottom:82.440000px;}
.y32{bottom:86.400000px;}
.y30{bottom:104.580000px;}
.y47{bottom:108.720000px;}
.y23{bottom:118.620000px;}
.y62{bottom:127.476000px;}
.y22{bottom:155.010000px;}
.y61{bottom:163.650000px;}
.y21{bottom:191.190000px;}
.y46{bottom:196.950000px;}
.y60{bottom:199.830000px;}
.y20{bottom:227.370000px;}
.y5f{bottom:236.010000px;}
.y1f{bottom:263.550000px;}
.y5e{bottom:272.370000px;}
.y44{bottom:285.150000px;}
.y1e{bottom:299.910000px;}
.y5d{bottom:308.550000px;}
.y1d{bottom:336.090000px;}
.y5c{bottom:344.730000px;}
.y43{bottom:353.910000px;}
.y64{bottom:371.910000px;}
.y1c{bottom:372.270000px;}
.y5b{bottom:380.955000px;}
.y42{bottom:390.135000px;}
.y2a{bottom:408.135000px;}
.y1b{bottom:408.495000px;}
.y5a{bottom:417.315000px;}
.y41{bottom:426.675000px;}
.y1a{bottom:444.855000px;}
.y59{bottom:453.495000px;}
.y40{bottom:462.855000px;}
.y19{bottom:481.035000px;}
.y3f{bottom:482.835000px;}
.y58{bottom:489.675000px;}
.y18{bottom:517.215000px;}
.y57{bottom:525.855000px;}
.y3e{bottom:534.675000px;}
.y17{bottom:553.395000px;}
.y56{bottom:562.215000px;}
.y16{bottom:589.755000px;}
.y55{bottom:598.035000px;}
.y3a{bottom:622.875000px;}
.y15{bottom:625.935000px;}
.y54{bottom:634.605000px;}
.y29{bottom:661.785000px;}
.y14{bottom:662.145000px;}
.y53{bottom:670.785000px;}
.y13{bottom:698.325000px;}
.y52{bottom:707.145000px;}
.y39{bottom:711.105000px;}
.y12{bottom:734.505000px;}
.y51{bottom:743.325000px;}
.y11{bottom:770.865000px;}
.y50{bottom:779.505000px;}
.y37{bottom:799.305000px;}
.y28{bottom:806.685000px;}
.y10{bottom:807.045000px;}
.y4f{bottom:815.685000px;}
.y4d{bottom:835.485000px;}
.yf{bottom:843.225000px;}
.y34{bottom:851.325000px;}
.ye{bottom:879.405000px;}
.yd{bottom:915.810000px;}
.y4c{bottom:923.730000px;}
.y2e{bottom:939.570000px;}
.yc{bottom:951.990000px;}
.yb{bottom:987.810000px;}
.y27{bottom:988.170000px;}
.y4a{bottom:1011.930000px;}
.ya{bottom:1023.990000px;}
.y63{bottom:1024.350000px;}
.y9{bottom:1060.710000px;}
.y2c{bottom:1063.950000px;}
.y8{bottom:1096.530000px;}
.y26{bottom:1096.890000px;}
.y49{bottom:1100.130000px;}
.y7{bottom:1132.710000px;}
.y25{bottom:1133.070000px;}
.y6{bottom:1168.920000px;}
.y24{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.hc{height:51.120000px;}
.h8{height:51.300000px;}
.h7{height:59.066719px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.hd{height:86.585445px;}
.hb{height:87.480000px;}
.ha{height:87.516000px;}
.h9{height:123.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w3{width:169.050000px;}
.w7{width:232.770000px;}
.w6{width:232.815000px;}
.w5{width:232.950000px;}
.w4{width:296.715000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.740000px;}
.x32{left:9.576000px;}
.x1e{left:12.105000px;}
.x19{left:14.040000px;}
.x1b{left:16.965000px;}
.x4{left:20.550000px;}
.x2f{left:22.500000px;}
.x1c{left:26.685000px;}
.x23{left:28.665000px;}
.x20{left:31.005000px;}
.x1d{left:34.416000px;}
.x16{left:35.685000px;}
.x1f{left:39.636000px;}
.x25{left:41.400000px;}
.x15{left:42.516000px;}
.x18{left:43.740000px;}
.x1a{left:44.856000px;}
.x31{left:46.980000px;}
.x21{left:48.600000px;}
.x28{left:50.445000px;}
.x13{left:52.425000px;}
.x27{left:53.676000px;}
.x22{left:62.100000px;}
.x11{left:64.650000px;}
.x2c{left:65.910000px;}
.x24{left:69.345000px;}
.x33{left:71.130000px;}
.x30{left:74.910000px;}
.x26{left:83.205000px;}
.x10{left:88.020000px;}
.x2e{left:94.680000px;}
.x1{left:95.796000px;}
.x2a{left:104.985000px;}
.x2{left:111.636000px;}
.x17{left:119.745000px;}
.xd{left:138.276000px;}
.x6{left:186.510000px;}
.x5{left:196.230000px;}
.x7{left:230.250000px;}
.xf{left:242.490000px;}
.xb{left:246.810000px;}
.x12{left:257.790000px;}
.x2b{left:259.230000px;}
.x2d{left:321.555000px;}
.xa{left:344.415000px;}
.xc{left:362.235000px;}
.x8{left:400.035000px;}
.x9{left:421.995000px;}
.x3{left:438.915000px;}
.x14{left:555.225000px;}
.xe{left:755.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.016640pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.135040pt;}
.lsb{letter-spacing:0.224640pt;}
.ls10{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.320000pt;}
.ls3{letter-spacing:14.560000pt;}
.lsf{letter-spacing:14.991360pt;}
.lsa{letter-spacing:16.480000pt;}
.ls2{letter-spacing:37.120000pt;}
.lse{letter-spacing:49.760000pt;}
.ls6{letter-spacing:60.640000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws4{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.703360pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._2a{margin-left:-8.012160pt;}
._2c{margin-left:-7.038720pt;}
._29{margin-left:-5.466240pt;}
._2b{margin-left:-2.845440pt;}
._3{margin-left:-1.919360pt;}
._1{margin-left:-1.000960pt;}
._4{width:0.985387pt;}
._7{width:2.320853pt;}
._a{width:3.506560pt;}
._18{width:4.867200pt;}
._9{width:6.140160pt;}
._8{width:7.685120pt;}
._17{width:8.786773pt;}
._16{width:10.219947pt;}
._1c{width:11.155413pt;}
._35{width:12.159787pt;}
._b{width:14.037973pt;}
._c{width:15.307093pt;}
._1b{width:16.604160pt;}
._24{width:17.727147pt;}
._21{width:19.768320pt;}
._22{width:20.666880pt;}
._2f{width:21.675733pt;}
._e{width:23.563520pt;}
._d{width:24.663040pt;}
._20{width:25.861120pt;}
._1f{width:26.767573pt;}
._f{width:28.332160pt;}
._27{width:29.854720pt;}
._28{width:31.047680pt;}
._34{width:32.785493pt;}
._15{width:35.280427pt;}
._6{width:36.277333pt;}
._5{width:37.370667pt;}
._36{width:39.985920pt;}
._2e{width:41.109120pt;}
._1d{width:43.314347pt;}
._1e{width:44.555307pt;}
._32{width:45.637333pt;}
._30{width:46.725120pt;}
._31{width:47.998080pt;}
._2d{width:49.266347pt;}
._33{width:51.517440pt;}
._23{width:53.070080pt;}
._10{width:54.362880pt;}
._19{width:59.754240pt;}
._1a{width:61.234987pt;}
._26{width:63.301333pt;}
._13{width:76.562773pt;}
._14{width:77.701973pt;}
._12{width:87.227307pt;}
._11{width:88.984960pt;}
._25{width:94.032640pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y45{bottom:28.160000pt;}
.y2d{bottom:28.320000pt;}
.y31{bottom:28.480000pt;}
.y48{bottom:28.512000pt;}
.y38{bottom:28.640000pt;}
.y3d{bottom:28.666667pt;}
.y33{bottom:44.640000pt;}
.y3b{bottom:44.666667pt;}
.y35{bottom:44.680000pt;}
.y4b{bottom:44.800000pt;}
.y4e{bottom:44.840000pt;}
.y2f{bottom:60.800000pt;}
.y3c{bottom:60.826667pt;}
.y36{bottom:60.840000pt;}
.y2b{bottom:73.280000pt;}
.y32{bottom:76.800000pt;}
.y30{bottom:92.960000pt;}
.y47{bottom:96.640000pt;}
.y23{bottom:105.440000pt;}
.y62{bottom:113.312000pt;}
.y22{bottom:137.786667pt;}
.y61{bottom:145.466667pt;}
.y21{bottom:169.946667pt;}
.y46{bottom:175.066667pt;}
.y60{bottom:177.626667pt;}
.y20{bottom:202.106667pt;}
.y5f{bottom:209.786667pt;}
.y1f{bottom:234.266667pt;}
.y5e{bottom:242.106667pt;}
.y44{bottom:253.466667pt;}
.y1e{bottom:266.586667pt;}
.y5d{bottom:274.266667pt;}
.y1d{bottom:298.746667pt;}
.y5c{bottom:306.426667pt;}
.y43{bottom:314.586667pt;}
.y64{bottom:330.586667pt;}
.y1c{bottom:330.906667pt;}
.y5b{bottom:338.626667pt;}
.y42{bottom:346.786667pt;}
.y2a{bottom:362.786667pt;}
.y1b{bottom:363.106667pt;}
.y5a{bottom:370.946667pt;}
.y41{bottom:379.266667pt;}
.y1a{bottom:395.426667pt;}
.y59{bottom:403.106667pt;}
.y40{bottom:411.426667pt;}
.y19{bottom:427.586667pt;}
.y3f{bottom:429.186667pt;}
.y58{bottom:435.266667pt;}
.y18{bottom:459.746667pt;}
.y57{bottom:467.426667pt;}
.y3e{bottom:475.266667pt;}
.y17{bottom:491.906667pt;}
.y56{bottom:499.746667pt;}
.y16{bottom:524.226667pt;}
.y55{bottom:531.586667pt;}
.y3a{bottom:553.666667pt;}
.y15{bottom:556.386667pt;}
.y54{bottom:564.093333pt;}
.y29{bottom:588.253333pt;}
.y14{bottom:588.573333pt;}
.y53{bottom:596.253333pt;}
.y13{bottom:620.733333pt;}
.y52{bottom:628.573333pt;}
.y39{bottom:632.093333pt;}
.y12{bottom:652.893333pt;}
.y51{bottom:660.733333pt;}
.y11{bottom:685.213333pt;}
.y50{bottom:692.893333pt;}
.y37{bottom:710.493333pt;}
.y28{bottom:717.053333pt;}
.y10{bottom:717.373333pt;}
.y4f{bottom:725.053333pt;}
.y4d{bottom:742.653333pt;}
.yf{bottom:749.533333pt;}
.y34{bottom:756.733333pt;}
.ye{bottom:781.693333pt;}
.yd{bottom:814.053333pt;}
.y4c{bottom:821.093333pt;}
.y2e{bottom:835.173333pt;}
.yc{bottom:846.213333pt;}
.yb{bottom:878.053333pt;}
.y27{bottom:878.373333pt;}
.y4a{bottom:899.493333pt;}
.ya{bottom:910.213333pt;}
.y63{bottom:910.533333pt;}
.y9{bottom:942.853333pt;}
.y2c{bottom:945.733333pt;}
.y8{bottom:974.693333pt;}
.y26{bottom:975.013333pt;}
.y49{bottom:977.893333pt;}
.y7{bottom:1006.853333pt;}
.y25{bottom:1007.173333pt;}
.y6{bottom:1039.040000pt;}
.y24{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.hc{height:45.440000pt;}
.h8{height:45.600000pt;}
.h7{height:52.503750pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.hd{height:76.964840pt;}
.hb{height:77.760000pt;}
.ha{height:77.792000pt;}
.h9{height:109.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w3{width:150.266667pt;}
.w7{width:206.906667pt;}
.w6{width:206.946667pt;}
.w5{width:207.066667pt;}
.w4{width:263.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.880000pt;}
.x32{left:8.512000pt;}
.x1e{left:10.760000pt;}
.x19{left:12.480000pt;}
.x1b{left:15.080000pt;}
.x4{left:18.266667pt;}
.x2f{left:20.000000pt;}
.x1c{left:23.720000pt;}
.x23{left:25.480000pt;}
.x20{left:27.560000pt;}
.x1d{left:30.592000pt;}
.x16{left:31.720000pt;}
.x1f{left:35.232000pt;}
.x25{left:36.800000pt;}
.x15{left:37.792000pt;}
.x18{left:38.880000pt;}
.x1a{left:39.872000pt;}
.x31{left:41.760000pt;}
.x21{left:43.200000pt;}
.x28{left:44.840000pt;}
.x13{left:46.600000pt;}
.x27{left:47.712000pt;}
.x22{left:55.200000pt;}
.x11{left:57.466667pt;}
.x2c{left:58.586667pt;}
.x24{left:61.640000pt;}
.x33{left:63.226667pt;}
.x30{left:66.586667pt;}
.x26{left:73.960000pt;}
.x10{left:78.240000pt;}
.x2e{left:84.160000pt;}
.x1{left:85.152000pt;}
.x2a{left:93.320000pt;}
.x2{left:99.232000pt;}
.x17{left:106.440000pt;}
.xd{left:122.912000pt;}
.x6{left:165.786667pt;}
.x5{left:174.426667pt;}
.x7{left:204.666667pt;}
.xf{left:215.546667pt;}
.xb{left:219.386667pt;}
.x12{left:229.146667pt;}
.x2b{left:230.426667pt;}
.x2d{left:285.826667pt;}
.xa{left:306.146667pt;}
.xc{left:321.986667pt;}
.x8{left:355.586667pt;}
.x9{left:375.106667pt;}
.x3{left:390.146667pt;}
.x14{left:493.533333pt;}
.xe{left:671.973333pt;}
}




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