
    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_b9f44c8eb42abd8206e94ecf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a3d8d40a5f1713781a7c3282.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2207263098668262de7017b7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ee208234d94da55567083248.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_9c924638c5d0901e5e2d9632.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.687500;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_a8b0895c8a8c0a8646b1de87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;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_384630ba89f35293cca36e0e.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_f61115b5889dc293672b6bbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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);}
.v3{vertical-align:-24.120000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:24.120000px;}
.v2{vertical-align:29.880000px;}
.v1{vertical-align:85.680000px;}
.lsc{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.090600px;}
.ls5{letter-spacing:-0.027600px;}
.lsf{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.022200px;}
.ls10{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.090000px;}
.lse{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.139200px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.540000px;}
.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;}
}
.wsd{word-spacing:-37.336320px;}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.wsb{word-spacing:-16.492200px;}
.wsc{word-spacing:-16.470000px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.ws10{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.ws8{word-spacing:-13.392000px;}
.ws12{word-spacing:-9.072000px;}
.ws6{word-spacing:-9.000000px;}
.wsf{word-spacing:-8.856000px;}
.wse{word-spacing:-0.360000px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:58.446000px;}
.ws13{word-spacing:85.464000px;}
._1{margin-left:-3.141018px;}
._0{margin-left:-1.031976px;}
._3{width:1.080606px;}
._4{width:2.269832px;}
._6{width:3.398335px;}
._7{width:5.068174px;}
._9{width:6.805460px;}
._c{width:8.046000px;}
._10{width:9.612000px;}
._e{width:10.692000px;}
._d{width:11.934000px;}
._a{width:15.228000px;}
._b{width:16.378770px;}
._8{width:21.150000px;}
._5{width:71.658000px;}
._2{width:165.909036px;}
._f{width:1271.195640px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.060000px;}
.y5e{bottom:3.240000px;}
.y61{bottom:3.330000px;}
.y6d{bottom:18.720000px;}
.y5d{bottom:18.810000px;}
.y5c{bottom:34.290000px;}
.y63{bottom:34.380000px;}
.y69{bottom:49.860000px;}
.y68{bottom:65.340000px;}
.y74{bottom:65.430000px;}
.y1{bottom:76.620000px;}
.y67{bottom:80.910000px;}
.y50{bottom:108.660000px;}
.y7b{bottom:115.140000px;}
.y4f{bottom:124.140000px;}
.y7a{bottom:130.620000px;}
.y4e{bottom:139.710000px;}
.y79{bottom:146.190000px;}
.y4d{bottom:155.190000px;}
.y78{bottom:161.670000px;}
.y4c{bottom:170.760000px;}
.y77{bottom:177.240000px;}
.y4b{bottom:186.240000px;}
.y76{bottom:192.720000px;}
.y4a{bottom:201.810000px;}
.y49{bottom:217.290000px;}
.y75{bottom:223.680000px;}
.y27{bottom:232.230000px;}
.y48{bottom:232.860000px;}
.y26{bottom:247.710000px;}
.y47{bottom:248.340000px;}
.y73{bottom:252.570000px;}
.y25{bottom:263.280000px;}
.y46{bottom:263.910000px;}
.y24{bottom:278.760000px;}
.y45{bottom:279.390000px;}
.y23{bottom:294.330000px;}
.y22{bottom:309.810000px;}
.y44{bottom:310.350000px;}
.y21{bottom:325.380000px;}
.y20{bottom:340.860000px;}
.y43{bottom:341.490000px;}
.y72{bottom:349.230000px;}
.y1f{bottom:356.340000px;}
.y1e{bottom:371.910000px;}
.y42{bottom:372.990000px;}
.y41{bottom:388.470000px;}
.y1d{bottom:403.140000px;}
.y40{bottom:404.040000px;}
.y1c{bottom:418.620000px;}
.y3f{bottom:419.520000px;}
.y71{bottom:424.470000px;}
.y1b{bottom:434.190000px;}
.y3e{bottom:435.090000px;}
.y1a{bottom:449.670000px;}
.y3d{bottom:450.570000px;}
.y19{bottom:465.150000px;}
.y3c{bottom:466.140000px;}
.y3b{bottom:481.650000px;}
.y70{bottom:484.260000px;}
.y18{bottom:496.140000px;}
.y3a{bottom:497.220000px;}
.y39{bottom:512.700000px;}
.y17{bottom:542.400000px;}
.y38{bottom:543.660000px;}
.y6f{bottom:563.010000px;}
.y37{bottom:575.160000px;}
.y16{bottom:576.960000px;}
.y36{bottom:590.640000px;}
.y15{bottom:592.530000px;}
.y35{bottom:606.210000px;}
.y14{bottom:608.010000px;}
.y34{bottom:621.690000px;}
.y13{bottom:623.580000px;}
.y33{bottom:637.260000px;}
.y6e{bottom:637.980000px;}
.y12{bottom:639.060000px;}
.y32{bottom:652.740000px;}
.y11{bottom:654.630000px;}
.y31{bottom:668.310000px;}
.y10{bottom:670.110000px;}
.y6c{bottom:680.550000px;}
.y30{bottom:683.790000px;}
.yf{bottom:685.680000px;}
.ye{bottom:707.910000px;}
.y2f{bottom:714.750000px;}
.y66{bottom:723.480000px;}
.yd{bottom:734.640000px;}
.y2e{bottom:746.160000px;}
.yc{bottom:750.210000px;}
.yb{bottom:765.780000px;}
.y6b{bottom:765.870000px;}
.y2d{bottom:777.120000px;}
.y6a{bottom:798.270000px;}
.ya{bottom:800.340000px;}
.y2c{bottom:808.620000px;}
.y9{bottom:821.940000px;}
.y2b{bottom:824.100000px;}
.y62{bottom:829.140000px;}
.y2a{bottom:839.580000px;}
.y8{bottom:852.810000px;}
.y65{bottom:862.080000px;}
.y29{bottom:870.810000px;}
.y7{bottom:891.330000px;}
.y64{bottom:893.040000px;}
.y5b{bottom:915.270000px;}
.y8a{bottom:924.720000px;}
.y6{bottom:930.300000px;}
.y89{bottom:940.380000px;}
.y60{bottom:946.500000px;}
.y88{bottom:955.950000px;}
.y87{bottom:971.520000px;}
.y5f{bottom:978.450000px;}
.y86{bottom:987.180000px;}
.y85{bottom:1002.750000px;}
.y59{bottom:1006.710000px;}
.y84{bottom:1018.350000px;}
.y83{bottom:1034.010000px;}
.y4{bottom:1034.100000px;}
.y58{bottom:1034.460000px;}
.y5{bottom:1039.140000px;}
.y82{bottom:1049.580000px;}
.y3{bottom:1057.320000px;}
.y81{bottom:1065.150000px;}
.y57{bottom:1065.600000px;}
.y80{bottom:1080.810000px;}
.y56{bottom:1081.170000px;}
.y7f{bottom:1096.380000px;}
.y55{bottom:1096.650000px;}
.y7e{bottom:1111.950000px;}
.y54{bottom:1112.220000px;}
.y7d{bottom:1127.610000px;}
.y53{bottom:1127.700000px;}
.y52{bottom:1143.270000px;}
.y2{bottom:1157.940000px;}
.y7c{bottom:1158.480000px;}
.y51{bottom:1158.750000px;}
.y28{bottom:1193.670000px;}
.h16{height:21.060000px;}
.hf{height:22.522500px;}
.h11{height:27.180000px;}
.h17{height:29.070000px;}
.h14{height:29.430000px;}
.h1a{height:29.790000px;}
.h13{height:30.060000px;}
.h1b{height:30.510000px;}
.h18{height:31.050000px;}
.ha{height:35.314453px;}
.h1c{height:40.500000px;}
.h1e{height:41.400000px;}
.h1d{height:41.850000px;}
.he{height:44.520469px;}
.h9{height:52.971680px;}
.hd{height:52.998047px;}
.hb{height:54.421875px;}
.h6{height:55.796836px;}
.h21{height:58.620000px;}
.h12{height:59.452031px;}
.hc{height:61.800293px;}
.h2{height:64.657617px;}
.h8{height:72.329063px;}
.h3{height:72.562500px;}
.h1f{height:73.890000px;}
.h22{height:74.160000px;}
.h20{height:77.580000px;}
.h4{height:81.632812px;}
.h7{height:84.535312px;}
.h15{height:84.960000px;}
.h10{height:90.360000px;}
.h23{height:95.490000px;}
.h19{height:104.580000px;}
.h5{height:143.004375px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:142.410000px;}
.w4{width:153.900000px;}
.w2{width:154.074000px;}
.w5{width:202.170000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x12{left:1.170000px;}
.xc{left:29.970000px;}
.x9{left:46.620000px;}
.x16{left:50.220000px;}
.x8{left:54.720000px;}
.x6{left:87.570000px;}
.x10{left:126.210000px;}
.x4{left:244.020000px;}
.x7{left:267.780000px;}
.x2{left:270.210000px;}
.x11{left:280.650000px;}
.x3{left:290.460000px;}
.xd{left:299.550000px;}
.xe{left:374.550000px;}
.xb{left:394.980000px;}
.x15{left:403.260000px;}
.xf{left:407.760000px;}
.xa{left:412.170000px;}
.x13{left:423.420000px;}
.x1{left:440.610000px;}
.x5{left:506.490000px;}
.x14{left:577.680000px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.440000pt;}
.v2{vertical-align:26.560000pt;}
.v1{vertical-align:76.160000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.080533pt;}
.ls5{letter-spacing:-0.024533pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.019733pt;}
.ls10{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.123733pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.480000pt;}
.wsd{word-spacing:-33.187840pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.wsb{word-spacing:-14.659733pt;}
.wsc{word-spacing:-14.640000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.ws10{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws12{word-spacing:-8.064000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsf{word-spacing:-7.872000pt;}
.wse{word-spacing:-0.320000pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:51.952000pt;}
.ws13{word-spacing:75.968000pt;}
._1{margin-left:-2.792016pt;}
._0{margin-left:-0.917312pt;}
._3{width:0.960539pt;}
._4{width:2.017629pt;}
._6{width:3.020742pt;}
._7{width:4.505043pt;}
._9{width:6.049298pt;}
._c{width:7.152000pt;}
._10{width:8.544000pt;}
._e{width:9.504000pt;}
._d{width:10.608000pt;}
._a{width:13.536000pt;}
._b{width:14.558906pt;}
._8{width:18.800000pt;}
._5{width:63.696000pt;}
._2{width:147.474699pt;}
._f{width:1129.951680pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.720000pt;}
.y5e{bottom:2.880000pt;}
.y61{bottom:2.960000pt;}
.y6d{bottom:16.640000pt;}
.y5d{bottom:16.720000pt;}
.y5c{bottom:30.480000pt;}
.y63{bottom:30.560000pt;}
.y69{bottom:44.320000pt;}
.y68{bottom:58.080000pt;}
.y74{bottom:58.160000pt;}
.y1{bottom:68.106667pt;}
.y67{bottom:71.920000pt;}
.y50{bottom:96.586667pt;}
.y7b{bottom:102.346667pt;}
.y4f{bottom:110.346667pt;}
.y7a{bottom:116.106667pt;}
.y4e{bottom:124.186667pt;}
.y79{bottom:129.946667pt;}
.y4d{bottom:137.946667pt;}
.y78{bottom:143.706667pt;}
.y4c{bottom:151.786667pt;}
.y77{bottom:157.546667pt;}
.y4b{bottom:165.546667pt;}
.y76{bottom:171.306667pt;}
.y4a{bottom:179.386667pt;}
.y49{bottom:193.146667pt;}
.y75{bottom:198.826667pt;}
.y27{bottom:206.426667pt;}
.y48{bottom:206.986667pt;}
.y26{bottom:220.186667pt;}
.y47{bottom:220.746667pt;}
.y73{bottom:224.506667pt;}
.y25{bottom:234.026667pt;}
.y46{bottom:234.586667pt;}
.y24{bottom:247.786667pt;}
.y45{bottom:248.346667pt;}
.y23{bottom:261.626667pt;}
.y22{bottom:275.386667pt;}
.y44{bottom:275.866667pt;}
.y21{bottom:289.226667pt;}
.y20{bottom:302.986667pt;}
.y43{bottom:303.546667pt;}
.y72{bottom:310.426667pt;}
.y1f{bottom:316.746667pt;}
.y1e{bottom:330.586667pt;}
.y42{bottom:331.546667pt;}
.y41{bottom:345.306667pt;}
.y1d{bottom:358.346667pt;}
.y40{bottom:359.146667pt;}
.y1c{bottom:372.106667pt;}
.y3f{bottom:372.906667pt;}
.y71{bottom:377.306667pt;}
.y1b{bottom:385.946667pt;}
.y3e{bottom:386.746667pt;}
.y1a{bottom:399.706667pt;}
.y3d{bottom:400.506667pt;}
.y19{bottom:413.466667pt;}
.y3c{bottom:414.346667pt;}
.y3b{bottom:428.133333pt;}
.y70{bottom:430.453333pt;}
.y18{bottom:441.013333pt;}
.y3a{bottom:441.973333pt;}
.y39{bottom:455.733333pt;}
.y17{bottom:482.133333pt;}
.y38{bottom:483.253333pt;}
.y6f{bottom:500.453333pt;}
.y37{bottom:511.253333pt;}
.y16{bottom:512.853333pt;}
.y36{bottom:525.013333pt;}
.y15{bottom:526.693333pt;}
.y35{bottom:538.853333pt;}
.y14{bottom:540.453333pt;}
.y34{bottom:552.613333pt;}
.y13{bottom:554.293333pt;}
.y33{bottom:566.453333pt;}
.y6e{bottom:567.093333pt;}
.y12{bottom:568.053333pt;}
.y32{bottom:580.213333pt;}
.y11{bottom:581.893333pt;}
.y31{bottom:594.053333pt;}
.y10{bottom:595.653333pt;}
.y6c{bottom:604.933333pt;}
.y30{bottom:607.813333pt;}
.yf{bottom:609.493333pt;}
.ye{bottom:629.253333pt;}
.y2f{bottom:635.333333pt;}
.y66{bottom:643.093333pt;}
.yd{bottom:653.013333pt;}
.y2e{bottom:663.253333pt;}
.yc{bottom:666.853333pt;}
.yb{bottom:680.693333pt;}
.y6b{bottom:680.773333pt;}
.y2d{bottom:690.773333pt;}
.y6a{bottom:709.573333pt;}
.ya{bottom:711.413333pt;}
.y2c{bottom:718.773333pt;}
.y9{bottom:730.613333pt;}
.y2b{bottom:732.533333pt;}
.y62{bottom:737.013333pt;}
.y2a{bottom:746.293333pt;}
.y8{bottom:758.053333pt;}
.y65{bottom:766.293333pt;}
.y29{bottom:774.053333pt;}
.y7{bottom:792.293333pt;}
.y64{bottom:793.813333pt;}
.y5b{bottom:813.573333pt;}
.y8a{bottom:821.973333pt;}
.y6{bottom:826.933333pt;}
.y89{bottom:835.893333pt;}
.y60{bottom:841.333333pt;}
.y88{bottom:849.733333pt;}
.y87{bottom:863.573333pt;}
.y5f{bottom:869.733333pt;}
.y86{bottom:877.493333pt;}
.y85{bottom:891.333333pt;}
.y59{bottom:894.853333pt;}
.y84{bottom:905.200000pt;}
.y83{bottom:919.120000pt;}
.y4{bottom:919.200000pt;}
.y58{bottom:919.520000pt;}
.y5{bottom:923.680000pt;}
.y82{bottom:932.960000pt;}
.y3{bottom:939.840000pt;}
.y81{bottom:946.800000pt;}
.y57{bottom:947.200000pt;}
.y80{bottom:960.720000pt;}
.y56{bottom:961.040000pt;}
.y7f{bottom:974.560000pt;}
.y55{bottom:974.800000pt;}
.y7e{bottom:988.400000pt;}
.y54{bottom:988.640000pt;}
.y7d{bottom:1002.320000pt;}
.y53{bottom:1002.400000pt;}
.y52{bottom:1016.240000pt;}
.y2{bottom:1029.280000pt;}
.y7c{bottom:1029.760000pt;}
.y51{bottom:1030.000000pt;}
.y28{bottom:1061.040000pt;}
.h16{height:18.720000pt;}
.hf{height:20.020000pt;}
.h11{height:24.160000pt;}
.h17{height:25.840000pt;}
.h14{height:26.160000pt;}
.h1a{height:26.480000pt;}
.h13{height:26.720000pt;}
.h1b{height:27.120000pt;}
.h18{height:27.600000pt;}
.ha{height:31.390625pt;}
.h1c{height:36.000000pt;}
.h1e{height:36.800000pt;}
.h1d{height:37.200000pt;}
.he{height:39.573750pt;}
.h9{height:47.085938pt;}
.hd{height:47.109375pt;}
.hb{height:48.375000pt;}
.h6{height:49.597187pt;}
.h21{height:52.106667pt;}
.h12{height:52.846250pt;}
.hc{height:54.933594pt;}
.h2{height:57.473437pt;}
.h8{height:64.292500pt;}
.h3{height:64.500000pt;}
.h1f{height:65.680000pt;}
.h22{height:65.920000pt;}
.h20{height:68.960000pt;}
.h4{height:72.562500pt;}
.h7{height:75.142500pt;}
.h15{height:75.520000pt;}
.h10{height:80.320000pt;}
.h23{height:84.880000pt;}
.h19{height:92.960000pt;}
.h5{height:127.115000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:126.586667pt;}
.w4{width:136.800000pt;}
.w2{width:136.954667pt;}
.w5{width:179.706667pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x12{left:1.040000pt;}
.xc{left:26.640000pt;}
.x9{left:41.440000pt;}
.x16{left:44.640000pt;}
.x8{left:48.640000pt;}
.x6{left:77.840000pt;}
.x10{left:112.186667pt;}
.x4{left:216.906667pt;}
.x7{left:238.026667pt;}
.x2{left:240.186667pt;}
.x11{left:249.466667pt;}
.x3{left:258.186667pt;}
.xd{left:266.266667pt;}
.xe{left:332.933333pt;}
.xb{left:351.093333pt;}
.x15{left:358.453333pt;}
.xf{left:362.453333pt;}
.xa{left:366.373333pt;}
.x13{left:376.373333pt;}
.x1{left:391.653333pt;}
.x5{left:450.213333pt;}
.x14{left:513.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; }
  