
    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_afa5fdae0ac0e0a5c5b91037.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d7e172095f1032399563e2ea.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6e017b43249304152f27d896.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b22123df46f371e911fbc1e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9d8a760acfc280612c3ead87.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.223800px;}
.ls9{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:8.100000px;}
.ls4{letter-spacing:199.416000px;}
.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;}
}
.ws7{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.283800px;}
.ws5{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-7.920000px;}
._2a{margin-left:-5.601600px;}
._15{margin-left:-4.570560px;}
._14{margin-left:-2.943360px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._8{width:2.916000px;}
._c{width:4.346400px;}
._a{width:6.086640px;}
._7{width:7.290000px;}
._11{width:8.752320px;}
._10{width:9.774000px;}
._3{width:11.038320px;}
._2{width:12.360000px;}
._1a{width:13.514880px;}
._5{width:14.742000px;}
._6{width:15.822000px;}
._f{width:16.902000px;}
._21{width:17.951040px;}
._1e{width:19.077120px;}
._12{width:20.088000px;}
._16{width:21.263040px;}
._17{width:22.502880px;}
._1b{width:23.685120px;}
._e{width:25.168320px;}
._d{width:26.298000px;}
._b{width:27.972000px;}
._4{width:29.106000px;}
._23{width:30.271680px;}
._9{width:31.914000px;}
._28{width:33.001920px;}
._27{width:34.260480px;}
._29{width:35.357760px;}
._22{width:37.823040px;}
._24{width:53.184480px;}
._1c{width:54.979200px;}
._1d{width:56.016240px;}
._25{width:63.789120px;}
._26{width:64.846560px;}
._13{width:69.552000px;}
._2c{width:93.182400px;}
._2d{width:94.291920px;}
._1f{width:99.889920px;}
._20{width:101.030400px;}
._2b{width:153.213360px;}
._19{width:199.416000px;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{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;}
.y34{bottom:4.500000px;}
.y30{bottom:5.220000px;}
.y2{bottom:5.400000px;}
.y32{bottom:9.000000px;}
.y35{bottom:19.080000px;}
.y33{bottom:20.385000px;}
.y2f{bottom:23.040000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y2e{bottom:41.040000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.ya{bottom:56.340000px;}
.y2d{bottom:58.860000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y2c{bottom:76.680000px;}
.y2b{bottom:94.500000px;}
.y75{bottom:110.376000px;}
.y2a{bottom:112.320000px;}
.y7e{bottom:114.876000px;}
.y83{bottom:120.636000px;}
.y74{bottom:124.236000px;}
.y3d{bottom:128.556000px;}
.y73{bottom:128.736000px;}
.y29{bottom:130.140000px;}
.y72{bottom:137.916000px;}
.y81{bottom:138.996000px;}
.y7d{bottom:142.416000px;}
.y28{bottom:148.140000px;}
.y3c{bottom:150.330000px;}
.y71{bottom:151.770000px;}
.y7c{bottom:152.670000px;}
.y70{bottom:156.270000px;}
.y80{bottom:164.370000px;}
.y6f{bottom:165.630000px;}
.y27{bottom:165.960000px;}
.y3b{bottom:172.290000px;}
.y6e{bottom:179.310000px;}
.y26{bottom:183.780000px;}
.y6d{bottom:183.810000px;}
.y7a{bottom:186.150000px;}
.y7b{bottom:192.090000px;}
.y6c{bottom:193.170000px;}
.y3a{bottom:194.070000px;}
.y25{bottom:201.600000px;}
.y6b{bottom:207.030000px;}
.y79{bottom:207.930000px;}
.y6a{bottom:211.530000px;}
.y39{bottom:215.850000px;}
.y24{bottom:219.420000px;}
.y69{bottom:220.710000px;}
.y78{bottom:229.710000px;}
.y68{bottom:234.570000px;}
.y23{bottom:237.420000px;}
.y38{bottom:237.630000px;}
.y67{bottom:239.070000px;}
.y66{bottom:249.330000px;}
.y77{bottom:251.490000px;}
.y22{bottom:255.270000px;}
.y37{bottom:259.410000px;}
.y21{bottom:273.090000px;}
.y65{bottom:273.450000px;}
.y36{bottom:281.370000px;}
.y20{bottom:290.910000px;}
.y64{bottom:295.230000px;}
.y31{bottom:296.850000px;}
.y1f{bottom:308.730000px;}
.y63{bottom:317.055000px;}
.y1e{bottom:326.550000px;}
.y15{bottom:328.575000px;}
.y62{bottom:338.835000px;}
.y1d{bottom:344.550000px;}
.y60{bottom:360.615000px;}
.y1c{bottom:362.370000px;}
.y61{bottom:366.555000px;}
.y1b{bottom:380.190000px;}
.y5f{bottom:382.575000px;}
.y1a{bottom:398.010000px;}
.y5e{bottom:404.355000px;}
.y76{bottom:410.295000px;}
.y19{bottom:415.830000px;}
.y5d{bottom:426.135000px;}
.y18{bottom:433.830000px;}
.y5b{bottom:447.915000px;}
.y17{bottom:451.650000px;}
.y5c{bottom:453.855000px;}
.y16{bottom:469.470000px;}
.y5a{bottom:469.875000px;}
.y59{bottom:491.655000px;}
.y58{bottom:513.435000px;}
.y57{bottom:535.215000px;}
.y56{bottom:556.995000px;}
.y55{bottom:578.985000px;}
.y54{bottom:600.765000px;}
.y53{bottom:622.545000px;}
.y52{bottom:644.325000px;}
.y51{bottom:666.285000px;}
.y82{bottom:672.225000px;}
.y50{bottom:688.065000px;}
.y4e{bottom:709.845000px;}
.y4f{bottom:715.785000px;}
.y4d{bottom:731.625000px;}
.y4c{bottom:753.405000px;}
.y4b{bottom:775.365000px;}
.y7f{bottom:781.305000px;}
.y4a{bottom:797.145000px;}
.y14{bottom:816.945000px;}
.y49{bottom:818.925000px;}
.y13{bottom:838.770000px;}
.y48{bottom:840.750000px;}
.y12{bottom:860.730000px;}
.y47{bottom:862.710000px;}
.y11{bottom:882.510000px;}
.y46{bottom:884.490000px;}
.y10{bottom:904.290000px;}
.y45{bottom:906.270000px;}
.yf{bottom:926.070000px;}
.y43{bottom:928.050000px;}
.y44{bottom:933.990000px;}
.ye{bottom:947.850000px;}
.y42{bottom:949.830000px;}
.yd{bottom:968.010000px;}
.y41{bottom:971.790000px;}
.yc{bottom:986.910000px;}
.y40{bottom:993.570000px;}
.yb{bottom:1012.650000px;}
.y3e{bottom:1015.350000px;}
.y3f{bottom:1021.290000px;}
.y9{bottom:1034.430000px;}
.y1{bottom:1056.570000px;}
.h14{height:21.114844px;}
.h12{height:29.158594px;}
.h10{height:31.716000px;}
.h11{height:33.683203px;}
.h8{height:34.036523px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h6{height:39.147891px;}
.h15{height:39.760312px;}
.h2{height:42.164648px;}
.hf{height:44.507812px;}
.h5{height:46.251562px;}
.hb{height:46.736719px;}
.h13{height:48.224531px;}
.h4{height:49.255313px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h9{height:54.596250px;}
.h7{height:54.864844px;}
.h1{height:77.436000px;}
.hc{height:482.070000px;}
.h0{height:1188.000000px;}
.w1{width:72.000000px;}
.w7{width:140.070000px;}
.w6{width:201.990000px;}
.w3{width:255.090000px;}
.w2{width:374.655000px;}
.w5{width:459.795000px;}
.w8{width:917.999973px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x15{left:30.600000px;}
.x2{left:59.574000px;}
.x6{left:105.660000px;}
.x1{left:108.036000px;}
.x21{left:111.815986px;}
.x12{left:116.136000px;}
.x7{left:131.805000px;}
.xd{left:135.215986px;}
.xa{left:150.329986px;}
.x2a{left:161.129986px;}
.x1c{left:170.849973px;}
.x1d{left:176.069986px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x18{left:184.349973px;}
.x19{left:189.569986px;}
.x16{left:216.749973px;}
.x17{left:221.969986px;}
.x10{left:223.409986px;}
.xb{left:226.829986px;}
.x20{left:324.074986px;}
.xe{left:345.854986px;}
.x11{left:349.634986px;}
.x22{left:357.554973px;}
.x23{left:362.774986px;}
.x1a{left:370.694973px;}
.x1b{left:375.914986px;}
.xf{left:388.694986px;}
.x28{left:420.734973px;}
.x29{left:425.954986px;}
.xc{left:459.074986px;}
.x9{left:525.164986px;}
.x5{left:554.685000px;}
.x13{left:575.925000px;}
.x26{left:586.184973px;}
.x27{left:591.404986px;}
.x24{left:642.884973px;}
.x25{left:648.104986px;}
.x1e{left:685.049973px;}
.x1f{left:690.269986px;}
.x14{left:777.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.198933pt;}
.ls9{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:7.200000pt;}
.ls4{letter-spacing:177.258667pt;}
.ws7{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws4{word-spacing:-10.918933pt;}
.ws5{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-7.040000pt;}
._2a{margin-left:-4.979200pt;}
._15{margin-left:-4.062720pt;}
._14{margin-left:-2.616320pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._8{width:2.592000pt;}
._c{width:3.863467pt;}
._a{width:5.410347pt;}
._7{width:6.480000pt;}
._11{width:7.779840pt;}
._10{width:8.688000pt;}
._3{width:9.811840pt;}
._2{width:10.986667pt;}
._1a{width:12.013227pt;}
._5{width:13.104000pt;}
._6{width:14.064000pt;}
._f{width:15.024000pt;}
._21{width:15.956480pt;}
._1e{width:16.957440pt;}
._12{width:17.856000pt;}
._16{width:18.900480pt;}
._17{width:20.002560pt;}
._1b{width:21.053440pt;}
._e{width:22.371840pt;}
._d{width:23.376000pt;}
._b{width:24.864000pt;}
._4{width:25.872000pt;}
._23{width:26.908160pt;}
._9{width:28.368000pt;}
._28{width:29.335040pt;}
._27{width:30.453760pt;}
._29{width:31.429120pt;}
._22{width:33.620480pt;}
._24{width:47.275093pt;}
._1c{width:48.870400pt;}
._1d{width:49.792213pt;}
._25{width:56.701440pt;}
._26{width:57.641387pt;}
._13{width:61.824000pt;}
._2c{width:82.828800pt;}
._2d{width:83.815040pt;}
._1f{width:88.791040pt;}
._20{width:89.804800pt;}
._2b{width:136.189653pt;}
._19{width:177.258667pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{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;}
.y34{bottom:4.000000pt;}
.y30{bottom:4.640000pt;}
.y2{bottom:4.800000pt;}
.y32{bottom:8.000000pt;}
.y35{bottom:16.960000pt;}
.y33{bottom:18.120000pt;}
.y2f{bottom:20.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y2e{bottom:36.480000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.ya{bottom:50.080000pt;}
.y2d{bottom:52.320000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y2c{bottom:68.160000pt;}
.y2b{bottom:84.000000pt;}
.y75{bottom:98.112000pt;}
.y2a{bottom:99.840000pt;}
.y7e{bottom:102.112000pt;}
.y83{bottom:107.232000pt;}
.y74{bottom:110.432000pt;}
.y3d{bottom:114.272000pt;}
.y73{bottom:114.432000pt;}
.y29{bottom:115.680000pt;}
.y72{bottom:122.592000pt;}
.y81{bottom:123.552000pt;}
.y7d{bottom:126.592000pt;}
.y28{bottom:131.680000pt;}
.y3c{bottom:133.626667pt;}
.y71{bottom:134.906667pt;}
.y7c{bottom:135.706667pt;}
.y70{bottom:138.906667pt;}
.y80{bottom:146.106667pt;}
.y6f{bottom:147.226667pt;}
.y27{bottom:147.520000pt;}
.y3b{bottom:153.146667pt;}
.y6e{bottom:159.386667pt;}
.y26{bottom:163.360000pt;}
.y6d{bottom:163.386667pt;}
.y7a{bottom:165.466667pt;}
.y7b{bottom:170.746667pt;}
.y6c{bottom:171.706667pt;}
.y3a{bottom:172.506667pt;}
.y25{bottom:179.200000pt;}
.y6b{bottom:184.026667pt;}
.y79{bottom:184.826667pt;}
.y6a{bottom:188.026667pt;}
.y39{bottom:191.866667pt;}
.y24{bottom:195.040000pt;}
.y69{bottom:196.186667pt;}
.y78{bottom:204.186667pt;}
.y68{bottom:208.506667pt;}
.y23{bottom:211.040000pt;}
.y38{bottom:211.226667pt;}
.y67{bottom:212.506667pt;}
.y66{bottom:221.626667pt;}
.y77{bottom:223.546667pt;}
.y22{bottom:226.906667pt;}
.y37{bottom:230.586667pt;}
.y21{bottom:242.746667pt;}
.y65{bottom:243.066667pt;}
.y36{bottom:250.106667pt;}
.y20{bottom:258.586667pt;}
.y64{bottom:262.426667pt;}
.y31{bottom:263.866667pt;}
.y1f{bottom:274.426667pt;}
.y63{bottom:281.826667pt;}
.y1e{bottom:290.266667pt;}
.y15{bottom:292.066667pt;}
.y62{bottom:301.186667pt;}
.y1d{bottom:306.266667pt;}
.y60{bottom:320.546667pt;}
.y1c{bottom:322.106667pt;}
.y61{bottom:325.826667pt;}
.y1b{bottom:337.946667pt;}
.y5f{bottom:340.066667pt;}
.y1a{bottom:353.786667pt;}
.y5e{bottom:359.426667pt;}
.y76{bottom:364.706667pt;}
.y19{bottom:369.626667pt;}
.y5d{bottom:378.786667pt;}
.y18{bottom:385.626667pt;}
.y5b{bottom:398.146667pt;}
.y17{bottom:401.466667pt;}
.y5c{bottom:403.426667pt;}
.y16{bottom:417.306667pt;}
.y5a{bottom:417.666667pt;}
.y59{bottom:437.026667pt;}
.y58{bottom:456.386667pt;}
.y57{bottom:475.746667pt;}
.y56{bottom:495.106667pt;}
.y55{bottom:514.653333pt;}
.y54{bottom:534.013333pt;}
.y53{bottom:553.373333pt;}
.y52{bottom:572.733333pt;}
.y51{bottom:592.253333pt;}
.y82{bottom:597.533333pt;}
.y50{bottom:611.613333pt;}
.y4e{bottom:630.973333pt;}
.y4f{bottom:636.253333pt;}
.y4d{bottom:650.333333pt;}
.y4c{bottom:669.693333pt;}
.y4b{bottom:689.213333pt;}
.y7f{bottom:694.493333pt;}
.y4a{bottom:708.573333pt;}
.y14{bottom:726.173333pt;}
.y49{bottom:727.933333pt;}
.y13{bottom:745.573333pt;}
.y48{bottom:747.333333pt;}
.y12{bottom:765.093333pt;}
.y47{bottom:766.853333pt;}
.y11{bottom:784.453333pt;}
.y46{bottom:786.213333pt;}
.y10{bottom:803.813333pt;}
.y45{bottom:805.573333pt;}
.yf{bottom:823.173333pt;}
.y43{bottom:824.933333pt;}
.y44{bottom:830.213333pt;}
.ye{bottom:842.533333pt;}
.y42{bottom:844.293333pt;}
.yd{bottom:860.453333pt;}
.y41{bottom:863.813333pt;}
.yc{bottom:877.253333pt;}
.y40{bottom:883.173333pt;}
.yb{bottom:900.133333pt;}
.y3e{bottom:902.533333pt;}
.y3f{bottom:907.813333pt;}
.y9{bottom:919.493333pt;}
.y1{bottom:939.173333pt;}
.h14{height:18.768750pt;}
.h12{height:25.918750pt;}
.h10{height:28.192000pt;}
.h11{height:29.940625pt;}
.h8{height:30.254687pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h6{height:34.798125pt;}
.h15{height:35.342500pt;}
.h2{height:37.479688pt;}
.hf{height:39.562500pt;}
.h5{height:41.112500pt;}
.hb{height:41.543750pt;}
.h13{height:42.866250pt;}
.h4{height:43.782500pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h9{height:48.530000pt;}
.h7{height:48.768750pt;}
.h1{height:68.832000pt;}
.hc{height:428.506667pt;}
.h0{height:1056.000000pt;}
.w1{width:64.000000pt;}
.w7{width:124.506667pt;}
.w6{width:179.546667pt;}
.w3{width:226.746667pt;}
.w2{width:333.026667pt;}
.w5{width:408.706667pt;}
.w8{width:815.999976pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x15{left:27.200000pt;}
.x2{left:52.954667pt;}
.x6{left:93.920000pt;}
.x1{left:96.032000pt;}
.x21{left:99.391988pt;}
.x12{left:103.232000pt;}
.x7{left:117.160000pt;}
.xd{left:120.191988pt;}
.xa{left:133.626655pt;}
.x2a{left:143.226655pt;}
.x1c{left:151.866642pt;}
.x1d{left:156.506655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x18{left:163.866642pt;}
.x19{left:168.506655pt;}
.x16{left:192.666642pt;}
.x17{left:197.306655pt;}
.x10{left:198.586655pt;}
.xb{left:201.626655pt;}
.x20{left:288.066655pt;}
.xe{left:307.426655pt;}
.x11{left:310.786655pt;}
.x22{left:317.826642pt;}
.x23{left:322.466655pt;}
.x1a{left:329.506642pt;}
.x1b{left:334.146655pt;}
.xf{left:345.506655pt;}
.x28{left:373.986642pt;}
.x29{left:378.626655pt;}
.xc{left:408.066655pt;}
.x9{left:466.813321pt;}
.x5{left:493.053333pt;}
.x13{left:511.933333pt;}
.x26{left:521.053309pt;}
.x27{left:525.693321pt;}
.x24{left:571.453309pt;}
.x25{left:576.093321pt;}
.x1e{left:608.933309pt;}
.x1f{left:613.573321pt;}
.x14{left:691.493333pt;}
}




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