
    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_43701c2631175f396e5a3ff2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99f7758732c6235a8598385c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_836f216016f5099068f24108.woff2')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_4cb70f80ad2570c510c785a1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_74b3e8adfb09cd0cdca3d9cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f1b4b568b63198dc84fda7fe.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.458000px;}
.lse{letter-spacing:-1.410000px;}
.ls5{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.328200px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.023760px;}
.lsc{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.750000px;}
.ls0{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.158000px;}
.ls10{letter-spacing:1.620000px;}
.ls1{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.280000px;}
.ls3{letter-spacing:2.340000px;}
.lsd{letter-spacing:2.910000px;}
.lsf{letter-spacing:53.624160px;}
.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;}
}
.ws9{word-spacing:-18.978000px;}
.ws2{word-spacing:-18.900000px;}
.ws3{word-spacing:-18.570000px;}
.ws5{word-spacing:-17.843760px;}
.ws4{word-spacing:-17.820000px;}
.ws8{word-spacing:-17.491800px;}
.wsa{word-spacing:-16.410000px;}
.ws7{word-spacing:-16.362000px;}
.ws1{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.420000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-4.977360px;}
._7{margin-left:-3.848640px;}
._1{margin-left:-2.591520px;}
._0{margin-left:-1.339200px;}
._3{width:1.254000px;}
._2{width:2.300400px;}
._4{width:3.377280px;}
._5{width:5.131920px;}
._8{width:6.359760px;}
._9{width:8.154960px;}
._12{width:9.876240px;}
._b{width:11.629200px;}
._a{width:13.060080px;}
._14{width:14.293200px;}
._15{width:15.358080px;}
._c{width:16.439280px;}
._13{width:19.468800px;}
._11{width:20.912160px;}
._f{width:22.796400px;}
._10{width:24.108480px;}
._16{width:25.226160px;}
._e{width:26.675280px;}
._d{width:28.240080px;}
._2a{width:29.557680px;}
._24{width:30.633600px;}
._35{width:31.805040px;}
._36{width:33.714960px;}
._29{width:35.302320px;}
._28{width:36.692400px;}
._1a{width:38.100240px;}
._18{width:39.631440px;}
._17{width:40.786080px;}
._19{width:42.826080px;}
._23{width:45.947280px;}
._38{width:47.236320px;}
._37{width:48.826320px;}
._27{width:50.345520px;}
._25{width:51.634560px;}
._1d{width:53.117520px;}
._26{width:54.142560px;}
._1c{width:55.319280px;}
._2c{width:59.020560px;}
._32{width:72.280800px;}
._2b{width:104.461920px;}
._39{width:122.759040px;}
._2e{width:125.124240px;}
._30{width:127.192560px;}
._1f{width:135.432720px;}
._1b{width:139.615200px;}
._33{width:143.806800px;}
._22{width:156.317760px;}
._2d{width:187.002480px;}
._21{width:189.711840px;}
._34{width:191.221920px;}
._31{width:198.950880px;}
._20{width:204.474000px;}
._1e{width:220.249680px;}
._2f{width:243.862800px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(15,17,21);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.960000px;}
.fs0{font-size:71.280000px;}
.fs3{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y43{bottom:7.560000px;}
.y68{bottom:8.100000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.340000px;}
.y4c{bottom:19.440000px;}
.y41{bottom:19.485000px;}
.y47{bottom:19.980000px;}
.y65{bottom:19.983000px;}
.y51{bottom:31.320000px;}
.y4a{bottom:31.350000px;}
.y42{bottom:31.365000px;}
.y67{bottom:31.863000px;}
.y45{bottom:31.890000px;}
.y60{bottom:43.200000px;}
.y4b{bottom:43.230000px;}
.y4f{bottom:43.245000px;}
.y64{bottom:43.743000px;}
.y46{bottom:43.770000px;}
.y62{bottom:55.080000px;}
.y4d{bottom:55.110000px;}
.y50{bottom:55.125000px;}
.y66{bottom:55.623000px;}
.y48{bottom:55.650000px;}
.y8{bottom:57.276000px;}
.y5{bottom:73.476000px;}
.y34{bottom:107.496000px;}
.y69{bottom:109.116000px;}
.y55{bottom:109.656000px;}
.y33{bottom:131.832000px;}
.y54{bottom:133.452000px;}
.y63{bottom:137.772000px;}
.y6c{bottom:155.055000px;}
.y32{bottom:155.595000px;}
.y53{bottom:156.675000px;}
.y31{bottom:179.355000px;}
.y52{bottom:185.835000px;}
.y30{bottom:203.115000px;}
.y2f{bottom:226.905000px;}
.y61{bottom:232.845000px;}
.y2e{bottom:250.665000px;}
.y4e{bottom:256.605000px;}
.y2d{bottom:274.425000px;}
.y2c{bottom:298.230000px;}
.y2b{bottom:321.990000px;}
.y5f{bottom:327.390000px;}
.y2a{bottom:345.750000px;}
.y49{bottom:351.150000px;}
.y29{bottom:369.510000px;}
.y59{bottom:392.760000px;}
.y28{bottom:393.300000px;}
.y27{bottom:417.600000px;}
.y5e{bottom:421.920000px;}
.y26{bottom:441.360000px;}
.y44{bottom:445.680000px;}
.y25{bottom:465.120000px;}
.y6a{bottom:488.370000px;}
.y24{bottom:488.910000px;}
.y5d{bottom:493.230000px;}
.y23{bottom:512.130000px;}
.y58{bottom:512.670000px;}
.y22{bottom:536.430000px;}
.y40{bottom:540.750000px;}
.y5c{bottom:559.695000px;}
.y21{bottom:560.235000px;}
.y5b{bottom:583.455000px;}
.y20{bottom:583.995000px;}
.y3f{bottom:607.215000px;}
.y1f{bottom:607.755000px;}
.y1e{bottom:631.515000px;}
.y3d{bottom:654.765000px;}
.y1d{bottom:655.305000px;}
.y1c{bottom:679.065000px;}
.y1b{bottom:702.825000px;}
.y6d{bottom:726.630000px;}
.y1a{bottom:727.170000px;}
.y57{bottom:750.390000px;}
.y19{bottom:750.930000px;}
.y18{bottom:774.690000px;}
.y17{bottom:798.450000px;}
.y16{bottom:822.240000px;}
.y15{bottom:846.000000px;}
.y56{bottom:869.220000px;}
.y14{bottom:869.760000px;}
.y13{bottom:893.010000px;}
.y3c{bottom:893.550000px;}
.y12{bottom:916.770000px;}
.y3b{bottom:917.310000px;}
.y3e{bottom:940.530000px;}
.y11{bottom:941.070000px;}
.y10{bottom:964.830000px;}
.yf{bottom:988.635000px;}
.y6b{bottom:1011.855000px;}
.ye{bottom:1012.395000px;}
.yd{bottom:1036.155000px;}
.y3a{bottom:1036.695000px;}
.yc{bottom:1059.945000px;}
.y39{bottom:1060.485000px;}
.y38{bottom:1084.245000px;}
.yb{bottom:1085.865000px;}
.y5a{bottom:1107.465000px;}
.y37{bottom:1108.005000px;}
.ya{bottom:1117.725000px;}
.y36{bottom:1131.765000px;}
.y9{bottom:1149.630000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1194.990000px;}
.y3{bottom:1210.650000px;}
.y2{bottom:1227.420000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.hf{height:47.520000px;}
.hb{height:47.556000px;}
.he{height:49.770703px;}
.h7{height:50.775820px;}
.h4{height:54.421875px;}
.h3{height:67.483125px;}
.ha{height:69.922617px;}
.h6{height:69.957422px;}
.h9{height:70.398281px;}
.hd{height:71.316000px;}
.h10{height:71.820000px;}
.h2{height:71.836875px;}
.hc{height:71.856000px;}
.h11{height:73.264608px;}
.h8{height:95.782500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:100.476000px;}
.w4{width:103.716000px;}
.w6{width:130.212000px;}
.w7{width:157.215000px;}
.wc{width:172.365000px;}
.w8{width:202.065000px;}
.we{width:206.385000px;}
.wf{width:206.925000px;}
.w9{width:209.085000px;}
.wa{width:209.625000px;}
.wd{width:218.310000px;}
.w5{width:298.800000px;}
.w3{width:299.340000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:17.820000px;}
.x8{left:43.200000px;}
.x5{left:95.652000px;}
.x15{left:96.732000px;}
.x11{left:103.211987px;}
.xa{left:121.571987px;}
.x1e{left:127.511987px;}
.xd{left:148.607987px;}
.x1a{left:162.104987px;}
.x14{left:189.104987px;}
.x3{left:195.584987px;}
.x1b{left:197.745000px;}
.xb{left:200.444987px;}
.x10{left:222.629987px;}
.x16{left:227.490000px;}
.xf{left:237.209987px;}
.xe{left:263.669987px;}
.x6{left:290.703000px;}
.x13{left:322.019987px;}
.x2{left:333.389987px;}
.xc{left:337.169987px;}
.x4{left:342.569987px;}
.x12{left:363.089987px;}
.x1c{left:371.190000px;}
.x18{left:385.275000px;}
.x7{left:394.995000px;}
.x9{left:498.705000px;}
.x19{left:587.880000px;}
.x1d{left:590.580000px;}
.x1{left:797.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.296000pt;}
.lse{letter-spacing:-1.253333pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.291733pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.021120pt;}
.lsc{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.666667pt;}
.ls0{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.029333pt;}
.ls10{letter-spacing:1.440000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls2{letter-spacing:2.026667pt;}
.ls3{letter-spacing:2.080000pt;}
.lsd{letter-spacing:2.586667pt;}
.lsf{letter-spacing:47.665920pt;}
.ws9{word-spacing:-16.869333pt;}
.ws2{word-spacing:-16.800000pt;}
.ws3{word-spacing:-16.506667pt;}
.ws5{word-spacing:-15.861120pt;}
.ws4{word-spacing:-15.840000pt;}
.ws8{word-spacing:-15.548267pt;}
.wsa{word-spacing:-14.586667pt;}
.ws7{word-spacing:-14.544000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-4.424320pt;}
._7{margin-left:-3.421013pt;}
._1{margin-left:-2.303573pt;}
._0{margin-left:-1.190400pt;}
._3{width:1.114667pt;}
._2{width:2.044800pt;}
._4{width:3.002027pt;}
._5{width:4.561707pt;}
._8{width:5.653120pt;}
._9{width:7.248853pt;}
._12{width:8.778880pt;}
._b{width:10.337067pt;}
._a{width:11.608960pt;}
._14{width:12.705067pt;}
._15{width:13.651627pt;}
._c{width:14.612693pt;}
._13{width:17.305600pt;}
._11{width:18.588587pt;}
._f{width:20.263467pt;}
._10{width:21.429760pt;}
._16{width:22.423253pt;}
._e{width:23.711360pt;}
._d{width:25.102293pt;}
._2a{width:26.273493pt;}
._24{width:27.229867pt;}
._35{width:28.271147pt;}
._36{width:29.968853pt;}
._29{width:31.379840pt;}
._28{width:32.615467pt;}
._1a{width:33.866880pt;}
._18{width:35.227947pt;}
._17{width:36.254293pt;}
._19{width:38.067627pt;}
._23{width:40.842027pt;}
._38{width:41.987840pt;}
._37{width:43.401173pt;}
._27{width:44.751573pt;}
._25{width:45.897387pt;}
._1d{width:47.215573pt;}
._26{width:48.126720pt;}
._1c{width:49.172693pt;}
._2c{width:52.462720pt;}
._32{width:64.249600pt;}
._2b{width:92.855040pt;}
._39{width:109.119147pt;}
._2e{width:111.221547pt;}
._30{width:113.060053pt;}
._1f{width:120.384640pt;}
._1b{width:124.102400pt;}
._33{width:127.828267pt;}
._22{width:138.949120pt;}
._2d{width:166.224427pt;}
._21{width:168.632747pt;}
._34{width:169.975040pt;}
._31{width:176.845227pt;}
._20{width:181.754667pt;}
._1e{width:195.777493pt;}
._2f{width:216.766933pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:59.520000pt;}
.fs0{font-size:63.360000pt;}
.fs3{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:6.720000pt;}
.y68{bottom:7.200000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:10.080000pt;}
.y4c{bottom:17.280000pt;}
.y41{bottom:17.320000pt;}
.y47{bottom:17.760000pt;}
.y65{bottom:17.762667pt;}
.y51{bottom:27.840000pt;}
.y4a{bottom:27.866667pt;}
.y42{bottom:27.880000pt;}
.y67{bottom:28.322667pt;}
.y45{bottom:28.346667pt;}
.y60{bottom:38.400000pt;}
.y4b{bottom:38.426667pt;}
.y4f{bottom:38.440000pt;}
.y64{bottom:38.882667pt;}
.y46{bottom:38.906667pt;}
.y62{bottom:48.960000pt;}
.y4d{bottom:48.986667pt;}
.y50{bottom:49.000000pt;}
.y66{bottom:49.442667pt;}
.y48{bottom:49.466667pt;}
.y8{bottom:50.912000pt;}
.y5{bottom:65.312000pt;}
.y34{bottom:95.552000pt;}
.y69{bottom:96.992000pt;}
.y55{bottom:97.472000pt;}
.y33{bottom:117.184000pt;}
.y54{bottom:118.624000pt;}
.y63{bottom:122.464000pt;}
.y6c{bottom:137.826667pt;}
.y32{bottom:138.306667pt;}
.y53{bottom:139.266667pt;}
.y31{bottom:159.426667pt;}
.y52{bottom:165.186667pt;}
.y30{bottom:180.546667pt;}
.y2f{bottom:201.693333pt;}
.y61{bottom:206.973333pt;}
.y2e{bottom:222.813333pt;}
.y4e{bottom:228.093333pt;}
.y2d{bottom:243.933333pt;}
.y2c{bottom:265.093333pt;}
.y2b{bottom:286.213333pt;}
.y5f{bottom:291.013333pt;}
.y2a{bottom:307.333333pt;}
.y49{bottom:312.133333pt;}
.y29{bottom:328.453333pt;}
.y59{bottom:349.120000pt;}
.y28{bottom:349.600000pt;}
.y27{bottom:371.200000pt;}
.y5e{bottom:375.040000pt;}
.y26{bottom:392.320000pt;}
.y44{bottom:396.160000pt;}
.y25{bottom:413.440000pt;}
.y6a{bottom:434.106667pt;}
.y24{bottom:434.586667pt;}
.y5d{bottom:438.426667pt;}
.y23{bottom:455.226667pt;}
.y58{bottom:455.706667pt;}
.y22{bottom:476.826667pt;}
.y40{bottom:480.666667pt;}
.y5c{bottom:497.506667pt;}
.y21{bottom:497.986667pt;}
.y5b{bottom:518.626667pt;}
.y20{bottom:519.106667pt;}
.y3f{bottom:539.746667pt;}
.y1f{bottom:540.226667pt;}
.y1e{bottom:561.346667pt;}
.y3d{bottom:582.013333pt;}
.y1d{bottom:582.493333pt;}
.y1c{bottom:603.613333pt;}
.y1b{bottom:624.733333pt;}
.y6d{bottom:645.893333pt;}
.y1a{bottom:646.373333pt;}
.y57{bottom:667.013333pt;}
.y19{bottom:667.493333pt;}
.y18{bottom:688.613333pt;}
.y17{bottom:709.733333pt;}
.y16{bottom:730.880000pt;}
.y15{bottom:752.000000pt;}
.y56{bottom:772.640000pt;}
.y14{bottom:773.120000pt;}
.y13{bottom:793.786667pt;}
.y3c{bottom:794.266667pt;}
.y12{bottom:814.906667pt;}
.y3b{bottom:815.386667pt;}
.y3e{bottom:836.026667pt;}
.y11{bottom:836.506667pt;}
.y10{bottom:857.626667pt;}
.yf{bottom:878.786667pt;}
.y6b{bottom:899.426667pt;}
.ye{bottom:899.906667pt;}
.yd{bottom:921.026667pt;}
.y3a{bottom:921.506667pt;}
.yc{bottom:942.173333pt;}
.y39{bottom:942.653333pt;}
.y38{bottom:963.773333pt;}
.yb{bottom:965.213333pt;}
.y5a{bottom:984.413333pt;}
.y37{bottom:984.893333pt;}
.ya{bottom:993.533333pt;}
.y36{bottom:1006.013333pt;}
.y9{bottom:1021.893333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.213333pt;}
.y3{bottom:1076.133333pt;}
.y2{bottom:1091.040000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.hf{height:42.240000pt;}
.hb{height:42.272000pt;}
.he{height:44.240625pt;}
.h7{height:45.134063pt;}
.h4{height:48.375000pt;}
.h3{height:59.985000pt;}
.ha{height:62.153437pt;}
.h6{height:62.184375pt;}
.h9{height:62.576250pt;}
.hd{height:63.392000pt;}
.h10{height:63.840000pt;}
.h2{height:63.855000pt;}
.hc{height:63.872000pt;}
.h11{height:65.124096pt;}
.h8{height:85.140000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:89.312000pt;}
.w4{width:92.192000pt;}
.w6{width:115.744000pt;}
.w7{width:139.746667pt;}
.wc{width:153.213333pt;}
.w8{width:179.613333pt;}
.we{width:183.453333pt;}
.wf{width:183.933333pt;}
.w9{width:185.853333pt;}
.wa{width:186.333333pt;}
.wd{width:194.053333pt;}
.w5{width:265.600000pt;}
.w3{width:266.080000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:15.840000pt;}
.x8{left:38.400000pt;}
.x5{left:85.024000pt;}
.x15{left:85.984000pt;}
.x11{left:91.743988pt;}
.xa{left:108.063988pt;}
.x1e{left:113.343988pt;}
.xd{left:132.095988pt;}
.x1a{left:144.093322pt;}
.x14{left:168.093322pt;}
.x3{left:173.853322pt;}
.x1b{left:175.773333pt;}
.xb{left:178.173322pt;}
.x10{left:197.893322pt;}
.x16{left:202.213333pt;}
.xf{left:210.853322pt;}
.xe{left:234.373322pt;}
.x6{left:258.402667pt;}
.x13{left:286.239988pt;}
.x2{left:296.346655pt;}
.xc{left:299.706655pt;}
.x4{left:304.506655pt;}
.x12{left:322.746655pt;}
.x1c{left:329.946667pt;}
.x18{left:342.466667pt;}
.x7{left:351.106667pt;}
.x9{left:443.293333pt;}
.x19{left:522.560000pt;}
.x1d{left:524.960000pt;}
.x1{left:708.893322pt;}
}




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