
    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_5611d83abb8a9b63736823c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_0c43b8c471bac4f0e21ecb1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e09193b7961a0c5a428ce6f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_ca4fbde842ab1738c4c48a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_c9ac931106c8c737152045bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_030337558f2ac22e9362377d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.696000px;}
.ls11{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.240600px;}
.ls3{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.069600px;}
.ls28{letter-spacing:-0.058320px;}
.ls27{letter-spacing:-0.041040px;}
.ls2a{letter-spacing:-0.032400px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.ls1{letter-spacing:0.022320px;}
.lsc{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.393600px;}
.ls26{letter-spacing:0.433440px;}
.ls19{letter-spacing:0.479400px;}
.ls1f{letter-spacing:0.936000px;}
.ls25{letter-spacing:1.728000px;}
.ls4{letter-spacing:2.057760px;}
.ls12{letter-spacing:2.304000px;}
.ls1b{letter-spacing:2.448000px;}
.ls21{letter-spacing:4.608000px;}
.lsa{letter-spacing:5.328000px;}
.ls1d{letter-spacing:6.768000px;}
.ls1e{letter-spacing:8.928000px;}
.ls16{letter-spacing:11.088000px;}
.ls20{letter-spacing:17.568000px;}
.ls22{letter-spacing:19.728000px;}
.lsb{letter-spacing:25.320000px;}
.ls23{letter-spacing:28.368000px;}
.ls24{letter-spacing:34.128000px;}
.ls8{letter-spacing:61.320000px;}
.ls13{letter-spacing:68.520000px;}
.ls1c{letter-spacing:84.672000px;}
.ls1a{letter-spacing:121.392000px;}
.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;}
}
.ws12{word-spacing:-17.208000px;}
.ws4{word-spacing:-16.632000px;}
.ws9{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.272003px;}
.ws1{word-spacing:-16.272000px;}
.wsd{word-spacing:-16.128000px;}
.ws3{word-spacing:-16.056000px;}
.wsf{word-spacing:-15.912000px;}
.wsa{word-spacing:-15.768000px;}
.wse{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.552000px;}
.ws16{word-spacing:-13.899360px;}
.ws15{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.473360px;}
.ws13{word-spacing:-13.464720px;}
.ws14{word-spacing:-13.447440px;}
.ws18{word-spacing:-13.436160px;}
.ws5{word-spacing:-10.924560px;}
.ws2{word-spacing:-10.902240px;}
.ws6{word-spacing:-10.206240px;}
.ws11{word-spacing:-8.539080px;}
.ws10{word-spacing:-7.819080px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-4.248000px;}
._b{margin-left:-3.216000px;}
._a{margin-left:-2.088000px;}
._0{margin-left:-1.032000px;}
._1{width:1.344000px;}
._e{width:3.192000px;}
._10{width:4.728000px;}
._c{width:5.904000px;}
._4{width:7.848000px;}
._5{width:8.890320px;}
._d{width:10.152000px;}
._7{width:11.592000px;}
._6{width:12.672000px;}
._9{width:13.680000px;}
._f{width:14.856000px;}
._8{width:17.640000px;}
._1b{width:18.936000px;}
._12{width:20.304000px;}
._13{width:21.708000px;}
._14{width:22.776000px;}
._1a{width:23.808000px;}
._17{width:25.992000px;}
._16{width:27.048000px;}
._1d{width:28.872000px;}
._1c{width:29.928000px;}
._1e{width:30.936000px;}
._15{width:32.016000px;}
._18{width:33.624000px;}
._19{width:34.776000px;}
._29{width:36.936000px;}
._2a{width:38.544000px;}
._27{width:56.160000px;}
._28{width:57.228000px;}
._24{width:71.136000px;}
._25{width:72.444000px;}
._23{width:84.312000px;}
._2d{width:87.600000px;}
._2c{width:88.752000px;}
._1f{width:121.032000px;}
._20{width:122.340000px;}
._26{width:129.312000px;}
._22{width:130.368000px;}
._21{width:131.400000px;}
._2b{width:139.032000px;}
._2{width:847.884000px;}
._3{width:1389.185760px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y66{bottom:3.960000px;}
.y71{bottom:5.580000px;}
.y78{bottom:6.660000px;}
.y6e{bottom:8.100000px;}
.y80{bottom:8.280000px;}
.y8a{bottom:8.325000px;}
.y6c{bottom:8.640000px;}
.y64{bottom:13.140000px;}
.y68{bottom:22.140000px;}
.y65{bottom:22.320000px;}
.y84{bottom:23.760000px;}
.y70{bottom:23.940000px;}
.y77{bottom:25.020000px;}
.y6b{bottom:27.000000px;}
.y36{bottom:117.396000px;}
.y31{bottom:117.756000px;}
.y2e{bottom:117.936000px;}
.y5f{bottom:128.916000px;}
.y62{bottom:133.056000px;}
.y35{bottom:139.356000px;}
.y30{bottom:139.716000px;}
.y2d{bottom:139.896000px;}
.y5e{bottom:150.870000px;}
.y61{bottom:155.010000px;}
.y2f{bottom:161.670000px;}
.y2c{bottom:161.850000px;}
.y34{bottom:167.250000px;}
.y60{bottom:172.110000px;}
.y5d{bottom:172.830000px;}
.y8e{bottom:176.790000px;}
.y33{bottom:183.450000px;}
.y2b{bottom:183.810000px;}
.y8d{bottom:194.610000px;}
.y5c{bottom:194.790000px;}
.y32{bottom:205.590000px;}
.y2a{bottom:205.770000px;}
.y5b{bottom:216.750000px;}
.y29{bottom:227.730000px;}
.y8c{bottom:234.750000px;}
.y5a{bottom:238.710000px;}
.y27{bottom:249.690000px;}
.y8b{bottom:257.970000px;}
.y59{bottom:260.670000px;}
.y26{bottom:271.650000px;}
.y89{bottom:281.190000px;}
.y58{bottom:282.810000px;}
.y25{bottom:293.835000px;}
.y88{bottom:304.455000px;}
.y57{bottom:304.815000px;}
.y24{bottom:315.795000px;}
.y56{bottom:326.775000px;}
.y87{bottom:327.855000px;}
.y23{bottom:337.755000px;}
.y55{bottom:348.735000px;}
.y86{bottom:351.075000px;}
.y22{bottom:359.715000px;}
.y54{bottom:370.695000px;}
.y21{bottom:381.675000px;}
.y85{bottom:389.955000px;}
.y53{bottom:392.655000px;}
.y20{bottom:403.635000px;}
.y83{bottom:413.355000px;}
.y52{bottom:414.615000px;}
.y1f{bottom:425.595000px;}
.y51{bottom:436.575000px;}
.y1e{bottom:447.555000px;}
.y82{bottom:452.235000px;}
.y50{bottom:458.535000px;}
.y1d{bottom:469.515000px;}
.y81{bottom:475.455000px;}
.y4f{bottom:480.495000px;}
.y1c{bottom:491.475000px;}
.y4e{bottom:502.455000px;}
.y1b{bottom:513.435000px;}
.y7f{bottom:515.595000px;}
.y4d{bottom:524.415000px;}
.y1a{bottom:535.395000px;}
.y7e{bottom:538.995000px;}
.y4c{bottom:546.375000px;}
.y19{bottom:557.385000px;}
.y7d{bottom:562.245000px;}
.y4b{bottom:568.365000px;}
.y18{bottom:579.345000px;}
.y7c{bottom:585.465000px;}
.y4a{bottom:590.325000px;}
.y17{bottom:601.485000px;}
.y7b{bottom:608.685000px;}
.y49{bottom:612.465000px;}
.y16{bottom:623.445000px;}
.y7a{bottom:631.905000px;}
.y48{bottom:634.425000px;}
.y15{bottom:645.405000px;}
.y79{bottom:655.125000px;}
.y47{bottom:656.385000px;}
.y14{bottom:667.365000px;}
.y46{bottom:678.345000px;}
.y13{bottom:689.325000px;}
.y76{bottom:692.565000px;}
.y45{bottom:700.305000px;}
.y12{bottom:711.285000px;}
.y44{bottom:722.265000px;}
.y75{bottom:732.705000px;}
.y11{bottom:733.245000px;}
.y43{bottom:744.225000px;}
.y10{bottom:755.205000px;}
.y42{bottom:766.185000px;}
.y74{bottom:771.765000px;}
.yf{bottom:777.165000px;}
.y41{bottom:788.145000px;}
.y73{bottom:794.985000px;}
.ye{bottom:799.125000px;}
.y40{bottom:810.150000px;}
.y72{bottom:818.250000px;}
.yd{bottom:821.130000px;}
.y3f{bottom:832.110000px;}
.y6f{bottom:841.470000px;}
.yc{bottom:843.090000px;}
.y3e{bottom:854.070000px;}
.yb{bottom:865.050000px;}
.y3d{bottom:876.030000px;}
.y6d{bottom:880.530000px;}
.ya{bottom:887.010000px;}
.y3c{bottom:897.990000px;}
.y6a{bottom:903.750000px;}
.y9{bottom:909.150000px;}
.y3b{bottom:920.130000px;}
.y8{bottom:931.110000px;}
.y3a{bottom:942.090000px;}
.y69{bottom:945.870000px;}
.y7{bottom:953.070000px;}
.y39{bottom:964.050000px;}
.y6{bottom:975.030000px;}
.y67{bottom:983.310000px;}
.y38{bottom:986.010000px;}
.y5{bottom:996.990000px;}
.y4{bottom:1018.950000px;}
.y63{bottom:1020.570000px;}
.y3{bottom:1040.910000px;}
.y2{bottom:1062.870000px;}
.y37{bottom:1068.840000px;}
.y1{bottom:1111.140000px;}
.y28{bottom:1114.020000px;}
.hd{height:22.500000px;}
.hf{height:22.536000px;}
.ha{height:36.540000px;}
.h8{height:36.720000px;}
.h10{height:38.160000px;}
.he{height:38.340000px;}
.h11{height:39.420000px;}
.hc{height:41.400000px;}
.h7{height:47.980898px;}
.hb{height:59.439023px;}
.h9{height:61.189805px;}
.h2{height:71.613281px;}
.h5{height:71.740898px;}
.h6{height:71.860898px;}
.h3{height:73.722656px;}
.h4{height:86.255508px;}
.h1{height:98.051133px;}
.h0{height:1188.000000px;}
.w4{width:113.220000px;}
.w3{width:122.976000px;}
.w5{width:221.790000px;}
.w2{width:300.270000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.xa{left:32.220000px;}
.xc{left:33.480000px;}
.xe{left:38.520000px;}
.x8{left:55.974000px;}
.x7{left:59.939986px;}
.x2{left:108.035986px;}
.x4{left:135.035986px;}
.x5{left:136.475986px;}
.x6{left:140.075986px;}
.x3{left:151.229986px;}
.x9{left:409.395000px;}
.xb{left:532.725000px;}
.xd{left:646.305000px;}
.x1{left:810.149986px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.618667pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.213867pt;}
.ls3{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.061867pt;}
.ls28{letter-spacing:-0.051840pt;}
.ls27{letter-spacing:-0.036480pt;}
.ls2a{letter-spacing:-0.028800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000003pt;}
.ls1{letter-spacing:0.019840pt;}
.lsc{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.349867pt;}
.ls26{letter-spacing:0.385280pt;}
.ls19{letter-spacing:0.426133pt;}
.ls1f{letter-spacing:0.832000pt;}
.ls25{letter-spacing:1.536000pt;}
.ls4{letter-spacing:1.829120pt;}
.ls12{letter-spacing:2.048000pt;}
.ls1b{letter-spacing:2.176000pt;}
.ls21{letter-spacing:4.096000pt;}
.lsa{letter-spacing:4.736000pt;}
.ls1d{letter-spacing:6.016000pt;}
.ls1e{letter-spacing:7.936000pt;}
.ls16{letter-spacing:9.856000pt;}
.ls20{letter-spacing:15.616000pt;}
.ls22{letter-spacing:17.536000pt;}
.lsb{letter-spacing:22.506667pt;}
.ls23{letter-spacing:25.216000pt;}
.ls24{letter-spacing:30.336000pt;}
.ls8{letter-spacing:54.506667pt;}
.ls13{letter-spacing:60.906667pt;}
.ls1c{letter-spacing:75.264000pt;}
.ls1a{letter-spacing:107.904000pt;}
.ws12{word-spacing:-15.296000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws9{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.464003pt;}
.ws1{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.336000pt;}
.ws3{word-spacing:-14.272000pt;}
.wsf{word-spacing:-14.144000pt;}
.wsa{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws16{word-spacing:-12.354987pt;}
.ws15{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.976320pt;}
.ws13{word-spacing:-11.968640pt;}
.ws14{word-spacing:-11.953280pt;}
.ws18{word-spacing:-11.943253pt;}
.ws5{word-spacing:-9.710720pt;}
.ws2{word-spacing:-9.690880pt;}
.ws6{word-spacing:-9.072213pt;}
.ws11{word-spacing:-7.590293pt;}
.ws10{word-spacing:-6.950293pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-3.776000pt;}
._b{margin-left:-2.858667pt;}
._a{margin-left:-1.856000pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.194667pt;}
._e{width:2.837333pt;}
._10{width:4.202667pt;}
._c{width:5.248000pt;}
._4{width:6.976000pt;}
._5{width:7.902507pt;}
._d{width:9.024000pt;}
._7{width:10.304000pt;}
._6{width:11.264000pt;}
._9{width:12.160000pt;}
._f{width:13.205333pt;}
._8{width:15.680000pt;}
._1b{width:16.832000pt;}
._12{width:18.048000pt;}
._13{width:19.296000pt;}
._14{width:20.245333pt;}
._1a{width:21.162667pt;}
._17{width:23.104000pt;}
._16{width:24.042667pt;}
._1d{width:25.664000pt;}
._1c{width:26.602667pt;}
._1e{width:27.498667pt;}
._15{width:28.458667pt;}
._18{width:29.888000pt;}
._19{width:30.912000pt;}
._29{width:32.832000pt;}
._2a{width:34.261333pt;}
._27{width:49.920000pt;}
._28{width:50.869333pt;}
._24{width:63.232000pt;}
._25{width:64.394667pt;}
._23{width:74.944000pt;}
._2d{width:77.866667pt;}
._2c{width:78.890667pt;}
._1f{width:107.584000pt;}
._20{width:108.746667pt;}
._26{width:114.944000pt;}
._22{width:115.882667pt;}
._21{width:116.800000pt;}
._2b{width:123.584000pt;}
._2{width:753.674667pt;}
._3{width:1234.831787pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:3.520000pt;}
.y71{bottom:4.960000pt;}
.y78{bottom:5.920000pt;}
.y6e{bottom:7.200000pt;}
.y80{bottom:7.360000pt;}
.y8a{bottom:7.400000pt;}
.y6c{bottom:7.680000pt;}
.y64{bottom:11.680000pt;}
.y68{bottom:19.680000pt;}
.y65{bottom:19.840000pt;}
.y84{bottom:21.120000pt;}
.y70{bottom:21.280000pt;}
.y77{bottom:22.240000pt;}
.y6b{bottom:24.000000pt;}
.y36{bottom:104.352000pt;}
.y31{bottom:104.672000pt;}
.y2e{bottom:104.832000pt;}
.y5f{bottom:114.592000pt;}
.y62{bottom:118.272000pt;}
.y35{bottom:123.872000pt;}
.y30{bottom:124.192000pt;}
.y2d{bottom:124.352000pt;}
.y5e{bottom:134.106667pt;}
.y61{bottom:137.786667pt;}
.y2f{bottom:143.706667pt;}
.y2c{bottom:143.866667pt;}
.y34{bottom:148.666667pt;}
.y60{bottom:152.986667pt;}
.y5d{bottom:153.626667pt;}
.y8e{bottom:157.146667pt;}
.y33{bottom:163.066667pt;}
.y2b{bottom:163.386667pt;}
.y8d{bottom:172.986667pt;}
.y5c{bottom:173.146667pt;}
.y32{bottom:182.746667pt;}
.y2a{bottom:182.906667pt;}
.y5b{bottom:192.666667pt;}
.y29{bottom:202.426667pt;}
.y8c{bottom:208.666667pt;}
.y5a{bottom:212.186667pt;}
.y27{bottom:221.946667pt;}
.y8b{bottom:229.306667pt;}
.y59{bottom:231.706667pt;}
.y26{bottom:241.466667pt;}
.y89{bottom:249.946667pt;}
.y58{bottom:251.386667pt;}
.y25{bottom:261.186667pt;}
.y88{bottom:270.626667pt;}
.y57{bottom:270.946667pt;}
.y24{bottom:280.706667pt;}
.y56{bottom:290.466667pt;}
.y87{bottom:291.426667pt;}
.y23{bottom:300.226667pt;}
.y55{bottom:309.986667pt;}
.y86{bottom:312.066667pt;}
.y22{bottom:319.746667pt;}
.y54{bottom:329.506667pt;}
.y21{bottom:339.266667pt;}
.y85{bottom:346.626667pt;}
.y53{bottom:349.026667pt;}
.y20{bottom:358.786667pt;}
.y83{bottom:367.426667pt;}
.y52{bottom:368.546667pt;}
.y1f{bottom:378.306667pt;}
.y51{bottom:388.066667pt;}
.y1e{bottom:397.826667pt;}
.y82{bottom:401.986667pt;}
.y50{bottom:407.586667pt;}
.y1d{bottom:417.346667pt;}
.y81{bottom:422.626667pt;}
.y4f{bottom:427.106667pt;}
.y1c{bottom:436.866667pt;}
.y4e{bottom:446.626667pt;}
.y1b{bottom:456.386667pt;}
.y7f{bottom:458.306667pt;}
.y4d{bottom:466.146667pt;}
.y1a{bottom:475.906667pt;}
.y7e{bottom:479.106667pt;}
.y4c{bottom:485.666667pt;}
.y19{bottom:495.453333pt;}
.y7d{bottom:499.773333pt;}
.y4b{bottom:505.213333pt;}
.y18{bottom:514.973333pt;}
.y7c{bottom:520.413333pt;}
.y4a{bottom:524.733333pt;}
.y17{bottom:534.653333pt;}
.y7b{bottom:541.053333pt;}
.y49{bottom:544.413333pt;}
.y16{bottom:554.173333pt;}
.y7a{bottom:561.693333pt;}
.y48{bottom:563.933333pt;}
.y15{bottom:573.693333pt;}
.y79{bottom:582.333333pt;}
.y47{bottom:583.453333pt;}
.y14{bottom:593.213333pt;}
.y46{bottom:602.973333pt;}
.y13{bottom:612.733333pt;}
.y76{bottom:615.613333pt;}
.y45{bottom:622.493333pt;}
.y12{bottom:632.253333pt;}
.y44{bottom:642.013333pt;}
.y75{bottom:651.293333pt;}
.y11{bottom:651.773333pt;}
.y43{bottom:661.533333pt;}
.y10{bottom:671.293333pt;}
.y42{bottom:681.053333pt;}
.y74{bottom:686.013333pt;}
.yf{bottom:690.813333pt;}
.y41{bottom:700.573333pt;}
.y73{bottom:706.653333pt;}
.ye{bottom:710.333333pt;}
.y40{bottom:720.133333pt;}
.y72{bottom:727.333333pt;}
.yd{bottom:729.893333pt;}
.y3f{bottom:739.653333pt;}
.y6f{bottom:747.973333pt;}
.yc{bottom:749.413333pt;}
.y3e{bottom:759.173333pt;}
.yb{bottom:768.933333pt;}
.y3d{bottom:778.693333pt;}
.y6d{bottom:782.693333pt;}
.ya{bottom:788.453333pt;}
.y3c{bottom:798.213333pt;}
.y6a{bottom:803.333333pt;}
.y9{bottom:808.133333pt;}
.y3b{bottom:817.893333pt;}
.y8{bottom:827.653333pt;}
.y3a{bottom:837.413333pt;}
.y69{bottom:840.773333pt;}
.y7{bottom:847.173333pt;}
.y39{bottom:856.933333pt;}
.y6{bottom:866.693333pt;}
.y67{bottom:874.053333pt;}
.y38{bottom:876.453333pt;}
.y5{bottom:886.213333pt;}
.y4{bottom:905.733333pt;}
.y63{bottom:907.173333pt;}
.y3{bottom:925.253333pt;}
.y2{bottom:944.773333pt;}
.y37{bottom:950.080000pt;}
.y1{bottom:987.680000pt;}
.y28{bottom:990.240000pt;}
.hd{height:20.000000pt;}
.hf{height:20.032000pt;}
.ha{height:32.480000pt;}
.h8{height:32.640000pt;}
.h10{height:33.920000pt;}
.he{height:34.080000pt;}
.h11{height:35.040000pt;}
.hc{height:36.800000pt;}
.h7{height:42.649687pt;}
.hb{height:52.834688pt;}
.h9{height:54.390938pt;}
.h2{height:63.656250pt;}
.h5{height:63.769688pt;}
.h6{height:63.876354pt;}
.h3{height:65.531250pt;}
.h4{height:76.671562pt;}
.h1{height:87.156562pt;}
.h0{height:1056.000000pt;}
.w4{width:100.640000pt;}
.w3{width:109.312000pt;}
.w5{width:197.146667pt;}
.w2{width:266.906667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.xa{left:28.640000pt;}
.xc{left:29.760000pt;}
.xe{left:34.240000pt;}
.x8{left:49.754667pt;}
.x7{left:53.279988pt;}
.x2{left:96.031988pt;}
.x4{left:120.031988pt;}
.x5{left:121.311988pt;}
.x6{left:124.511988pt;}
.x3{left:134.426655pt;}
.x9{left:363.906667pt;}
.xb{left:473.533333pt;}
.xd{left:574.493333pt;}
.x1{left:720.133321pt;}
}




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