
    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_21361165b6263761e7cfd95e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_3f96fcaa728740235a4bf3a3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da9d5764b58d7fed7ff34f73.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_03ac21e5fc184e193f0b74ba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bc52980df5af19779ec2553e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1f2ff6c6eebdd6c9612493bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_08d51705d584f055f08bc5e2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fd28794ccec9002425380c3f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fd464ea8925059cc4ab135d8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d5f785bad9308b6bd4c0a7aa.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-2.160000px;}
.ls4{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.156000px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.298800px;}
.lse{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls1a{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.880000px;}
.ls1f{letter-spacing:4.320000px;}
.ls1b{letter-spacing:6.480000px;}
.ls10{letter-spacing:6.660000px;}
.ls22{letter-spacing:7.920000px;}
.ls1e{letter-spacing:9.360000px;}
.ls1{letter-spacing:10.080000px;}
.ls6{letter-spacing:10.224000px;}
.ls19{letter-spacing:10.800000px;}
.ls20{letter-spacing:11.520000px;}
.lsd{letter-spacing:13.680000px;}
.lsf{letter-spacing:16.020000px;}
.lsc{letter-spacing:17.280000px;}
.ls7{letter-spacing:24.480000px;}
.ls9{letter-spacing:25.200000px;}
.ls5{letter-spacing:25.920000px;}
.ls21{letter-spacing:27.360000px;}
.ls1c{letter-spacing:29.520000px;}
.ls18{letter-spacing:35.280000px;}
.ls17{letter-spacing:78.480000px;}
.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:-59.760000px;}
.ws1{word-spacing:-23.940000px;}
.wsa{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.488000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-2.499840px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._17{width:2.364480px;}
._5{width:3.384000px;}
._4{width:4.392000px;}
._b{width:5.400000px;}
._a{width:6.707520px;}
._9{width:8.136000px;}
._20{width:9.155520px;}
._13{width:10.224000px;}
._14{width:11.352000px;}
._f{width:13.320000px;}
._10{width:14.400000px;}
._12{width:15.480000px;}
._c{width:16.596000px;}
._6{width:19.728000px;}
._28{width:21.024000px;}
._29{width:22.032000px;}
._7{width:23.112000px;}
._1c{width:24.840000px;}
._18{width:26.424000px;}
._1d{width:28.164000px;}
._21{width:29.304000px;}
._11{width:30.384000px;}
._23{width:31.443840px;}
._3{width:32.976000px;}
._2{width:34.308000px;}
._24{width:35.333280px;}
._1b{width:36.581280px;}
._e{width:37.615680px;}
._d{width:38.664000px;}
._2b{width:39.960000px;}
._8{width:41.112000px;}
._1e{width:42.732000px;}
._1f{width:44.372160px;}
._22{width:45.504000px;}
._2a{width:46.768320px;}
._2c{width:48.127680px;}
._2e{width:51.768000px;}
._2d{width:52.992000px;}
._19{width:59.976000px;}
._2f{width:61.128000px;}
._30{width:62.208000px;}
._31{width:74.520000px;}
._32{width:75.528000px;}
._25{width:78.552000px;}
._16{width:79.611840px;}
._15{width:80.856000px;}
._26{width:81.936000px;}
._27{width:84.152160px;}
._35{width:117.144000px;}
._36{width:118.159680px;}
._33{width:287.460000px;}
._34{width:323.079840px;}
.fc7{color:rgb(107,159,37);}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y4{bottom:27.900000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y45{bottom:128.736000px;}
.y44{bottom:133.956000px;}
.y38{bottom:139.896000px;}
.y43{bottom:145.836000px;}
.y42{bottom:151.050000px;}
.y52{bottom:163.110000px;}
.y37{bottom:163.650000px;}
.y41{bottom:163.830000px;}
.y59{bottom:168.330000px;}
.y51{bottom:180.390000px;}
.y50{bottom:185.610000px;}
.y36{bottom:187.050000px;}
.y65{bottom:187.410000px;}
.y4f{bottom:197.670000px;}
.y63{bottom:202.890000px;}
.y35{bottom:210.990000px;}
.y64{bottom:211.350000px;}
.y4e{bottom:214.950000px;}
.y62{bottom:215.670000px;}
.y4d{bottom:220.170000px;}
.y4c{bottom:232.230000px;}
.y5e{bottom:232.950000px;}
.y34{bottom:235.110000px;}
.y58{bottom:237.450000px;}
.y4b{bottom:249.330000px;}
.y57{bottom:250.230000px;}
.y4a{bottom:254.550000px;}
.y33{bottom:258.870000px;}
.y49{bottom:267.330000px;}
.y32{bottom:282.675000px;}
.y61{bottom:289.515000px;}
.y69{bottom:306.075000px;}
.y31{bottom:306.435000px;}
.y30{bottom:330.375000px;}
.y40{bottom:337.215000px;}
.y2f{bottom:354.135000px;}
.y56{bottom:360.975000px;}
.y2e{bottom:377.895000px;}
.y5d{bottom:384.735000px;}
.y2d{bottom:401.655000px;}
.y3f{bottom:408.495000px;}
.y2c{bottom:425.595000px;}
.y2b{bottom:449.355000px;}
.y55{bottom:456.195000px;}
.y2a{bottom:473.115000px;}
.y29{bottom:496.875000px;}
.y3e{bottom:520.455000px;}
.y28{bottom:520.815000px;}
.y27{bottom:544.575000px;}
.y60{bottom:551.415000px;}
.y26{bottom:568.365000px;}
.y68{bottom:591.765000px;}
.y25{bottom:592.125000px;}
.y54{bottom:598.965000px;}
.y24{bottom:616.065000px;}
.y23{bottom:639.825000px;}
.y22{bottom:663.585000px;}
.y21{bottom:687.345000px;}
.y20{bottom:711.285000px;}
.y6a{bottom:711.465000px;}
.y1f{bottom:735.045000px;}
.y1e{bottom:758.805000px;}
.y5f{bottom:765.645000px;}
.y1d{bottom:782.565000px;}
.y5c{bottom:789.405000px;}
.y1c{bottom:806.325000px;}
.y48{bottom:813.165000px;}
.y1b{bottom:830.265000px;}
.y1a{bottom:854.070000px;}
.y53{bottom:860.910000px;}
.y19{bottom:877.830000px;}
.y18{bottom:901.590000px;}
.y5b{bottom:908.430000px;}
.y67{bottom:925.170000px;}
.y17{bottom:925.530000px;}
.y66{bottom:948.930000px;}
.y16{bottom:949.290000px;}
.y15{bottom:972.690000px;}
.y3d{bottom:973.050000px;}
.y47{bottom:979.890000px;}
.y14{bottom:996.450000px;}
.y3c{bottom:996.810000px;}
.y13{bottom:1020.750000px;}
.y5a{bottom:1027.590000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3b{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y3a{bottom:1092.030000px;}
.y46{bottom:1098.870000px;}
.yf{bottom:1115.610000px;}
.y39{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h8{height:33.120000px;}
.hf{height:38.158594px;}
.he{height:47.344922px;}
.hc{height:50.273438px;}
.h12{height:58.651172px;}
.hb{height:59.343750px;}
.h10{height:60.226875px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.hd{height:74.004654px;}
.h11{height:74.704922px;}
.h4{height:82.635820px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:16.920000px;}
.w8{width:17.100000px;}
.w7{width:17.136000px;}
.w6{width:49.680000px;}
.w4{width:63.570000px;}
.wa{width:90.900000px;}
.w2{width:134.136000px;}
.w3{width:695.265000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x9{left:8.100000px;}
.x7{left:9.360000px;}
.x6{left:16.914000px;}
.x2{left:18.719973px;}
.x1{left:34.559970px;}
.x3{left:39.599973px;}
.x5{left:61.554000px;}
.xd{left:71.685000px;}
.x4{left:134.136000px;}
.xa{left:138.275987px;}
.x20{left:143.135987px;}
.x29{left:144.935987px;}
.x2f{left:147.995987px;}
.x1b{left:170.309987px;}
.x3c{left:180.749987px;}
.x13{left:182.369987px;}
.x1a{left:191.369987px;}
.x17{left:194.069987px;}
.x2c{left:217.829973px;}
.x25{left:220.709973px;}
.x2d{left:223.949987px;}
.x3d{left:225.749973px;}
.x26{left:226.829987px;}
.x3e{left:237.989987px;}
.x32{left:246.989973px;}
.x33{left:259.949987px;}
.x1e{left:271.649973px;}
.x1c{left:277.049973px;}
.x36{left:279.569973px;}
.x1d{left:284.429987px;}
.x37{left:291.809987px;}
.x18{left:317.414987px;}
.x14{left:327.314987px;}
.x19{left:338.294987px;}
.x30{left:352.694973px;}
.x1f{left:354.314987px;}
.x16{left:356.294987px;}
.x31{left:364.934987px;}
.x15{left:383.114987px;}
.x2a{left:393.734973px;}
.x2b{left:399.854987px;}
.x3a{left:525.704973px;}
.x3b{left:537.944987px;}
.x34{left:550.184973px;}
.x35{left:562.604987px;}
.xb{left:629.925000px;}
.xc{left:679.605000px;}
.x23{left:680.684973px;}
.x24{left:686.804987px;}
.xe{left:696.750000px;}
.xf{left:713.850000px;}
.x10{left:730.770000px;}
.x38{left:743.729973px;}
.x11{left:747.870000px;}
.x39{left:755.969987px;}
.x2e{left:802.589973px;}
.x27{left:805.649973px;}
.x21{left:809.429973px;}
.x28{left:811.769987px;}
.x22{left:815.549987px;}
.x8{left:829.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.138667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls10{letter-spacing:5.920000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls1{letter-spacing:8.960000pt;}
.ls6{letter-spacing:9.088000pt;}
.ls19{letter-spacing:9.600000pt;}
.ls20{letter-spacing:10.240000pt;}
.lsd{letter-spacing:12.160000pt;}
.lsf{letter-spacing:14.240000pt;}
.lsc{letter-spacing:15.360000pt;}
.ls7{letter-spacing:21.760000pt;}
.ls9{letter-spacing:22.400000pt;}
.ls5{letter-spacing:23.040000pt;}
.ls21{letter-spacing:24.320000pt;}
.ls1c{letter-spacing:26.240000pt;}
.ls18{letter-spacing:31.360000pt;}
.ls17{letter-spacing:69.760000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-21.280000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-2.222080pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._17{width:2.101760pt;}
._5{width:3.008000pt;}
._4{width:3.904000pt;}
._b{width:4.800000pt;}
._a{width:5.962240pt;}
._9{width:7.232000pt;}
._20{width:8.138240pt;}
._13{width:9.088000pt;}
._14{width:10.090667pt;}
._f{width:11.840000pt;}
._10{width:12.800000pt;}
._12{width:13.760000pt;}
._c{width:14.752000pt;}
._6{width:17.536000pt;}
._28{width:18.688000pt;}
._29{width:19.584000pt;}
._7{width:20.544000pt;}
._1c{width:22.080000pt;}
._18{width:23.488000pt;}
._1d{width:25.034667pt;}
._21{width:26.048000pt;}
._11{width:27.008000pt;}
._23{width:27.950080pt;}
._3{width:29.312000pt;}
._2{width:30.496000pt;}
._24{width:31.407360pt;}
._1b{width:32.516693pt;}
._e{width:33.436160pt;}
._d{width:34.368000pt;}
._2b{width:35.520000pt;}
._8{width:36.544000pt;}
._1e{width:37.984000pt;}
._1f{width:39.441920pt;}
._22{width:40.448000pt;}
._2a{width:41.571840pt;}
._2c{width:42.780160pt;}
._2e{width:46.016000pt;}
._2d{width:47.104000pt;}
._19{width:53.312000pt;}
._2f{width:54.336000pt;}
._30{width:55.296000pt;}
._31{width:66.240000pt;}
._32{width:67.136000pt;}
._25{width:69.824000pt;}
._16{width:70.766080pt;}
._15{width:71.872000pt;}
._26{width:72.832000pt;}
._27{width:74.801920pt;}
._35{width:104.128000pt;}
._36{width:105.030827pt;}
._33{width:255.520000pt;}
._34{width:287.182080pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y4{bottom:24.800000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y45{bottom:114.432000pt;}
.y44{bottom:119.072000pt;}
.y38{bottom:124.352000pt;}
.y43{bottom:129.632000pt;}
.y42{bottom:134.266667pt;}
.y52{bottom:144.986667pt;}
.y37{bottom:145.466667pt;}
.y41{bottom:145.626667pt;}
.y59{bottom:149.626667pt;}
.y51{bottom:160.346667pt;}
.y50{bottom:164.986667pt;}
.y36{bottom:166.266667pt;}
.y65{bottom:166.586667pt;}
.y4f{bottom:175.706667pt;}
.y63{bottom:180.346667pt;}
.y35{bottom:187.546667pt;}
.y64{bottom:187.866667pt;}
.y4e{bottom:191.066667pt;}
.y62{bottom:191.706667pt;}
.y4d{bottom:195.706667pt;}
.y4c{bottom:206.426667pt;}
.y5e{bottom:207.066667pt;}
.y34{bottom:208.986667pt;}
.y58{bottom:211.066667pt;}
.y4b{bottom:221.626667pt;}
.y57{bottom:222.426667pt;}
.y4a{bottom:226.266667pt;}
.y33{bottom:230.106667pt;}
.y49{bottom:237.626667pt;}
.y32{bottom:251.266667pt;}
.y61{bottom:257.346667pt;}
.y69{bottom:272.066667pt;}
.y31{bottom:272.386667pt;}
.y30{bottom:293.666667pt;}
.y40{bottom:299.746667pt;}
.y2f{bottom:314.786667pt;}
.y56{bottom:320.866667pt;}
.y2e{bottom:335.906667pt;}
.y5d{bottom:341.986667pt;}
.y2d{bottom:357.026667pt;}
.y3f{bottom:363.106667pt;}
.y2c{bottom:378.306667pt;}
.y2b{bottom:399.426667pt;}
.y55{bottom:405.506667pt;}
.y2a{bottom:420.546667pt;}
.y29{bottom:441.666667pt;}
.y3e{bottom:462.626667pt;}
.y28{bottom:462.946667pt;}
.y27{bottom:484.066667pt;}
.y60{bottom:490.146667pt;}
.y26{bottom:505.213333pt;}
.y68{bottom:526.013333pt;}
.y25{bottom:526.333333pt;}
.y54{bottom:532.413333pt;}
.y24{bottom:547.613333pt;}
.y23{bottom:568.733333pt;}
.y22{bottom:589.853333pt;}
.y21{bottom:610.973333pt;}
.y20{bottom:632.253333pt;}
.y6a{bottom:632.413333pt;}
.y1f{bottom:653.373333pt;}
.y1e{bottom:674.493333pt;}
.y5f{bottom:680.573333pt;}
.y1d{bottom:695.613333pt;}
.y5c{bottom:701.693333pt;}
.y1c{bottom:716.733333pt;}
.y48{bottom:722.813333pt;}
.y1b{bottom:738.013333pt;}
.y1a{bottom:759.173333pt;}
.y53{bottom:765.253333pt;}
.y19{bottom:780.293333pt;}
.y18{bottom:801.413333pt;}
.y5b{bottom:807.493333pt;}
.y67{bottom:822.373333pt;}
.y17{bottom:822.693333pt;}
.y66{bottom:843.493333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.613333pt;}
.y3d{bottom:864.933333pt;}
.y47{bottom:871.013333pt;}
.y14{bottom:885.733333pt;}
.y3c{bottom:886.053333pt;}
.y13{bottom:907.333333pt;}
.y5a{bottom:913.413333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3b{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y3a{bottom:970.693333pt;}
.y46{bottom:976.773333pt;}
.yf{bottom:991.653333pt;}
.y39{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h8{height:29.440000pt;}
.hf{height:33.918750pt;}
.he{height:42.084375pt;}
.hc{height:44.687500pt;}
.h12{height:52.134375pt;}
.hb{height:52.750000pt;}
.h10{height:53.535000pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.hd{height:65.781915pt;}
.h11{height:66.404375pt;}
.h4{height:73.454062pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:15.040000pt;}
.w8{width:15.200000pt;}
.w7{width:15.232000pt;}
.w6{width:44.160000pt;}
.w4{width:56.506667pt;}
.wa{width:80.800000pt;}
.w2{width:119.232000pt;}
.w3{width:618.013333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x9{left:7.200000pt;}
.x7{left:8.320000pt;}
.x6{left:15.034667pt;}
.x2{left:16.639976pt;}
.x1{left:30.719974pt;}
.x3{left:35.199976pt;}
.x5{left:54.714667pt;}
.xd{left:63.720000pt;}
.x4{left:119.232000pt;}
.xa{left:122.911988pt;}
.x20{left:127.231988pt;}
.x29{left:128.831988pt;}
.x2f{left:131.551988pt;}
.x1b{left:151.386655pt;}
.x3c{left:160.666655pt;}
.x13{left:162.106655pt;}
.x1a{left:170.106655pt;}
.x17{left:172.506655pt;}
.x2c{left:193.626643pt;}
.x25{left:196.186643pt;}
.x2d{left:199.066655pt;}
.x3d{left:200.666643pt;}
.x26{left:201.626655pt;}
.x3e{left:211.546655pt;}
.x32{left:219.546643pt;}
.x33{left:231.066655pt;}
.x1e{left:241.466643pt;}
.x1c{left:246.266643pt;}
.x36{left:248.506643pt;}
.x1d{left:252.826655pt;}
.x37{left:259.386655pt;}
.x18{left:282.146655pt;}
.x14{left:290.946655pt;}
.x19{left:300.706655pt;}
.x30{left:313.506643pt;}
.x1f{left:314.946655pt;}
.x16{left:316.706655pt;}
.x31{left:324.386655pt;}
.x15{left:340.546655pt;}
.x2a{left:349.986643pt;}
.x2b{left:355.426655pt;}
.x3a{left:467.293310pt;}
.x3b{left:478.173322pt;}
.x34{left:489.053310pt;}
.x35{left:500.093322pt;}
.xb{left:559.933333pt;}
.xc{left:604.093333pt;}
.x23{left:605.053310pt;}
.x24{left:610.493322pt;}
.xe{left:619.333333pt;}
.xf{left:634.533333pt;}
.x10{left:649.573333pt;}
.x38{left:661.093310pt;}
.x11{left:664.773333pt;}
.x39{left:671.973322pt;}
.x2e{left:713.413310pt;}
.x27{left:716.133310pt;}
.x21{left:719.493310pt;}
.x28{left:721.573322pt;}
.x22{left:724.933322pt;}
.x8{left:737.253333pt;}
}




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