
    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_4289e3444bf59031d1ca4c86.woff')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_827c6050fa12c87af03e96e6.woff')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_a3b523cb68f49004fa70b991.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6109b316fa8d6c6e0ad493d5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69486093418c051719efd221.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_e65cd6cd9fc44518a45356e5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_c3ce25426c9771e55653fd8f.woff')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;}
.ls6{letter-spacing:-0.287400px;}
.lsa{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.350400px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.369600px;}
.ls3{letter-spacing:1.980000px;}
.ls7{letter-spacing:4.860000px;}
.ls4{letter-spacing:8.460000px;}
.ls8{letter-spacing:12.060000px;}
.ls5{letter-spacing:19.980000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.300000px;}
.ws6{word-spacing:-21.429600px;}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.410400px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._2e{margin-left:-5.896800px;}
._10{margin-left:-4.247520px;}
._f{margin-left:-2.828640px;}
._1{margin-left:-1.214880px;}
._0{width:1.140000px;}
._11{width:2.899680px;}
._12{width:3.910560px;}
._4{width:5.258400px;}
._25{width:6.318000px;}
._20{width:7.497360px;}
._21{width:8.649360px;}
._5{width:10.108800px;}
._c{width:11.245920px;}
._6{width:12.448560px;}
._8{width:13.983840px;}
._9{width:15.448320px;}
._23{width:16.865280px;}
._24{width:18.294240px;}
._2{width:19.428960px;}
._2d{width:23.791200px;}
._1d{width:25.019280px;}
._1e{width:26.114400px;}
._26{width:27.368400px;}
._7{width:30.579120px;}
._19{width:32.295360px;}
._d{width:34.032960px;}
._e{width:35.380800px;}
._18{width:36.981360px;}
._28{width:38.656800px;}
._27{width:40.470720px;}
._13{width:41.987040px;}
._1b{width:44.093040px;}
._1c{width:45.321120px;}
._16{width:47.174400px;}
._2a{width:48.593280px;}
._22{width:49.701600px;}
._29{width:51.253440px;}
._14{width:55.465440px;}
._15{width:56.862000px;}
._17{width:58.750800px;}
._1f{width:60.147360px;}
._3{width:61.734720px;}
._a{width:63.601200px;}
._b{width:70.860720px;}
._2b{width:111.196800px;}
._1a{width:182.583600px;}
._2c{width:479.750880px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.960000px;}
.y48{bottom:4.005000px;}
.y67{bottom:4.140000px;}
.y31{bottom:7.380000px;}
.y65{bottom:8.430000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:24.120000px;}
.y4{bottom:27.900000px;}
.y2{bottom:36.720000px;}
.y9{bottom:36.756000px;}
.y64{bottom:37.260000px;}
.y8{bottom:44.640000px;}
.y62{bottom:83.520000px;}
.y42{bottom:108.216000px;}
.y86{bottom:113.976000px;}
.y5f{bottom:114.516000px;}
.y2f{bottom:121.536000px;}
.y41{bottom:129.636000px;}
.y5e{bottom:135.936000px;}
.y85{bottom:141.696000px;}
.y2e{bottom:149.436000px;}
.y40{bottom:151.050000px;}
.y5d{bottom:157.350000px;}
.y84{bottom:169.410000px;}
.y3f{bottom:172.470000px;}
.y2d{bottom:177.150000px;}
.y5c{bottom:178.770000px;}
.y3e{bottom:194.070000px;}
.y83{bottom:197.310000px;}
.y5b{bottom:200.370000px;}
.y2c{bottom:204.870000px;}
.y61{bottom:212.970000px;}
.y63{bottom:215.025000px;}
.y3d{bottom:215.490000px;}
.y5a{bottom:221.790000px;}
.y82{bottom:225.030000px;}
.y2b{bottom:232.770000px;}
.y3c{bottom:236.910000px;}
.y59{bottom:243.210000px;}
.y81{bottom:252.750000px;}
.y2a{bottom:260.490000px;}
.y58{bottom:264.630000px;}
.y3b{bottom:266.430000px;}
.y80{bottom:280.470000px;}
.y57{bottom:286.050000px;}
.y29{bottom:288.210000px;}
.y3a{bottom:294.330000px;}
.y7f{bottom:304.770000px;}
.y56{bottom:311.970000px;}
.y28{bottom:315.930000px;}
.y39{bottom:322.050000px;}
.y7e{bottom:328.890000px;}
.y55{bottom:336.270000px;}
.y27{bottom:343.875000px;}
.y38{bottom:349.815000px;}
.y7d{bottom:356.655000px;}
.y54{bottom:360.435000px;}
.y37{bottom:370.155000px;}
.y26{bottom:371.595000px;}
.y7c{bottom:384.375000px;}
.y53{bottom:384.555000px;}
.y36{bottom:391.755000px;}
.y25{bottom:399.315000px;}
.y52{bottom:408.675000px;}
.y7b{bottom:412.275000px;}
.y35{bottom:413.175000px;}
.y24{bottom:427.215000px;}
.y51{bottom:432.795000px;}
.y34{bottom:434.595000px;}
.y7a{bottom:439.995000px;}
.y23{bottom:454.935000px;}
.y32{bottom:456.015000px;}
.y50{bottom:456.915000px;}
.y79{bottom:467.715000px;}
.y30{bottom:477.435000px;}
.y4f{bottom:480.315000px;}
.y60{bottom:481.860000px;}
.y22{bottom:482.655000px;}
.y78{bottom:495.435000px;}
.y21{bottom:510.375000px;}
.y77{bottom:523.335000px;}
.y20{bottom:538.275000px;}
.y76{bottom:551.055000px;}
.y1f{bottom:565.995000px;}
.y75{bottom:578.775000px;}
.y1e{bottom:593.715000px;}
.y74{bottom:606.705000px;}
.y1d{bottom:621.465000px;}
.y73{bottom:634.425000px;}
.y1c{bottom:649.365000px;}
.y72{bottom:662.145000px;}
.y1b{bottom:677.085000px;}
.y71{bottom:689.865000px;}
.y1a{bottom:704.805000px;}
.y70{bottom:717.765000px;}
.y4e{bottom:726.945000px;}
.y19{bottom:732.705000px;}
.y6f{bottom:738.105000px;}
.y4d{bottom:754.665000px;}
.y18{bottom:760.425000px;}
.y6e{bottom:761.325000px;}
.y4c{bottom:782.385000px;}
.y6d{bottom:784.365000px;}
.y17{bottom:788.145000px;}
.y4b{bottom:802.905000px;}
.y6c{bottom:807.585000px;}
.y16{bottom:815.865000px;}
.y4a{bottom:824.325000px;}
.y6b{bottom:830.805000px;}
.y15{bottom:843.765000px;}
.y49{bottom:845.745000px;}
.y6a{bottom:854.025000px;}
.y47{bottom:867.165000px;}
.y14{bottom:871.530000px;}
.y69{bottom:877.110000px;}
.y46{bottom:888.630000px;}
.y13{bottom:899.250000px;}
.y68{bottom:900.330000px;}
.y45{bottom:910.050000px;}
.y66{bottom:923.550000px;}
.y12{bottom:927.150000px;}
.y44{bottom:931.470000px;}
.y43{bottom:953.070000px;}
.y11{bottom:954.870000px;}
.y10{bottom:982.590000px;}
.yf{bottom:1010.310000px;}
.ye{bottom:1038.210000px;}
.yd{bottom:1065.930000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.hf{height:20.700000px;}
.h10{height:20.736000px;}
.h13{height:22.320000px;}
.h16{height:22.356000px;}
.h15{height:22.500000px;}
.hd{height:24.120000px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.h7{height:53.496000px;}
.hc{height:59.066719px;}
.h12{height:62.261719px;}
.h8{height:70.664062px;}
.he{height:71.824219px;}
.h3{height:72.562500px;}
.hb{height:72.846211px;}
.h14{height:76.317188px;}
.ha{height:82.676953px;}
.h6{height:84.898125px;}
.h17{height:86.585445px;}
.h9{height:96.508125px;}
.h11{height:237.060000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.wc{width:230.970000px;}
.wa{width:232.050000px;}
.w8{width:232.770000px;}
.w9{width:232.950000px;}
.wb{width:235.650000px;}
.w10{width:264.630000px;}
.w13{width:328.350000px;}
.wd{width:349.590000px;}
.we{width:349.815000px;}
.w12{width:371.055000px;}
.wf{width:434.775000px;}
.w11{width:635.220000px;}
.w7{width:700.125000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x19{left:68.760000px;}
.x5{left:84.959987px;}
.xf{left:96.516000px;}
.x8{left:108.755987px;}
.xc{left:111.815987px;}
.xd{left:123.875987px;}
.xe{left:127.475987px;}
.x17{left:208.770000px;}
.x9{left:249.689987px;}
.xb{left:276.869987px;}
.x18{left:278.970000px;}
.x10{left:330.195000px;}
.x16{left:339.045000px;}
.xa{left:446.474987px;}
.x1a{left:468.285000px;}
.x15{left:532.005000px;}
.x12{left:563.685000px;}
.x13{left:565.665000px;}
.x14{left:764.789987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.255467pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.311467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.328533pt;}
.ls3{letter-spacing:1.760000pt;}
.ls7{letter-spacing:4.320000pt;}
.ls4{letter-spacing:7.520000pt;}
.ls8{letter-spacing:10.720000pt;}
.ls5{letter-spacing:17.760000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws6{word-spacing:-19.048533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.031467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._2e{margin-left:-5.241600pt;}
._10{margin-left:-3.775573pt;}
._f{margin-left:-2.514347pt;}
._1{margin-left:-1.079893pt;}
._0{width:1.013333pt;}
._11{width:2.577493pt;}
._12{width:3.476053pt;}
._4{width:4.674133pt;}
._25{width:5.616000pt;}
._20{width:6.664320pt;}
._21{width:7.688320pt;}
._5{width:8.985600pt;}
._c{width:9.996373pt;}
._6{width:11.065387pt;}
._8{width:12.430080pt;}
._9{width:13.731840pt;}
._23{width:14.991360pt;}
._24{width:16.261547pt;}
._2{width:17.270187pt;}
._2d{width:21.147733pt;}
._1d{width:22.239360pt;}
._1e{width:23.212800pt;}
._26{width:24.327467pt;}
._7{width:27.181440pt;}
._19{width:28.706987pt;}
._d{width:30.251520pt;}
._e{width:31.449600pt;}
._18{width:32.872320pt;}
._28{width:34.361600pt;}
._27{width:35.973973pt;}
._13{width:37.321813pt;}
._1b{width:39.193813pt;}
._1c{width:40.285440pt;}
._16{width:41.932800pt;}
._2a{width:43.194027pt;}
._22{width:44.179200pt;}
._29{width:45.558613pt;}
._14{width:49.302613pt;}
._15{width:50.544000pt;}
._17{width:52.222933pt;}
._1f{width:53.464320pt;}
._3{width:54.875307pt;}
._a{width:56.534400pt;}
._b{width:62.987307pt;}
._2b{width:98.841600pt;}
._1a{width:162.296533pt;}
._2c{width:426.445227pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:3.520000pt;}
.y48{bottom:3.560000pt;}
.y67{bottom:3.680000pt;}
.y31{bottom:6.560000pt;}
.y65{bottom:7.493333pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:21.440000pt;}
.y4{bottom:24.800000pt;}
.y2{bottom:32.640000pt;}
.y9{bottom:32.672000pt;}
.y64{bottom:33.120000pt;}
.y8{bottom:39.680000pt;}
.y62{bottom:74.240000pt;}
.y42{bottom:96.192000pt;}
.y86{bottom:101.312000pt;}
.y5f{bottom:101.792000pt;}
.y2f{bottom:108.032000pt;}
.y41{bottom:115.232000pt;}
.y5e{bottom:120.832000pt;}
.y85{bottom:125.952000pt;}
.y2e{bottom:132.832000pt;}
.y40{bottom:134.266667pt;}
.y5d{bottom:139.866667pt;}
.y84{bottom:150.586667pt;}
.y3f{bottom:153.306667pt;}
.y2d{bottom:157.466667pt;}
.y5c{bottom:158.906667pt;}
.y3e{bottom:172.506667pt;}
.y83{bottom:175.386667pt;}
.y5b{bottom:178.106667pt;}
.y2c{bottom:182.106667pt;}
.y61{bottom:189.306667pt;}
.y63{bottom:191.133333pt;}
.y3d{bottom:191.546667pt;}
.y5a{bottom:197.146667pt;}
.y82{bottom:200.026667pt;}
.y2b{bottom:206.906667pt;}
.y3c{bottom:210.586667pt;}
.y59{bottom:216.186667pt;}
.y81{bottom:224.666667pt;}
.y2a{bottom:231.546667pt;}
.y58{bottom:235.226667pt;}
.y3b{bottom:236.826667pt;}
.y80{bottom:249.306667pt;}
.y57{bottom:254.266667pt;}
.y29{bottom:256.186667pt;}
.y3a{bottom:261.626667pt;}
.y7f{bottom:270.906667pt;}
.y56{bottom:277.306667pt;}
.y28{bottom:280.826667pt;}
.y39{bottom:286.266667pt;}
.y7e{bottom:292.346667pt;}
.y55{bottom:298.906667pt;}
.y27{bottom:305.666667pt;}
.y38{bottom:310.946667pt;}
.y7d{bottom:317.026667pt;}
.y54{bottom:320.386667pt;}
.y37{bottom:329.026667pt;}
.y26{bottom:330.306667pt;}
.y7c{bottom:341.666667pt;}
.y53{bottom:341.826667pt;}
.y36{bottom:348.226667pt;}
.y25{bottom:354.946667pt;}
.y52{bottom:363.266667pt;}
.y7b{bottom:366.466667pt;}
.y35{bottom:367.266667pt;}
.y24{bottom:379.746667pt;}
.y51{bottom:384.706667pt;}
.y34{bottom:386.306667pt;}
.y7a{bottom:391.106667pt;}
.y23{bottom:404.386667pt;}
.y32{bottom:405.346667pt;}
.y50{bottom:406.146667pt;}
.y79{bottom:415.746667pt;}
.y30{bottom:424.386667pt;}
.y4f{bottom:426.946667pt;}
.y60{bottom:428.320000pt;}
.y22{bottom:429.026667pt;}
.y78{bottom:440.386667pt;}
.y21{bottom:453.666667pt;}
.y77{bottom:465.186667pt;}
.y20{bottom:478.466667pt;}
.y76{bottom:489.826667pt;}
.y1f{bottom:503.106667pt;}
.y75{bottom:514.466667pt;}
.y1e{bottom:527.746667pt;}
.y74{bottom:539.293333pt;}
.y1d{bottom:552.413333pt;}
.y73{bottom:563.933333pt;}
.y1c{bottom:577.213333pt;}
.y72{bottom:588.573333pt;}
.y1b{bottom:601.853333pt;}
.y71{bottom:613.213333pt;}
.y1a{bottom:626.493333pt;}
.y70{bottom:638.013333pt;}
.y4e{bottom:646.173333pt;}
.y19{bottom:651.293333pt;}
.y6f{bottom:656.093333pt;}
.y4d{bottom:670.813333pt;}
.y18{bottom:675.933333pt;}
.y6e{bottom:676.733333pt;}
.y4c{bottom:695.453333pt;}
.y6d{bottom:697.213333pt;}
.y17{bottom:700.573333pt;}
.y4b{bottom:713.693333pt;}
.y6c{bottom:717.853333pt;}
.y16{bottom:725.213333pt;}
.y4a{bottom:732.733333pt;}
.y6b{bottom:738.493333pt;}
.y15{bottom:750.013333pt;}
.y49{bottom:751.773333pt;}
.y6a{bottom:759.133333pt;}
.y47{bottom:770.813333pt;}
.y14{bottom:774.693333pt;}
.y69{bottom:779.653333pt;}
.y46{bottom:789.893333pt;}
.y13{bottom:799.333333pt;}
.y68{bottom:800.293333pt;}
.y45{bottom:808.933333pt;}
.y66{bottom:820.933333pt;}
.y12{bottom:824.133333pt;}
.y44{bottom:827.973333pt;}
.y43{bottom:847.173333pt;}
.y11{bottom:848.773333pt;}
.y10{bottom:873.413333pt;}
.yf{bottom:898.053333pt;}
.ye{bottom:922.853333pt;}
.yd{bottom:947.493333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.hf{height:18.400000pt;}
.h10{height:18.432000pt;}
.h13{height:19.840000pt;}
.h16{height:19.872000pt;}
.h15{height:20.000000pt;}
.hd{height:21.440000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.h7{height:47.552000pt;}
.hc{height:52.503750pt;}
.h12{height:55.343750pt;}
.h8{height:62.812500pt;}
.he{height:63.843750pt;}
.h3{height:64.500000pt;}
.hb{height:64.752187pt;}
.h14{height:67.837500pt;}
.ha{height:73.490625pt;}
.h6{height:75.465000pt;}
.h17{height:76.964840pt;}
.h9{height:85.785000pt;}
.h11{height:210.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.wc{width:205.306667pt;}
.wa{width:206.266667pt;}
.w8{width:206.906667pt;}
.w9{width:207.066667pt;}
.wb{width:209.466667pt;}
.w10{width:235.226667pt;}
.w13{width:291.866667pt;}
.wd{width:310.746667pt;}
.we{width:310.946667pt;}
.w12{width:329.826667pt;}
.wf{width:386.466667pt;}
.w11{width:564.640000pt;}
.w7{width:622.333333pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x19{left:61.120000pt;}
.x5{left:75.519988pt;}
.xf{left:85.792000pt;}
.x8{left:96.671988pt;}
.xc{left:99.391988pt;}
.xd{left:110.111988pt;}
.xe{left:113.311988pt;}
.x17{left:185.573333pt;}
.x9{left:221.946655pt;}
.xb{left:246.106655pt;}
.x18{left:247.973333pt;}
.x10{left:293.506667pt;}
.x16{left:301.373333pt;}
.xa{left:396.866655pt;}
.x1a{left:416.253333pt;}
.x15{left:472.893333pt;}
.x12{left:501.053333pt;}
.x13{left:502.813333pt;}
.x14{left:679.813322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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