
    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_93e0014f3fcdf77acdefded5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a6383a7f01f9065b42abb719.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_df43e7c5f20a98a47fe89959.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_6cb5aab804dd271fed95eca0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_783a4dd1de9b8cb63b1bc8fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_9b28d9ab4b871085ee949e9c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v8{vertical-align:-115.620000px;}
.v2{vertical-align:-36.000000px;}
.v7{vertical-align:-9.360000px;}
.v6{vertical-align:-4.440000px;}
.v5{vertical-align:-1.740000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v3{vertical-align:14.520000px;}
.v1{vertical-align:50.400000px;}
.lsc{letter-spacing:-3.660000px;}
.lsd{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.798000px;}
.lse{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.199200px;}
.lsa{letter-spacing:-0.193800px;}
.lsf{letter-spacing:-0.033120px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.249600px;}
.ls0{letter-spacing:27.160560px;}
.ls1{letter-spacing:27.240480px;}
.ls4{letter-spacing:31.968000px;}
.ls3{letter-spacing:32.688000px;}
.ls5{letter-spacing:84.960000px;}
.ls6{letter-spacing:111.549600px;}
.ls7{letter-spacing:111.600000px;}
.ls2{letter-spacing:165.600000px;}
.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:-56.058240px;}
.ws17{word-spacing:-43.446240px;}
.ws0{word-spacing:-37.913760px;}
.ws16{word-spacing:-32.544000px;}
.ws1{word-spacing:-27.174240px;}
.ws2{word-spacing:-25.384320px;}
.wsc{word-spacing:-1.872000px;}
.wsb{word-spacing:-1.440000px;}
.ws7{word-spacing:-1.320000px;}
.ws6{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.260000px;}
.ws3{word-spacing:-1.167840px;}
.ws13{word-spacing:-1.030608px;}
.ws12{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.252000px;}
.wse{word-spacing:0.000000px;}
.ws14{word-spacing:0.413424px;}
.wsa{word-spacing:0.432000px;}
.ws15{word-spacing:0.924624px;}
.ws18{word-spacing:1.301760px;}
.ws8{word-spacing:1.728000px;}
.ws5{word-spacing:31.536000px;}
._d{margin-left:-16.435008px;}
._13{margin-left:-14.599200px;}
._1b{margin-left:-13.520160px;}
._b{margin-left:-11.637360px;}
._1{margin-left:-10.568880px;}
._6{margin-left:-8.272800px;}
._5{margin-left:-6.320400px;}
._4{margin-left:-5.148000px;}
._a{margin-left:-3.713760px;}
._3{margin-left:-2.631600px;}
._2{margin-left:-1.509840px;}
._0{width:1.677600px;}
._9{width:2.925360px;}
._c{width:4.471440px;}
._12{width:29.623680px;}
._11{width:31.402560px;}
._f{width:32.659680px;}
._16{width:33.790800px;}
._10{width:34.963920px;}
._7{width:39.744000px;}
._8{width:40.782720px;}
._e{width:62.888160px;}
._1a{width:378.829440px;}
._15{width:908.697120px;}
._18{width:926.280000px;}
._19{width:927.300000px;}
._17{width:942.300000px;}
._14{width:1037.985840px;}
.fc3{color:rgb(9,73,167);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,188,227);}
.fs4{font-size:79.920000px;}
.fsb{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:112.320000px;}
.fs1{font-size:120.240000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs0{font-size:167.760000px;}
.fs9{font-size:192.240000px;}
.fs5{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.fs2{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:208.470000px;}
.ya{bottom:244.470000px;}
.y2{bottom:291.810000px;}
.y15{bottom:310.935000px;}
.y1{bottom:459.255000px;}
.y4d{bottom:621.150000px;}
.y4a{bottom:628.665000px;}
.y4c{bottom:664.350000px;}
.y49{bottom:671.865000px;}
.y4b{bottom:707.550000px;}
.y48{bottom:715.065000px;}
.y47{bottom:1384.305000px;}
.y46{bottom:1427.505000px;}
.y45{bottom:1470.705000px;}
.ye{bottom:1610.610000px;}
.y35{bottom:1729.725000px;}
.y27{bottom:1746.030000px;}
.y34{bottom:2008.725000px;}
.y2c{bottom:2202.225000px;}
.y2b{bottom:2238.225000px;}
.y2a{bottom:2274.225000px;}
.y33{bottom:2290.065000px;}
.y2e{bottom:2412.930000px;}
.y2d{bottom:2448.930000px;}
.y32{bottom:2574.750000px;}
.y39{bottom:2582.385000px;}
.y29{bottom:2593.365000px;}
.y31{bottom:2617.950000px;}
.y28{bottom:2629.365000px;}
.y44{bottom:2700.720000px;}
.y43{bottom:2743.920000px;}
.y30{bottom:2746.050000px;}
.y42{bottom:2787.120000px;}
.y2f{bottom:2796.450000px;}
.y41{bottom:2830.320000px;}
.y40{bottom:2905.920000px;}
.y3f{bottom:2949.120000px;}
.y3e{bottom:2992.320000px;}
.yd{bottom:3098.880000px;}
.y25{bottom:3238.740000px;}
.y24{bottom:3246.150000px;}
.y38{bottom:3384.435000px;}
.y37{bottom:3456.540000px;}
.y36{bottom:3499.770000px;}
.y3d{bottom:3530.235000px;}
.y22{bottom:3561.120000px;}
.y21{bottom:3604.320000px;}
.y20{bottom:3647.520000px;}
.y1a{bottom:3669.270000px;}
.y26{bottom:3735.180000px;}
.y1f{bottom:3780.210000px;}
.y1e{bottom:3823.410000px;}
.y19{bottom:3838.890000px;}
.y14{bottom:3857.910000px;}
.y18{bottom:3882.090000px;}
.y13{bottom:3901.110000px;}
.y12{bottom:3944.310000px;}
.y1d{bottom:3956.910000px;}
.y3c{bottom:3978.720000px;}
.y11{bottom:3987.510000px;}
.y1c{bottom:4000.110000px;}
.y3b{bottom:4021.920000px;}
.y10{bottom:4030.710000px;}
.y17{bottom:4031.715000px;}
.y1b{bottom:4043.310000px;}
.y3a{bottom:4065.120000px;}
.yf{bottom:4073.910000px;}
.y16{bottom:4074.915000px;}
.y23{bottom:4122.750000px;}
.yc{bottom:4201.740000px;}
.y9{bottom:4409.355000px;}
.y8{bottom:4445.355000px;}
.y7{bottom:4481.355000px;}
.y6{bottom:4517.355000px;}
.y5{bottom:4597.995000px;}
.y4{bottom:4741.455000px;}
.y3{bottom:4871.055000px;}
.h5{height:83.594180px;}
.he{height:95.245664px;}
.hd{height:112.640625px;}
.h3{height:119.594180px;}
.hb{height:135.554180px;}
.h8{height:143.226562px;}
.h9{height:143.369789px;}
.hf{height:147.445312px;}
.h2{height:166.858945px;}
.hc{height:171.773789px;}
.ha{height:196.839492px;}
.h6{height:262.820742px;}
.h7{height:262.963969px;}
.h4{height:429.679688px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x5{left:198.614947px;}
.x4{left:206.204947px;}
.x6{left:243.539947px;}
.x1c{left:257.939947px;}
.x1b{left:263.189947px;}
.x22{left:265.784947px;}
.x1f{left:269.204947px;}
.x20{left:279.824947px;}
.x21{left:289.184947px;}
.x1d{left:291.239947px;}
.x7{left:297.539947px;}
.x1a{left:308.189947px;}
.x1e{left:342.359947px;}
.x17{left:392.909947px;}
.x18{left:607.169947px;}
.x8{left:632.129947px;}
.x2{left:667.724947px;}
.x3{left:693.209947px;}
.x19{left:760.034947px;}
.x31{left:1601.564947px;}
.x30{left:1621.769947px;}
.x23{left:1632.809947px;}
.x24{left:1664.669947px;}
.x26{left:1716.194947px;}
.x25{left:1724.144947px;}
.x27{left:1727.894947px;}
.xc{left:1739.054947px;}
.x28{left:1746.329947px;}
.x29{left:1749.749947px;}
.xe{left:1785.389947px;}
.xa{left:1797.044947px;}
.xb{left:1831.244947px;}
.xd{left:1842.014947px;}
.x16{left:2030.834947px;}
.x10{left:2142.509947px;}
.x12{left:2152.409947px;}
.x2a{left:2171.309947px;}
.xf{left:2178.689947px;}
.x2b{left:2219.114947px;}
.x14{left:2328.989947px;}
.x9{left:2353.289947px;}
.x11{left:2359.409947px;}
.x13{left:2421.149947px;}
.x15{left:2526.299947px;}
.x2c{left:3051.389947px;}
.x2d{left:3059.849947px;}
.x2e{left:3090.989947px;}
.x1{left:3136.424947px;}
.x2f{left:3180.239947px;}
@media print{
.v8{vertical-align:-102.773333pt;}
.v2{vertical-align:-32.000000pt;}
.v7{vertical-align:-8.320000pt;}
.v6{vertical-align:-3.946667pt;}
.v5{vertical-align:-1.546667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v3{vertical-align:12.906667pt;}
.v1{vertical-align:44.800000pt;}
.lsc{letter-spacing:-3.253333pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.709333pt;}
.lse{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.177067pt;}
.lsa{letter-spacing:-0.172267pt;}
.lsf{letter-spacing:-0.029440pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.221867pt;}
.ls0{letter-spacing:24.142720pt;}
.ls1{letter-spacing:24.213760pt;}
.ls4{letter-spacing:28.416000pt;}
.ls3{letter-spacing:29.056000pt;}
.ls5{letter-spacing:75.520000pt;}
.ls6{letter-spacing:99.155200pt;}
.ls7{letter-spacing:99.200000pt;}
.ls2{letter-spacing:147.200000pt;}
.ws4{word-spacing:-49.829547pt;}
.ws17{word-spacing:-38.618880pt;}
.ws0{word-spacing:-33.701120pt;}
.ws16{word-spacing:-28.928000pt;}
.ws1{word-spacing:-24.154880pt;}
.ws2{word-spacing:-22.563840pt;}
.wsc{word-spacing:-1.664000pt;}
.wsb{word-spacing:-1.280000pt;}
.ws7{word-spacing:-1.173333pt;}
.ws6{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.120000pt;}
.ws3{word-spacing:-1.038080pt;}
.ws13{word-spacing:-0.916096pt;}
.ws12{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.224000pt;}
.wse{word-spacing:0.000000pt;}
.ws14{word-spacing:0.367488pt;}
.wsa{word-spacing:0.384000pt;}
.ws15{word-spacing:0.821888pt;}
.ws18{word-spacing:1.157120pt;}
.ws8{word-spacing:1.536000pt;}
.ws5{word-spacing:28.032000pt;}
._d{margin-left:-14.608896pt;}
._13{margin-left:-12.977067pt;}
._1b{margin-left:-12.017920pt;}
._b{margin-left:-10.344320pt;}
._1{margin-left:-9.394560pt;}
._6{margin-left:-7.353600pt;}
._5{margin-left:-5.618133pt;}
._4{margin-left:-4.576000pt;}
._a{margin-left:-3.301120pt;}
._3{margin-left:-2.339200pt;}
._2{margin-left:-1.342080pt;}
._0{width:1.491200pt;}
._9{width:2.600320pt;}
._c{width:3.974613pt;}
._12{width:26.332160pt;}
._11{width:27.913387pt;}
._f{width:29.030827pt;}
._16{width:30.036267pt;}
._10{width:31.079040pt;}
._7{width:35.328000pt;}
._8{width:36.251307pt;}
._e{width:55.900587pt;}
._1a{width:336.737280pt;}
._15{width:807.730773pt;}
._18{width:823.360000pt;}
._19{width:824.266667pt;}
._17{width:837.600000pt;}
._14{width:922.654080pt;}
.fs4{font-size:71.040000pt;}
.fsb{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:99.840000pt;}
.fs1{font-size:106.880000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs0{font-size:149.120000pt;}
.fs9{font-size:170.880000pt;}
.fs5{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.fs2{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:185.306667pt;}
.ya{bottom:217.306667pt;}
.y2{bottom:259.386667pt;}
.y15{bottom:276.386667pt;}
.y1{bottom:408.226667pt;}
.y4d{bottom:552.133333pt;}
.y4a{bottom:558.813333pt;}
.y4c{bottom:590.533333pt;}
.y49{bottom:597.213333pt;}
.y4b{bottom:628.933333pt;}
.y48{bottom:635.613333pt;}
.y47{bottom:1230.493333pt;}
.y46{bottom:1268.893333pt;}
.y45{bottom:1307.293333pt;}
.ye{bottom:1431.653333pt;}
.y35{bottom:1537.533333pt;}
.y27{bottom:1552.026667pt;}
.y34{bottom:1785.533333pt;}
.y2c{bottom:1957.533333pt;}
.y2b{bottom:1989.533333pt;}
.y2a{bottom:2021.533333pt;}
.y33{bottom:2035.613333pt;}
.y2e{bottom:2144.826667pt;}
.y2d{bottom:2176.826667pt;}
.y32{bottom:2288.666667pt;}
.y39{bottom:2295.453333pt;}
.y29{bottom:2305.213333pt;}
.y31{bottom:2327.066667pt;}
.y28{bottom:2337.213333pt;}
.y44{bottom:2400.640000pt;}
.y43{bottom:2439.040000pt;}
.y30{bottom:2440.933333pt;}
.y42{bottom:2477.440000pt;}
.y2f{bottom:2485.733333pt;}
.y41{bottom:2515.840000pt;}
.y40{bottom:2583.040000pt;}
.y3f{bottom:2621.440000pt;}
.y3e{bottom:2659.840000pt;}
.yd{bottom:2754.560000pt;}
.y25{bottom:2878.880000pt;}
.y24{bottom:2885.466667pt;}
.y38{bottom:3008.386667pt;}
.y37{bottom:3072.480000pt;}
.y36{bottom:3110.906667pt;}
.y3d{bottom:3137.986667pt;}
.y22{bottom:3165.440000pt;}
.y21{bottom:3203.840000pt;}
.y20{bottom:3242.240000pt;}
.y1a{bottom:3261.573333pt;}
.y26{bottom:3320.160000pt;}
.y1f{bottom:3360.186667pt;}
.y1e{bottom:3398.586667pt;}
.y19{bottom:3412.346667pt;}
.y14{bottom:3429.253333pt;}
.y18{bottom:3450.746667pt;}
.y13{bottom:3467.653333pt;}
.y12{bottom:3506.053333pt;}
.y1d{bottom:3517.253333pt;}
.y3c{bottom:3536.640000pt;}
.y11{bottom:3544.453333pt;}
.y1c{bottom:3555.653333pt;}
.y3b{bottom:3575.040000pt;}
.y10{bottom:3582.853333pt;}
.y17{bottom:3583.746667pt;}
.y1b{bottom:3594.053333pt;}
.y3a{bottom:3613.440000pt;}
.yf{bottom:3621.253333pt;}
.y16{bottom:3622.146667pt;}
.y23{bottom:3664.666667pt;}
.yc{bottom:3734.880000pt;}
.y9{bottom:3919.426667pt;}
.y8{bottom:3951.426667pt;}
.y7{bottom:3983.426667pt;}
.y6{bottom:4015.426667pt;}
.y5{bottom:4087.106667pt;}
.y4{bottom:4214.626667pt;}
.y3{bottom:4329.826667pt;}
.h5{height:74.305937pt;}
.he{height:84.662813pt;}
.hd{height:100.125000pt;}
.h3{height:106.305937pt;}
.hb{height:120.492604pt;}
.h8{height:127.312500pt;}
.h9{height:127.439813pt;}
.hf{height:131.062500pt;}
.h2{height:148.319063pt;}
.hc{height:152.687812pt;}
.ha{height:174.968437pt;}
.h6{height:233.618437pt;}
.h7{height:233.745750pt;}
.h4{height:381.937500pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x5{left:176.546619pt;}
.x4{left:183.293286pt;}
.x6{left:216.479953pt;}
.x1c{left:229.279953pt;}
.x1b{left:233.946619pt;}
.x22{left:236.253286pt;}
.x1f{left:239.293286pt;}
.x20{left:248.733286pt;}
.x21{left:257.053286pt;}
.x1d{left:258.879953pt;}
.x7{left:264.479953pt;}
.x1a{left:273.946619pt;}
.x1e{left:304.319953pt;}
.x17{left:349.253286pt;}
.x18{left:539.706619pt;}
.x8{left:561.893286pt;}
.x2{left:593.533286pt;}
.x3{left:616.186619pt;}
.x19{left:675.586619pt;}
.x31{left:1423.613286pt;}
.x30{left:1441.573286pt;}
.x23{left:1451.386619pt;}
.x24{left:1479.706619pt;}
.x26{left:1525.506619pt;}
.x25{left:1532.573286pt;}
.x27{left:1535.906619pt;}
.xc{left:1545.826619pt;}
.x28{left:1552.293286pt;}
.x29{left:1555.333286pt;}
.xe{left:1587.013286pt;}
.xa{left:1597.373286pt;}
.xb{left:1627.773286pt;}
.xd{left:1637.346619pt;}
.x16{left:1805.186619pt;}
.x10{left:1904.453286pt;}
.x12{left:1913.253286pt;}
.x2a{left:1930.053286pt;}
.xf{left:1936.613286pt;}
.x2b{left:1972.546619pt;}
.x14{left:2070.213286pt;}
.x9{left:2091.813286pt;}
.x11{left:2097.253286pt;}
.x13{left:2152.133286pt;}
.x15{left:2245.599953pt;}
.x2c{left:2712.346619pt;}
.x2d{left:2719.866619pt;}
.x2e{left:2747.546619pt;}
.x1{left:2787.933286pt;}
.x2f{left:2826.879953pt;}
}




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