
    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_48f4e74589ea150a0ce6c995.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_89986d2866bef51ba5a870c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_a5464ce734dd5240bf471a23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_2c5fbcd0d762a7cffd8d8031.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.800293;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-6.360000px;}
.ls33{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.912000px;}
.ls13{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.744000px;}
.ls9{letter-spacing:-0.696000px;}
.ls1a{letter-spacing:-0.684000px;}
.ls3b{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.624000px;}
.ls12{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.567600px;}
.ls14{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.432000px;}
.ls32{letter-spacing:-0.358200px;}
.ls6{letter-spacing:-0.306600px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.280200px;}
.ls31{letter-spacing:-0.262200px;}
.ls30{letter-spacing:-0.240600px;}
.ls39{letter-spacing:-0.223800px;}
.ls40{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.201600px;}
.ls18{letter-spacing:-0.193200px;}
.ls2f{letter-spacing:-0.189600px;}
.ls2d{letter-spacing:-0.181200px;}
.ls46{letter-spacing:-0.160200px;}
.ls29{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.114600px;}
.ls2a{letter-spacing:-0.109200px;}
.ls37{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.072000px;}
.ls36{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.037440px;}
.ls8{letter-spacing:-0.026640px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.038160px;}
.ls21{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.106800px;}
.ls45{letter-spacing:0.120000px;}
.lse{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.206400px;}
.ls3c{letter-spacing:0.208200px;}
.ls1e{letter-spacing:0.262080px;}
.ls38{letter-spacing:0.269280px;}
.ls11{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.305280px;}
.ls2b{letter-spacing:0.305400px;}
.ls3a{letter-spacing:0.496200px;}
.ls17{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.864000px;}
.ls3d{letter-spacing:2.178720px;}
.ls22{letter-spacing:3.149280px;}
.ls2e{letter-spacing:3.150000px;}
.ls23{letter-spacing:3.865248px;}
.ls3e{letter-spacing:4.464000px;}
.ls41{letter-spacing:5.143968px;}
.ls1f{letter-spacing:7.505280px;}
.ls28{letter-spacing:8.185248px;}
.ls20{letter-spacing:8.225280px;}
.ls27{letter-spacing:8.905248px;}
.ls24{letter-spacing:8.945280px;}
.ls44{letter-spacing:11.664000px;}
.ls43{letter-spacing:12.384000px;}
.ls42{letter-spacing:16.704000px;}
.ls25{letter-spacing:16.865280px;}
.ls16{letter-spacing:23.689440px;}
.ls15{letter-spacing:33.049440px;}
.ls3f{letter-spacing:42.624000px;}
.ls2{letter-spacing:44.333280px;}
.ls1{letter-spacing:150.353280px;}
.ls35{letter-spacing:309.024000px;}
.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;}
}
.ws2e{word-spacing:-66.384000px;}
.ws1{word-spacing:-39.888000px;}
.ws2{word-spacing:-39.744000px;}
.ws8{word-spacing:-33.533520px;}
.ws7{word-spacing:-33.426720px;}
.ws4{word-spacing:-33.400080px;}
.wsa{word-spacing:-33.352152px;}
.ws3{word-spacing:-33.146520px;}
.ws5{word-spacing:-32.770752px;}
.ws9{word-spacing:-32.682720px;}
.ws6{word-spacing:-27.066720px;}
.ws12{word-spacing:-23.418720px;}
.wsb{word-spacing:-23.381280px;}
.wse{word-spacing:-20.304000px;}
.ws2c{word-spacing:-20.264232px;}
.ws2f{word-spacing:-20.176032px;}
.wsd{word-spacing:-20.160000px;}
.wsc{word-spacing:-19.944000px;}
.ws30{word-spacing:-19.895832px;}
.ws2d{word-spacing:-19.800000px;}
.ws31{word-spacing:-19.584000px;}
.ws11{word-spacing:-19.512000px;}
.wsf{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.224000px;}
.ws1d{word-spacing:-18.720120px;}
.ws25{word-spacing:-18.454752px;}
.ws23{word-spacing:-18.414720px;}
.ws1c{word-spacing:-18.305520px;}
.ws21{word-spacing:-18.265152px;}
.ws1b{word-spacing:-18.262320px;}
.ws22{word-spacing:-18.214152px;}
.ws24{word-spacing:-18.152520px;}
.ws26{word-spacing:-18.096552px;}
.ws1e{word-spacing:-17.847120px;}
.ws27{word-spacing:-17.494752px;}
.ws29{word-spacing:-16.819680px;}
.ws28{word-spacing:-16.560000px;}
.ws2a{word-spacing:-16.506480px;}
.ws1f{word-spacing:-13.456080px;}
.ws20{word-spacing:-13.229520px;}
.ws13{word-spacing:-12.886560px;}
.ws2b{word-spacing:-12.738720px;}
.ws18{word-spacing:-12.348720px;}
.ws19{word-spacing:-12.166560px;}
.ws15{word-spacing:-12.138624px;}
.ws14{word-spacing:-12.117360px;}
.ws17{word-spacing:-11.686560px;}
.ws16{word-spacing:-11.626560px;}
.ws1a{word-spacing:-11.398560px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-28.792800px;}
._4{margin-left:-11.412000px;}
._14{margin-left:-7.272960px;}
._2{margin-left:-5.472000px;}
._11{margin-left:-3.491136px;}
._12{margin-left:-2.177280px;}
._1{margin-left:-1.152000px;}
._e{width:1.169760px;}
._3{width:2.748000px;}
._13{width:3.965760px;}
._1d{width:5.150160px;}
._b{width:6.730320px;}
._1f{width:8.429760px;}
._29{width:11.362272px;}
._17{width:12.469728px;}
._16{width:13.504896px;}
._9{width:15.546240px;}
._23{width:16.632000px;}
._a{width:17.637120px;}
._24{width:18.726240px;}
._25{width:22.164000px;}
._1e{width:23.699520px;}
._1b{width:28.007040px;}
._1a{width:29.017920px;}
._26{width:30.312000px;}
._19{width:32.839200px;}
._18{width:33.997680px;}
._15{width:41.770080px;}
._d{width:43.416960px;}
._c{width:44.457840px;}
._2b{width:50.364000px;}
._2c{width:51.420000px;}
._8{width:53.799840px;}
._7{width:55.039440px;}
._1c{width:58.895040px;}
._2a{width:72.756000px;}
._27{width:81.111744px;}
._28{width:82.288992px;}
._22{width:132.120000px;}
._5{width:149.982960px;}
._6{width:151.525200px;}
._20{width:156.197760px;}
._10{width:176.184480px;}
._f{width:177.202080px;}
._21{width:412.164000px;}
.fc7{color:rgb(45,45,138);}
.fc5{color:rgb(0,32,96);}
.fc3{color:rgb(51,51,204);}
.fc4{color:rgb(0,102,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,102);}
.fsf{font-size:48.240000px;}
.fsc{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fse{font-size:66.240000px;}
.fs10{font-size:66.384000px;}
.fs9{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs8{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs12{font-size:90.000000px;}
.fs11{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs0{font-size:383.760000px;}
.fs1{font-size:383.904000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:0.287985px;}
.y4b{bottom:17.568000px;}
.y3c{bottom:19.224000px;}
.y2a{bottom:33.624000px;}
.y4a{bottom:34.848000px;}
.y3b{bottom:42.984000px;}
.y81{bottom:47.448000px;}
.y1c{bottom:48.240000px;}
.y49{bottom:49.248000px;}
.y28{bottom:51.624000px;}
.y48{bottom:63.684000px;}
.y3a{bottom:66.744000px;}
.y80{bottom:67.248000px;}
.y1b{bottom:69.840000px;}
.y47{bottom:78.084000px;}
.y39{bottom:86.544000px;}
.y1a{bottom:91.440000px;}
.y46{bottom:95.364000px;}
.yd{bottom:96.048000px;}
.y7d{bottom:101.844000px;}
.y2f{bottom:103.032000px;}
.y79{bottom:106.416000px;}
.y45{bottom:109.764000px;}
.y38{bottom:110.340000px;}
.y19{bottom:113.076000px;}
.y2e{bottom:121.032000px;}
.y44{bottom:127.044000px;}
.y7c{bottom:127.080000px;}
.y78{bottom:128.016000px;}
.yc{bottom:128.088000px;}
.y29{bottom:128.160000px;}
.y3{bottom:129.780000px;}
.y37{bottom:130.140000px;}
.y2d{bottom:139.032000px;}
.y43{bottom:144.324000px;}
.y77{bottom:149.652000px;}
.y6b{bottom:152.205000px;}
.y36{bottom:153.900000px;}
.y2c{bottom:157.035000px;}
.y64{bottom:160.230000px;}
.yb{bottom:167.685000px;}
.y65{bottom:170.715000px;}
.y76{bottom:171.255000px;}
.y35{bottom:173.700000px;}
.y2b{bottom:175.035000px;}
.y63{bottom:178.230000px;}
.y53{bottom:192.210000px;}
.y75{bottom:192.855000px;}
.y27{bottom:196.230000px;}
.y34{bottom:197.460000px;}
.ya{bottom:203.730000px;}
.y52{bottom:213.810000px;}
.y74{bottom:214.455000px;}
.y33{bottom:217.260000px;}
.y7f{bottom:218.985000px;}
.y51{bottom:235.440000px;}
.y73{bottom:236.055000px;}
.y32{bottom:237.090000px;}
.y9{bottom:239.730000px;}
.y7e{bottom:240.585000px;}
.y71{bottom:243.075000px;}
.y2{bottom:245.010000px;}
.y26{bottom:253.800000px;}
.y50{bottom:257.040000px;}
.y72{bottom:257.655000px;}
.y6a{bottom:260.130000px;}
.y31{bottom:260.850000px;}
.y70{bottom:262.875000px;}
.y20{bottom:271.800000px;}
.y8{bottom:275.730000px;}
.y4f{bottom:278.640000px;}
.y69{bottom:279.930000px;}
.y66{bottom:281.190000px;}
.y30{bottom:284.610000px;}
.y1f{bottom:289.830000px;}
.y18{bottom:298.260000px;}
.y6e{bottom:299.775000px;}
.y4e{bottom:300.240000px;}
.y7{bottom:311.760000px;}
.y6d{bottom:319.605000px;}
.y17{bottom:323.460000px;}
.y6c{bottom:339.405000px;}
.y6{bottom:347.760000px;}
.y16{bottom:348.690000px;}
.y58{bottom:355.170000px;}
.y1{bottom:360.255000px;}
.y5f{bottom:366.450000px;}
.y68{bottom:373.350000px;}
.y15{bottom:373.890000px;}
.y57{bottom:376.770000px;}
.y5e{bottom:388.050000px;}
.y40{bottom:390.270000px;}
.y6f{bottom:390.420000px;}
.y7b{bottom:391.245000px;}
.y22{bottom:391.860000px;}
.y5{bottom:392.220000px;}
.y25{bottom:406.875000px;}
.y62{bottom:408.930000px;}
.y5d{bottom:409.650000px;}
.y54{bottom:410.730000px;}
.y3f{bottom:416.190000px;}
.y7a{bottom:416.445000px;}
.y24{bottom:424.875000px;}
.y21{bottom:425.985000px;}
.y59{bottom:427.785000px;}
.y5c{bottom:431.280000px;}
.y67{bottom:433.080000px;}
.y61{bottom:435.990000px;}
.y3e{bottom:437.790000px;}
.y23{bottom:442.875000px;}
.y4{bottom:444.090000px;}
.y42{bottom:449.025000px;}
.y5b{bottom:452.880000px;}
.y1e{bottom:454.680000px;}
.y56{bottom:455.790000px;}
.y13{bottom:456.555000px;}
.y55{bottom:457.485000px;}
.yf{bottom:459.510000px;}
.ye{bottom:460.050000px;}
.y3d{bottom:464.430000px;}
.y60{bottom:466.410000px;}
.y14{bottom:467.280000px;}
.y4d{bottom:467.490000px;}
.y41{bottom:475.665000px;}
.y12{bottom:478.155000px;}
.y5a{bottom:478.800000px;}
.y1d{bottom:479.880000px;}
.y11{bottom:499.785000px;}
.y10{bottom:521.385000px;}
.hf{height:47.650430px;}
.h10{height:47.765250px;}
.h13{height:50.312812px;}
.h16{height:52.817344px;}
.h17{height:52.932164px;}
.h9{height:67.169883px;}
.h11{height:69.086250px;}
.h12{height:69.236437px;}
.hc{height:75.093750px;}
.he{height:75.243937px;}
.ha{height:81.101250px;}
.hb{height:87.859687px;}
.hd{height:88.009875px;}
.h15{height:93.867188px;}
.h14{height:99.874688px;}
.h8{height:112.640625px;}
.h6{height:125.406562px;}
.h7{height:125.556750px;}
.h4{height:150.187500px;}
.h5{height:150.337688px;}
.h2{height:400.249687px;}
.h3{height:400.399875px;}
.h0{height:595.260000px;}
.h1{height:595.500000px;}
.w1{width:807.750000px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.xc{left:2.124000px;}
.x6{left:10.800000px;}
.x5{left:15.012000px;}
.x4{left:23.544000px;}
.x1b{left:31.932000px;}
.x15{left:40.608000px;}
.xd{left:91.404000px;}
.x19{left:125.532000px;}
.x1{left:153.870000px;}
.xe{left:167.910000px;}
.x3{left:189.690000px;}
.x11{left:219.135000px;}
.x2{left:222.480000px;}
.x1c{left:227.550000px;}
.x16{left:253.290000px;}
.x1e{left:368.535000px;}
.x17{left:393.585000px;}
.x1f{left:399.675000px;}
.xb{left:423.390000px;}
.x1a{left:440.250000px;}
.x13{left:453.240000px;}
.x14{left:457.350000px;}
.x22{left:467.175000px;}
.x1d{left:474.405000px;}
.x7{left:512.070000px;}
.x9{left:529.530000px;}
.xf{left:533.805000px;}
.x8{left:540.690000px;}
.xa{left:557.280000px;}
.x21{left:566.310000px;}
.x12{left:576.435000px;}
.x20{left:584.490000px;}
.x10{left:589.140000px;}
.x18{left:610.350000px;}
.x23{left:686.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-5.653333pt;}
.ls33{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.810667pt;}
.ls13{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.661333pt;}
.ls9{letter-spacing:-0.618667pt;}
.ls1a{letter-spacing:-0.608000pt;}
.ls3b{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.554667pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.504533pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.384000pt;}
.ls32{letter-spacing:-0.318400pt;}
.ls6{letter-spacing:-0.272533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.249067pt;}
.ls31{letter-spacing:-0.233067pt;}
.ls30{letter-spacing:-0.213867pt;}
.ls39{letter-spacing:-0.198933pt;}
.ls40{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.179200pt;}
.ls18{letter-spacing:-0.171733pt;}
.ls2f{letter-spacing:-0.168533pt;}
.ls2d{letter-spacing:-0.161067pt;}
.ls46{letter-spacing:-0.142400pt;}
.ls29{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.101867pt;}
.ls2a{letter-spacing:-0.097067pt;}
.ls37{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls36{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.033280pt;}
.ls8{letter-spacing:-0.023680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.033920pt;}
.ls21{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.094933pt;}
.ls45{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.183467pt;}
.ls3c{letter-spacing:0.185067pt;}
.ls1e{letter-spacing:0.232960pt;}
.ls38{letter-spacing:0.239360pt;}
.ls11{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.271360pt;}
.ls2b{letter-spacing:0.271467pt;}
.ls3a{letter-spacing:0.441067pt;}
.ls17{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:1.936640pt;}
.ls22{letter-spacing:2.799360pt;}
.ls2e{letter-spacing:2.800000pt;}
.ls23{letter-spacing:3.435776pt;}
.ls3e{letter-spacing:3.968000pt;}
.ls41{letter-spacing:4.572416pt;}
.ls1f{letter-spacing:6.671360pt;}
.ls28{letter-spacing:7.275776pt;}
.ls20{letter-spacing:7.311360pt;}
.ls27{letter-spacing:7.915776pt;}
.ls24{letter-spacing:7.951360pt;}
.ls44{letter-spacing:10.368000pt;}
.ls43{letter-spacing:11.008000pt;}
.ls42{letter-spacing:14.848000pt;}
.ls25{letter-spacing:14.991360pt;}
.ls16{letter-spacing:21.057280pt;}
.ls15{letter-spacing:29.377280pt;}
.ls3f{letter-spacing:37.888000pt;}
.ls2{letter-spacing:39.407360pt;}
.ls1{letter-spacing:133.647360pt;}
.ls35{letter-spacing:274.688000pt;}
.ws2e{word-spacing:-59.008000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws2{word-spacing:-35.328000pt;}
.ws8{word-spacing:-29.807573pt;}
.ws7{word-spacing:-29.712640pt;}
.ws4{word-spacing:-29.688960pt;}
.wsa{word-spacing:-29.646357pt;}
.ws3{word-spacing:-29.463573pt;}
.ws5{word-spacing:-29.129557pt;}
.ws9{word-spacing:-29.051307pt;}
.ws6{word-spacing:-24.059307pt;}
.ws12{word-spacing:-20.816640pt;}
.wsb{word-spacing:-20.783360pt;}
.wse{word-spacing:-18.048000pt;}
.ws2c{word-spacing:-18.012651pt;}
.ws2f{word-spacing:-17.934251pt;}
.wsd{word-spacing:-17.920000pt;}
.wsc{word-spacing:-17.728000pt;}
.ws30{word-spacing:-17.685184pt;}
.ws2d{word-spacing:-17.600000pt;}
.ws31{word-spacing:-17.408000pt;}
.ws11{word-spacing:-17.344000pt;}
.wsf{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.088000pt;}
.ws1d{word-spacing:-16.640107pt;}
.ws25{word-spacing:-16.404224pt;}
.ws23{word-spacing:-16.368640pt;}
.ws1c{word-spacing:-16.271573pt;}
.ws21{word-spacing:-16.235691pt;}
.ws1b{word-spacing:-16.233173pt;}
.ws22{word-spacing:-16.190357pt;}
.ws24{word-spacing:-16.135573pt;}
.ws26{word-spacing:-16.085824pt;}
.ws1e{word-spacing:-15.864107pt;}
.ws27{word-spacing:-15.550891pt;}
.ws29{word-spacing:-14.950827pt;}
.ws28{word-spacing:-14.720000pt;}
.ws2a{word-spacing:-14.672427pt;}
.ws1f{word-spacing:-11.960960pt;}
.ws20{word-spacing:-11.759573pt;}
.ws13{word-spacing:-11.454720pt;}
.ws2b{word-spacing:-11.323307pt;}
.ws18{word-spacing:-10.976640pt;}
.ws19{word-spacing:-10.814720pt;}
.ws15{word-spacing:-10.789888pt;}
.ws14{word-spacing:-10.770987pt;}
.ws17{word-spacing:-10.388053pt;}
.ws16{word-spacing:-10.334720pt;}
.ws1a{word-spacing:-10.132053pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-25.593600pt;}
._4{margin-left:-10.144000pt;}
._14{margin-left:-6.464853pt;}
._2{margin-left:-4.864000pt;}
._11{margin-left:-3.103232pt;}
._12{margin-left:-1.935360pt;}
._1{margin-left:-1.024000pt;}
._e{width:1.039787pt;}
._3{width:2.442667pt;}
._13{width:3.525120pt;}
._1d{width:4.577920pt;}
._b{width:5.982507pt;}
._1f{width:7.493120pt;}
._29{width:10.099797pt;}
._17{width:11.084203pt;}
._16{width:12.004352pt;}
._9{width:13.818880pt;}
._23{width:14.784000pt;}
._a{width:15.677440pt;}
._24{width:16.645547pt;}
._25{width:19.701333pt;}
._1e{width:21.066240pt;}
._1b{width:24.895147pt;}
._1a{width:25.793707pt;}
._26{width:26.944000pt;}
._19{width:29.190400pt;}
._18{width:30.220160pt;}
._15{width:37.128960pt;}
._d{width:38.592853pt;}
._c{width:39.518080pt;}
._2b{width:44.768000pt;}
._2c{width:45.706667pt;}
._8{width:47.822080pt;}
._7{width:48.923947pt;}
._1c{width:52.351147pt;}
._2a{width:64.672000pt;}
._27{width:72.099328pt;}
._28{width:73.145771pt;}
._22{width:117.440000pt;}
._5{width:133.318187pt;}
._6{width:134.689067pt;}
._20{width:138.842453pt;}
._10{width:156.608427pt;}
._f{width:157.512960pt;}
._21{width:366.368000pt;}
.fsf{font-size:42.880000pt;}
.fsc{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fse{font-size:58.880000pt;}
.fs10{font-size:59.008000pt;}
.fs9{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs8{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs12{font-size:80.000000pt;}
.fs11{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs0{font-size:341.120000pt;}
.fs1{font-size:341.248000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:0.255987pt;}
.y4b{bottom:15.616000pt;}
.y3c{bottom:17.088000pt;}
.y2a{bottom:29.888000pt;}
.y4a{bottom:30.976000pt;}
.y3b{bottom:38.208000pt;}
.y81{bottom:42.176000pt;}
.y1c{bottom:42.880000pt;}
.y49{bottom:43.776000pt;}
.y28{bottom:45.888000pt;}
.y48{bottom:56.608000pt;}
.y3a{bottom:59.328000pt;}
.y80{bottom:59.776000pt;}
.y1b{bottom:62.080000pt;}
.y47{bottom:69.408000pt;}
.y39{bottom:76.928000pt;}
.y1a{bottom:81.280000pt;}
.y46{bottom:84.768000pt;}
.yd{bottom:85.376000pt;}
.y7d{bottom:90.528000pt;}
.y2f{bottom:91.584000pt;}
.y79{bottom:94.592000pt;}
.y45{bottom:97.568000pt;}
.y38{bottom:98.080000pt;}
.y19{bottom:100.512000pt;}
.y2e{bottom:107.584000pt;}
.y44{bottom:112.928000pt;}
.y7c{bottom:112.960000pt;}
.y78{bottom:113.792000pt;}
.yc{bottom:113.856000pt;}
.y29{bottom:113.920000pt;}
.y3{bottom:115.360000pt;}
.y37{bottom:115.680000pt;}
.y2d{bottom:123.584000pt;}
.y43{bottom:128.288000pt;}
.y77{bottom:133.024000pt;}
.y6b{bottom:135.293333pt;}
.y36{bottom:136.800000pt;}
.y2c{bottom:139.586667pt;}
.y64{bottom:142.426667pt;}
.yb{bottom:149.053333pt;}
.y65{bottom:151.746667pt;}
.y76{bottom:152.226667pt;}
.y35{bottom:154.400000pt;}
.y2b{bottom:155.586667pt;}
.y63{bottom:158.426667pt;}
.y53{bottom:170.853333pt;}
.y75{bottom:171.426667pt;}
.y27{bottom:174.426667pt;}
.y34{bottom:175.520000pt;}
.ya{bottom:181.093333pt;}
.y52{bottom:190.053333pt;}
.y74{bottom:190.626667pt;}
.y33{bottom:193.120000pt;}
.y7f{bottom:194.653333pt;}
.y51{bottom:209.280000pt;}
.y73{bottom:209.826667pt;}
.y32{bottom:210.746667pt;}
.y9{bottom:213.093333pt;}
.y7e{bottom:213.853333pt;}
.y71{bottom:216.066667pt;}
.y2{bottom:217.786667pt;}
.y26{bottom:225.600000pt;}
.y50{bottom:228.480000pt;}
.y72{bottom:229.026667pt;}
.y6a{bottom:231.226667pt;}
.y31{bottom:231.866667pt;}
.y70{bottom:233.666667pt;}
.y20{bottom:241.600000pt;}
.y8{bottom:245.093333pt;}
.y4f{bottom:247.680000pt;}
.y69{bottom:248.826667pt;}
.y66{bottom:249.946667pt;}
.y30{bottom:252.986667pt;}
.y1f{bottom:257.626667pt;}
.y18{bottom:265.120000pt;}
.y6e{bottom:266.466667pt;}
.y4e{bottom:266.880000pt;}
.y7{bottom:277.120000pt;}
.y6d{bottom:284.093333pt;}
.y17{bottom:287.520000pt;}
.y6c{bottom:301.693333pt;}
.y6{bottom:309.120000pt;}
.y16{bottom:309.946667pt;}
.y58{bottom:315.706667pt;}
.y1{bottom:320.226667pt;}
.y5f{bottom:325.733333pt;}
.y68{bottom:331.866667pt;}
.y15{bottom:332.346667pt;}
.y57{bottom:334.906667pt;}
.y5e{bottom:344.933333pt;}
.y40{bottom:346.906667pt;}
.y6f{bottom:347.040000pt;}
.y7b{bottom:347.773333pt;}
.y22{bottom:348.320000pt;}
.y5{bottom:348.640000pt;}
.y25{bottom:361.666667pt;}
.y62{bottom:363.493333pt;}
.y5d{bottom:364.133333pt;}
.y54{bottom:365.093333pt;}
.y3f{bottom:369.946667pt;}
.y7a{bottom:370.173333pt;}
.y24{bottom:377.666667pt;}
.y21{bottom:378.653333pt;}
.y59{bottom:380.253333pt;}
.y5c{bottom:383.360000pt;}
.y67{bottom:384.960000pt;}
.y61{bottom:387.546667pt;}
.y3e{bottom:389.146667pt;}
.y23{bottom:393.666667pt;}
.y4{bottom:394.746667pt;}
.y42{bottom:399.133333pt;}
.y5b{bottom:402.560000pt;}
.y1e{bottom:404.160000pt;}
.y56{bottom:405.146667pt;}
.y13{bottom:405.826667pt;}
.y55{bottom:406.653333pt;}
.yf{bottom:408.453333pt;}
.ye{bottom:408.933333pt;}
.y3d{bottom:412.826667pt;}
.y60{bottom:414.586667pt;}
.y14{bottom:415.360000pt;}
.y4d{bottom:415.546667pt;}
.y41{bottom:422.813333pt;}
.y12{bottom:425.026667pt;}
.y5a{bottom:425.600000pt;}
.y1d{bottom:426.560000pt;}
.y11{bottom:444.253333pt;}
.y10{bottom:463.453333pt;}
.hf{height:42.355937pt;}
.h10{height:42.458000pt;}
.h13{height:44.722500pt;}
.h16{height:46.948750pt;}
.h17{height:47.050812pt;}
.h9{height:59.706562pt;}
.h11{height:61.410000pt;}
.h12{height:61.543500pt;}
.hc{height:66.750000pt;}
.he{height:66.883500pt;}
.ha{height:72.090000pt;}
.hb{height:78.097500pt;}
.hd{height:78.231000pt;}
.h15{height:83.437500pt;}
.h14{height:88.777500pt;}
.h8{height:100.125000pt;}
.h6{height:111.472500pt;}
.h7{height:111.606000pt;}
.h4{height:133.500000pt;}
.h5{height:133.633500pt;}
.h2{height:355.777500pt;}
.h3{height:355.911000pt;}
.h0{height:529.120000pt;}
.h1{height:529.333333pt;}
.w1{width:718.000000pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.xc{left:1.888000pt;}
.x6{left:9.600000pt;}
.x5{left:13.344000pt;}
.x4{left:20.928000pt;}
.x1b{left:28.384000pt;}
.x15{left:36.096000pt;}
.xd{left:81.248000pt;}
.x19{left:111.584000pt;}
.x1{left:136.773333pt;}
.xe{left:149.253333pt;}
.x3{left:168.613333pt;}
.x11{left:194.786667pt;}
.x2{left:197.760000pt;}
.x1c{left:202.266667pt;}
.x16{left:225.146667pt;}
.x1e{left:327.586667pt;}
.x17{left:349.853333pt;}
.x1f{left:355.266667pt;}
.xb{left:376.346667pt;}
.x1a{left:391.333333pt;}
.x13{left:402.880000pt;}
.x14{left:406.533333pt;}
.x22{left:415.266667pt;}
.x1d{left:421.693333pt;}
.x7{left:455.173333pt;}
.x9{left:470.693333pt;}
.xf{left:474.493333pt;}
.x8{left:480.613333pt;}
.xa{left:495.360000pt;}
.x21{left:503.386667pt;}
.x12{left:512.386667pt;}
.x20{left:519.546667pt;}
.x10{left:523.680000pt;}
.x18{left:542.533333pt;}
.x23{left:610.533333pt;}
}




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