
    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_4c201d22b3236c44d7ec9a3d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9c95855cc90d71380b388a05.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a30241a7a1193a0fb5eae53.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0e6a5595d7a3a38f9ad0a8d5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c01eb2adf33dc7e971d9797c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.m3{transform:matrix(0.370375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls20{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.990000px;}
.ls10{letter-spacing:-0.942000px;}
.lse{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.496200px;}
.ls13{letter-spacing:-0.457800px;}
.ls17{letter-spacing:-0.405600px;}
.ls6{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.045360px;}
.ls7{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.045360px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.ls19{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.450600px;}
.ls3{letter-spacing:1.620000px;}
.lsc{letter-spacing:2.520000px;}
.ls18{letter-spacing:11.700000px;}
.ls1a{letter-spacing:13.140000px;}
.ls1d{letter-spacing:16.020000px;}
.ls1b{letter-spacing:16.740000px;}
.lsd{letter-spacing:17.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.ws2{word-spacing:-19.448640px;}
.ws3{word-spacing:-19.431360px;}
.ws17{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws14{word-spacing:-12.510600px;}
.wse{word-spacing:-12.374400px;}
.ws6{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.105360px;}
.ws5{word-spacing:-12.060000px;}
.ws19{word-spacing:-12.014640px;}
.ws15{word-spacing:-11.878800px;}
.ws8{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.654400px;}
.ws7{word-spacing:-11.563800px;}
.wsf{word-spacing:-11.118000px;}
.ws11{word-spacing:-11.070000px;}
.ws9{word-spacing:-10.980000px;}
.ws13{word-spacing:-10.440000px;}
.ws18{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._20{margin-left:-5.166720px;}
._13{margin-left:-4.094880px;}
._3{margin-left:-2.970000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._e{width:2.501520px;}
._8{width:3.549360px;}
._7{width:4.890000px;}
._4{width:6.600000px;}
._15{width:7.830720px;}
._17{width:9.671040px;}
._d{width:10.817760px;}
._c{width:12.212640px;}
._2{width:13.637760px;}
._1a{width:14.668560px;}
._b{width:15.714000px;}
._a{width:16.744320px;}
._9{width:18.198000px;}
._14{width:19.242000px;}
._1c{width:20.766960px;}
._10{width:22.742640px;}
._f{width:24.084000px;}
._6{width:25.920000px;}
._5{width:27.108000px;}
._12{width:28.418880px;}
._18{width:30.021120px;}
._1b{width:31.728960px;}
._11{width:33.623520px;}
._1e{width:35.371200px;}
._1d{width:37.216080px;}
._25{width:38.769600px;}
._1f{width:40.995840px;}
._16{width:43.322160px;}
._22{width:51.504960px;}
._21{width:52.717920px;}
._23{width:54.449280px;}
._24{width:56.171520px;}
._19{width:58.405440px;}
._27{width:90.117360px;}
._28{width:94.139280px;}
._2a{width:95.230800px;}
._29{width:122.431440px;}
._2b{width:133.238880px;}
._26{width:338.494080px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{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;}
.y3e{bottom:2.520000px;}
.y2b{bottom:2.880000px;}
.y3c{bottom:5.220000px;}
.y2{bottom:5.400000px;}
.y3f{bottom:15.120000px;}
.y3d{bottom:16.380000px;}
.y2a{bottom:18.360000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y29{bottom:33.840000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y28{bottom:49.350000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y27{bottom:65.010000px;}
.y26{bottom:80.490000px;}
.y25{bottom:95.970000px;}
.y55{bottom:110.376000px;}
.y24{bottom:111.450000px;}
.y93{bottom:114.876000px;}
.y54{bottom:124.236000px;}
.y96{bottom:125.316000px;}
.y23{bottom:127.110000px;}
.y53{bottom:128.736000px;}
.y9d{bottom:129.996000px;}
.y88{bottom:137.916000px;}
.y52{bottom:139.176000px;}
.y92{bottom:142.416000px;}
.y22{bottom:142.590000px;}
.y87{bottom:151.770000px;}
.y95{bottom:151.950000px;}
.y86{bottom:156.270000px;}
.y21{bottom:158.070000px;}
.y3a{bottom:165.090000px;}
.y85{bottom:165.630000px;}
.y91{bottom:166.710000px;}
.y99{bottom:170.130000px;}
.y20{bottom:173.550000px;}
.y8b{bottom:173.730000px;}
.y51{bottom:174.630000px;}
.y84{bottom:179.310000px;}
.y39{bottom:180.570000px;}
.y83{bottom:183.810000px;}
.y1f{bottom:189.210000px;}
.y82{bottom:194.430000px;}
.y8a{bottom:195.510000px;}
.y38{bottom:196.050000px;}
.y50{bottom:196.410000px;}
.y1e{bottom:204.690000px;}
.y37{bottom:211.530000px;}
.y81{bottom:217.290000px;}
.y4f{bottom:218.190000px;}
.y1d{bottom:220.170000px;}
.y36{bottom:227.010000px;}
.y1c{bottom:235.650000px;}
.y80{bottom:239.250000px;}
.y4e{bottom:239.970000px;}
.y35{bottom:242.670000px;}
.y89{bottom:245.190000px;}
.y1b{bottom:251.310000px;}
.y34{bottom:258.150000px;}
.y7f{bottom:261.030000px;}
.y4d{bottom:261.930000px;}
.y1a{bottom:266.790000px;}
.y33{bottom:273.630000px;}
.y19{bottom:282.270000px;}
.y7e{bottom:282.810000px;}
.y4c{bottom:283.710000px;}
.y32{bottom:289.110000px;}
.y18{bottom:297.750000px;}
.y7d{bottom:304.590000px;}
.y31{bottom:304.815000px;}
.y4b{bottom:305.490000px;}
.y9c{bottom:310.530000px;}
.y17{bottom:313.455000px;}
.y30{bottom:320.295000px;}
.y7c{bottom:326.370000px;}
.y4a{bottom:327.270000px;}
.y16{bottom:328.935000px;}
.y2f{bottom:335.415000px;}
.y15{bottom:344.415000px;}
.y7b{bottom:348.375000px;}
.y48{bottom:349.095000px;}
.y2e{bottom:349.275000px;}
.y49{bottom:355.035000px;}
.y14{bottom:359.895000px;}
.y2d{bottom:362.955000px;}
.y7a{bottom:370.155000px;}
.y47{bottom:371.055000px;}
.y13{bottom:375.555000px;}
.y2c{bottom:376.815000px;}
.y79{bottom:391.935000px;}
.y46{bottom:392.835000px;}
.y78{bottom:413.715000px;}
.y45{bottom:414.615000px;}
.y77{bottom:435.495000px;}
.y44{bottom:436.395000px;}
.y94{bottom:441.435000px;}
.y76{bottom:457.455000px;}
.y43{bottom:458.355000px;}
.y90{bottom:463.395000px;}
.y75{bottom:479.235000px;}
.y42{bottom:480.135000px;}
.y73{bottom:501.015000px;}
.y41{bottom:501.915000px;}
.y74{bottom:506.955000px;}
.y72{bottom:522.795000px;}
.y40{bottom:523.695000px;}
.y3b{bottom:539.175000px;}
.y71{bottom:544.755000px;}
.y70{bottom:566.535000px;}
.y12{bottom:566.895000px;}
.y6f{bottom:588.315000px;}
.y98{bottom:594.255000px;}
.y6e{bottom:610.125000px;}
.y6c{bottom:631.905000px;}
.y6d{bottom:637.845000px;}
.y6b{bottom:653.865000px;}
.y8e{bottom:659.805000px;}
.y6a{bottom:675.645000px;}
.y9b{bottom:681.585000px;}
.y69{bottom:697.425000px;}
.y68{bottom:719.205000px;}
.y8f{bottom:725.145000px;}
.y67{bottom:741.165000px;}
.y66{bottom:762.945000px;}
.y8d{bottom:768.885000px;}
.y65{bottom:784.725000px;}
.y97{bottom:790.665000px;}
.y64{bottom:806.505000px;}
.y63{bottom:828.285000px;}
.y62{bottom:850.245000px;}
.y61{bottom:872.070000px;}
.y60{bottom:893.850000px;}
.y5f{bottom:915.630000px;}
.y9a{bottom:921.570000px;}
.y5e{bottom:937.590000px;}
.y8c{bottom:943.530000px;}
.y5c{bottom:959.370000px;}
.y11{bottom:961.350000px;}
.y5d{bottom:965.310000px;}
.y5b{bottom:981.150000px;}
.y10{bottom:982.590000px;}
.yf{bottom:1002.390000px;}
.y5a{bottom:1002.930000px;}
.ye{bottom:1022.730000px;}
.y59{bottom:1024.710000px;}
.yd{bottom:1042.890000px;}
.y58{bottom:1046.670000px;}
.yc{bottom:1061.790000px;}
.y57{bottom:1068.450000px;}
.yb{bottom:1087.530000px;}
.y56{bottom:1090.230000px;}
.y9{bottom:1109.310000px;}
.y1{bottom:1131.450000px;}
.h14{height:21.114844px;}
.h11{height:27.720000px;}
.h12{height:29.158594px;}
.h10{height:33.683203px;}
.h9{height:34.036523px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h7{height:39.147891px;}
.h15{height:39.760312px;}
.hb{height:41.726953px;}
.h3{height:42.164648px;}
.hf{height:44.507812px;}
.h6{height:46.251562px;}
.ha{height:46.736719px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.h16{height:52.918594px;}
.h13{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.hc{height:388.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w8{width:115.050000px;}
.w7{width:201.990000px;}
.w4{width:255.090000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x12{left:30.600000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x17{left:111.815987px;}
.xf{left:116.136000px;}
.xa{left:125.135987px;}
.x7{left:131.805000px;}
.x5f{left:140.075987px;}
.x45{left:153.389973px;}
.x13{left:161.129987px;}
.x27{left:164.729987px;}
.xb{left:173.009987px;}
.x28{left:174.629987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x29{left:185.609987px;}
.x2a{left:195.509987px;}
.x18{left:197.309973px;}
.x19{left:202.529987px;}
.x2b{left:205.229987px;}
.x40{left:207.749987px;}
.x3e{left:213.509973px;}
.x2c{left:215.129987px;}
.x3f{left:218.729987px;}
.x64{left:219.989987px;}
.xd{left:241.049987px;}
.x2d{left:250.229987px;}
.x2e{left:260.129987px;}
.x4e{left:262.109987px;}
.x4a{left:271.829973px;}
.x4f{left:275.249987px;}
.x3c{left:279.074973px;}
.x4b{left:282.314987px;}
.x3d{left:284.294987px;}
.x1a{left:285.914973px;}
.x1b{left:291.134987px;}
.x65{left:297.074987px;}
.x1c{left:304.454973px;}
.x50{left:307.334987px;}
.x66{left:308.414987px;}
.x1d{left:309.674987px;}
.xe{left:313.994987px;}
.x4c{left:320.654973px;}
.x16{left:324.074987px;}
.x4d{left:331.094987px;}
.x2f{left:334.874987px;}
.x41{left:344.054973px;}
.x14{left:346.934973px;}
.x15{left:352.154987px;}
.x42{left:354.494987px;}
.x51{left:359.174987px;}
.x30{left:370.334987px;}
.x37{left:376.274987px;}
.x48{left:378.974973px;}
.xc{left:380.414987px;}
.x49{left:389.414987px;}
.x52{left:394.814987px;}
.x53{left:406.694987px;}
.x43{left:415.154973px;}
.x44{left:425.594987px;}
.x54{left:431.534987px;}
.x55{left:443.414987px;}
.x67{left:459.074987px;}
.x31{left:466.274987px;}
.x68{left:470.624987px;}
.x56{left:471.704987px;}
.x32{left:476.204987px;}
.x57{left:483.584987px;}
.x3a{left:487.724973px;}
.x3b{left:497.444987px;}
.x9{left:500.144987px;}
.x33{left:509.144987px;}
.x1e{left:516.524987px;}
.x34{left:519.044987px;}
.x69{left:522.824987px;}
.x1f{left:527.324987px;}
.x58{left:532.364987px;}
.x6a{left:534.164987px;}
.x59{left:544.244987px;}
.x35{left:549.104987px;}
.x5{left:554.685000px;}
.x36{left:559.004987px;}
.x46{left:569.084973px;}
.x10{left:575.925000px;}
.x47{left:580.424987px;}
.x20{left:589.784987px;}
.x21{left:600.584987px;}
.x5a{left:612.464987px;}
.x5b{left:649.004987px;}
.x5c{left:660.929987px;}
.x60{left:664.529987px;}
.x22{left:674.609987px;}
.x61{left:682.349987px;}
.x23{left:685.409987px;}
.x5d{left:689.549987px;}
.x5e{left:701.429987px;}
.x62{left:717.989987px;}
.x63{left:735.989987px;}
.x38{left:741.569973px;}
.x39{left:746.789987px;}
.x24{left:754.349987px;}
.x25{left:765.149987px;}
.x11{left:777.930000px;}
.x26{left:782.429987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.880000pt;}
.ls10{letter-spacing:-0.837333pt;}
.lse{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.441067pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls17{letter-spacing:-0.360533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.040320pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.040320pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls19{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.400533pt;}
.ls3{letter-spacing:1.440000pt;}
.lsc{letter-spacing:2.240000pt;}
.ls18{letter-spacing:10.400000pt;}
.ls1a{letter-spacing:11.680000pt;}
.ls1d{letter-spacing:14.240000pt;}
.ls1b{letter-spacing:14.880000pt;}
.lsd{letter-spacing:15.520000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws2{word-spacing:-17.287680pt;}
.ws3{word-spacing:-17.272320pt;}
.ws17{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.120533pt;}
.wse{word-spacing:-10.999467pt;}
.ws6{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.760320pt;}
.ws5{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.679680pt;}
.ws15{word-spacing:-10.558933pt;}
.ws8{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws16{word-spacing:-10.359467pt;}
.ws7{word-spacing:-10.278933pt;}
.wsf{word-spacing:-9.882667pt;}
.ws11{word-spacing:-9.840000pt;}
.ws9{word-spacing:-9.760000pt;}
.ws13{word-spacing:-9.280000pt;}
.ws18{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._20{margin-left:-4.592640pt;}
._13{margin-left:-3.639893pt;}
._3{margin-left:-2.640000pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._e{width:2.223573pt;}
._8{width:3.154987pt;}
._7{width:4.346667pt;}
._4{width:5.866667pt;}
._15{width:6.960640pt;}
._17{width:8.596480pt;}
._d{width:9.615787pt;}
._c{width:10.855680pt;}
._2{width:12.122453pt;}
._1a{width:13.038720pt;}
._b{width:13.968000pt;}
._a{width:14.883840pt;}
._9{width:16.176000pt;}
._14{width:17.104000pt;}
._1c{width:18.459520pt;}
._10{width:20.215680pt;}
._f{width:21.408000pt;}
._6{width:23.040000pt;}
._5{width:24.096000pt;}
._12{width:25.261227pt;}
._18{width:26.685440pt;}
._1b{width:28.203520pt;}
._11{width:29.887573pt;}
._1e{width:31.441067pt;}
._1d{width:33.080960pt;}
._25{width:34.461867pt;}
._1f{width:36.440747pt;}
._16{width:38.508587pt;}
._22{width:45.782187pt;}
._21{width:46.860373pt;}
._23{width:48.399360pt;}
._24{width:49.930240pt;}
._19{width:51.915947pt;}
._27{width:80.104320pt;}
._28{width:83.679360pt;}
._2a{width:84.649600pt;}
._29{width:108.827947pt;}
._2b{width:118.434560pt;}
._26{width:300.883627pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{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;}
.y3e{bottom:2.240000pt;}
.y2b{bottom:2.560000pt;}
.y3c{bottom:4.640000pt;}
.y2{bottom:4.800000pt;}
.y3f{bottom:13.440000pt;}
.y3d{bottom:14.560000pt;}
.y2a{bottom:16.320000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y29{bottom:30.080000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y28{bottom:43.866667pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y27{bottom:57.786667pt;}
.y26{bottom:71.546667pt;}
.y25{bottom:85.306667pt;}
.y55{bottom:98.112000pt;}
.y24{bottom:99.066667pt;}
.y93{bottom:102.112000pt;}
.y54{bottom:110.432000pt;}
.y96{bottom:111.392000pt;}
.y23{bottom:112.986667pt;}
.y53{bottom:114.432000pt;}
.y9d{bottom:115.552000pt;}
.y88{bottom:122.592000pt;}
.y52{bottom:123.712000pt;}
.y92{bottom:126.592000pt;}
.y22{bottom:126.746667pt;}
.y87{bottom:134.906667pt;}
.y95{bottom:135.066667pt;}
.y86{bottom:138.906667pt;}
.y21{bottom:140.506667pt;}
.y3a{bottom:146.746667pt;}
.y85{bottom:147.226667pt;}
.y91{bottom:148.186667pt;}
.y99{bottom:151.226667pt;}
.y20{bottom:154.266667pt;}
.y8b{bottom:154.426667pt;}
.y51{bottom:155.226667pt;}
.y84{bottom:159.386667pt;}
.y39{bottom:160.506667pt;}
.y83{bottom:163.386667pt;}
.y1f{bottom:168.186667pt;}
.y82{bottom:172.826667pt;}
.y8a{bottom:173.786667pt;}
.y38{bottom:174.266667pt;}
.y50{bottom:174.586667pt;}
.y1e{bottom:181.946667pt;}
.y37{bottom:188.026667pt;}
.y81{bottom:193.146667pt;}
.y4f{bottom:193.946667pt;}
.y1d{bottom:195.706667pt;}
.y36{bottom:201.786667pt;}
.y1c{bottom:209.466667pt;}
.y80{bottom:212.666667pt;}
.y4e{bottom:213.306667pt;}
.y35{bottom:215.706667pt;}
.y89{bottom:217.946667pt;}
.y1b{bottom:223.386667pt;}
.y34{bottom:229.466667pt;}
.y7f{bottom:232.026667pt;}
.y4d{bottom:232.826667pt;}
.y1a{bottom:237.146667pt;}
.y33{bottom:243.226667pt;}
.y19{bottom:250.906667pt;}
.y7e{bottom:251.386667pt;}
.y4c{bottom:252.186667pt;}
.y32{bottom:256.986667pt;}
.y18{bottom:264.666667pt;}
.y7d{bottom:270.746667pt;}
.y31{bottom:270.946667pt;}
.y4b{bottom:271.546667pt;}
.y9c{bottom:276.026667pt;}
.y17{bottom:278.626667pt;}
.y30{bottom:284.706667pt;}
.y7c{bottom:290.106667pt;}
.y4a{bottom:290.906667pt;}
.y16{bottom:292.386667pt;}
.y2f{bottom:298.146667pt;}
.y15{bottom:306.146667pt;}
.y7b{bottom:309.666667pt;}
.y48{bottom:310.306667pt;}
.y2e{bottom:310.466667pt;}
.y49{bottom:315.586667pt;}
.y14{bottom:319.906667pt;}
.y2d{bottom:322.626667pt;}
.y7a{bottom:329.026667pt;}
.y47{bottom:329.826667pt;}
.y13{bottom:333.826667pt;}
.y2c{bottom:334.946667pt;}
.y79{bottom:348.386667pt;}
.y46{bottom:349.186667pt;}
.y78{bottom:367.746667pt;}
.y45{bottom:368.546667pt;}
.y77{bottom:387.106667pt;}
.y44{bottom:387.906667pt;}
.y94{bottom:392.386667pt;}
.y76{bottom:406.626667pt;}
.y43{bottom:407.426667pt;}
.y90{bottom:411.906667pt;}
.y75{bottom:425.986667pt;}
.y42{bottom:426.786667pt;}
.y73{bottom:445.346667pt;}
.y41{bottom:446.146667pt;}
.y74{bottom:450.626667pt;}
.y72{bottom:464.706667pt;}
.y40{bottom:465.506667pt;}
.y3b{bottom:479.266667pt;}
.y71{bottom:484.226667pt;}
.y70{bottom:503.586667pt;}
.y12{bottom:503.906667pt;}
.y6f{bottom:522.946667pt;}
.y98{bottom:528.226667pt;}
.y6e{bottom:542.333333pt;}
.y6c{bottom:561.693333pt;}
.y6d{bottom:566.973333pt;}
.y6b{bottom:581.213333pt;}
.y8e{bottom:586.493333pt;}
.y6a{bottom:600.573333pt;}
.y9b{bottom:605.853333pt;}
.y69{bottom:619.933333pt;}
.y68{bottom:639.293333pt;}
.y8f{bottom:644.573333pt;}
.y67{bottom:658.813333pt;}
.y66{bottom:678.173333pt;}
.y8d{bottom:683.453333pt;}
.y65{bottom:697.533333pt;}
.y97{bottom:702.813333pt;}
.y64{bottom:716.893333pt;}
.y63{bottom:736.253333pt;}
.y62{bottom:755.773333pt;}
.y61{bottom:775.173333pt;}
.y60{bottom:794.533333pt;}
.y5f{bottom:813.893333pt;}
.y9a{bottom:819.173333pt;}
.y5e{bottom:833.413333pt;}
.y8c{bottom:838.693333pt;}
.y5c{bottom:852.773333pt;}
.y11{bottom:854.533333pt;}
.y5d{bottom:858.053333pt;}
.y5b{bottom:872.133333pt;}
.y10{bottom:873.413333pt;}
.yf{bottom:891.013333pt;}
.y5a{bottom:891.493333pt;}
.ye{bottom:909.093333pt;}
.y59{bottom:910.853333pt;}
.yd{bottom:927.013333pt;}
.y58{bottom:930.373333pt;}
.yc{bottom:943.813333pt;}
.y57{bottom:949.733333pt;}
.yb{bottom:966.693333pt;}
.y56{bottom:969.093333pt;}
.y9{bottom:986.053333pt;}
.y1{bottom:1005.733333pt;}
.h14{height:18.768750pt;}
.h11{height:24.640000pt;}
.h12{height:25.918750pt;}
.h10{height:29.940625pt;}
.h9{height:30.254687pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h7{height:34.798125pt;}
.h15{height:35.342500pt;}
.hb{height:37.090625pt;}
.h3{height:37.479688pt;}
.hf{height:39.562500pt;}
.h6{height:41.112500pt;}
.ha{height:41.543750pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.h16{height:47.038750pt;}
.h13{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.hc{height:345.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w8{width:102.266667pt;}
.w7{width:179.546667pt;}
.w4{width:226.746667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x12{left:27.200000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x17{left:99.391988pt;}
.xf{left:103.232000pt;}
.xa{left:111.231988pt;}
.x7{left:117.160000pt;}
.x5f{left:124.511988pt;}
.x45{left:136.346643pt;}
.x13{left:143.226655pt;}
.x27{left:146.426655pt;}
.xb{left:153.786655pt;}
.x28{left:155.226655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x29{left:164.986655pt;}
.x2a{left:173.786655pt;}
.x18{left:175.386643pt;}
.x19{left:180.026655pt;}
.x2b{left:182.426655pt;}
.x40{left:184.666655pt;}
.x3e{left:189.786643pt;}
.x2c{left:191.226655pt;}
.x3f{left:194.426655pt;}
.x64{left:195.546655pt;}
.xd{left:214.266655pt;}
.x2d{left:222.426655pt;}
.x2e{left:231.226655pt;}
.x4e{left:232.986655pt;}
.x4a{left:241.626643pt;}
.x4f{left:244.666655pt;}
.x3c{left:248.066643pt;}
.x4b{left:250.946655pt;}
.x3d{left:252.706655pt;}
.x1a{left:254.146643pt;}
.x1b{left:258.786655pt;}
.x65{left:264.066655pt;}
.x1c{left:270.626643pt;}
.x50{left:273.186655pt;}
.x66{left:274.146655pt;}
.x1d{left:275.266655pt;}
.xe{left:279.106655pt;}
.x4c{left:285.026643pt;}
.x16{left:288.066655pt;}
.x4d{left:294.306655pt;}
.x2f{left:297.666655pt;}
.x41{left:305.826643pt;}
.x14{left:308.386643pt;}
.x15{left:313.026655pt;}
.x42{left:315.106655pt;}
.x51{left:319.266655pt;}
.x30{left:329.186655pt;}
.x37{left:334.466655pt;}
.x48{left:336.866643pt;}
.xc{left:338.146655pt;}
.x49{left:346.146655pt;}
.x52{left:350.946655pt;}
.x53{left:361.506655pt;}
.x43{left:369.026643pt;}
.x44{left:378.306655pt;}
.x54{left:383.586655pt;}
.x55{left:394.146655pt;}
.x67{left:408.066655pt;}
.x31{left:414.466655pt;}
.x68{left:418.333322pt;}
.x56{left:419.293322pt;}
.x32{left:423.293322pt;}
.x57{left:429.853322pt;}
.x3a{left:433.533310pt;}
.x3b{left:442.173322pt;}
.x9{left:444.573322pt;}
.x33{left:452.573322pt;}
.x1e{left:459.133322pt;}
.x34{left:461.373322pt;}
.x69{left:464.733322pt;}
.x1f{left:468.733322pt;}
.x58{left:473.213322pt;}
.x6a{left:474.813322pt;}
.x59{left:483.773322pt;}
.x35{left:488.093322pt;}
.x5{left:493.053333pt;}
.x36{left:496.893322pt;}
.x46{left:505.853310pt;}
.x10{left:511.933333pt;}
.x47{left:515.933322pt;}
.x20{left:524.253322pt;}
.x21{left:533.853322pt;}
.x5a{left:544.413322pt;}
.x5b{left:576.893322pt;}
.x5c{left:587.493322pt;}
.x60{left:590.693322pt;}
.x22{left:599.653322pt;}
.x61{left:606.533322pt;}
.x23{left:609.253322pt;}
.x5d{left:612.933322pt;}
.x5e{left:623.493322pt;}
.x62{left:638.213322pt;}
.x63{left:654.213322pt;}
.x38{left:659.173310pt;}
.x39{left:663.813322pt;}
.x24{left:670.533322pt;}
.x25{left:680.133322pt;}
.x11{left:691.493333pt;}
.x26{left:695.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; }
  