
    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_c7a45e6baf4d2d397ca5b959.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cc20d83b6c45d08ba1c0714f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e45c22d46e124d180dc13b81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8bda98dbca264b6173f3c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.884277;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_6cf2e49fd6807313d19c9acc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_da731c30060f52ed611ce3bc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ce913dc8066432bc16a186a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.496200px;}
.lsb{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022320px;}
.lsd{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:39.881280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-77.760000px;}
.ws6{word-spacing:-19.440000px;}
.ws11{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.283800px;}
.wsb{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.wsc{word-spacing:-11.563800px;}
.ws4{word-spacing:-10.924560px;}
.ws3{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.440000px;}
.ws1{word-spacing:-0.059760px;}
.ws2{word-spacing:-0.001440px;}
.wse{word-spacing:0.000000px;}
._18{margin-left:-4.636800px;}
._11{margin-left:-2.819520px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._5{width:2.430000px;}
._c{width:3.573120px;}
._b{width:4.793040px;}
._10{width:6.226560px;}
._4{width:7.452000px;}
._3{width:8.910000px;}
._2{width:10.200000px;}
._19{width:11.224080px;}
._6{width:12.312000px;}
._14{width:13.314240px;}
._7{width:14.958000px;}
._9{width:16.470000px;}
._f{width:17.818560px;}
._15{width:19.342080px;}
._16{width:20.401920px;}
._e{width:22.090320px;}
._d{width:23.220000px;}
._8{width:24.408000px;}
._12{width:25.966080px;}
._13{width:27.319680px;}
._22{width:28.762560px;}
._23{width:30.395520px;}
._17{width:31.397760px;}
._1a{width:34.908480px;}
._a{width:37.476000px;}
._1b{width:40.340160px;}
._1c{width:41.432400px;}
._24{width:43.056000px;}
._2d{width:45.771840px;}
._27{width:51.615360px;}
._28{width:53.441280px;}
._29{width:76.521600px;}
._2a{width:77.726160px;}
._2b{width:101.082240px;}
._2c{width:102.104640px;}
._1d{width:108.103680px;}
._1e{width:109.177920px;}
._20{width:118.702080px;}
._25{width:122.808960px;}
._26{width:123.949440px;}
._21{width:136.255680px;}
._1f{width:172.687680px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{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;}
.y32{bottom:2.880000px;}
.y2{bottom:6.510000px;}
.y34{bottom:9.900000px;}
.y35{bottom:11.340000px;}
.y31{bottom:18.360000px;}
.y5{bottom:25.410000px;}
.y8{bottom:28.650000px;}
.y30{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y2f{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y2e{bottom:64.980000px;}
.y2d{bottom:80.460000px;}
.y2c{bottom:96.120000px;}
.y92{bottom:110.376000px;}
.y7c{bottom:111.456000px;}
.y2b{bottom:111.600000px;}
.y43{bottom:114.156000px;}
.y91{bottom:124.236000px;}
.y7b{bottom:126.396000px;}
.y2a{bottom:127.080000px;}
.y9b{bottom:128.736000px;}
.y7a{bottom:130.896000px;}
.y6f{bottom:131.976000px;}
.y42{bottom:136.116000px;}
.y90{bottom:137.916000px;}
.y79{bottom:141.156000px;}
.y8f{bottom:142.416000px;}
.y29{bottom:142.560000px;}
.y8e{bottom:151.770000px;}
.y6e{bottom:153.930000px;}
.y78{bottom:156.090000px;}
.y9f{bottom:156.270000px;}
.y41{bottom:157.890000px;}
.y28{bottom:158.220000px;}
.y77{bottom:160.590000px;}
.y8d{bottom:165.630000px;}
.ya1{bottom:167.610000px;}
.y76{bottom:169.950000px;}
.y8c{bottom:170.130000px;}
.y27{bottom:173.730000px;}
.y6d{bottom:175.710000px;}
.y8b{bottom:179.310000px;}
.y40{bottom:179.670000px;}
.y75{bottom:183.810000px;}
.y74{bottom:188.310000px;}
.y26{bottom:189.210000px;}
.y8a{bottom:193.170000px;}
.y9e{bottom:195.150000px;}
.y6c{bottom:197.490000px;}
.y89{bottom:197.670000px;}
.y73{bottom:199.470000px;}
.y3f{bottom:201.450000px;}
.y25{bottom:204.690000px;}
.y9a{bottom:207.030000px;}
.y88{bottom:208.110000px;}
.y6b{bottom:219.270000px;}
.y24{bottom:220.350000px;}
.y99{bottom:220.710000px;}
.y87{bottom:222.870000px;}
.y3e{bottom:223.230000px;}
.y98{bottom:225.210000px;}
.y86{bottom:227.370000px;}
.y23{bottom:235.830000px;}
.y97{bottom:236.550000px;}
.y85{bottom:237.810000px;}
.y6a{bottom:241.230000px;}
.y3d{bottom:245.190000px;}
.y72{bottom:247.170000px;}
.y22{bottom:251.310000px;}
.y84{bottom:252.750000px;}
.y83{bottom:257.250000px;}
.y69{bottom:263.010000px;}
.y21{bottom:266.790000px;}
.y3c{bottom:266.970000px;}
.y82{bottom:268.590000px;}
.y20{bottom:282.450000px;}
.y68{bottom:284.790000px;}
.y3b{bottom:288.750000px;}
.y1f{bottom:297.930000px;}
.y67{bottom:306.570000px;}
.y3a{bottom:310.530000px;}
.y96{bottom:312.510000px;}
.y1e{bottom:313.410000px;}
.y66{bottom:328.350000px;}
.y1d{bottom:328.890000px;}
.y39{bottom:332.490000px;}
.y1c{bottom:344.550000px;}
.y65{bottom:350.355000px;}
.y38{bottom:354.315000px;}
.y1b{bottom:360.030000px;}
.y64{bottom:372.135000px;}
.y1a{bottom:375.510000px;}
.y37{bottom:376.095000px;}
.y19{bottom:390.990000px;}
.y36{bottom:391.575000px;}
.y63{bottom:393.915000px;}
.y9d{bottom:399.855000px;}
.y18{bottom:406.470000px;}
.y33{bottom:413.715000px;}
.y62{bottom:415.695000px;}
.y17{bottom:422.130000px;}
.y16{bottom:437.655000px;}
.y81{bottom:443.595000px;}
.y15{bottom:445.215000px;}
.y61{bottom:459.435000px;}
.y71{bottom:465.375000px;}
.y60{bottom:481.215000px;}
.y5f{bottom:502.995000px;}
.y5e{bottom:524.775000px;}
.y5d{bottom:546.735000px;}
.y80{bottom:552.675000px;}
.y5c{bottom:568.515000px;}
.y5b{bottom:590.295000px;}
.y95{bottom:596.235000px;}
.y5a{bottom:612.105000px;}
.y59{bottom:633.885000px;}
.y58{bottom:655.845000px;}
.y57{bottom:677.625000px;}
.y56{bottom:699.405000px;}
.y55{bottom:721.185000px;}
.y7f{bottom:727.125000px;}
.y54{bottom:743.145000px;}
.y53{bottom:764.925000px;}
.y52{bottom:786.705000px;}
.y51{bottom:808.485000px;}
.y50{bottom:830.265000px;}
.y4f{bottom:852.225000px;}
.ya0{bottom:858.165000px;}
.y4e{bottom:874.050000px;}
.y94{bottom:879.990000px;}
.y4d{bottom:895.830000px;}
.y14{bottom:901.230000px;}
.y7e{bottom:901.770000px;}
.y4c{bottom:917.610000px;}
.y13{bottom:921.030000px;}
.y4b{bottom:939.570000px;}
.y12{bottom:941.010000px;}
.y4a{bottom:961.350000px;}
.y11{bottom:966.030000px;}
.y10{bottom:981.150000px;}
.y49{bottom:983.130000px;}
.y70{bottom:989.070000px;}
.yf{bottom:1001.130000px;}
.y48{bottom:1004.910000px;}
.y7d{bottom:1010.850000px;}
.ye{bottom:1018.770000px;}
.y47{bottom:1026.690000px;}
.y93{bottom:1032.630000px;}
.yd{bottom:1040.730000px;}
.y46{bottom:1048.650000px;}
.yc{bottom:1063.770000px;}
.y45{bottom:1070.430000px;}
.y9c{bottom:1076.370000px;}
.yb{bottom:1089.510000px;}
.y44{bottom:1092.210000px;}
.y9{bottom:1112.190000px;}
.y1{bottom:1132.350000px;}
.h18{height:21.114844px;}
.hd{height:27.147656px;}
.h17{height:29.158594px;}
.h12{height:31.500000px;}
.h13{height:33.683203px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.hb{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h11{height:44.507812px;}
.h14{height:46.251562px;}
.h15{height:46.736719px;}
.h8{height:47.980898px;}
.h16{height:48.224531px;}
.h6{height:49.255313px;}
.h4{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:65.884219px;}
.h2{height:77.436000px;}
.he{height:450.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x16{left:29.700000px;}
.x6{left:44.640000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.xb{left:109.655987px;}
.x22{left:111.815987px;}
.x15{left:116.136000px;}
.xd{left:117.395987px;}
.x8{left:132.165000px;}
.x1a{left:135.035987px;}
.x19{left:161.129987px;}
.x3{left:171.930000px;}
.x2e{left:174.989973px;}
.x34{left:180.389973px;}
.x2f{left:185.429987px;}
.x35{left:190.829987px;}
.x36{left:201.989973px;}
.x37{left:212.429987px;}
.x25{left:256.529973px;}
.x26{left:261.749987px;}
.x12{left:274.709987px;}
.x11{left:280.514987px;}
.xc{left:286.634987px;}
.x10{left:287.714987px;}
.x1d{left:292.214973px;}
.x23{left:294.734973px;}
.x1e{left:297.434987px;}
.x24{left:299.954987px;}
.x21{left:324.074987px;}
.x27{left:326.594973px;}
.x28{left:331.814987px;}
.x13{left:343.514987px;}
.x29{left:355.394973px;}
.x2a{left:360.614987px;}
.x1b{left:381.134973px;}
.x1c{left:386.354987px;}
.x17{left:413.895000px;}
.xe{left:420.914987px;}
.xf{left:446.474987px;}
.xa{left:499.964987px;}
.x38{left:505.724973px;}
.x39{left:516.164987px;}
.x3a{left:553.424973px;}
.x3b{left:563.864987px;}
.x14{left:567.105000px;}
.x2b{left:571.424987px;}
.x5{left:599.865000px;}
.x2c{left:683.609973px;}
.x2d{left:688.829987px;}
.x1f{left:693.149973px;}
.x20{left:698.369987px;}
.x32{left:716.909973px;}
.x33{left:727.349987px;}
.x30{left:744.809973px;}
.x3c{left:750.209973px;}
.x31{left:755.249987px;}
.x3d{left:760.649987px;}
.x18{left:777.929987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.441067pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.019840pt;}
.lsd{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:35.450027pt;}
.ws5{word-spacing:-69.120000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws11{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsd{word-spacing:-10.918933pt;}
.wsb{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.wsc{word-spacing:-10.278933pt;}
.ws4{word-spacing:-9.710720pt;}
.ws3{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.280000pt;}
.ws1{word-spacing:-0.053120pt;}
.ws2{word-spacing:-0.001280pt;}
.wse{word-spacing:0.000000pt;}
._18{margin-left:-4.121600pt;}
._11{margin-left:-2.506240pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._5{width:2.160000pt;}
._c{width:3.176107pt;}
._b{width:4.260480pt;}
._10{width:5.534720pt;}
._4{width:6.624000pt;}
._3{width:7.920000pt;}
._2{width:9.066667pt;}
._19{width:9.976960pt;}
._6{width:10.944000pt;}
._14{width:11.834880pt;}
._7{width:13.296000pt;}
._9{width:14.640000pt;}
._f{width:15.838720pt;}
._15{width:17.192960pt;}
._16{width:18.135040pt;}
._e{width:19.635840pt;}
._d{width:20.640000pt;}
._8{width:21.696000pt;}
._12{width:23.080960pt;}
._13{width:24.284160pt;}
._22{width:25.566720pt;}
._23{width:27.018240pt;}
._17{width:27.909120pt;}
._1a{width:31.029760pt;}
._a{width:33.312000pt;}
._1b{width:35.857920pt;}
._1c{width:36.828800pt;}
._24{width:38.272000pt;}
._2d{width:40.686080pt;}
._27{width:45.880320pt;}
._28{width:47.503360pt;}
._29{width:68.019200pt;}
._2a{width:69.089920pt;}
._2b{width:89.850880pt;}
._2c{width:90.759680pt;}
._1d{width:96.092160pt;}
._1e{width:97.047040pt;}
._20{width:105.512960pt;}
._25{width:109.163520pt;}
._26{width:110.177280pt;}
._21{width:121.116160pt;}
._1f{width:153.500160pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{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;}
.y32{bottom:2.560000pt;}
.y2{bottom:5.786667pt;}
.y34{bottom:8.800000pt;}
.y35{bottom:10.080000pt;}
.y31{bottom:16.320000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.466667pt;}
.y30{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y2f{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y2e{bottom:57.760000pt;}
.y2d{bottom:71.520000pt;}
.y2c{bottom:85.440000pt;}
.y92{bottom:98.112000pt;}
.y7c{bottom:99.072000pt;}
.y2b{bottom:99.200000pt;}
.y43{bottom:101.472000pt;}
.y91{bottom:110.432000pt;}
.y7b{bottom:112.352000pt;}
.y2a{bottom:112.960000pt;}
.y9b{bottom:114.432000pt;}
.y7a{bottom:116.352000pt;}
.y6f{bottom:117.312000pt;}
.y42{bottom:120.992000pt;}
.y90{bottom:122.592000pt;}
.y79{bottom:125.472000pt;}
.y8f{bottom:126.592000pt;}
.y29{bottom:126.720000pt;}
.y8e{bottom:134.906667pt;}
.y6e{bottom:136.826667pt;}
.y78{bottom:138.746667pt;}
.y9f{bottom:138.906667pt;}
.y41{bottom:140.346667pt;}
.y28{bottom:140.640000pt;}
.y77{bottom:142.746667pt;}
.y8d{bottom:147.226667pt;}
.ya1{bottom:148.986667pt;}
.y76{bottom:151.066667pt;}
.y8c{bottom:151.226667pt;}
.y27{bottom:154.426667pt;}
.y6d{bottom:156.186667pt;}
.y8b{bottom:159.386667pt;}
.y40{bottom:159.706667pt;}
.y75{bottom:163.386667pt;}
.y74{bottom:167.386667pt;}
.y26{bottom:168.186667pt;}
.y8a{bottom:171.706667pt;}
.y9e{bottom:173.466667pt;}
.y6c{bottom:175.546667pt;}
.y89{bottom:175.706667pt;}
.y73{bottom:177.306667pt;}
.y3f{bottom:179.066667pt;}
.y25{bottom:181.946667pt;}
.y9a{bottom:184.026667pt;}
.y88{bottom:184.986667pt;}
.y6b{bottom:194.906667pt;}
.y24{bottom:195.866667pt;}
.y99{bottom:196.186667pt;}
.y87{bottom:198.106667pt;}
.y3e{bottom:198.426667pt;}
.y98{bottom:200.186667pt;}
.y86{bottom:202.106667pt;}
.y23{bottom:209.626667pt;}
.y97{bottom:210.266667pt;}
.y85{bottom:211.386667pt;}
.y6a{bottom:214.426667pt;}
.y3d{bottom:217.946667pt;}
.y72{bottom:219.706667pt;}
.y22{bottom:223.386667pt;}
.y84{bottom:224.666667pt;}
.y83{bottom:228.666667pt;}
.y69{bottom:233.786667pt;}
.y21{bottom:237.146667pt;}
.y3c{bottom:237.306667pt;}
.y82{bottom:238.746667pt;}
.y20{bottom:251.066667pt;}
.y68{bottom:253.146667pt;}
.y3b{bottom:256.666667pt;}
.y1f{bottom:264.826667pt;}
.y67{bottom:272.506667pt;}
.y3a{bottom:276.026667pt;}
.y96{bottom:277.786667pt;}
.y1e{bottom:278.586667pt;}
.y66{bottom:291.866667pt;}
.y1d{bottom:292.346667pt;}
.y39{bottom:295.546667pt;}
.y1c{bottom:306.266667pt;}
.y65{bottom:311.426667pt;}
.y38{bottom:314.946667pt;}
.y1b{bottom:320.026667pt;}
.y64{bottom:330.786667pt;}
.y1a{bottom:333.786667pt;}
.y37{bottom:334.306667pt;}
.y19{bottom:347.546667pt;}
.y36{bottom:348.066667pt;}
.y63{bottom:350.146667pt;}
.y9d{bottom:355.426667pt;}
.y18{bottom:361.306667pt;}
.y33{bottom:367.746667pt;}
.y62{bottom:369.506667pt;}
.y17{bottom:375.226667pt;}
.y16{bottom:389.026667pt;}
.y81{bottom:394.306667pt;}
.y15{bottom:395.746667pt;}
.y61{bottom:408.386667pt;}
.y71{bottom:413.666667pt;}
.y60{bottom:427.746667pt;}
.y5f{bottom:447.106667pt;}
.y5e{bottom:466.466667pt;}
.y5d{bottom:485.986667pt;}
.y80{bottom:491.266667pt;}
.y5c{bottom:505.346667pt;}
.y5b{bottom:524.706667pt;}
.y95{bottom:529.986667pt;}
.y5a{bottom:544.093333pt;}
.y59{bottom:563.453333pt;}
.y58{bottom:582.973333pt;}
.y57{bottom:602.333333pt;}
.y56{bottom:621.693333pt;}
.y55{bottom:641.053333pt;}
.y7f{bottom:646.333333pt;}
.y54{bottom:660.573333pt;}
.y53{bottom:679.933333pt;}
.y52{bottom:699.293333pt;}
.y51{bottom:718.653333pt;}
.y50{bottom:738.013333pt;}
.y4f{bottom:757.533333pt;}
.ya0{bottom:762.813333pt;}
.y4e{bottom:776.933333pt;}
.y94{bottom:782.213333pt;}
.y4d{bottom:796.293333pt;}
.y14{bottom:801.093333pt;}
.y7e{bottom:801.573333pt;}
.y4c{bottom:815.653333pt;}
.y13{bottom:818.693333pt;}
.y4b{bottom:835.173333pt;}
.y12{bottom:836.453333pt;}
.y4a{bottom:854.533333pt;}
.y11{bottom:858.693333pt;}
.y10{bottom:872.133333pt;}
.y49{bottom:873.893333pt;}
.y70{bottom:879.173333pt;}
.yf{bottom:889.893333pt;}
.y48{bottom:893.253333pt;}
.y7d{bottom:898.533333pt;}
.ye{bottom:905.573333pt;}
.y47{bottom:912.613333pt;}
.y93{bottom:917.893333pt;}
.yd{bottom:925.093333pt;}
.y46{bottom:932.133333pt;}
.yc{bottom:945.573333pt;}
.y45{bottom:951.493333pt;}
.y9c{bottom:956.773333pt;}
.yb{bottom:968.453333pt;}
.y44{bottom:970.853333pt;}
.y9{bottom:988.613333pt;}
.y1{bottom:1006.533333pt;}
.h18{height:18.768750pt;}
.hd{height:24.131250pt;}
.h17{height:25.918750pt;}
.h12{height:28.000000pt;}
.h13{height:29.940625pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.hb{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h11{height:39.562500pt;}
.h14{height:41.112500pt;}
.h15{height:41.543750pt;}
.h8{height:42.649687pt;}
.h16{height:42.866250pt;}
.h6{height:43.782500pt;}
.h4{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:58.563750pt;}
.h2{height:68.832000pt;}
.he{height:400.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x16{left:26.400000pt;}
.x6{left:39.680000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xb{left:97.471988pt;}
.x22{left:99.391988pt;}
.x15{left:103.232000pt;}
.xd{left:104.351988pt;}
.x8{left:117.480000pt;}
.x1a{left:120.031988pt;}
.x19{left:143.226655pt;}
.x3{left:152.826667pt;}
.x2e{left:155.546643pt;}
.x34{left:160.346643pt;}
.x2f{left:164.826655pt;}
.x35{left:169.626655pt;}
.x36{left:179.546643pt;}
.x37{left:188.826655pt;}
.x25{left:228.026643pt;}
.x26{left:232.666655pt;}
.x12{left:244.186655pt;}
.x11{left:249.346655pt;}
.xc{left:254.786655pt;}
.x10{left:255.746655pt;}
.x1d{left:259.746643pt;}
.x23{left:261.986643pt;}
.x1e{left:264.386655pt;}
.x24{left:266.626655pt;}
.x21{left:288.066655pt;}
.x27{left:290.306643pt;}
.x28{left:294.946655pt;}
.x13{left:305.346655pt;}
.x29{left:315.906643pt;}
.x2a{left:320.546655pt;}
.x1b{left:338.786643pt;}
.x1c{left:343.426655pt;}
.x17{left:367.906667pt;}
.xe{left:374.146655pt;}
.xf{left:396.866655pt;}
.xa{left:444.413322pt;}
.x38{left:449.533310pt;}
.x39{left:458.813322pt;}
.x3a{left:491.933310pt;}
.x3b{left:501.213322pt;}
.x14{left:504.093333pt;}
.x2b{left:507.933322pt;}
.x5{left:533.213333pt;}
.x2c{left:607.653310pt;}
.x2d{left:612.293322pt;}
.x1f{left:616.133310pt;}
.x20{left:620.773322pt;}
.x32{left:637.253310pt;}
.x33{left:646.533322pt;}
.x30{left:662.053310pt;}
.x3c{left:666.853310pt;}
.x31{left:671.333322pt;}
.x3d{left:676.133322pt;}
.x18{left:691.493322pt;}
}




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