
    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_3f666606301f4907d4bdb896.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_1ddb5d589620fa50e7d6e628.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1b78e933649a442a5e1841b9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4d4d5e78dbbe0caddd9cc8df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_75b809ea95421d7481253586.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_14e79da95734ab059874499c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_6ba6a6abb19328000f9eb113.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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9338fd8ddace941b0b64ac12.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.081543;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_94c0d1467012e3633a942871.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.081543;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;}
.m2{transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,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:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls3{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.042697px;}
.lsc{letter-spacing:0.078212px;}
.lsd{letter-spacing:0.100558px;}
.ls6{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.900000px;}
.ls5{letter-spacing:12.581280px;}
.ls8{letter-spacing:21.221280px;}
.lsf{letter-spacing:25.344000px;}
.ls9{letter-spacing:33.984000px;}
.lse{letter-spacing:61.344000px;}
.lsa{letter-spacing:129.197280px;}
.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;}
}
.ws1{word-spacing:-108.000000px;}
.ws6{word-spacing:-21.420000px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-13.500000px;}
.ws8{word-spacing:-11.402727px;}
.ws9{word-spacing:-11.367212px;}
.ws5{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-4.453920px;}
._4{margin-left:-3.052320px;}
._2{margin-left:-1.258560px;}
._0{width:1.008000px;}
._3{width:2.520000px;}
._6{width:3.960000px;}
._5{width:5.508000px;}
._a{width:6.552000px;}
._b{width:7.644000px;}
._16{width:8.824320px;}
._15{width:9.898560px;}
._e{width:10.944000px;}
._13{width:12.384000px;}
._14{width:13.536000px;}
._1d{width:14.616000px;}
._11{width:15.696000px;}
._10{width:16.704000px;}
._1{width:17.818560px;}
._8{width:19.368000px;}
._9{width:20.880000px;}
._12{width:21.957120px;}
._f{width:23.040000px;}
._1b{width:24.480000px;}
._1f{width:25.488000px;}
._1c{width:27.247680px;}
._d{width:28.656000px;}
._c{width:30.418560px;}
._1e{width:32.184000px;}
._17{width:33.264000px;}
._18{width:34.488000px;}
._1a{width:35.498880px;}
._19{width:36.682560px;}
._20{width:174.864000px;}
._21{width:176.184000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:16.041406px;}
.fs8{font-size:18.000000px;}
.fsc{font-size:22.027006px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:55.785787px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:4.070215px;}
.ya4{bottom:5.566614px;}
.y95{bottom:6.045461px;}
.ya6{bottom:6.105318px;}
.y8e{bottom:7.182725px;}
.y92{bottom:7.302436px;}
.y97{bottom:8.200279px;}
.ya1{bottom:8.319993px;}
.y9b{bottom:10.474807px;}
.y99{bottom:12.629622px;}
.y8d{bottom:21.618001px;}
.y91{bottom:21.727735px;}
.ya3{bottom:23.942405px;}
.y9d{bottom:26.466335px;}
.ya0{bottom:26.695783px;}
.y94{bottom:28.431603px;}
.y90{bottom:44.128839px;}
.y4{bottom:65.160000px;}
.y3{bottom:69.696000px;}
.y2{bottom:88.596000px;}
.y74{bottom:136.116000px;}
.y40{bottom:141.336000px;}
.y62{bottom:143.856000px;}
.y21{bottom:154.110000px;}
.ybd{bottom:156.810000px;}
.y73{bottom:167.070000px;}
.y3f{bottom:172.290000px;}
.y61{bottom:174.810000px;}
.yd2{bottom:177.510000px;}
.y20{bottom:187.590000px;}
.ybc{bottom:187.770000px;}
.y72{bottom:198.210000px;}
.y3e{bottom:203.430000px;}
.y60{bottom:208.290000px;}
.yd1{bottom:208.470000px;}
.ybb{bottom:218.910000px;}
.y1f{bottom:221.430000px;}
.y71{bottom:229.170000px;}
.y3d{bottom:234.390000px;}
.y5f{bottom:239.610000px;}
.yba{bottom:249.870000px;}
.y1e{bottom:252.570000px;}
.y70{bottom:260.310000px;}
.y3c{bottom:265.350000px;}
.y5e{bottom:265.530000px;}
.yd0{bottom:270.570000px;}
.yb9{bottom:281.010000px;}
.y1d{bottom:283.530000px;}
.y6f{bottom:291.270000px;}
.y5d{bottom:291.450000px;}
.y3b{bottom:296.490000px;}
.ycf{bottom:301.710000px;}
.yb8{bottom:311.970000px;}
.y1c{bottom:314.670000px;}
.y5c{bottom:317.370000px;}
.y6e{bottom:322.410000px;}
.y3a{bottom:327.450000px;}
.yce{bottom:332.670000px;}
.y5b{bottom:343.155000px;}
.yb7{bottom:345.315000px;}
.y1b{bottom:345.675000px;}
.y6d{bottom:353.415000px;}
.y39{bottom:358.635000px;}
.ycd{bottom:363.855000px;}
.y5a{bottom:369.075000px;}
.y1a{bottom:376.815000px;}
.y6c{bottom:384.555000px;}
.y8b{bottom:385.996323px;}
.y38{bottom:389.595000px;}
.ycc{bottom:394.815000px;}
.y59{bottom:394.995000px;}
.y8a{bottom:395.214146px;}
.yb6{bottom:402.735000px;}
.y89{bottom:404.491825px;}
.y19{bottom:407.775000px;}
.y88{bottom:413.709648px;}
.y6b{bottom:415.515000px;}
.y37{bottom:420.735000px;}
.y58{bottom:420.915000px;}
.y87{bottom:422.987327px;}
.ycb{bottom:425.955000px;}
.yb5{bottom:428.655000px;}
.y86{bottom:432.205151px;}
.y18{bottom:438.915000px;}
.y85{bottom:441.482830px;}
.y57{bottom:446.655000px;}
.y84{bottom:450.715617px;}
.y36{bottom:451.695000px;}
.yb4{bottom:455.655000px;}
.yca{bottom:456.915000px;}
.y83{bottom:459.993296px;}
.y7f{bottom:462.345000px;}
.y82{bottom:469.211119px;}
.ya5{bottom:469.765638px;}
.y17{bottom:469.875000px;}
.y56{bottom:472.575000px;}
.y6a{bottom:477.615000px;}
.y81{bottom:478.488798px;}
.y35{bottom:482.835000px;}
.yb3{bottom:484.095000px;}
.y80{bottom:487.706621px;}
.yc9{bottom:488.055000px;}
.y55{bottom:498.495000px;}
.y16{bottom:500.835000px;}
.y69{bottom:508.755000px;}
.yb2{bottom:512.535000px;}
.y34{bottom:513.795000px;}
.yc8{bottom:521.355000px;}
.y54{bottom:524.235000px;}
.y15{bottom:531.975000px;}
.y68{bottom:539.715000px;}
.yb1{bottom:540.975000px;}
.ya2{bottom:541.305022px;}
.y33{bottom:544.935000px;}
.y53{bottom:550.155000px;}
.yc7{bottom:557.535000px;}
.y14{bottom:562.935000px;}
.yb0{bottom:569.415000px;}
.y67{bottom:570.855000px;}
.y32{bottom:575.895000px;}
.y52{bottom:576.075000px;}
.yc6{bottom:593.715000px;}
.y13{bottom:594.075000px;}
.yaf{bottom:597.855000px;}
.y9c{bottom:599.544891px;}
.y66{bottom:601.815000px;}
.y51{bottom:601.995000px;}
.y31{bottom:607.065000px;}
.y12{bottom:625.065000px;}
.yae{bottom:626.325000px;}
.y50{bottom:627.765000px;}
.y65{bottom:632.985000px;}
.y30{bottom:638.025000px;}
.y9f{bottom:640.915344px;}
.y9a{bottom:648.816364px;}
.y4f{bottom:653.685000px;}
.yad{bottom:654.945000px;}
.y11{bottom:656.205000px;}
.yc5{bottom:658.725000px;}
.y64{bottom:663.945000px;}
.y2f{bottom:669.165000px;}
.y4e{bottom:679.605000px;}
.yac{bottom:683.385000px;}
.y10{bottom:687.165000px;}
.yc4{bottom:689.865000px;}
.y7e{bottom:695.085000px;}
.y63{bottom:697.245000px;}
.y2e{bottom:700.125000px;}
.y4d{bottom:705.525000px;}
.yab{bottom:711.825000px;}
.yf{bottom:718.305000px;}
.yc3{bottom:720.825000px;}
.y96{bottom:725.387132px;}
.y7d{bottom:726.045000px;}
.y93{bottom:728.379944px;}
.y2d{bottom:731.265000px;}
.y98{bottom:738.735006px;}
.yaa{bottom:740.265000px;}
.ye{bottom:749.265000px;}
.yc2{bottom:751.965000px;}
.y7c{bottom:757.005000px;}
.y4c{bottom:757.185000px;}
.y2c{bottom:762.225000px;}
.ya9{bottom:768.705000px;}
.yd{bottom:782.745000px;}
.yc1{bottom:782.925000px;}
.y4b{bottom:783.105000px;}
.y7b{bottom:788.145000px;}
.y2b{bottom:793.365000px;}
.ya8{bottom:797.145000px;}
.y8c{bottom:805.594162px;}
.y4a{bottom:809.025000px;}
.yc{bottom:810.645000px;}
.yc0{bottom:814.065000px;}
.y7a{bottom:819.105000px;}
.y2a{bottom:824.325000px;}
.ya7{bottom:825.585000px;}
.yb{bottom:834.765000px;}
.ybf{bottom:847.365000px;}
.y79{bottom:850.245000px;}
.y29{bottom:855.465000px;}
.y49{bottom:860.685000px;}
.ya{bottom:865.725000px;}
.y8f{bottom:873.959684px;}
.y78{bottom:881.250000px;}
.ybe{bottom:883.590000px;}
.y28{bottom:886.470000px;}
.y48{bottom:886.650000px;}
.y9{bottom:903.750000px;}
.y77{bottom:912.390000px;}
.y47{bottom:912.570000px;}
.y27{bottom:917.610000px;}
.y8{bottom:930.210000px;}
.y46{bottom:938.310000px;}
.y76{bottom:943.350000px;}
.y26{bottom:948.570000px;}
.y45{bottom:964.230000px;}
.y7{bottom:971.070000px;}
.yd4{bottom:974.490000px;}
.y75{bottom:976.830000px;}
.y25{bottom:979.710000px;}
.y44{bottom:990.150000px;}
.yd3{bottom:1007.790000px;}
.y24{bottom:1010.670000px;}
.y43{bottom:1015.890000px;}
.y6{bottom:1017.510000px;}
.y23{bottom:1041.810000px;}
.y5{bottom:1064.130000px;}
.y42{bottom:1067.730000px;}
.y22{bottom:1072.770000px;}
.y41{bottom:1085.190000px;}
.y1{bottom:1093.290000px;}
.hc{height:13.016602px;}
.h11{height:13.856078px;}
.h14{height:19.026257px;}
.h1d{height:19.213781px;}
.h17{height:21.308743px;}
.h19{height:24.780390px;}
.h18{height:29.090021px;}
.h9{height:30.198516px;}
.h7{height:35.261367px;}
.h12{height:35.805868px;}
.h1c{height:37.050870px;}
.h1a{height:39.576793px;}
.h1b{height:39.804247px;}
.h16{height:41.540067px;}
.h3{height:43.215117px;}
.h2{height:47.901094px;}
.h13{height:48.186063px;}
.he{height:50.800781px;}
.hb{height:52.066406px;}
.hf{height:52.417969px;}
.h8{height:52.628906px;}
.h15{height:58.489292px;}
.ha{height:59.436914px;}
.h1e{height:60.917695px;}
.hd{height:61.329023px;}
.h6{height:68.340586px;}
.h4{height:76.201172px;}
.h5{height:78.099609px;}
.h10{height:491.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:95.355535px;}
.w6{width:100.572903px;}
.w8{width:109.402297px;}
.w9{width:116.798347px;}
.w7{width:124.939735px;}
.wc{width:134.227798px;}
.wa{width:136.062477px;}
.w5{width:137.151818px;}
.wb{width:148.045225px;}
.w4{width:167.481357px;}
.w3{width:575.993679px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:4.128028px;}
.x1d{left:6.765379px;}
.x11{left:10.148069px;}
.x1b{left:14.849434px;}
.x18{left:21.098810px;}
.x19{left:24.653500px;}
.x23{left:28.380192px;}
.x20{left:32.909556px;}
.x14{left:34.973570px;}
.x24{left:40.534941px;}
.x16{left:68.585465px;}
.x12{left:83.721567px;}
.x1{left:108.035987px;}
.xd{left:133.775987px;}
.x6{left:134.855987px;}
.x4{left:139.175987px;}
.x28{left:141.875987px;}
.x27{left:183.809987px;}
.xe{left:197.100000px;}
.x3{left:206.669987px;}
.x22{left:212.121435px;}
.x1e{left:221.466832px;}
.x5{left:225.749987px;}
.x25{left:231.901569px;}
.x7{left:238.529987px;}
.x17{left:239.584288px;}
.x8{left:261.029987px;}
.xf{left:276.659096px;}
.xa{left:285.374987px;}
.xc{left:304.634987px;}
.x9{left:312.734987px;}
.x10{left:374.213422px;}
.x1a{left:397.261578px;}
.x13{left:400.472266px;}
.x1f{left:401.733608px;}
.xb{left:445.574987px;}
.x1c{left:588.541207px;}
.x21{left:593.586574px;}
.x2{left:698.729987px;}
.x26{left:783.149987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls3{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.037953pt;}
.lsc{letter-spacing:0.069522pt;}
.lsd{letter-spacing:0.089385pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.800000pt;}
.ls5{letter-spacing:11.183360pt;}
.ls8{letter-spacing:18.863360pt;}
.lsf{letter-spacing:22.528000pt;}
.ls9{letter-spacing:30.208000pt;}
.lse{letter-spacing:54.528000pt;}
.lsa{letter-spacing:114.842027pt;}
.ws1{word-spacing:-96.000000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.135757pt;}
.ws9{word-spacing:-10.104188pt;}
.ws5{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-3.959040pt;}
._4{margin-left:-2.713173pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.896000pt;}
._3{width:2.240000pt;}
._6{width:3.520000pt;}
._5{width:4.896000pt;}
._a{width:5.824000pt;}
._b{width:6.794667pt;}
._16{width:7.843840pt;}
._15{width:8.798720pt;}
._e{width:9.728000pt;}
._13{width:11.008000pt;}
._14{width:12.032000pt;}
._1d{width:12.992000pt;}
._11{width:13.952000pt;}
._10{width:14.848000pt;}
._1{width:15.838720pt;}
._8{width:17.216000pt;}
._9{width:18.560000pt;}
._12{width:19.517440pt;}
._f{width:20.480000pt;}
._1b{width:21.760000pt;}
._1f{width:22.656000pt;}
._1c{width:24.220160pt;}
._d{width:25.472000pt;}
._c{width:27.038720pt;}
._1e{width:28.608000pt;}
._17{width:29.568000pt;}
._18{width:30.656000pt;}
._1a{width:31.554560pt;}
._19{width:32.606720pt;}
._20{width:155.434667pt;}
._21{width:156.608000pt;}
.fsa{font-size:14.259028pt;}
.fs8{font-size:16.000000pt;}
.fsc{font-size:19.579561pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:49.587366pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:3.617969pt;}
.ya4{bottom:4.948101pt;}
.y95{bottom:5.373743pt;}
.ya6{bottom:5.426949pt;}
.y8e{bottom:6.384645pt;}
.y92{bottom:6.491054pt;}
.y97{bottom:7.289137pt;}
.ya1{bottom:7.395549pt;}
.y9b{bottom:9.310939pt;}
.y99{bottom:11.226331pt;}
.y8d{bottom:19.216001pt;}
.y91{bottom:19.313542pt;}
.ya3{bottom:21.282138pt;}
.y9d{bottom:23.525631pt;}
.ya0{bottom:23.729585pt;}
.y94{bottom:25.272536pt;}
.y90{bottom:39.225635pt;}
.y4{bottom:57.920000pt;}
.y3{bottom:61.952000pt;}
.y2{bottom:78.752000pt;}
.y74{bottom:120.992000pt;}
.y40{bottom:125.632000pt;}
.y62{bottom:127.872000pt;}
.y21{bottom:136.986667pt;}
.ybd{bottom:139.386667pt;}
.y73{bottom:148.506667pt;}
.y3f{bottom:153.146667pt;}
.y61{bottom:155.386667pt;}
.yd2{bottom:157.786667pt;}
.y20{bottom:166.746667pt;}
.ybc{bottom:166.906667pt;}
.y72{bottom:176.186667pt;}
.y3e{bottom:180.826667pt;}
.y60{bottom:185.146667pt;}
.yd1{bottom:185.306667pt;}
.ybb{bottom:194.586667pt;}
.y1f{bottom:196.826667pt;}
.y71{bottom:203.706667pt;}
.y3d{bottom:208.346667pt;}
.y5f{bottom:212.986667pt;}
.yba{bottom:222.106667pt;}
.y1e{bottom:224.506667pt;}
.y70{bottom:231.386667pt;}
.y3c{bottom:235.866667pt;}
.y5e{bottom:236.026667pt;}
.yd0{bottom:240.506667pt;}
.yb9{bottom:249.786667pt;}
.y1d{bottom:252.026667pt;}
.y6f{bottom:258.906667pt;}
.y5d{bottom:259.066667pt;}
.y3b{bottom:263.546667pt;}
.ycf{bottom:268.186667pt;}
.yb8{bottom:277.306667pt;}
.y1c{bottom:279.706667pt;}
.y5c{bottom:282.106667pt;}
.y6e{bottom:286.586667pt;}
.y3a{bottom:291.066667pt;}
.yce{bottom:295.706667pt;}
.y5b{bottom:305.026667pt;}
.yb7{bottom:306.946667pt;}
.y1b{bottom:307.266667pt;}
.y6d{bottom:314.146667pt;}
.y39{bottom:318.786667pt;}
.ycd{bottom:323.426667pt;}
.y5a{bottom:328.066667pt;}
.y1a{bottom:334.946667pt;}
.y6c{bottom:341.826667pt;}
.y8b{bottom:343.107843pt;}
.y38{bottom:346.306667pt;}
.ycc{bottom:350.946667pt;}
.y59{bottom:351.106667pt;}
.y8a{bottom:351.301463pt;}
.yb6{bottom:357.986667pt;}
.y89{bottom:359.548289pt;}
.y19{bottom:362.466667pt;}
.y88{bottom:367.741910pt;}
.y6b{bottom:369.346667pt;}
.y37{bottom:373.986667pt;}
.y58{bottom:374.146667pt;}
.y87{bottom:375.988736pt;}
.ycb{bottom:378.626667pt;}
.yb5{bottom:381.026667pt;}
.y86{bottom:384.182356pt;}
.y18{bottom:390.146667pt;}
.y85{bottom:392.429182pt;}
.y57{bottom:397.026667pt;}
.y84{bottom:400.636104pt;}
.y36{bottom:401.506667pt;}
.yb4{bottom:405.026667pt;}
.yca{bottom:406.146667pt;}
.y83{bottom:408.882930pt;}
.y7f{bottom:410.973333pt;}
.y82{bottom:417.076550pt;}
.ya5{bottom:417.569456pt;}
.y17{bottom:417.666667pt;}
.y56{bottom:420.066667pt;}
.y6a{bottom:424.546667pt;}
.y81{bottom:425.323376pt;}
.y35{bottom:429.186667pt;}
.yb3{bottom:430.306667pt;}
.y80{bottom:433.516997pt;}
.yc9{bottom:433.826667pt;}
.y55{bottom:443.106667pt;}
.y16{bottom:445.186667pt;}
.y69{bottom:452.226667pt;}
.yb2{bottom:455.586667pt;}
.y34{bottom:456.706667pt;}
.yc8{bottom:463.426667pt;}
.y54{bottom:465.986667pt;}
.y15{bottom:472.866667pt;}
.y68{bottom:479.746667pt;}
.yb1{bottom:480.866667pt;}
.ya2{bottom:481.160019pt;}
.y33{bottom:484.386667pt;}
.y53{bottom:489.026667pt;}
.yc7{bottom:495.586667pt;}
.y14{bottom:500.386667pt;}
.yb0{bottom:506.146667pt;}
.y67{bottom:507.426667pt;}
.y32{bottom:511.906667pt;}
.y52{bottom:512.066667pt;}
.yc6{bottom:527.746667pt;}
.y13{bottom:528.066667pt;}
.yaf{bottom:531.426667pt;}
.y9c{bottom:532.928792pt;}
.y66{bottom:534.946667pt;}
.y51{bottom:535.106667pt;}
.y31{bottom:539.613333pt;}
.y12{bottom:555.613333pt;}
.yae{bottom:556.733333pt;}
.y50{bottom:558.013333pt;}
.y65{bottom:562.653333pt;}
.y30{bottom:567.133333pt;}
.y9f{bottom:569.702528pt;}
.y9a{bottom:576.725657pt;}
.y4f{bottom:581.053333pt;}
.yad{bottom:582.173333pt;}
.y11{bottom:583.293333pt;}
.yc5{bottom:585.533333pt;}
.y64{bottom:590.173333pt;}
.y2f{bottom:594.813333pt;}
.y4e{bottom:604.093333pt;}
.yac{bottom:607.453333pt;}
.y10{bottom:610.813333pt;}
.yc4{bottom:613.213333pt;}
.y7e{bottom:617.853333pt;}
.y63{bottom:619.773333pt;}
.y2e{bottom:622.333333pt;}
.y4d{bottom:627.133333pt;}
.yab{bottom:632.733333pt;}
.yf{bottom:638.493333pt;}
.yc3{bottom:640.733333pt;}
.y96{bottom:644.788561pt;}
.y7d{bottom:645.373333pt;}
.y93{bottom:647.448839pt;}
.y2d{bottom:650.013333pt;}
.y98{bottom:656.653338pt;}
.yaa{bottom:658.013333pt;}
.ye{bottom:666.013333pt;}
.yc2{bottom:668.413333pt;}
.y7c{bottom:672.893333pt;}
.y4c{bottom:673.053333pt;}
.y2c{bottom:677.533333pt;}
.ya9{bottom:683.293333pt;}
.yd{bottom:695.773333pt;}
.yc1{bottom:695.933333pt;}
.y4b{bottom:696.093333pt;}
.y7b{bottom:700.573333pt;}
.y2b{bottom:705.213333pt;}
.ya8{bottom:708.573333pt;}
.y8c{bottom:716.083700pt;}
.y4a{bottom:719.133333pt;}
.yc{bottom:720.573333pt;}
.yc0{bottom:723.613333pt;}
.y7a{bottom:728.093333pt;}
.y2a{bottom:732.733333pt;}
.ya7{bottom:733.853333pt;}
.yb{bottom:742.013333pt;}
.ybf{bottom:753.213333pt;}
.y79{bottom:755.773333pt;}
.y29{bottom:760.413333pt;}
.y49{bottom:765.053333pt;}
.ya{bottom:769.533333pt;}
.y8f{bottom:776.853052pt;}
.y78{bottom:783.333333pt;}
.ybe{bottom:785.413333pt;}
.y28{bottom:787.973333pt;}
.y48{bottom:788.133333pt;}
.y9{bottom:803.333333pt;}
.y77{bottom:811.013333pt;}
.y47{bottom:811.173333pt;}
.y27{bottom:815.653333pt;}
.y8{bottom:826.853333pt;}
.y46{bottom:834.053333pt;}
.y76{bottom:838.533333pt;}
.y26{bottom:843.173333pt;}
.y45{bottom:857.093333pt;}
.y7{bottom:863.173333pt;}
.yd4{bottom:866.213333pt;}
.y75{bottom:868.293333pt;}
.y25{bottom:870.853333pt;}
.y44{bottom:880.133333pt;}
.yd3{bottom:895.813333pt;}
.y24{bottom:898.373333pt;}
.y43{bottom:903.013333pt;}
.y6{bottom:904.453333pt;}
.y23{bottom:926.053333pt;}
.y5{bottom:945.893333pt;}
.y42{bottom:949.093333pt;}
.y22{bottom:953.573333pt;}
.y41{bottom:964.613333pt;}
.y1{bottom:971.813333pt;}
.hc{height:11.570312pt;}
.h11{height:12.316514pt;}
.h14{height:16.912228pt;}
.h1d{height:17.078916pt;}
.h17{height:18.941105pt;}
.h19{height:22.027013pt;}
.h18{height:25.857796pt;}
.h9{height:26.843125pt;}
.h7{height:31.343437pt;}
.h12{height:31.827438pt;}
.h1c{height:32.934107pt;}
.h1a{height:35.179372pt;}
.h1b{height:35.381553pt;}
.h16{height:36.924504pt;}
.h3{height:38.413438pt;}
.h2{height:42.578750pt;}
.h13{height:42.832056pt;}
.he{height:45.156250pt;}
.hb{height:46.281250pt;}
.hf{height:46.593750pt;}
.h8{height:46.781250pt;}
.h15{height:51.990482pt;}
.ha{height:52.832812pt;}
.h1e{height:54.149062pt;}
.hd{height:54.514687pt;}
.h6{height:60.747188pt;}
.h4{height:67.734375pt;}
.h5{height:69.421875pt;}
.h10{height:436.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:84.760475pt;}
.w6{width:89.398136pt;}
.w8{width:97.246486pt;}
.w9{width:103.820753pt;}
.w7{width:111.057542pt;}
.wc{width:119.313598pt;}
.wa{width:120.944424pt;}
.w5{width:121.912727pt;}
.wb{width:131.595756pt;}
.w4{width:148.872317pt;}
.w3{width:511.994381pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:3.669358pt;}
.x1d{left:6.013670pt;}
.x11{left:9.020506pt;}
.x1b{left:13.199497pt;}
.x18{left:18.754497pt;}
.x19{left:21.914223pt;}
.x23{left:25.226838pt;}
.x20{left:29.252939pt;}
.x14{left:31.087618pt;}
.x24{left:36.031059pt;}
.x16{left:60.964857pt;}
.x12{left:74.419171pt;}
.x1{left:96.031988pt;}
.xd{left:118.911988pt;}
.x6{left:119.871988pt;}
.x4{left:123.711988pt;}
.x28{left:126.111988pt;}
.x27{left:163.386655pt;}
.xe{left:175.200000pt;}
.x3{left:183.706655pt;}
.x22{left:188.552387pt;}
.x1e{left:196.859406pt;}
.x5{left:200.666655pt;}
.x25{left:206.134728pt;}
.x7{left:212.026655pt;}
.x17{left:212.963811pt;}
.x8{left:232.026655pt;}
.xf{left:245.919197pt;}
.xa{left:253.666655pt;}
.xc{left:270.786655pt;}
.x9{left:277.986655pt;}
.x10{left:332.634153pt;}
.x1a{left:353.121403pt;}
.x13{left:355.975348pt;}
.x1f{left:357.096541pt;}
.xb{left:396.066655pt;}
.x1c{left:523.147739pt;}
.x21{left:527.632511pt;}
.x2{left:621.093322pt;}
.x26{left:696.133322pt;}
}




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