
    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_485d71e00cd64d7130278253.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5510d7c0149a43fa43943e5e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24bb1470f3e3b71612017246.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_b2fff9feaa2326aa8bc8770e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.883301;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_771593a350bc477e5b94d929.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0bfe4184e3880c6e7753cd22.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.178000px;}
.ls7{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.496200px;}
.lsc{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.414600px;}
.ls8{letter-spacing:0.612000px;}
.ls3{letter-spacing:12.389760px;}
.lsd{letter-spacing:39.881280px;}
.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;}
}
.wsb{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.563800px;}
.ws6{word-spacing:-11.322000px;}
.ws5{word-spacing:-9.720000px;}
.ws2{word-spacing:-0.059760px;}
.ws1{word-spacing:-0.001440px;}
.wsa{word-spacing:0.000000px;}
._d{margin-left:-4.806720px;}
._3{margin-left:-3.419520px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._2{width:2.313600px;}
._e{width:3.711840px;}
._7{width:5.340480px;}
._9{width:6.844080px;}
._b{width:8.010720px;}
._10{width:9.038160px;}
._c{width:10.202160px;}
._1b{width:11.209920px;}
._8{width:12.225360px;}
._17{width:13.277040px;}
._6{width:14.628240px;}
._a{width:16.038000px;}
._f{width:17.334000px;}
._11{width:19.062000px;}
._16{width:20.569680px;}
._18{width:21.615840px;}
._13{width:22.788000px;}
._12{width:23.814000px;}
._14{width:24.835680px;}
._4{width:26.808240px;}
._5{width:28.240080px;}
._1c{width:29.852400px;}
._1d{width:31.014720px;}
._15{width:33.642000px;}
._19{width:35.835840px;}
._1a{width:37.440000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.060000px;}
.y2{bottom:6.510000px;}
.y4e{bottom:9.720000px;}
.y4f{bottom:11.340000px;}
.y42{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:28.470000px;}
.y41{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y40{bottom:49.500000px;}
.ya{bottom:55.620000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y3f{bottom:65.160000px;}
.y3e{bottom:80.640000px;}
.y3d{bottom:96.120000px;}
.y3c{bottom:111.600000px;}
.y51{bottom:125.136000px;}
.y3b{bottom:127.260000px;}
.y7e{bottom:131.976000px;}
.y3a{bottom:142.785000px;}
.y50{bottom:146.916000px;}
.y7d{bottom:153.750000px;}
.y39{bottom:158.265000px;}
.y4d{bottom:162.390000px;}
.y38{bottom:173.745000px;}
.y7c{bottom:175.530000px;}
.y37{bottom:189.225000px;}
.y13{bottom:193.710000px;}
.y7b{bottom:197.490000px;}
.y36{bottom:204.885000px;}
.y7a{bottom:219.270000px;}
.y35{bottom:220.365000px;}
.y34{bottom:235.845000px;}
.y79{bottom:241.050000px;}
.y33{bottom:251.325000px;}
.y78{bottom:262.830000px;}
.y32{bottom:266.985000px;}
.y31{bottom:282.465000px;}
.y77{bottom:284.790000px;}
.y30{bottom:297.945000px;}
.y76{bottom:306.570000px;}
.y2f{bottom:313.425000px;}
.y75{bottom:328.350000px;}
.y2e{bottom:329.085000px;}
.y4c{bottom:344.205000px;}
.y2d{bottom:344.565000px;}
.y74{bottom:350.175000px;}
.y4b{bottom:357.885000px;}
.y2c{bottom:360.045000px;}
.y4a{bottom:371.745000px;}
.y73{bottom:371.955000px;}
.y2b{bottom:375.525000px;}
.y49{bottom:385.605000px;}
.y2a{bottom:391.185000px;}
.y72{bottom:393.915000px;}
.y48{bottom:399.285000px;}
.y29{bottom:406.665000px;}
.y47{bottom:413.175000px;}
.y71{bottom:415.695000px;}
.y28{bottom:422.175000px;}
.y46{bottom:427.035000px;}
.y70{bottom:437.475000px;}
.y27{bottom:437.655000px;}
.y45{bottom:440.715000px;}
.y26{bottom:453.315000px;}
.y44{bottom:454.575000px;}
.y6f{bottom:459.255000px;}
.y25{bottom:468.795000px;}
.y6e{bottom:481.215000px;}
.y24{bottom:484.275000px;}
.y23{bottom:499.755000px;}
.y6d{bottom:502.995000px;}
.y22{bottom:515.415000px;}
.y6c{bottom:524.775000px;}
.y21{bottom:530.895000px;}
.y20{bottom:546.375000px;}
.y6b{bottom:546.555000px;}
.y1f{bottom:561.855000px;}
.y6a{bottom:568.335000px;}
.y1e{bottom:577.515000px;}
.y69{bottom:590.295000px;}
.y1d{bottom:592.995000px;}
.y1c{bottom:608.475000px;}
.y68{bottom:612.105000px;}
.y1b{bottom:623.955000px;}
.y67{bottom:633.885000px;}
.y1a{bottom:639.615000px;}
.y19{bottom:655.095000px;}
.y66{bottom:655.665000px;}
.y18{bottom:670.575000px;}
.y65{bottom:677.625000px;}
.y17{bottom:686.100000px;}
.y64{bottom:699.405000px;}
.y16{bottom:701.760000px;}
.y15{bottom:717.240000px;}
.y63{bottom:721.185000px;}
.y14{bottom:732.720000px;}
.y62{bottom:742.965000px;}
.y61{bottom:764.745000px;}
.y60{bottom:786.705000px;}
.y5f{bottom:808.485000px;}
.y5e{bottom:830.265000px;}
.y5d{bottom:852.045000px;}
.y5c{bottom:873.870000px;}
.y5b{bottom:895.830000px;}
.y5a{bottom:917.610000px;}
.y59{bottom:939.390000px;}
.y12{bottom:945.330000px;}
.y58{bottom:961.170000px;}
.y11{bottom:966.570000px;}
.y57{bottom:983.130000px;}
.y10{bottom:991.770000px;}
.y56{bottom:1004.910000px;}
.yf{bottom:1006.890000px;}
.y55{bottom:1026.690000px;}
.ye{bottom:1028.670000px;}
.y54{bottom:1048.470000px;}
.yd{bottom:1050.450000px;}
.y53{bottom:1070.250000px;}
.yc{bottom:1070.430000px;}
.yb{bottom:1089.510000px;}
.y52{bottom:1092.210000px;}
.y9{bottom:1112.190000px;}
.y1{bottom:1132.350000px;}
.he{height:27.147656px;}
.h14{height:31.320000px;}
.h15{height:33.683203px;}
.ha{height:34.036523px;}
.h11{height:37.705078px;}
.h12{height:38.100586px;}
.h13{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:44.507812px;}
.hc{height:46.251562px;}
.hd{height:46.736719px;}
.h8{height:47.980898px;}
.h16{height:48.224531px;}
.h6{height:49.255313px;}
.h4{height:50.800781px;}
.hb{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:65.884219px;}
.h2{height:77.436000px;}
.hf{height:745.305000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x11{left:29.520000px;}
.x6{left:44.640000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.xb{left:110.555987px;}
.x8{left:132.165000px;}
.x14{left:135.035987px;}
.x15{left:140.075987px;}
.x13{left:162.029987px;}
.x3{left:171.930000px;}
.xf{left:192.449987px;}
.xe{left:217.289987px;}
.xd{left:247.889987px;}
.x12{left:391.575000px;}
.xc{left:446.474987px;}
.xa{left:500.144987px;}
.x10{left:567.105000px;}
.x5{left:599.865000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.936000pt;}
.ls7{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.441067pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.368533pt;}
.ls8{letter-spacing:0.544000pt;}
.ls3{letter-spacing:11.013120pt;}
.lsd{letter-spacing:35.450027pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.278933pt;}
.ws6{word-spacing:-10.064000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws1{word-spacing:-0.001280pt;}
.wsa{word-spacing:0.000000pt;}
._d{margin-left:-4.272640pt;}
._3{margin-left:-3.039573pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._2{width:2.056533pt;}
._e{width:3.299413pt;}
._7{width:4.747093pt;}
._9{width:6.083627pt;}
._b{width:7.120640pt;}
._10{width:8.033920pt;}
._c{width:9.068587pt;}
._1b{width:9.964373pt;}
._8{width:10.866987pt;}
._17{width:11.801813pt;}
._6{width:13.002880pt;}
._a{width:14.256000pt;}
._f{width:15.408000pt;}
._11{width:16.944000pt;}
._16{width:18.284160pt;}
._18{width:19.214080pt;}
._13{width:20.256000pt;}
._12{width:21.168000pt;}
._14{width:22.076160pt;}
._4{width:23.829547pt;}
._5{width:25.102293pt;}
._1c{width:26.535467pt;}
._1d{width:27.568640pt;}
._15{width:29.904000pt;}
._19{width:31.854080pt;}
._1a{width:33.280000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.720000pt;}
.y2{bottom:5.786667pt;}
.y4e{bottom:8.640000pt;}
.y4f{bottom:10.080000pt;}
.y42{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.306667pt;}
.y41{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y40{bottom:44.000000pt;}
.ya{bottom:49.440000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y3f{bottom:57.920000pt;}
.y3e{bottom:71.680000pt;}
.y3d{bottom:85.440000pt;}
.y3c{bottom:99.200000pt;}
.y51{bottom:111.232000pt;}
.y3b{bottom:113.120000pt;}
.y7e{bottom:117.312000pt;}
.y3a{bottom:126.920000pt;}
.y50{bottom:130.592000pt;}
.y7d{bottom:136.666667pt;}
.y39{bottom:140.680000pt;}
.y4d{bottom:144.346667pt;}
.y38{bottom:154.440000pt;}
.y7c{bottom:156.026667pt;}
.y37{bottom:168.200000pt;}
.y13{bottom:172.186667pt;}
.y7b{bottom:175.546667pt;}
.y36{bottom:182.120000pt;}
.y7a{bottom:194.906667pt;}
.y35{bottom:195.880000pt;}
.y34{bottom:209.640000pt;}
.y79{bottom:214.266667pt;}
.y33{bottom:223.400000pt;}
.y78{bottom:233.626667pt;}
.y32{bottom:237.320000pt;}
.y31{bottom:251.080000pt;}
.y77{bottom:253.146667pt;}
.y30{bottom:264.840000pt;}
.y76{bottom:272.506667pt;}
.y2f{bottom:278.600000pt;}
.y75{bottom:291.866667pt;}
.y2e{bottom:292.520000pt;}
.y4c{bottom:305.960000pt;}
.y2d{bottom:306.280000pt;}
.y74{bottom:311.266667pt;}
.y4b{bottom:318.120000pt;}
.y2c{bottom:320.040000pt;}
.y4a{bottom:330.440000pt;}
.y73{bottom:330.626667pt;}
.y2b{bottom:333.800000pt;}
.y49{bottom:342.760000pt;}
.y2a{bottom:347.720000pt;}
.y72{bottom:350.146667pt;}
.y48{bottom:354.920000pt;}
.y29{bottom:361.480000pt;}
.y47{bottom:367.266667pt;}
.y71{bottom:369.506667pt;}
.y28{bottom:375.266667pt;}
.y46{bottom:379.586667pt;}
.y70{bottom:388.866667pt;}
.y27{bottom:389.026667pt;}
.y45{bottom:391.746667pt;}
.y26{bottom:402.946667pt;}
.y44{bottom:404.066667pt;}
.y6f{bottom:408.226667pt;}
.y25{bottom:416.706667pt;}
.y6e{bottom:427.746667pt;}
.y24{bottom:430.466667pt;}
.y23{bottom:444.226667pt;}
.y6d{bottom:447.106667pt;}
.y22{bottom:458.146667pt;}
.y6c{bottom:466.466667pt;}
.y21{bottom:471.906667pt;}
.y20{bottom:485.666667pt;}
.y6b{bottom:485.826667pt;}
.y1f{bottom:499.426667pt;}
.y6a{bottom:505.186667pt;}
.y1e{bottom:513.346667pt;}
.y69{bottom:524.706667pt;}
.y1d{bottom:527.106667pt;}
.y1c{bottom:540.866667pt;}
.y68{bottom:544.093333pt;}
.y1b{bottom:554.626667pt;}
.y67{bottom:563.453333pt;}
.y1a{bottom:568.546667pt;}
.y19{bottom:582.306667pt;}
.y66{bottom:582.813333pt;}
.y18{bottom:596.066667pt;}
.y65{bottom:602.333333pt;}
.y17{bottom:609.866667pt;}
.y64{bottom:621.693333pt;}
.y16{bottom:623.786667pt;}
.y15{bottom:637.546667pt;}
.y63{bottom:641.053333pt;}
.y14{bottom:651.306667pt;}
.y62{bottom:660.413333pt;}
.y61{bottom:679.773333pt;}
.y60{bottom:699.293333pt;}
.y5f{bottom:718.653333pt;}
.y5e{bottom:738.013333pt;}
.y5d{bottom:757.373333pt;}
.y5c{bottom:776.773333pt;}
.y5b{bottom:796.293333pt;}
.y5a{bottom:815.653333pt;}
.y59{bottom:835.013333pt;}
.y12{bottom:840.293333pt;}
.y58{bottom:854.373333pt;}
.y11{bottom:859.173333pt;}
.y57{bottom:873.893333pt;}
.y10{bottom:881.573333pt;}
.y56{bottom:893.253333pt;}
.yf{bottom:895.013333pt;}
.y55{bottom:912.613333pt;}
.ye{bottom:914.373333pt;}
.y54{bottom:931.973333pt;}
.yd{bottom:933.733333pt;}
.y53{bottom:951.333333pt;}
.yc{bottom:951.493333pt;}
.yb{bottom:968.453333pt;}
.y52{bottom:970.853333pt;}
.y9{bottom:988.613333pt;}
.y1{bottom:1006.533333pt;}
.he{height:24.131250pt;}
.h14{height:27.840000pt;}
.h15{height:29.940625pt;}
.ha{height:30.254687pt;}
.h11{height:33.515625pt;}
.h12{height:33.867188pt;}
.h13{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:39.562500pt;}
.hc{height:41.112500pt;}
.hd{height:41.543750pt;}
.h8{height:42.649687pt;}
.h16{height:42.866250pt;}
.h6{height:43.782500pt;}
.h4{height:45.156250pt;}
.hb{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:58.563750pt;}
.h2{height:68.832000pt;}
.hf{height:662.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x11{left:26.240000pt;}
.x6{left:39.680000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xb{left:98.271988pt;}
.x8{left:117.480000pt;}
.x14{left:120.031988pt;}
.x15{left:124.511988pt;}
.x13{left:144.026655pt;}
.x3{left:152.826667pt;}
.xf{left:171.066655pt;}
.xe{left:193.146655pt;}
.xd{left:220.346655pt;}
.x12{left:348.066667pt;}
.xc{left:396.866655pt;}
.xa{left:444.573322pt;}
.x10{left:504.093333pt;}
.x5{left:533.213333pt;}
}




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