
    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_38e045e49866a12ea067da61.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b2ecc3ee10a453eb512513a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_efd0d3bd69a2c0ceefd5cd05.woff')format("woff");}.ff4{font-family:ff4;line-height:0.915527;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_82c7c6f2ceb38e946d6c5b93.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_105f51d6491315212a9f434b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.915527;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_104ee143042c26277521eb41.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_15af3aa170d8826d48d75b1d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6bef1ad2bd301ef405bbe20d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:-46.380000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.460000px;}
.ls4{letter-spacing:-0.393000px;}
.ls8{letter-spacing:-0.310200px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.069000px;}
.lsd{letter-spacing:0.217800px;}
.lsc{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.295200px;}
.ls9{letter-spacing:21.856320px;}
.lse{letter-spacing:77.184000px;}
.ls5{letter-spacing:101.073600px;}
.ls1{letter-spacing:101.124000px;}
.lsb{letter-spacing:101.253600px;}
.lsa{letter-spacing:101.304000px;}
.ls3{letter-spacing:101.793600px;}
.ls2{letter-spacing:101.844000px;}
.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:-35.342784px;}
.ws1{word-spacing:-35.310240px;}
.ws7{word-spacing:-27.000000px;}
.ws9{word-spacing:-24.408000px;}
.ws8{word-spacing:-23.976000px;}
.wsa{word-spacing:-23.940000px;}
.wsd{word-spacing:-21.936960px;}
.wsf{word-spacing:-21.710760px;}
.ws3{word-spacing:-21.674304px;}
.ws2{word-spacing:-21.641760px;}
.ws5{word-spacing:-21.096000px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.036000px;}
.ws13{word-spacing:-16.272000px;}
.ws10{word-spacing:-14.976000px;}
.ws11{word-spacing:-14.940000px;}
.wse{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.500000px;}
.wsc{word-spacing:-2.208000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-9.828000px;}
._9{margin-left:-7.480512px;}
._4{margin-left:-5.616000px;}
._c{margin-left:-4.117680px;}
._3{margin-left:-2.700000px;}
._0{margin-left:-1.656000px;}
._1{width:1.080000px;}
._6{width:2.342016px;}
._d{width:3.736512px;}
._b{width:4.752000px;}
._2{width:15.012000px;}
._7{width:49.872000px;}
._8{width:984.352560px;}
._a{width:1014.668592px;}
.fc4{color:rgb(15,122,190);}
.fc3{color:rgb(20,33,76);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,142,202);}
.fs1{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs9{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:156.240000px;}
.fse{font-size:156.384000px;}
.fsf{font-size:180.000000px;}
.fs10{font-size:180.144000px;}
.y0{bottom:0.000000px;}
.y2{bottom:19.296000px;}
.y1{bottom:46.116000px;}
.y3{bottom:50.364000px;}
.y16{bottom:99.072000px;}
.y15{bottom:117.072000px;}
.y67{bottom:123.552000px;}
.y4f{bottom:140.760000px;}
.y90{bottom:158.760000px;}
.y1e{bottom:166.035000px;}
.y4e{bottom:169.560000px;}
.y31{bottom:172.950000px;}
.y71{bottom:174.675000px;}
.y7c{bottom:185.865000px;}
.y8f{bottom:187.560000px;}
.y87{bottom:190.005000px;}
.y34{bottom:191.775000px;}
.y30{bottom:192.030000px;}
.y2f{bottom:211.110000px;}
.y70{bottom:213.735000px;}
.y7b{bottom:214.665000px;}
.y33{bottom:216.435000px;}
.y65{bottom:229.215000px;}
.ya{bottom:235.470000px;}
.y86{bottom:236.805000px;}
.y2e{bottom:239.370000px;}
.y32{bottom:241.125000px;}
.y3e{bottom:245.700000px;}
.y48{bottom:248.250000px;}
.y1d{bottom:249.735000px;}
.y24{bottom:251.430000px;}
.y6f{bottom:252.615000px;}
.y4b{bottom:253.905000px;}
.y9d{bottom:256.650000px;}
.y12{bottom:260.535000px;}
.y7a{bottom:261.465000px;}
.y2d{bottom:261.510000px;}
.y85{bottom:265.650000px;}
.y9{bottom:267.870000px;}
.y54{bottom:268.095000px;}
.y5d{bottom:273.060000px;}
.y3d{bottom:274.500000px;}
.y9c{bottom:278.250000px;}
.y4a{bottom:279.105000px;}
.y47{bottom:281.190000px;}
.y51{bottom:283.245000px;}
.y23{bottom:284.370000px;}
.y5c{bottom:289.260000px;}
.y79{bottom:290.310000px;}
.y97{bottom:290.595000px;}
.y6e{bottom:291.705000px;}
.y53{bottom:296.895000px;}
.y9b{bottom:299.850000px;}
.y8{bottom:306.750000px;}
.y64{bottom:307.185000px;}
.y84{bottom:312.450000px;}
.y50{bottom:315.645000px;}
.y9a{bottom:321.450000px;}
.y52{bottom:325.695000px;}
.y17{bottom:330.735000px;}
.y6d{bottom:330.765000px;}
.y78{bottom:337.110000px;}
.y11{bottom:338.145000px;}
.y27{bottom:338.430000px;}
.y83{bottom:341.250000px;}
.y99{bottom:343.050000px;}
.y59{bottom:356.430000px;}
.ya1{bottom:358.710000px;}
.y46{bottom:359.130000px;}
.y22{bottom:362.340000px;}
.y26{bottom:363.090000px;}
.y98{bottom:364.650000px;}
.y77{bottom:365.910000px;}
.y96{bottom:366.225000px;}
.y7{bottom:369.180000px;}
.y89{bottom:372.165000px;}
.y3b{bottom:377.535000px;}
.y63{bottom:385.125000px;}
.y58{bottom:385.230000px;}
.y25{bottom:387.795000px;}
.y82{bottom:388.050000px;}
.y45{bottom:392.295000px;}
.y88{bottom:393.765000px;}
.y2c{bottom:393.840000px;}
.y21{bottom:395.460000px;}
.y55{bottom:398.445000px;}
.y95{bottom:400.785000px;}
.y36{bottom:406.155000px;}
.y6c{bottom:408.705000px;}
.y6{bottom:412.410000px;}
.y9f{bottom:412.560000px;}
.ya0{bottom:412.710000px;}
.y76{bottom:412.740000px;}
.y10{bottom:415.725000px;}
.y81{bottom:416.880000px;}
.y62{bottom:418.290000px;}
.y2b{bottom:418.500000px;}
.y5b{bottom:419.220000px;}
.y3c{bottom:429.810000px;}
.y35{bottom:430.815000px;}
.y1c{bottom:432.330000px;}
.y94{bottom:435.345000px;}
.y5a{bottom:435.420000px;}
.y9e{bottom:437.910000px;}
.y75{bottom:441.540000px;}
.y2a{bottom:443.160000px;}
.y80{bottom:445.680000px;}
.y6b{bottom:447.810000px;}
.y5{bottom:455.610000px;}
.y1b{bottom:465.270000px;}
.y44{bottom:470.235000px;}
.y4c{bottom:470.955000px;}
.y93{bottom:471.705000px;}
.y5f{bottom:472.755000px;}
.y20{bottom:473.400000px;}
.y42{bottom:486.615000px;}
.y6a{bottom:486.690000px;}
.y74{bottom:488.340000px;}
.y5e{bottom:488.955000px;}
.y7f{bottom:492.480000px;}
.yf{bottom:493.170000px;}
.y3a{bottom:493.275000px;}
.y8e{bottom:495.150000px;}
.y61{bottom:496.230000px;}
.y4{bottom:498.810000px;}
.y43{bottom:503.175000px;}
.y1a{bottom:504.150000px;}
.y8d{bottom:513.180000px;}
.y73{bottom:517.140000px;}
.y39{bottom:520.020000px;}
.y7e{bottom:521.280000px;}
.y41{bottom:525.675000px;}
.y69{bottom:525.750000px;}
.y60{bottom:529.170000px;}
.y8c{bottom:531.180000px;}
.y29{bottom:532.410000px;}
.y66{bottom:536.220000px;}
.y19{bottom:537.120000px;}
.y4d{bottom:548.355000px;}
.y92{bottom:549.330000px;}
.y1f{bottom:551.370000px;}
.y38{bottom:552.420000px;}
.y28{bottom:554.550000px;}
.y40{bottom:564.765000px;}
.y68{bottom:564.810000px;}
.y72{bottom:565.770000px;}
.y7d{bottom:568.110000px;}
.y57{bottom:569.085000px;}
.ye{bottom:570.780000px;}
.y18{bottom:575.820000px;}
.y37{bottom:584.205000px;}
.y56{bottom:601.485000px;}
.y3f{bottom:603.645000px;}
.yd{bottom:603.720000px;}
.y8b{bottom:626.370000px;}
.y91{bottom:628.920000px;}
.y14{bottom:646.305000px;}
.y49{bottom:647.100000px;}
.y8a{bottom:658.770000px;}
.yc{bottom:685.290000px;}
.y13{bottom:686.340000px;}
.yb{bottom:758.670000px;}
.h14{height:37.415039px;}
.h16{height:41.405977px;}
.h17{height:41.505750px;}
.h2{height:47.980898px;}
.hd{height:49.886719px;}
.he{height:49.986492px;}
.hc{height:58.367461px;}
.hb{height:58.467234px;}
.ha{height:59.439023px;}
.h13{height:66.349336px;}
.h11{height:66.449109px;}
.h1{height:71.613281px;}
.h19{height:73.722656px;}
.h10{height:74.619141px;}
.h12{height:74.830078px;}
.hf{height:77.079141px;}
.h7{height:95.245664px;}
.h8{height:95.388891px;}
.h5{height:98.051133px;}
.h15{height:98.198578px;}
.h4{height:107.419922px;}
.h9{height:110.583984px;}
.h3{height:147.445312px;}
.h6{height:159.978164px;}
.h18{height:160.125609px;}
.h1a{height:184.306641px;}
.h1b{height:184.454086px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2{left:30.311984px;}
.x32{left:41.075984px;}
.x33{left:42.191984px;}
.x9{left:51.371984px;}
.x29{left:60.875984px;}
.x5{left:61.991984px;}
.x6{left:63.359984px;}
.x8{left:64.799984px;}
.x47{left:70.919984px;}
.x20{left:74.231984px;}
.x2c{left:75.455984px;}
.x1f{left:79.271984px;}
.x44{left:84.851984px;}
.x43{left:86.471984px;}
.x48{left:93.239984px;}
.x28{left:95.867984px;}
.x7{left:97.019984px;}
.xb{left:98.639984px;}
.x42{left:101.951984px;}
.x21{left:105.875984px;}
.x4c{left:112.211984px;}
.x41{left:126.647984px;}
.x1d{left:128.591984px;}
.x1c{left:138.851984px;}
.x1e{left:146.411984px;}
.x1{left:156.089984px;}
.x45{left:212.579984px;}
.x46{left:219.959984px;}
.x25{left:240.689984px;}
.x10{left:246.854984px;}
.x12{left:254.774984px;}
.x14{left:257.114984px;}
.x13{left:260.174984px;}
.x24{left:267.404984px;}
.x11{left:269.174984px;}
.x3a{left:278.669984px;}
.x37{left:297.569984px;}
.x39{left:303.509984px;}
.x38{left:306.209984px;}
.x27{left:335.084984px;}
.x35{left:344.594984px;}
.x34{left:353.234984px;}
.x18{left:372.089984px;}
.x19{left:373.709984px;}
.x1b{left:375.689984px;}
.xc{left:384.689984px;}
.x1a{left:390.809984px;}
.x17{left:393.329984px;}
.x2f{left:408.629984px;}
.x15{left:417.269984px;}
.x16{left:426.989984px;}
.x2e{left:429.689984px;}
.x49{left:459.149984px;}
.x31{left:484.949984px;}
.x30{left:522.254984px;}
.x3b{left:537.224984px;}
.x2d{left:553.649984px;}
.xe{left:572.039984px;}
.xd{left:601.634984px;}
.xf{left:605.699984px;}
.x26{left:612.569984px;}
.x3f{left:614.369984px;}
.xa{left:633.389984px;}
.x40{left:648.074984px;}
.x3{left:649.829984px;}
.x22{left:651.884984px;}
.x4b{left:676.799984px;}
.x4a{left:677.909984px;}
.x23{left:719.744984px;}
.x2a{left:746.069984px;}
.x3c{left:776.309984px;}
.x2b{left:789.809984px;}
.x36{left:860.834984px;}
.x3d{left:875.594984px;}
.x3e{left:993.209984px;}
.x4{left:1005.269984px;}
@media print{
.v2{vertical-align:-41.226667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.186667pt;}
.ls4{letter-spacing:-0.349333pt;}
.ls8{letter-spacing:-0.275733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.061333pt;}
.lsd{letter-spacing:0.193600pt;}
.lsc{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.262400pt;}
.ls9{letter-spacing:19.427840pt;}
.lse{letter-spacing:68.608000pt;}
.ls5{letter-spacing:89.843200pt;}
.ls1{letter-spacing:89.888000pt;}
.lsb{letter-spacing:90.003200pt;}
.lsa{letter-spacing:90.048000pt;}
.ls3{letter-spacing:90.483200pt;}
.ls2{letter-spacing:90.528000pt;}
.ws12{word-spacing:-31.415808pt;}
.ws1{word-spacing:-31.386880pt;}
.ws7{word-spacing:-24.000000pt;}
.ws9{word-spacing:-21.696000pt;}
.ws8{word-spacing:-21.312000pt;}
.wsa{word-spacing:-21.280000pt;}
.wsd{word-spacing:-19.499520pt;}
.wsf{word-spacing:-19.298453pt;}
.ws3{word-spacing:-19.266048pt;}
.ws2{word-spacing:-19.237120pt;}
.ws5{word-spacing:-18.752000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.032000pt;}
.ws13{word-spacing:-14.464000pt;}
.ws10{word-spacing:-13.312000pt;}
.ws11{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.005120pt;}
.wsb{word-spacing:-12.000000pt;}
.wsc{word-spacing:-1.962667pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-8.736000pt;}
._9{margin-left:-6.649344pt;}
._4{margin-left:-4.992000pt;}
._c{margin-left:-3.660160pt;}
._3{margin-left:-2.400000pt;}
._0{margin-left:-1.472000pt;}
._1{width:0.960000pt;}
._6{width:2.081792pt;}
._d{width:3.321344pt;}
._b{width:4.224000pt;}
._2{width:13.344000pt;}
._7{width:44.330667pt;}
._8{width:874.980053pt;}
._a{width:901.927637pt;}
.fs1{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs9{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:138.880000pt;}
.fse{font-size:139.008000pt;}
.fsf{font-size:160.000000pt;}
.fs10{font-size:160.128000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:17.152000pt;}
.y1{bottom:40.992000pt;}
.y3{bottom:44.768000pt;}
.y16{bottom:88.064000pt;}
.y15{bottom:104.064000pt;}
.y67{bottom:109.824000pt;}
.y4f{bottom:125.120000pt;}
.y90{bottom:141.120000pt;}
.y1e{bottom:147.586667pt;}
.y4e{bottom:150.720000pt;}
.y31{bottom:153.733333pt;}
.y71{bottom:155.266667pt;}
.y7c{bottom:165.213333pt;}
.y8f{bottom:166.720000pt;}
.y87{bottom:168.893333pt;}
.y34{bottom:170.466667pt;}
.y30{bottom:170.693333pt;}
.y2f{bottom:187.653333pt;}
.y70{bottom:189.986667pt;}
.y7b{bottom:190.813333pt;}
.y33{bottom:192.386667pt;}
.y65{bottom:203.746667pt;}
.ya{bottom:209.306667pt;}
.y86{bottom:210.493333pt;}
.y2e{bottom:212.773333pt;}
.y32{bottom:214.333333pt;}
.y3e{bottom:218.400000pt;}
.y48{bottom:220.666667pt;}
.y1d{bottom:221.986667pt;}
.y24{bottom:223.493333pt;}
.y6f{bottom:224.546667pt;}
.y4b{bottom:225.693333pt;}
.y9d{bottom:228.133333pt;}
.y12{bottom:231.586667pt;}
.y7a{bottom:232.413333pt;}
.y2d{bottom:232.453333pt;}
.y85{bottom:236.133333pt;}
.y9{bottom:238.106667pt;}
.y54{bottom:238.306667pt;}
.y5d{bottom:242.720000pt;}
.y3d{bottom:244.000000pt;}
.y9c{bottom:247.333333pt;}
.y4a{bottom:248.093333pt;}
.y47{bottom:249.946667pt;}
.y51{bottom:251.773333pt;}
.y23{bottom:252.773333pt;}
.y5c{bottom:257.120000pt;}
.y79{bottom:258.053333pt;}
.y97{bottom:258.306667pt;}
.y6e{bottom:259.293333pt;}
.y53{bottom:263.906667pt;}
.y9b{bottom:266.533333pt;}
.y8{bottom:272.666667pt;}
.y64{bottom:273.053333pt;}
.y84{bottom:277.733333pt;}
.y50{bottom:280.573333pt;}
.y9a{bottom:285.733333pt;}
.y52{bottom:289.506667pt;}
.y17{bottom:293.986667pt;}
.y6d{bottom:294.013333pt;}
.y78{bottom:299.653333pt;}
.y11{bottom:300.573333pt;}
.y27{bottom:300.826667pt;}
.y83{bottom:303.333333pt;}
.y99{bottom:304.933333pt;}
.y59{bottom:316.826667pt;}
.ya1{bottom:318.853333pt;}
.y46{bottom:319.226667pt;}
.y22{bottom:322.080000pt;}
.y26{bottom:322.746667pt;}
.y98{bottom:324.133333pt;}
.y77{bottom:325.253333pt;}
.y96{bottom:325.533333pt;}
.y7{bottom:328.160000pt;}
.y89{bottom:330.813333pt;}
.y3b{bottom:335.586667pt;}
.y63{bottom:342.333333pt;}
.y58{bottom:342.426667pt;}
.y25{bottom:344.706667pt;}
.y82{bottom:344.933333pt;}
.y45{bottom:348.706667pt;}
.y88{bottom:350.013333pt;}
.y2c{bottom:350.080000pt;}
.y21{bottom:351.520000pt;}
.y55{bottom:354.173333pt;}
.y95{bottom:356.253333pt;}
.y36{bottom:361.026667pt;}
.y6c{bottom:363.293333pt;}
.y6{bottom:366.586667pt;}
.y9f{bottom:366.720000pt;}
.ya0{bottom:366.853333pt;}
.y76{bottom:366.880000pt;}
.y10{bottom:369.533333pt;}
.y81{bottom:370.560000pt;}
.y62{bottom:371.813333pt;}
.y2b{bottom:372.000000pt;}
.y5b{bottom:372.640000pt;}
.y3c{bottom:382.053333pt;}
.y35{bottom:382.946667pt;}
.y1c{bottom:384.293333pt;}
.y94{bottom:386.973333pt;}
.y5a{bottom:387.040000pt;}
.y9e{bottom:389.253333pt;}
.y75{bottom:392.480000pt;}
.y2a{bottom:393.920000pt;}
.y80{bottom:396.160000pt;}
.y6b{bottom:398.053333pt;}
.y5{bottom:404.986667pt;}
.y1b{bottom:413.573333pt;}
.y44{bottom:417.986667pt;}
.y4c{bottom:418.626667pt;}
.y93{bottom:419.293333pt;}
.y5f{bottom:420.226667pt;}
.y20{bottom:420.800000pt;}
.y42{bottom:432.546667pt;}
.y6a{bottom:432.613333pt;}
.y74{bottom:434.080000pt;}
.y5e{bottom:434.626667pt;}
.y7f{bottom:437.760000pt;}
.yf{bottom:438.373333pt;}
.y3a{bottom:438.466667pt;}
.y8e{bottom:440.133333pt;}
.y61{bottom:441.093333pt;}
.y4{bottom:443.386667pt;}
.y43{bottom:447.266667pt;}
.y1a{bottom:448.133333pt;}
.y8d{bottom:456.160000pt;}
.y73{bottom:459.680000pt;}
.y39{bottom:462.240000pt;}
.y7e{bottom:463.360000pt;}
.y41{bottom:467.266667pt;}
.y69{bottom:467.333333pt;}
.y60{bottom:470.373333pt;}
.y8c{bottom:472.160000pt;}
.y29{bottom:473.253333pt;}
.y66{bottom:476.640000pt;}
.y19{bottom:477.440000pt;}
.y4d{bottom:487.426667pt;}
.y92{bottom:488.293333pt;}
.y1f{bottom:490.106667pt;}
.y38{bottom:491.040000pt;}
.y28{bottom:492.933333pt;}
.y40{bottom:502.013333pt;}
.y68{bottom:502.053333pt;}
.y72{bottom:502.906667pt;}
.y7d{bottom:504.986667pt;}
.y57{bottom:505.853333pt;}
.ye{bottom:507.360000pt;}
.y18{bottom:511.840000pt;}
.y37{bottom:519.293333pt;}
.y56{bottom:534.653333pt;}
.y3f{bottom:536.573333pt;}
.yd{bottom:536.640000pt;}
.y8b{bottom:556.773333pt;}
.y91{bottom:559.040000pt;}
.y14{bottom:574.493333pt;}
.y49{bottom:575.200000pt;}
.y8a{bottom:585.573333pt;}
.yc{bottom:609.146667pt;}
.y13{bottom:610.080000pt;}
.yb{bottom:674.373333pt;}
.h14{height:33.257812pt;}
.h16{height:36.805312pt;}
.h17{height:36.894000pt;}
.h2{height:42.649687pt;}
.hd{height:44.343750pt;}
.he{height:44.432437pt;}
.hc{height:51.882187pt;}
.hb{height:51.970875pt;}
.ha{height:52.834688pt;}
.h13{height:58.977187pt;}
.h11{height:59.065875pt;}
.h1{height:63.656250pt;}
.h19{height:65.531250pt;}
.h10{height:66.328125pt;}
.h12{height:66.515625pt;}
.hf{height:68.514792pt;}
.h7{height:84.662813pt;}
.h8{height:84.790125pt;}
.h5{height:87.156562pt;}
.h15{height:87.287625pt;}
.h4{height:95.484375pt;}
.h9{height:98.296875pt;}
.h3{height:131.062500pt;}
.h6{height:142.202812pt;}
.h18{height:142.333875pt;}
.h1a{height:163.828125pt;}
.h1b{height:163.959187pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.943986pt;}
.x32{left:36.511986pt;}
.x33{left:37.503986pt;}
.x9{left:45.663986pt;}
.x29{left:54.111986pt;}
.x5{left:55.103986pt;}
.x6{left:56.319986pt;}
.x8{left:57.599986pt;}
.x47{left:63.039986pt;}
.x20{left:65.983986pt;}
.x2c{left:67.071986pt;}
.x1f{left:70.463986pt;}
.x44{left:75.423986pt;}
.x43{left:76.863986pt;}
.x48{left:82.879986pt;}
.x28{left:85.215986pt;}
.x7{left:86.239986pt;}
.xb{left:87.679986pt;}
.x42{left:90.623986pt;}
.x21{left:94.111986pt;}
.x4c{left:99.743986pt;}
.x41{left:112.575986pt;}
.x1d{left:114.303986pt;}
.x1c{left:123.423986pt;}
.x1e{left:130.143986pt;}
.x1{left:138.746652pt;}
.x45{left:188.959986pt;}
.x46{left:195.519986pt;}
.x25{left:213.946652pt;}
.x10{left:219.426652pt;}
.x12{left:226.466652pt;}
.x14{left:228.546652pt;}
.x13{left:231.266652pt;}
.x24{left:237.693319pt;}
.x11{left:239.266652pt;}
.x3a{left:247.706652pt;}
.x37{left:264.506652pt;}
.x39{left:269.786652pt;}
.x38{left:272.186652pt;}
.x27{left:297.853319pt;}
.x35{left:306.306652pt;}
.x34{left:313.986652pt;}
.x18{left:330.746652pt;}
.x19{left:332.186652pt;}
.x1b{left:333.946652pt;}
.xc{left:341.946652pt;}
.x1a{left:347.386652pt;}
.x17{left:349.626652pt;}
.x2f{left:363.226652pt;}
.x15{left:370.906652pt;}
.x16{left:379.546652pt;}
.x2e{left:381.946652pt;}
.x49{left:408.133319pt;}
.x31{left:431.066652pt;}
.x30{left:464.226652pt;}
.x3b{left:477.533319pt;}
.x2d{left:492.133319pt;}
.xe{left:508.479986pt;}
.xd{left:534.786652pt;}
.xf{left:538.399986pt;}
.x26{left:544.506652pt;}
.x3f{left:546.106652pt;}
.xa{left:563.013319pt;}
.x40{left:576.066652pt;}
.x3{left:577.626652pt;}
.x22{left:579.453319pt;}
.x4b{left:601.599986pt;}
.x4a{left:602.586652pt;}
.x23{left:639.773319pt;}
.x2a{left:663.173319pt;}
.x3c{left:690.053319pt;}
.x2b{left:702.053319pt;}
.x36{left:765.186652pt;}
.x3d{left:778.306652pt;}
.x3e{left:882.853319pt;}
.x4{left:893.573319pt;}
}




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