
    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_47c9b4c854342596351aebb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_a43378e9ffcdba9999b6121f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_42d68e702b1106680b6f0e6e.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_72690c37575ab3216842cbf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.046387;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_7e6501639c1f40307d358012.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_38e80f3e1d73f093b2eb23ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2ed3e3c05bcbbb7e92252997.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.046387;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_235b78df40163c2e59972ddf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b4fd61a95cb7c33f96c16347.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.211800px;}
.ls9{letter-spacing:-0.102000px;}
.ls7{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.022320px;}
.ls14{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144720px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.617760px;}
.lsf{letter-spacing:1.337760px;}
.ls11{letter-spacing:2.777760px;}
.ls10{letter-spacing:5.657760px;}
.ls16{letter-spacing:7.817760px;}
.ls18{letter-spacing:8.537760px;}
.ls15{letter-spacing:9.257760px;}
.ls1a{letter-spacing:9.977760px;}
.ls1b{letter-spacing:10.697760px;}
.ls12{letter-spacing:11.417760px;}
.lsd{letter-spacing:16.865280px;}
.lse{letter-spacing:26.945280px;}
.lsb{letter-spacing:39.881280px;}
.lsa{letter-spacing:39.905280px;}
.ls1d{letter-spacing:49.961280px;}
.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;}
}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.145400px;}
.ws7{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.447440px;}
.ws9{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.wsb{word-spacing:-10.924560px;}
.wsa{word-spacing:-10.902240px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-12.960000px;}
._16{margin-left:-4.798560px;}
._c{margin-left:-3.363600px;}
._9{margin-left:-2.151360px;}
._0{margin-left:-1.126080px;}
._1{width:1.212240px;}
._8{width:3.036000px;}
._21{width:4.051680px;}
._b{width:5.165040px;}
._2{width:6.394320px;}
._5{width:8.050560px;}
._6{width:9.723840px;}
._7{width:10.927440px;}
._f{width:12.353280px;}
._10{width:13.403280px;}
._17{width:14.506560px;}
._e{width:15.955920px;}
._d{width:17.390160px;}
._18{width:18.584640px;}
._3{width:19.601280px;}
._4{width:20.659920px;}
._15{width:21.735840px;}
._a{width:23.545440px;}
._1c{width:24.942240px;}
._26{width:25.966080px;}
._1b{width:27.061200px;}
._13{width:28.218240px;}
._14{width:29.508480px;}
._1a{width:30.536640px;}
._19{width:31.864320px;}
._25{width:33.125760px;}
._24{width:34.243200px;}
._20{width:36.240960px;}
._27{width:38.154240px;}
._1e{width:40.075200px;}
._1f{width:41.166720px;}
._1d{width:42.393600px;}
._22{width:51.667200px;}
._23{width:53.421120px;}
._11{width:104.276640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.000000px;}
.y4{bottom:69.516000px;}
.y96{bottom:110.376000px;}
.y8a{bottom:111.276000px;}
.y79{bottom:112.896000px;}
.y6c{bottom:113.796000px;}
.y89{bottom:115.056000px;}
.y95{bottom:124.956000px;}
.y88{bottom:125.136000px;}
.yaa{bottom:125.856000px;}
.yc9{bottom:127.116000px;}
.y94{bottom:128.736000px;}
.ya9{bottom:129.636000px;}
.y3c{bottom:129.816000px;}
.y78{bottom:134.676000px;}
.y6b{bottom:135.576000px;}
.y93{bottom:138.816000px;}
.y87{bottom:139.716000px;}
.yb6{bottom:140.436000px;}
.y86{bottom:143.496000px;}
.yb5{bottom:144.216000px;}
.y3b{bottom:151.590000px;}
.y92{bottom:153.390000px;}
.y85{bottom:154.290000px;}
.yb4{bottom:155.190000px;}
.y9b{bottom:155.550000px;}
.yc8{bottom:155.910000px;}
.y77{bottom:156.450000px;}
.y91{bottom:157.170000px;}
.y6a{bottom:157.350000px;}
.y84{bottom:158.070000px;}
.y90{bottom:167.250000px;}
.y83{bottom:168.150000px;}
.y98{bottom:169.230000px;}
.yb3{bottom:169.770000px;}
.ya8{bottom:170.130000px;}
.y3a{bottom:173.550000px;}
.yc7{bottom:177.690000px;}
.y76{bottom:178.230000px;}
.y69{bottom:179.130000px;}
.y8f{bottom:181.830000px;}
.y82{bottom:182.730000px;}
.yb2{bottom:184.350000px;}
.y8e{bottom:185.610000px;}
.y81{bottom:186.510000px;}
.yb1{bottom:188.130000px;}
.y39{bottom:195.330000px;}
.ya6{bottom:195.690000px;}
.y80{bottom:197.310000px;}
.y8d{bottom:197.670000px;}
.yb0{bottom:199.110000px;}
.yc6{bottom:199.470000px;}
.y75{bottom:200.190000px;}
.y68{bottom:201.090000px;}
.yaf{bottom:202.890000px;}
.ya5{bottom:210.270000px;}
.y7f{bottom:213.150000px;}
.ya4{bottom:214.050000px;}
.yae{bottom:214.950000px;}
.y38{bottom:217.110000px;}
.yc5{bottom:221.250000px;}
.y74{bottom:222.150000px;}
.y67{bottom:222.870000px;}
.ya3{bottom:226.110000px;}
.y37{bottom:238.890000px;}
.yc4{bottom:243.030000px;}
.y73{bottom:244.110000px;}
.y66{bottom:244.650000px;}
.y36{bottom:257.790000px;}
.yc3{bottom:264.990000px;}
.y72{bottom:265.890000px;}
.y65{bottom:266.430000px;}
.y35{bottom:272.370000px;}
.yc2{bottom:286.770000px;}
.y34{bottom:286.950000px;}
.y71{bottom:287.850000px;}
.y64{bottom:288.210000px;}
.ya2{bottom:294.150000px;}
.y33{bottom:304.230000px;}
.yc1{bottom:308.550000px;}
.y70{bottom:309.810000px;}
.y63{bottom:310.170000px;}
.y8c{bottom:316.110000px;}
.y32{bottom:321.510000px;}
.yc0{bottom:330.330000px;}
.y6f{bottom:331.590000px;}
.y62{bottom:331.950000px;}
.y31{bottom:338.655000px;}
.ybf{bottom:352.335000px;}
.y6e{bottom:353.415000px;}
.y61{bottom:353.775000px;}
.y30{bottom:355.935000px;}
.ya7{bottom:359.715000px;}
.y2f{bottom:373.215000px;}
.ybe{bottom:374.295000px;}
.y6d{bottom:375.375000px;}
.y60{bottom:375.555000px;}
.yad{bottom:381.495000px;}
.y2e{bottom:390.495000px;}
.ybd{bottom:396.255000px;}
.y5f{bottom:397.515000px;}
.y2d{bottom:407.775000px;}
.ybc{bottom:418.395000px;}
.y5e{bottom:419.295000px;}
.y2c{bottom:425.055000px;}
.y7e{bottom:425.235000px;}
.ybb{bottom:440.355000px;}
.y5d{bottom:441.075000px;}
.y2b{bottom:442.155000px;}
.y2a{bottom:459.435000px;}
.yba{bottom:462.315000px;}
.y5c{bottom:462.855000px;}
.y29{bottom:476.715000px;}
.yb9{bottom:484.455000px;}
.y5b{bottom:484.635000px;}
.ya1{bottom:490.575000px;}
.y28{bottom:493.995000px;}
.yb8{bottom:506.415000px;}
.y5a{bottom:506.595000px;}
.y27{bottom:511.275000px;}
.yac{bottom:512.535000px;}
.y59{bottom:528.375000px;}
.y26{bottom:528.555000px;}
.y25{bottom:545.655000px;}
.y58{bottom:550.155000px;}
.y9a{bottom:556.095000px;}
.y24{bottom:562.935000px;}
.y57{bottom:571.935000px;}
.y7d{bottom:577.875000px;}
.y23{bottom:580.215000px;}
.y56{bottom:593.895000px;}
.y22{bottom:597.495000px;}
.y21{bottom:614.805000px;}
.y55{bottom:615.705000px;}
.y20{bottom:632.085000px;}
.y54{bottom:637.485000px;}
.y1f{bottom:649.185000px;}
.y53{bottom:659.265000px;}
.y7c{bottom:665.205000px;}
.y1e{bottom:666.465000px;}
.y52{bottom:681.045000px;}
.y1d{bottom:683.745000px;}
.ya0{bottom:686.985000px;}
.y1c{bottom:701.025000px;}
.y51{bottom:703.005000px;}
.y9c{bottom:708.945000px;}
.y1b{bottom:718.305000px;}
.y50{bottom:724.785000px;}
.y1a{bottom:735.405000px;}
.y4f{bottom:746.565000px;}
.y19{bottom:752.685000px;}
.y4e{bottom:768.345000px;}
.y18{bottom:769.965000px;}
.y7b{bottom:774.285000px;}
.y17{bottom:787.245000px;}
.y4d{bottom:790.125000px;}
.y16{bottom:804.525000px;}
.y4c{bottom:812.085000px;}
.y9e{bottom:818.025000px;}
.y15{bottom:824.865000px;}
.y4b{bottom:833.865000px;}
.y97{bottom:839.805000px;}
.y14{bottom:846.105000px;}
.y4a{bottom:855.645000px;}
.yb7{bottom:861.585000px;}
.y13{bottom:865.905000px;}
.y49{bottom:877.470000px;}
.y9f{bottom:883.410000px;}
.y12{bottom:886.290000px;}
.y48{bottom:899.430000px;}
.yab{bottom:905.370000px;}
.y11{bottom:908.250000px;}
.y47{bottom:921.210000px;}
.y10{bottom:928.230000px;}
.y46{bottom:942.990000px;}
.yf{bottom:945.870000px;}
.y99{bottom:948.930000px;}
.y45{bottom:964.770000px;}
.ye{bottom:967.650000px;}
.y44{bottom:986.550000px;}
.yd{bottom:987.630000px;}
.yc{bottom:1006.710000px;}
.y43{bottom:1008.510000px;}
.y7a{bottom:1014.450000px;}
.y42{bottom:1030.290000px;}
.yb{bottom:1032.450000px;}
.y41{bottom:1052.070000px;}
.ya{bottom:1055.130000px;}
.y9{bottom:1070.430000px;}
.y40{bottom:1073.850000px;}
.y9d{bottom:1079.790000px;}
.y8{bottom:1088.070000px;}
.y3f{bottom:1095.810000px;}
.y8b{bottom:1101.750000px;}
.y7{bottom:1105.350000px;}
.y3e{bottom:1117.590000px;}
.y6{bottom:1123.170000px;}
.y3d{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1165.500000px;}
.y1{bottom:1181.160000px;}
.h2{height:27.720000px;}
.h13{height:30.077578px;}
.h9{height:34.036523px;}
.h12{height:34.684453px;}
.h5{height:40.066523px;}
.h6{height:42.164648px;}
.hc{height:46.736719px;}
.h10{height:47.980898px;}
.he{height:49.255313px;}
.hf{height:49.394180px;}
.hd{height:49.634648px;}
.h3{height:50.520937px;}
.hb{height:54.596250px;}
.ha{height:54.864844px;}
.h11{height:55.016719px;}
.h8{height:59.439023px;}
.h7{height:61.189805px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:627.405000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x1{left:108.036000px;}
.x1d{left:111.815987px;}
.x28{left:115.595987px;}
.xa{left:120.275987px;}
.x8{left:125.675987px;}
.x11{left:129.275987px;}
.x6{left:134.855987px;}
.x3c{left:136.835973px;}
.x4c{left:140.075987px;}
.x3d{left:147.275987px;}
.x3{left:161.130000px;}
.x10{left:189.029987px;}
.x29{left:199.649987px;}
.x42{left:223.949973px;}
.x36{left:232.229973px;}
.x43{left:234.389987px;}
.x2c{left:240.509973px;}
.x37{left:242.669987px;}
.x2d{left:250.949987px;}
.x30{left:257.969973px;}
.x18{left:260.669973px;}
.x19{left:265.889987px;}
.x31{left:268.409987px;}
.x7{left:281.054987px;}
.xc{left:284.114987px;}
.xd{left:297.974987px;}
.x1c{left:324.074987px;}
.x16{left:340.454973px;}
.x17{left:345.674987px;}
.x32{left:346.934973px;}
.x48{left:351.974973px;}
.x9{left:354.494987px;}
.x33{left:357.374987px;}
.x49{left:362.414987px;}
.xb{left:395.894987px;}
.xe{left:418.574987px;}
.xf{left:420.194987px;}
.x5{left:446.474987px;}
.x12{left:455.474973px;}
.x13{left:460.694987px;}
.x22{left:471.704973px;}
.x3a{left:473.324973px;}
.x23{left:476.924987px;}
.x4a{left:478.904973px;}
.x3b{left:483.764987px;}
.x4b{left:489.344987px;}
.x1e{left:493.844973px;}
.x1f{left:499.064987px;}
.x38{left:506.804973px;}
.x24{left:515.804973px;}
.x39{left:517.244987px;}
.x25{left:521.024987px;}
.x2e{left:526.424973px;}
.x2f{left:536.864987px;}
.x46{left:541.184973px;}
.x47{left:551.624987px;}
.x1a{left:602.744973px;}
.x1b{left:607.964987px;}
.x40{left:635.864973px;}
.x44{left:639.644973px;}
.x41{left:646.304987px;}
.x45{left:650.084987px;}
.x14{left:667.769973px;}
.x15{left:672.989987px;}
.x3e{left:695.669973px;}
.x3f{left:706.109987px;}
.x34{left:707.549973px;}
.x35{left:717.989987px;}
.x20{left:720.509973px;}
.x21{left:725.729987px;}
.x26{left:731.489973px;}
.x27{left:741.929987px;}
.x2a{left:774.689973px;}
.x2b{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.188267pt;}
.ls9{letter-spacing:-0.090667pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.019840pt;}
.ls14{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128640pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.549120pt;}
.lsf{letter-spacing:1.189120pt;}
.ls11{letter-spacing:2.469120pt;}
.ls10{letter-spacing:5.029120pt;}
.ls16{letter-spacing:6.949120pt;}
.ls18{letter-spacing:7.589120pt;}
.ls15{letter-spacing:8.229120pt;}
.ls1a{letter-spacing:8.869120pt;}
.ls1b{letter-spacing:9.509120pt;}
.ls12{letter-spacing:10.149120pt;}
.lsd{letter-spacing:14.991360pt;}
.lse{letter-spacing:23.951360pt;}
.lsb{letter-spacing:35.450027pt;}
.lsa{letter-spacing:35.471360pt;}
.ls1d{letter-spacing:44.410027pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.351467pt;}
.ws7{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.wsb{word-spacing:-9.710720pt;}
.wsa{word-spacing:-9.690880pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-11.520000pt;}
._16{margin-left:-4.265387pt;}
._c{margin-left:-2.989867pt;}
._9{margin-left:-1.912320pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.077547pt;}
._8{width:2.698667pt;}
._21{width:3.601493pt;}
._b{width:4.591147pt;}
._2{width:5.683840pt;}
._5{width:7.156053pt;}
._6{width:8.643413pt;}
._7{width:9.713280pt;}
._f{width:10.980693pt;}
._10{width:11.914027pt;}
._17{width:12.894720pt;}
._e{width:14.183040pt;}
._d{width:15.457920pt;}
._18{width:16.519680pt;}
._3{width:17.423360pt;}
._4{width:18.364373pt;}
._15{width:19.320747pt;}
._a{width:20.929280pt;}
._1c{width:22.170880pt;}
._26{width:23.080960pt;}
._1b{width:24.054400pt;}
._13{width:25.082880pt;}
._14{width:26.229760pt;}
._1a{width:27.143680pt;}
._19{width:28.323840pt;}
._25{width:29.445120pt;}
._24{width:30.438400pt;}
._20{width:32.214187pt;}
._27{width:33.914880pt;}
._1e{width:35.622400pt;}
._1f{width:36.592640pt;}
._1d{width:37.683200pt;}
._22{width:45.926400pt;}
._23{width:47.485440pt;}
._11{width:92.690347pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.000000pt;}
.y4{bottom:61.792000pt;}
.y96{bottom:98.112000pt;}
.y8a{bottom:98.912000pt;}
.y79{bottom:100.352000pt;}
.y6c{bottom:101.152000pt;}
.y89{bottom:102.272000pt;}
.y95{bottom:111.072000pt;}
.y88{bottom:111.232000pt;}
.yaa{bottom:111.872000pt;}
.yc9{bottom:112.992000pt;}
.y94{bottom:114.432000pt;}
.ya9{bottom:115.232000pt;}
.y3c{bottom:115.392000pt;}
.y78{bottom:119.712000pt;}
.y6b{bottom:120.512000pt;}
.y93{bottom:123.392000pt;}
.y87{bottom:124.192000pt;}
.yb6{bottom:124.832000pt;}
.y86{bottom:127.552000pt;}
.yb5{bottom:128.192000pt;}
.y3b{bottom:134.746667pt;}
.y92{bottom:136.346667pt;}
.y85{bottom:137.146667pt;}
.yb4{bottom:137.946667pt;}
.y9b{bottom:138.266667pt;}
.yc8{bottom:138.586667pt;}
.y77{bottom:139.066667pt;}
.y91{bottom:139.706667pt;}
.y6a{bottom:139.866667pt;}
.y84{bottom:140.506667pt;}
.y90{bottom:148.666667pt;}
.y83{bottom:149.466667pt;}
.y98{bottom:150.426667pt;}
.yb3{bottom:150.906667pt;}
.ya8{bottom:151.226667pt;}
.y3a{bottom:154.266667pt;}
.yc7{bottom:157.946667pt;}
.y76{bottom:158.426667pt;}
.y69{bottom:159.226667pt;}
.y8f{bottom:161.626667pt;}
.y82{bottom:162.426667pt;}
.yb2{bottom:163.866667pt;}
.y8e{bottom:164.986667pt;}
.y81{bottom:165.786667pt;}
.yb1{bottom:167.226667pt;}
.y39{bottom:173.626667pt;}
.ya6{bottom:173.946667pt;}
.y80{bottom:175.386667pt;}
.y8d{bottom:175.706667pt;}
.yb0{bottom:176.986667pt;}
.yc6{bottom:177.306667pt;}
.y75{bottom:177.946667pt;}
.y68{bottom:178.746667pt;}
.yaf{bottom:180.346667pt;}
.ya5{bottom:186.906667pt;}
.y7f{bottom:189.466667pt;}
.ya4{bottom:190.266667pt;}
.yae{bottom:191.066667pt;}
.y38{bottom:192.986667pt;}
.yc5{bottom:196.666667pt;}
.y74{bottom:197.466667pt;}
.y67{bottom:198.106667pt;}
.ya3{bottom:200.986667pt;}
.y37{bottom:212.346667pt;}
.yc4{bottom:216.026667pt;}
.y73{bottom:216.986667pt;}
.y66{bottom:217.466667pt;}
.y36{bottom:229.146667pt;}
.yc3{bottom:235.546667pt;}
.y72{bottom:236.346667pt;}
.y65{bottom:236.826667pt;}
.y35{bottom:242.106667pt;}
.yc2{bottom:254.906667pt;}
.y34{bottom:255.066667pt;}
.y71{bottom:255.866667pt;}
.y64{bottom:256.186667pt;}
.ya2{bottom:261.466667pt;}
.y33{bottom:270.426667pt;}
.yc1{bottom:274.266667pt;}
.y70{bottom:275.386667pt;}
.y63{bottom:275.706667pt;}
.y8c{bottom:280.986667pt;}
.y32{bottom:285.786667pt;}
.yc0{bottom:293.626667pt;}
.y6f{bottom:294.746667pt;}
.y62{bottom:295.066667pt;}
.y31{bottom:301.026667pt;}
.ybf{bottom:313.186667pt;}
.y6e{bottom:314.146667pt;}
.y61{bottom:314.466667pt;}
.y30{bottom:316.386667pt;}
.ya7{bottom:319.746667pt;}
.y2f{bottom:331.746667pt;}
.ybe{bottom:332.706667pt;}
.y6d{bottom:333.666667pt;}
.y60{bottom:333.826667pt;}
.yad{bottom:339.106667pt;}
.y2e{bottom:347.106667pt;}
.ybd{bottom:352.226667pt;}
.y5f{bottom:353.346667pt;}
.y2d{bottom:362.466667pt;}
.ybc{bottom:371.906667pt;}
.y5e{bottom:372.706667pt;}
.y2c{bottom:377.826667pt;}
.y7e{bottom:377.986667pt;}
.ybb{bottom:391.426667pt;}
.y5d{bottom:392.066667pt;}
.y2b{bottom:393.026667pt;}
.y2a{bottom:408.386667pt;}
.yba{bottom:410.946667pt;}
.y5c{bottom:411.426667pt;}
.y29{bottom:423.746667pt;}
.yb9{bottom:430.626667pt;}
.y5b{bottom:430.786667pt;}
.ya1{bottom:436.066667pt;}
.y28{bottom:439.106667pt;}
.yb8{bottom:450.146667pt;}
.y5a{bottom:450.306667pt;}
.y27{bottom:454.466667pt;}
.yac{bottom:455.586667pt;}
.y59{bottom:469.666667pt;}
.y26{bottom:469.826667pt;}
.y25{bottom:485.026667pt;}
.y58{bottom:489.026667pt;}
.y9a{bottom:494.306667pt;}
.y24{bottom:500.386667pt;}
.y57{bottom:508.386667pt;}
.y7d{bottom:513.666667pt;}
.y23{bottom:515.746667pt;}
.y56{bottom:527.906667pt;}
.y22{bottom:531.106667pt;}
.y21{bottom:546.493333pt;}
.y55{bottom:547.293333pt;}
.y20{bottom:561.853333pt;}
.y54{bottom:566.653333pt;}
.y1f{bottom:577.053333pt;}
.y53{bottom:586.013333pt;}
.y7c{bottom:591.293333pt;}
.y1e{bottom:592.413333pt;}
.y52{bottom:605.373333pt;}
.y1d{bottom:607.773333pt;}
.ya0{bottom:610.653333pt;}
.y1c{bottom:623.133333pt;}
.y51{bottom:624.893333pt;}
.y9c{bottom:630.173333pt;}
.y1b{bottom:638.493333pt;}
.y50{bottom:644.253333pt;}
.y1a{bottom:653.693333pt;}
.y4f{bottom:663.613333pt;}
.y19{bottom:669.053333pt;}
.y4e{bottom:682.973333pt;}
.y18{bottom:684.413333pt;}
.y7b{bottom:688.253333pt;}
.y17{bottom:699.773333pt;}
.y4d{bottom:702.333333pt;}
.y16{bottom:715.133333pt;}
.y4c{bottom:721.853333pt;}
.y9e{bottom:727.133333pt;}
.y15{bottom:733.213333pt;}
.y4b{bottom:741.213333pt;}
.y97{bottom:746.493333pt;}
.y14{bottom:752.093333pt;}
.y4a{bottom:760.573333pt;}
.yb7{bottom:765.853333pt;}
.y13{bottom:769.693333pt;}
.y49{bottom:779.973333pt;}
.y9f{bottom:785.253333pt;}
.y12{bottom:787.813333pt;}
.y48{bottom:799.493333pt;}
.yab{bottom:804.773333pt;}
.y11{bottom:807.333333pt;}
.y47{bottom:818.853333pt;}
.y10{bottom:825.093333pt;}
.y46{bottom:838.213333pt;}
.yf{bottom:840.773333pt;}
.y99{bottom:843.493333pt;}
.y45{bottom:857.573333pt;}
.ye{bottom:860.133333pt;}
.y44{bottom:876.933333pt;}
.yd{bottom:877.893333pt;}
.yc{bottom:894.853333pt;}
.y43{bottom:896.453333pt;}
.y7a{bottom:901.733333pt;}
.y42{bottom:915.813333pt;}
.yb{bottom:917.733333pt;}
.y41{bottom:935.173333pt;}
.ya{bottom:937.893333pt;}
.y9{bottom:951.493333pt;}
.y40{bottom:954.533333pt;}
.y9d{bottom:959.813333pt;}
.y8{bottom:967.173333pt;}
.y3f{bottom:974.053333pt;}
.y8b{bottom:979.333333pt;}
.y7{bottom:982.533333pt;}
.y3e{bottom:993.413333pt;}
.y6{bottom:998.373333pt;}
.y3d{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1036.000000pt;}
.y1{bottom:1049.920000pt;}
.h2{height:24.640000pt;}
.h13{height:26.735625pt;}
.h9{height:30.254687pt;}
.h12{height:30.830625pt;}
.h5{height:35.614687pt;}
.h6{height:37.479688pt;}
.hc{height:41.543750pt;}
.h10{height:42.649687pt;}
.he{height:43.782500pt;}
.hf{height:43.905937pt;}
.hd{height:44.119688pt;}
.h3{height:44.907500pt;}
.hb{height:48.530000pt;}
.ha{height:48.768750pt;}
.h11{height:48.903750pt;}
.h8{height:52.834688pt;}
.h7{height:54.390938pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:557.693333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x1{left:96.032000pt;}
.x1d{left:99.391988pt;}
.x28{left:102.751988pt;}
.xa{left:106.911988pt;}
.x8{left:111.711988pt;}
.x11{left:114.911988pt;}
.x6{left:119.871988pt;}
.x3c{left:121.631976pt;}
.x4c{left:124.511988pt;}
.x3d{left:130.911988pt;}
.x3{left:143.226667pt;}
.x10{left:168.026655pt;}
.x29{left:177.466655pt;}
.x42{left:199.066643pt;}
.x36{left:206.426643pt;}
.x43{left:208.346655pt;}
.x2c{left:213.786643pt;}
.x37{left:215.706655pt;}
.x2d{left:223.066655pt;}
.x30{left:229.306643pt;}
.x18{left:231.706643pt;}
.x19{left:236.346655pt;}
.x31{left:238.586655pt;}
.x7{left:249.826655pt;}
.xc{left:252.546655pt;}
.xd{left:264.866655pt;}
.x1c{left:288.066655pt;}
.x16{left:302.626643pt;}
.x17{left:307.266655pt;}
.x32{left:308.386643pt;}
.x48{left:312.866643pt;}
.x9{left:315.106655pt;}
.x33{left:317.666655pt;}
.x49{left:322.146655pt;}
.xb{left:351.906655pt;}
.xe{left:372.066655pt;}
.xf{left:373.506655pt;}
.x5{left:396.866655pt;}
.x12{left:404.866643pt;}
.x13{left:409.506655pt;}
.x22{left:419.293310pt;}
.x3a{left:420.733310pt;}
.x23{left:423.933322pt;}
.x4a{left:425.693310pt;}
.x3b{left:430.013322pt;}
.x4b{left:434.973322pt;}
.x1e{left:438.973310pt;}
.x1f{left:443.613322pt;}
.x38{left:450.493310pt;}
.x24{left:458.493310pt;}
.x39{left:459.773322pt;}
.x25{left:463.133322pt;}
.x2e{left:467.933310pt;}
.x2f{left:477.213322pt;}
.x46{left:481.053310pt;}
.x47{left:490.333322pt;}
.x1a{left:535.773310pt;}
.x1b{left:540.413322pt;}
.x40{left:565.213310pt;}
.x44{left:568.573310pt;}
.x41{left:574.493322pt;}
.x45{left:577.853322pt;}
.x14{left:593.573310pt;}
.x15{left:598.213322pt;}
.x3e{left:618.373310pt;}
.x3f{left:627.653322pt;}
.x34{left:628.933310pt;}
.x35{left:638.213322pt;}
.x20{left:640.453310pt;}
.x21{left:645.093322pt;}
.x26{left:650.213310pt;}
.x27{left:659.493322pt;}
.x2a{left:688.613310pt;}
.x2b{left:697.893322pt;}
}




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