
    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_e789e6f0573213956f004aa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_1618834a536da135e305792a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920410;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_e39daaed8b995d57bc831f88.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_86d4a1888019a6703c4f9820.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894531;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);}
.v2{vertical-align:-24.480060px;}
.v3{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006480px;}
.lsd{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.050400px;}
.ls16{letter-spacing:0.239400px;}
.ls14{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.240060px;}
.ls2f{letter-spacing:0.240600px;}
.ls1d{letter-spacing:0.242064px;}
.ls22{letter-spacing:0.253872px;}
.ls1c{letter-spacing:0.318816px;}
.ls18{letter-spacing:0.320280px;}
.ls25{letter-spacing:0.341400px;}
.ls2e{letter-spacing:0.348336px;}
.ls2c{letter-spacing:0.383760px;}
.ls13{letter-spacing:0.407880px;}
.ls11{letter-spacing:0.408480px;}
.ls20{letter-spacing:0.419184px;}
.ls17{letter-spacing:0.442800px;}
.ls15{letter-spacing:0.460512px;}
.ls10{letter-spacing:0.466416px;}
.ls12{letter-spacing:0.478224px;}
.ls1e{letter-spacing:0.543168px;}
.ls6{letter-spacing:0.578592px;}
.lsc{letter-spacing:0.596160px;}
.ls32{letter-spacing:0.608112px;}
.ls28{letter-spacing:0.625824px;}
.ls30{letter-spacing:0.626400px;}
.ls21{letter-spacing:0.637632px;}
.ls1a{letter-spacing:0.639660px;}
.ls24{letter-spacing:0.675000px;}
.ls1f{letter-spacing:0.702576px;}
.ls5{letter-spacing:0.712800px;}
.ls1b{letter-spacing:0.732096px;}
.ls33{letter-spacing:0.738000px;}
.ls2d{letter-spacing:0.802944px;}
.ls23{letter-spacing:0.861984px;}
.ls34{letter-spacing:0.926928px;}
.ls31{letter-spacing:1.659600px;}
.ls8{letter-spacing:1.718400px;}
.ls27{letter-spacing:2.550000px;}
.ls2b{letter-spacing:3.157800px;}
.ls2a{letter-spacing:7.335600px;}
.ls19{letter-spacing:7.567200px;}
.ls26{letter-spacing:7.659000px;}
.lsa{letter-spacing:10.196400px;}
.ls29{letter-spacing:10.240200px;}
.lsf{letter-spacing:11.572800px;}
.lse{letter-spacing:13.989000px;}
.ls7{letter-spacing:32.500200px;}
.ls1{letter-spacing:196.199400px;}
.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:-18.050400px;}
.ws8{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.985600px;}
.ws11{word-spacing:-15.462576px;}
.wsf{word-spacing:-15.397632px;}
.wsb{word-spacing:-15.338592px;}
.ws13{word-spacing:-15.303168px;}
.wsa{word-spacing:-15.238224px;}
.ws9{word-spacing:-15.226416px;}
.wse{word-spacing:-15.202800px;}
.wsc{word-spacing:-15.179184px;}
.ws12{word-spacing:-15.143760px;}
.wsd{word-spacing:-15.078816px;}
.ws10{word-spacing:-15.013872px;}
.ws2{word-spacing:-9.000000px;}
.ws7{word-spacing:-0.660960px;}
.ws1{word-spacing:-0.071280px;}
.ws0{word-spacing:-0.064800px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-10.051200px;}
._4{margin-left:-5.026200px;}
._0{margin-left:-1.140480px;}
._1{width:1.653300px;}
._6{width:3.573900px;}
._d{width:4.789800px;}
._7{width:5.947200px;}
._c{width:6.984000px;}
._14{width:8.380800px;}
._5{width:10.000800px;}
._8{width:11.717700px;}
._9{width:12.798900px;}
._15{width:14.342400px;}
._13{width:15.364800px;}
._18{width:16.948800px;}
._17{width:19.735200px;}
._10{width:20.772000px;}
._f{width:22.600800px;}
._19{width:23.623200px;}
._b{width:24.732000px;}
._12{width:25.754400px;}
._e{width:26.805600px;}
._16{width:28.562400px;}
._20{width:30.009600px;}
._1c{width:31.428000px;}
._a{width:32.443200px;}
._1d{width:33.840000px;}
._1e{width:34.891200px;}
._1f{width:36.036000px;}
._1a{width:37.533600px;}
._22{width:38.757600px;}
._1b{width:40.564800px;}
._27{width:42.091200px;}
._25{width:43.581600px;}
._11{width:44.863200px;}
._26{width:48.628800px;}
._24{width:50.119200px;}
._23{width:58.204800px;}
._21{width:70.185600px;}
._2{width:845.999700px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.040000px;}
.y3{bottom:-3.419970px;}
.y0{bottom:0.000000px;}
.y2{bottom:16.380030px;}
.y9c{bottom:49.140030px;}
.y26{bottom:54.540030px;}
.yd8{bottom:59.580030px;}
.y75{bottom:61.020030px;}
.y1{bottom:61.500000px;}
.y9b{bottom:66.420015px;}
.y25{bottom:66.780030px;}
.yd7{bottom:76.860015px;}
.y74{bottom:81.540030px;}
.y9a{bottom:83.700030px;}
.yd6{bottom:94.140000px;}
.y99{bottom:100.980000px;}
.y73{bottom:102.420000px;}
.yd5{bottom:111.420000px;}
.y98{bottom:118.620000px;}
.y72{bottom:123.300000px;}
.yd4{bottom:128.700000px;}
.y97{bottom:135.900000px;}
.y71{bottom:144.180000px;}
.yd3{bottom:146.340000px;}
.y96{bottom:153.180000px;}
.yd2{bottom:163.620000px;}
.y70{bottom:164.700000px;}
.y95{bottom:170.460000px;}
.yd1{bottom:180.900000px;}
.y6f{bottom:185.580000px;}
.y94{bottom:187.740000px;}
.yd0{bottom:198.180000px;}
.y93{bottom:205.020000px;}
.y6e{bottom:206.460000px;}
.ycf{bottom:215.460000px;}
.y92{bottom:222.300000px;}
.y6d{bottom:226.980000px;}
.yce{bottom:232.740000px;}
.y91{bottom:239.580000px;}
.y6c{bottom:247.860000px;}
.ycd{bottom:250.020000px;}
.y90{bottom:256.860000px;}
.ycc{bottom:267.300000px;}
.y6b{bottom:268.740000px;}
.y8f{bottom:274.500000px;}
.ycb{bottom:284.580000px;}
.y6a{bottom:289.620000px;}
.y8e{bottom:291.780000px;}
.y24{bottom:301.500000px;}
.yca{bottom:302.220000px;}
.y8d{bottom:309.060000px;}
.y69{bottom:310.140000px;}
.yc9{bottom:319.500000px;}
.y23{bottom:322.740000px;}
.y8c{bottom:326.340000px;}
.y68{bottom:331.020000px;}
.yc8{bottom:336.780000px;}
.y22{bottom:343.260000px;}
.y8b{bottom:343.620000px;}
.y67{bottom:351.900000px;}
.yc7{bottom:354.060000px;}
.y8a{bottom:360.900000px;}
.y21{bottom:364.140000px;}
.yc6{bottom:371.340000px;}
.y66{bottom:372.780000px;}
.y89{bottom:378.180000px;}
.y20{bottom:384.660000px;}
.yc5{bottom:388.620000px;}
.y65{bottom:393.300000px;}
.y88{bottom:395.460000px;}
.y1f{bottom:405.180000px;}
.yc4{bottom:405.900000px;}
.y87{bottom:413.100000px;}
.y64{bottom:414.180000px;}
.yc3{bottom:423.180000px;}
.y1e{bottom:425.700000px;}
.y86{bottom:430.380000px;}
.y63{bottom:435.060000px;}
.yc2{bottom:440.460000px;}
.y1d{bottom:446.220000px;}
.y85{bottom:447.660000px;}
.y62{bottom:455.940000px;}
.y45{bottom:456.300000px;}
.yc1{bottom:458.100000px;}
.y84{bottom:464.940000px;}
.y1c{bottom:466.740000px;}
.yc0{bottom:475.380000px;}
.y61{bottom:476.460000px;}
.y44{bottom:477.180000px;}
.y83{bottom:482.220000px;}
.y1b{bottom:487.260000px;}
.ybf{bottom:492.660000px;}
.y60{bottom:497.340000px;}
.y43{bottom:497.700000px;}
.y82{bottom:499.500000px;}
.y1a{bottom:507.780000px;}
.ybe{bottom:509.940000px;}
.y81{bottom:516.780000px;}
.y5f{bottom:518.220000px;}
.y42{bottom:518.580000px;}
.ybd{bottom:527.220000px;}
.y19{bottom:531.540000px;}
.y80{bottom:534.060000px;}
.y5e{bottom:539.100000px;}
.y41{bottom:539.460000px;}
.ybc{bottom:544.500000px;}
.y7f{bottom:551.340000px;}
.y18{bottom:557.820000px;}
.y5d{bottom:559.620000px;}
.y40{bottom:560.340000px;}
.ybb{bottom:561.780000px;}
.y7e{bottom:568.980000px;}
.y17{bottom:578.700000px;}
.yba{bottom:579.060000px;}
.y5c{bottom:580.500000px;}
.y3f{bottom:580.860000px;}
.y7d{bottom:586.260000px;}
.yb9{bottom:596.700000px;}
.y16{bottom:599.580000px;}
.y5b{bottom:601.380000px;}
.y3e{bottom:601.740000px;}
.y7c{bottom:603.540000px;}
.yb8{bottom:613.980000px;}
.y15{bottom:620.100000px;}
.y7b{bottom:620.820000px;}
.y5a{bottom:622.260000px;}
.y3d{bottom:622.620000px;}
.yb7{bottom:631.260000px;}
.y7a{bottom:638.100000px;}
.y14{bottom:640.980000px;}
.y59{bottom:642.780000px;}
.y3c{bottom:643.500000px;}
.yb6{bottom:648.540000px;}
.y79{bottom:655.380000px;}
.y13{bottom:661.860000px;}
.y58{bottom:663.660000px;}
.y3b{bottom:664.020000px;}
.yb5{bottom:665.820000px;}
.y78{bottom:672.660000px;}
.y12{bottom:682.740000px;}
.yb4{bottom:683.100000px;}
.y57{bottom:684.540000px;}
.y3a{bottom:684.900000px;}
.y77{bottom:689.940000px;}
.yb3{bottom:700.380000px;}
.y11{bottom:703.260000px;}
.y56{bottom:705.060000px;}
.y39{bottom:705.780000px;}
.y76{bottom:707.220000px;}
.yb2{bottom:717.660000px;}
.y10{bottom:724.140000px;}
.y55{bottom:725.940000px;}
.y38{bottom:726.300000px;}
.yb1{bottom:734.940000px;}
.yf{bottom:745.020000px;}
.y54{bottom:746.820000px;}
.y37{bottom:747.180000px;}
.yb0{bottom:752.580000px;}
.ye{bottom:765.900000px;}
.y53{bottom:767.700000px;}
.y36{bottom:768.060000px;}
.yaf{bottom:769.860000px;}
.yd{bottom:786.420000px;}
.yae{bottom:787.140000px;}
.y52{bottom:788.220000px;}
.y35{bottom:788.940000px;}
.yad{bottom:804.420000px;}
.yc{bottom:807.300000px;}
.y51{bottom:809.100000px;}
.y34{bottom:809.460000px;}
.yac{bottom:821.700000px;}
.yb{bottom:829.620000px;}
.y50{bottom:829.980000px;}
.y33{bottom:830.340000px;}
.yab{bottom:838.980000px;}
.y4f{bottom:850.860000px;}
.y32{bottom:851.220000px;}
.ya{bottom:852.300000px;}
.yaa{bottom:856.260000px;}
.y4e{bottom:871.380000px;}
.y31{bottom:872.100000px;}
.ya9{bottom:873.540000px;}
.y9{bottom:874.620000px;}
.ya8{bottom:891.180000px;}
.y4d{bottom:892.260000px;}
.y30{bottom:892.620000px;}
.y8{bottom:896.940000px;}
.ya7{bottom:908.460000px;}
.y4c{bottom:913.140000px;}
.y2f{bottom:913.500000px;}
.y7{bottom:923.220000px;}
.ya6{bottom:925.740000px;}
.y4b{bottom:934.020000px;}
.y2e{bottom:934.380000px;}
.ya5{bottom:943.020000px;}
.y6{bottom:944.100000px;}
.y4a{bottom:954.540000px;}
.y2d{bottom:955.260000px;}
.ya4{bottom:960.300000px;}
.y5{bottom:964.620000px;}
.y49{bottom:975.420000px;}
.y2c{bottom:975.780000px;}
.ya3{bottom:977.580000px;}
.y4{bottom:980.820000px;}
.ya2{bottom:994.860000px;}
.y48{bottom:996.300000px;}
.y2b{bottom:996.660000px;}
.ya1{bottom:1012.140000px;}
.y47{bottom:1017.180000px;}
.y2a{bottom:1017.540000px;}
.ya0{bottom:1029.420000px;}
.y46{bottom:1037.700000px;}
.y29{bottom:1038.780000px;}
.y9f{bottom:1047.060000px;}
.y28{bottom:1058.580000px;}
.y9e{bottom:1064.340000px;}
.y27{bottom:1079.460000px;}
.y9d{bottom:1081.620000px;}
.h8{height:32.291016px;}
.hb{height:40.503516px;}
.h2{height:43.189453px;}
.h6{height:46.195313px;}
.ha{height:49.394531px;}
.h3{height:51.328125px;}
.h9{height:52.957266px;}
.h7{height:58.123828px;}
.h5{height:64.582031px;}
.h4{height:67.753125px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x3{left:100.439925px;}
.x5{left:121.739865px;}
.x6{left:721.514250px;}
.x2{left:729.877050px;}
.x4{left:737.789700px;}
@media print{
.v2{vertical-align:-21.760053pt;}
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005760pt;}
.lsd{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.044800pt;}
.ls16{letter-spacing:0.212800pt;}
.ls14{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.213387pt;}
.ls2f{letter-spacing:0.213867pt;}
.ls1d{letter-spacing:0.215168pt;}
.ls22{letter-spacing:0.225664pt;}
.ls1c{letter-spacing:0.283392pt;}
.ls18{letter-spacing:0.284693pt;}
.ls25{letter-spacing:0.303467pt;}
.ls2e{letter-spacing:0.309632pt;}
.ls2c{letter-spacing:0.341120pt;}
.ls13{letter-spacing:0.362560pt;}
.ls11{letter-spacing:0.363093pt;}
.ls20{letter-spacing:0.372608pt;}
.ls17{letter-spacing:0.393600pt;}
.ls15{letter-spacing:0.409344pt;}
.ls10{letter-spacing:0.414592pt;}
.ls12{letter-spacing:0.425088pt;}
.ls1e{letter-spacing:0.482816pt;}
.ls6{letter-spacing:0.514304pt;}
.lsc{letter-spacing:0.529920pt;}
.ls32{letter-spacing:0.540544pt;}
.ls28{letter-spacing:0.556288pt;}
.ls30{letter-spacing:0.556800pt;}
.ls21{letter-spacing:0.566784pt;}
.ls1a{letter-spacing:0.568587pt;}
.ls24{letter-spacing:0.600000pt;}
.ls1f{letter-spacing:0.624512pt;}
.ls5{letter-spacing:0.633600pt;}
.ls1b{letter-spacing:0.650752pt;}
.ls33{letter-spacing:0.656000pt;}
.ls2d{letter-spacing:0.713728pt;}
.ls23{letter-spacing:0.766208pt;}
.ls34{letter-spacing:0.823936pt;}
.ls31{letter-spacing:1.475200pt;}
.ls8{letter-spacing:1.527467pt;}
.ls27{letter-spacing:2.266667pt;}
.ls2b{letter-spacing:2.806933pt;}
.ls2a{letter-spacing:6.520533pt;}
.ls19{letter-spacing:6.726400pt;}
.ls26{letter-spacing:6.808000pt;}
.lsa{letter-spacing:9.063467pt;}
.ls29{letter-spacing:9.102400pt;}
.lsf{letter-spacing:10.286933pt;}
.lse{letter-spacing:12.434667pt;}
.ls7{letter-spacing:28.889067pt;}
.ls1{letter-spacing:174.399467pt;}
.ws6{word-spacing:-16.044800pt;}
.ws8{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.987200pt;}
.ws11{word-spacing:-13.744512pt;}
.wsf{word-spacing:-13.686784pt;}
.wsb{word-spacing:-13.634304pt;}
.ws13{word-spacing:-13.602816pt;}
.wsa{word-spacing:-13.545088pt;}
.ws9{word-spacing:-13.534592pt;}
.wse{word-spacing:-13.513600pt;}
.wsc{word-spacing:-13.492608pt;}
.ws12{word-spacing:-13.461120pt;}
.wsd{word-spacing:-13.403392pt;}
.ws10{word-spacing:-13.345664pt;}
.ws2{word-spacing:-8.000000pt;}
.ws7{word-spacing:-0.587520pt;}
.ws1{word-spacing:-0.063360pt;}
.ws0{word-spacing:-0.057600pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-8.934400pt;}
._4{margin-left:-4.467733pt;}
._0{margin-left:-1.013760pt;}
._1{width:1.469600pt;}
._6{width:3.176800pt;}
._d{width:4.257600pt;}
._7{width:5.286400pt;}
._c{width:6.208000pt;}
._14{width:7.449600pt;}
._5{width:8.889600pt;}
._8{width:10.415733pt;}
._9{width:11.376800pt;}
._15{width:12.748800pt;}
._13{width:13.657600pt;}
._18{width:15.065600pt;}
._17{width:17.542400pt;}
._10{width:18.464000pt;}
._f{width:20.089600pt;}
._19{width:20.998400pt;}
._b{width:21.984000pt;}
._12{width:22.892800pt;}
._e{width:23.827200pt;}
._16{width:25.388800pt;}
._20{width:26.675200pt;}
._1c{width:27.936000pt;}
._a{width:28.838400pt;}
._1d{width:30.080000pt;}
._1e{width:31.014400pt;}
._1f{width:32.032000pt;}
._1a{width:33.363200pt;}
._22{width:34.451200pt;}
._1b{width:36.057600pt;}
._27{width:37.414400pt;}
._25{width:38.739200pt;}
._11{width:39.878400pt;}
._26{width:43.225600pt;}
._24{width:44.550400pt;}
._23{width:51.737600pt;}
._21{width:62.387200pt;}
._2{width:751.999733pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:84.480000pt;}
.y3{bottom:-3.039973pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:14.560027pt;}
.y9c{bottom:43.680027pt;}
.y26{bottom:48.480027pt;}
.yd8{bottom:52.960027pt;}
.y75{bottom:54.240027pt;}
.y1{bottom:54.666667pt;}
.y9b{bottom:59.040013pt;}
.y25{bottom:59.360027pt;}
.yd7{bottom:68.320013pt;}
.y74{bottom:72.480027pt;}
.y9a{bottom:74.400027pt;}
.yd6{bottom:83.680000pt;}
.y99{bottom:89.760000pt;}
.y73{bottom:91.040000pt;}
.yd5{bottom:99.040000pt;}
.y98{bottom:105.440000pt;}
.y72{bottom:109.600000pt;}
.yd4{bottom:114.400000pt;}
.y97{bottom:120.800000pt;}
.y71{bottom:128.160000pt;}
.yd3{bottom:130.080000pt;}
.y96{bottom:136.160000pt;}
.yd2{bottom:145.440000pt;}
.y70{bottom:146.400000pt;}
.y95{bottom:151.520000pt;}
.yd1{bottom:160.800000pt;}
.y6f{bottom:164.960000pt;}
.y94{bottom:166.880000pt;}
.yd0{bottom:176.160000pt;}
.y93{bottom:182.240000pt;}
.y6e{bottom:183.520000pt;}
.ycf{bottom:191.520000pt;}
.y92{bottom:197.600000pt;}
.y6d{bottom:201.760000pt;}
.yce{bottom:206.880000pt;}
.y91{bottom:212.960000pt;}
.y6c{bottom:220.320000pt;}
.ycd{bottom:222.240000pt;}
.y90{bottom:228.320000pt;}
.ycc{bottom:237.600000pt;}
.y6b{bottom:238.880000pt;}
.y8f{bottom:244.000000pt;}
.ycb{bottom:252.960000pt;}
.y6a{bottom:257.440000pt;}
.y8e{bottom:259.360000pt;}
.y24{bottom:268.000000pt;}
.yca{bottom:268.640000pt;}
.y8d{bottom:274.720000pt;}
.y69{bottom:275.680000pt;}
.yc9{bottom:284.000000pt;}
.y23{bottom:286.880000pt;}
.y8c{bottom:290.080000pt;}
.y68{bottom:294.240000pt;}
.yc8{bottom:299.360000pt;}
.y22{bottom:305.120000pt;}
.y8b{bottom:305.440000pt;}
.y67{bottom:312.800000pt;}
.yc7{bottom:314.720000pt;}
.y8a{bottom:320.800000pt;}
.y21{bottom:323.680000pt;}
.yc6{bottom:330.080000pt;}
.y66{bottom:331.360000pt;}
.y89{bottom:336.160000pt;}
.y20{bottom:341.920000pt;}
.yc5{bottom:345.440000pt;}
.y65{bottom:349.600000pt;}
.y88{bottom:351.520000pt;}
.y1f{bottom:360.160000pt;}
.yc4{bottom:360.800000pt;}
.y87{bottom:367.200000pt;}
.y64{bottom:368.160000pt;}
.yc3{bottom:376.160000pt;}
.y1e{bottom:378.400000pt;}
.y86{bottom:382.560000pt;}
.y63{bottom:386.720000pt;}
.yc2{bottom:391.520000pt;}
.y1d{bottom:396.640000pt;}
.y85{bottom:397.920000pt;}
.y62{bottom:405.280000pt;}
.y45{bottom:405.600000pt;}
.yc1{bottom:407.200000pt;}
.y84{bottom:413.280000pt;}
.y1c{bottom:414.880000pt;}
.yc0{bottom:422.560000pt;}
.y61{bottom:423.520000pt;}
.y44{bottom:424.160000pt;}
.y83{bottom:428.640000pt;}
.y1b{bottom:433.120000pt;}
.ybf{bottom:437.920000pt;}
.y60{bottom:442.080000pt;}
.y43{bottom:442.400000pt;}
.y82{bottom:444.000000pt;}
.y1a{bottom:451.360000pt;}
.ybe{bottom:453.280000pt;}
.y81{bottom:459.360000pt;}
.y5f{bottom:460.640000pt;}
.y42{bottom:460.960000pt;}
.ybd{bottom:468.640000pt;}
.y19{bottom:472.480000pt;}
.y80{bottom:474.720000pt;}
.y5e{bottom:479.200000pt;}
.y41{bottom:479.520000pt;}
.ybc{bottom:484.000000pt;}
.y7f{bottom:490.080000pt;}
.y18{bottom:495.840000pt;}
.y5d{bottom:497.440000pt;}
.y40{bottom:498.080000pt;}
.ybb{bottom:499.360000pt;}
.y7e{bottom:505.760000pt;}
.y17{bottom:514.400000pt;}
.yba{bottom:514.720000pt;}
.y5c{bottom:516.000000pt;}
.y3f{bottom:516.320000pt;}
.y7d{bottom:521.120000pt;}
.yb9{bottom:530.400000pt;}
.y16{bottom:532.960000pt;}
.y5b{bottom:534.560000pt;}
.y3e{bottom:534.880000pt;}
.y7c{bottom:536.480000pt;}
.yb8{bottom:545.760000pt;}
.y15{bottom:551.200000pt;}
.y7b{bottom:551.840000pt;}
.y5a{bottom:553.120000pt;}
.y3d{bottom:553.440000pt;}
.yb7{bottom:561.120000pt;}
.y7a{bottom:567.200000pt;}
.y14{bottom:569.760000pt;}
.y59{bottom:571.360000pt;}
.y3c{bottom:572.000000pt;}
.yb6{bottom:576.480000pt;}
.y79{bottom:582.560000pt;}
.y13{bottom:588.320000pt;}
.y58{bottom:589.920000pt;}
.y3b{bottom:590.240000pt;}
.yb5{bottom:591.840000pt;}
.y78{bottom:597.920000pt;}
.y12{bottom:606.880000pt;}
.yb4{bottom:607.200000pt;}
.y57{bottom:608.480000pt;}
.y3a{bottom:608.800000pt;}
.y77{bottom:613.280000pt;}
.yb3{bottom:622.560000pt;}
.y11{bottom:625.120000pt;}
.y56{bottom:626.720000pt;}
.y39{bottom:627.360000pt;}
.y76{bottom:628.640000pt;}
.yb2{bottom:637.920000pt;}
.y10{bottom:643.680000pt;}
.y55{bottom:645.280000pt;}
.y38{bottom:645.600000pt;}
.yb1{bottom:653.280000pt;}
.yf{bottom:662.240000pt;}
.y54{bottom:663.840000pt;}
.y37{bottom:664.160000pt;}
.yb0{bottom:668.960000pt;}
.ye{bottom:680.800000pt;}
.y53{bottom:682.400000pt;}
.y36{bottom:682.720000pt;}
.yaf{bottom:684.320000pt;}
.yd{bottom:699.040000pt;}
.yae{bottom:699.680000pt;}
.y52{bottom:700.640000pt;}
.y35{bottom:701.280000pt;}
.yad{bottom:715.040000pt;}
.yc{bottom:717.600000pt;}
.y51{bottom:719.200000pt;}
.y34{bottom:719.520000pt;}
.yac{bottom:730.400000pt;}
.yb{bottom:737.440000pt;}
.y50{bottom:737.760000pt;}
.y33{bottom:738.080000pt;}
.yab{bottom:745.760000pt;}
.y4f{bottom:756.320000pt;}
.y32{bottom:756.640000pt;}
.ya{bottom:757.600000pt;}
.yaa{bottom:761.120000pt;}
.y4e{bottom:774.560000pt;}
.y31{bottom:775.200000pt;}
.ya9{bottom:776.480000pt;}
.y9{bottom:777.440000pt;}
.ya8{bottom:792.160000pt;}
.y4d{bottom:793.120000pt;}
.y30{bottom:793.440000pt;}
.y8{bottom:797.280000pt;}
.ya7{bottom:807.520000pt;}
.y4c{bottom:811.680000pt;}
.y2f{bottom:812.000000pt;}
.y7{bottom:820.640000pt;}
.ya6{bottom:822.880000pt;}
.y4b{bottom:830.240000pt;}
.y2e{bottom:830.560000pt;}
.ya5{bottom:838.240000pt;}
.y6{bottom:839.200000pt;}
.y4a{bottom:848.480000pt;}
.y2d{bottom:849.120000pt;}
.ya4{bottom:853.600000pt;}
.y5{bottom:857.440000pt;}
.y49{bottom:867.040000pt;}
.y2c{bottom:867.360000pt;}
.ya3{bottom:868.960000pt;}
.y4{bottom:871.840000pt;}
.ya2{bottom:884.320000pt;}
.y48{bottom:885.600000pt;}
.y2b{bottom:885.920000pt;}
.ya1{bottom:899.680000pt;}
.y47{bottom:904.160000pt;}
.y2a{bottom:904.480000pt;}
.ya0{bottom:915.040000pt;}
.y46{bottom:922.400000pt;}
.y29{bottom:923.360000pt;}
.y9f{bottom:930.720000pt;}
.y28{bottom:940.960000pt;}
.y9e{bottom:946.080000pt;}
.y27{bottom:959.520000pt;}
.y9d{bottom:961.440000pt;}
.h8{height:28.703125pt;}
.hb{height:36.003125pt;}
.h2{height:38.390625pt;}
.h6{height:41.062500pt;}
.ha{height:43.906250pt;}
.h3{height:45.625000pt;}
.h9{height:47.073125pt;}
.h7{height:51.665625pt;}
.h5{height:57.406250pt;}
.h4{height:60.225000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x3{left:89.279933pt;}
.x5{left:108.213213pt;}
.x6{left:641.346000pt;}
.x2{left:648.779600pt;}
.x4{left:655.813067pt;}
}




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