
    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_54d3d186c592fbf9ed16c988.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_15bd052f1b7f5418cb2ee3a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_e565aff5d94b9840cfc76e97.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_ff3c12d8478fc6e1462859c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4488bc839fadd3d42ddd1a28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_1772774c05f6316685055b95.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_5060cfd40678207ec242de1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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.248223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.594000px;}
.ls1{letter-spacing:-0.346200px;}
.lsc{letter-spacing:-0.323400px;}
.ls11{letter-spacing:-0.310200px;}
.lsa{letter-spacing:-0.157200px;}
.lsf{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.087000px;}
.ls3{letter-spacing:-0.083400px;}
.lsd{letter-spacing:-0.070200px;}
.ls12{letter-spacing:-0.065400px;}
.ls6{letter-spacing:-0.031680px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.056880px;}
.ls9{letter-spacing:0.084600px;}
.lse{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.157800px;}
.ls5{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.287400px;}
.ls1b{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.349800px;}
.ls17{letter-spacing:0.382320px;}
.ls18{letter-spacing:0.431280px;}
.ls13{letter-spacing:0.442200px;}
.ls4{letter-spacing:115.833600px;}
.ls2{letter-spacing:115.884000px;}
.ls19{letter-spacing:119.865600px;}
.ls16{letter-spacing:119.916000px;}
.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:-48.848544px;}
.ws3{word-spacing:-46.049760px;}
.wsb{word-spacing:-29.894904px;}
.ws5{word-spacing:-29.810304px;}
.ws6{word-spacing:-29.777760px;}
.ws16{word-spacing:-21.641760px;}
.ws15{word-spacing:-21.331560px;}
.ws18{word-spacing:-16.416000px;}
.ws2a{word-spacing:-16.304544px;}
.ws19{word-spacing:-16.272000px;}
.ws22{word-spacing:-0.864000px;}
.ws14{word-spacing:-0.311280px;}
.ws4{word-spacing:-0.195840px;}
.ws35{word-spacing:-0.144000px;}
.ws29{word-spacing:-0.048765px;}
.ws17{word-spacing:-0.048451px;}
.ws20{word-spacing:-0.024000px;}
.wsa{word-spacing:-0.018720px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.272880px;}
.ws30{word-spacing:0.357984px;}
.ws7{word-spacing:0.524160px;}
.wsd{word-spacing:0.569160px;}
.ws21{word-spacing:1.686960px;}
.ws2{word-spacing:5.943240px;}
.ws33{word-spacing:6.158520px;}
.ws32{word-spacing:6.456000px;}
.ws31{word-spacing:6.575040px;}
.ws34{word-spacing:6.684960px;}
.ws2d{word-spacing:22.718520px;}
.ws2c{word-spacing:22.902960px;}
.ws2e{word-spacing:23.124960px;}
.ws2b{word-spacing:23.279040px;}
.ws26{word-spacing:23.879520px;}
.ws23{word-spacing:24.070320px;}
.ws27{word-spacing:24.158520px;}
.ws28{word-spacing:24.564960px;}
.ws25{word-spacing:24.882120px;}
.ws24{word-spacing:25.003440px;}
.ws11{word-spacing:27.541152px;}
.ws1e{word-spacing:27.758520px;}
.ws1d{word-spacing:27.765120px;}
.ws12{word-spacing:27.835848px;}
.ws13{word-spacing:28.151712px;}
.wse{word-spacing:28.156032px;}
.ws1f{word-spacing:28.164960px;}
.ws1a{word-spacing:28.319040px;}
.ws2f{word-spacing:28.365120px;}
.wsf{word-spacing:28.422720px;}
.ws1c{word-spacing:28.482120px;}
.ws1b{word-spacing:28.553760px;}
.ws10{word-spacing:28.558368px;}
.ws8{word-spacing:78.999240px;}
.ws9{word-spacing:79.069656px;}
._1{margin-left:-12.655440px;}
._a{margin-left:-11.348160px;}
._8{margin-left:-9.854640px;}
._9{margin-left:-8.556000px;}
._2{margin-left:-6.679440px;}
._6{margin-left:-4.876080px;}
._3{margin-left:-3.622320px;}
._5{margin-left:-2.612640px;}
._0{margin-left:-1.093680px;}
._4{width:1.095600px;}
._7{width:2.612640px;}
._d{width:22.758960px;}
._f{width:29.702880px;}
._b{width:32.030400px;}
._e{width:45.731520px;}
._c{width:50.641008px;}
.fc9{color:rgb(15,36,62);}
.fc7{color:rgb(228,108,10);}
.fc8{color:rgb(37,64,97);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(55,96,146);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:48.451356px;}
.fsd{font-size:48.764713px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fse{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs7{font-size:131.760000px;}
.fs8{font-size:131.904000px;}
.fs0{font-size:156.240000px;}
.fs2{font-size:203.760000px;}
.fs3{font-size:203.904000px;}
.fs4{font-size:216.144000px;}
.fs11{font-size:264.240000px;}
.fs10{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.091139px;}
.y56{bottom:3.111131px;}
.y6{bottom:11.268000px;}
.ye{bottom:12.528000px;}
.y40{bottom:16.820820px;}
.y55{bottom:16.929608px;}
.y88{bottom:30.672000px;}
.yd{bottom:31.428000px;}
.y87{bottom:52.272000px;}
.y3f{bottom:63.079945px;}
.y86{bottom:73.908000px;}
.y76{bottom:78.444000px;}
.y54{bottom:93.860462px;}
.y75{bottom:100.044000px;}
.y2a{bottom:101.736000px;}
.y83{bottom:102.492000px;}
.y62{bottom:104.119945px;}
.y3c{bottom:115.056000px;}
.y74{bottom:121.644000px;}
.y4e{bottom:123.199945px;}
.y3{bottom:125.208000px;}
.y24{bottom:126.576000px;}
.y34{bottom:133.056000px;}
.y82{bottom:138.492000px;}
.y29{bottom:141.336000px;}
.y73{bottom:143.244000px;}
.y2{bottom:150.450000px;}
.y3b{bottom:154.650000px;}
.y18{bottom:158.250000px;}
.y23{bottom:162.210000px;}
.y72{bottom:164.880000px;}
.y33{bottom:172.650000px;}
.y81{bottom:174.495000px;}
.y1{bottom:180.330000px;}
.y28{bottom:180.975000px;}
.y71{bottom:186.480000px;}
.y3a{bottom:194.295000px;}
.y17{bottom:197.895000px;}
.y70{bottom:208.080000px;}
.y32{bottom:212.295000px;}
.y80{bottom:226.725000px;}
.y4b{bottom:230.910000px;}
.y22{bottom:232.815000px;}
.y39{bottom:233.895000px;}
.y27{bottom:237.495000px;}
.y6f{bottom:247.680000px;}
.y31{bottom:251.895000px;}
.y4a{bottom:252.510000px;}
.y7f{bottom:262.725000px;}
.y21{bottom:268.455000px;}
.y6e{bottom:269.280000px;}
.y16{bottom:272.415000px;}
.y38{bottom:273.495000px;}
.y49{bottom:274.110000px;}
.y30{bottom:291.495000px;}
.y48{bottom:295.710000px;}
.y7e{bottom:298.725000px;}
.y20{bottom:304.095000px;}
.y60{bottom:306.255000px;}
.yc{bottom:308.985000px;}
.y15{bottom:312.015000px;}
.y37{bottom:313.095000px;}
.y47{bottom:326.310000px;}
.y5f{bottom:327.855000px;}
.y2f{bottom:331.095000px;}
.y7d{bottom:334.725000px;}
.y1f{bottom:339.735000px;}
.y46{bottom:347.910000px;}
.y5e{bottom:349.455000px;}
.y14{bottom:351.615000px;}
.y45{bottom:369.510000px;}
.y36{bottom:369.645000px;}
.yb{bottom:370.185000px;}
.y2e{bottom:370.725000px;}
.y7c{bottom:370.770000px;}
.y5d{bottom:371.085000px;}
.y1e{bottom:375.405000px;}
.y26{bottom:386.565000px;}
.y5{bottom:387.645000px;}
.y44{bottom:391.110000px;}
.y13{bottom:391.245000px;}
.y53{bottom:400.170000px;}
.y6d{bottom:401.115000px;}
.y5c{bottom:401.685000px;}
.y85{bottom:405.075000px;}
.y35{bottom:409.245000px;}
.y2d{bottom:418.245000px;}
.y43{bottom:421.740000px;}
.y52{bottom:421.770000px;}
.y6c{bottom:422.715000px;}
.y7b{bottom:422.970000px;}
.y5b{bottom:423.285000px;}
.y25{bottom:426.165000px;}
.ya{bottom:431.430000px;}
.y42{bottom:443.340000px;}
.y51{bottom:443.370000px;}
.y6b{bottom:444.315000px;}
.y5a{bottom:444.885000px;}
.y1d{bottom:445.965000px;}
.y4{bottom:448.845000px;}
.y2c{bottom:457.845000px;}
.y7a{bottom:458.970000px;}
.y50{bottom:464.970000px;}
.y12{bottom:465.765000px;}
.y6a{bottom:465.915000px;}
.y59{bottom:466.485000px;}
.y1c{bottom:481.605000px;}
.y4f{bottom:486.570000px;}
.y69{bottom:487.515000px;}
.y84{bottom:488.235000px;}
.y9{bottom:492.630000px;}
.y79{bottom:494.970000px;}
.y58{bottom:497.085000px;}
.y2b{bottom:497.445000px;}
.y11{bottom:505.365000px;}
.y68{bottom:509.115000px;}
.y1b{bottom:517.245000px;}
.y57{bottom:518.685000px;}
.y67{bottom:530.715000px;}
.y3e{bottom:543.855000px;}
.y10{bottom:545.010000px;}
.y78{bottom:547.170000px;}
.y1a{bottom:552.930000px;}
.y8{bottom:553.830000px;}
.y66{bottom:570.345000px;}
.y77{bottom:583.200000px;}
.yf{bottom:584.610000px;}
.y3d{bottom:587.085000px;}
.y19{bottom:588.570000px;}
.y65{bottom:591.945000px;}
.y61{bottom:612.465000px;}
.y4d{bottom:655.665000px;}
.y7{bottom:671.610000px;}
.y64{bottom:680.040000px;}
.y4c{bottom:698.865000px;}
.y63{bottom:723.240000px;}
.hc{height:27.639706px;}
.h11{height:27.818465px;}
.hd{height:48.829883px;}
.h12{height:49.145687px;}
.he{height:57.867188px;}
.hf{height:57.982922px;}
.h6{height:62.964844px;}
.h10{height:63.090773px;}
.h2{height:73.668867px;}
.h7{height:73.794797px;}
.hb{height:83.743242px;}
.ha{height:83.869172px;}
.h13{height:105.151289px;}
.h14{height:105.277219px;}
.h8{height:115.225664px;}
.h9{height:115.351594px;}
.h1{height:136.633711px;}
.h3{height:178.190508px;}
.h4{height:178.316437px;}
.h5{height:189.020461px;}
.h16{height:231.080977px;}
.h15{height:283.341797px;}
.h0{height:810.000000px;}
.w2{width:636.302509px;}
.w3{width:636.474869px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x19{left:55.260000px;}
.x1f{left:61.343984px;}
.xb{left:64.799984px;}
.x18{left:66.023984px;}
.x4{left:69.587984px;}
.x13{left:75.491984px;}
.x8{left:81.827984px;}
.x1e{left:89.280000px;}
.xc{left:105.299984px;}
.x5{left:110.087984px;}
.xe{left:112.175984px;}
.xf{left:166.169984px;}
.x3{left:209.009984px;}
.x2{left:216.389984px;}
.x12{left:246.779984px;}
.x10{left:251.279984px;}
.x11{left:253.619984px;}
.xa{left:261.794984px;}
.x25{left:263.444984px;}
.x24{left:279.719984px;}
.xd{left:301.139984px;}
.x1{left:308.954984px;}
.x6{left:329.789984px;}
.x22{left:343.259984px;}
.x23{left:353.699984px;}
.x7{left:369.539984px;}
.x26{left:393.224984px;}
.x14{left:395.459984px;}
.x21{left:746.069984px;}
.x17{left:759.704984px;}
.x20{left:762.629984px;}
.x1b{left:775.289984px;}
.x1a{left:779.429984px;}
.x1c{left:781.949984px;}
.x15{left:783.284984px;}
.x16{left:786.164984px;}
.x1d{left:996.809984px;}
.x9{left:1005.989984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.528000pt;}
.ls1{letter-spacing:-0.307733pt;}
.lsc{letter-spacing:-0.287467pt;}
.ls11{letter-spacing:-0.275733pt;}
.lsa{letter-spacing:-0.139733pt;}
.lsf{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.077333pt;}
.ls3{letter-spacing:-0.074133pt;}
.lsd{letter-spacing:-0.062400pt;}
.ls12{letter-spacing:-0.058133pt;}
.ls6{letter-spacing:-0.028160pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.050560pt;}
.ls9{letter-spacing:0.075200pt;}
.lse{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.140267pt;}
.ls5{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.255467pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.310933pt;}
.ls17{letter-spacing:0.339840pt;}
.ls18{letter-spacing:0.383360pt;}
.ls13{letter-spacing:0.393067pt;}
.ls4{letter-spacing:102.963200pt;}
.ls2{letter-spacing:103.008000pt;}
.ls19{letter-spacing:106.547200pt;}
.ls16{letter-spacing:106.592000pt;}
.ws1{word-spacing:-43.420928pt;}
.ws3{word-spacing:-40.933120pt;}
.wsb{word-spacing:-26.573248pt;}
.ws5{word-spacing:-26.498048pt;}
.ws6{word-spacing:-26.469120pt;}
.ws16{word-spacing:-19.237120pt;}
.ws15{word-spacing:-18.961387pt;}
.ws18{word-spacing:-14.592000pt;}
.ws2a{word-spacing:-14.492928pt;}
.ws19{word-spacing:-14.464000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws14{word-spacing:-0.276693pt;}
.ws4{word-spacing:-0.174080pt;}
.ws35{word-spacing:-0.128000pt;}
.ws29{word-spacing:-0.043346pt;}
.ws17{word-spacing:-0.043068pt;}
.ws20{word-spacing:-0.021333pt;}
.wsa{word-spacing:-0.016640pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.242560pt;}
.ws30{word-spacing:0.318208pt;}
.ws7{word-spacing:0.465920pt;}
.wsd{word-spacing:0.505920pt;}
.ws21{word-spacing:1.499520pt;}
.ws2{word-spacing:5.282880pt;}
.ws33{word-spacing:5.474240pt;}
.ws32{word-spacing:5.738667pt;}
.ws31{word-spacing:5.844480pt;}
.ws34{word-spacing:5.942187pt;}
.ws2d{word-spacing:20.194240pt;}
.ws2c{word-spacing:20.358187pt;}
.ws2e{word-spacing:20.555520pt;}
.ws2b{word-spacing:20.692480pt;}
.ws26{word-spacing:21.226240pt;}
.ws23{word-spacing:21.395840pt;}
.ws27{word-spacing:21.474240pt;}
.ws28{word-spacing:21.835520pt;}
.ws25{word-spacing:22.117440pt;}
.ws24{word-spacing:22.225280pt;}
.ws11{word-spacing:24.481024pt;}
.ws1e{word-spacing:24.674240pt;}
.ws1d{word-spacing:24.680107pt;}
.ws12{word-spacing:24.742976pt;}
.ws13{word-spacing:25.023744pt;}
.wse{word-spacing:25.027584pt;}
.ws1f{word-spacing:25.035520pt;}
.ws1a{word-spacing:25.172480pt;}
.ws2f{word-spacing:25.213440pt;}
.wsf{word-spacing:25.264640pt;}
.ws1c{word-spacing:25.317440pt;}
.ws1b{word-spacing:25.381120pt;}
.ws10{word-spacing:25.385216pt;}
.ws8{word-spacing:70.221547pt;}
.ws9{word-spacing:70.284139pt;}
._1{margin-left:-11.249280pt;}
._a{margin-left:-10.087253pt;}
._8{margin-left:-8.759680pt;}
._9{margin-left:-7.605333pt;}
._2{margin-left:-5.937280pt;}
._6{margin-left:-4.334293pt;}
._3{margin-left:-3.219840pt;}
._5{margin-left:-2.322347pt;}
._0{margin-left:-0.972160pt;}
._4{width:0.973867pt;}
._7{width:2.322347pt;}
._d{width:20.230187pt;}
._f{width:26.402560pt;}
._b{width:28.471467pt;}
._e{width:40.650240pt;}
._c{width:45.014229pt;}
.fsb{font-size:43.067872pt;}
.fsd{font-size:43.346412pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fse{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs7{font-size:117.120000pt;}
.fs8{font-size:117.248000pt;}
.fs0{font-size:138.880000pt;}
.fs2{font-size:181.120000pt;}
.fs3{font-size:181.248000pt;}
.fs4{font-size:192.128000pt;}
.fs11{font-size:234.880000pt;}
.fs10{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.747679pt;}
.y56{bottom:2.765449pt;}
.y6{bottom:10.016000pt;}
.ye{bottom:11.136000pt;}
.y40{bottom:14.951840pt;}
.y55{bottom:15.048540pt;}
.y88{bottom:27.264000pt;}
.yd{bottom:27.936000pt;}
.y87{bottom:46.464000pt;}
.y3f{bottom:56.071062pt;}
.y86{bottom:65.696000pt;}
.y76{bottom:69.728000pt;}
.y54{bottom:83.431522pt;}
.y75{bottom:88.928000pt;}
.y2a{bottom:90.432000pt;}
.y83{bottom:91.104000pt;}
.y62{bottom:92.551062pt;}
.y3c{bottom:102.272000pt;}
.y74{bottom:108.128000pt;}
.y4e{bottom:109.511062pt;}
.y3{bottom:111.296000pt;}
.y24{bottom:112.512000pt;}
.y34{bottom:118.272000pt;}
.y82{bottom:123.104000pt;}
.y29{bottom:125.632000pt;}
.y73{bottom:127.328000pt;}
.y2{bottom:133.733333pt;}
.y3b{bottom:137.466667pt;}
.y18{bottom:140.666667pt;}
.y23{bottom:144.186667pt;}
.y72{bottom:146.560000pt;}
.y33{bottom:153.466667pt;}
.y81{bottom:155.106667pt;}
.y1{bottom:160.293333pt;}
.y28{bottom:160.866667pt;}
.y71{bottom:165.760000pt;}
.y3a{bottom:172.706667pt;}
.y17{bottom:175.906667pt;}
.y70{bottom:184.960000pt;}
.y32{bottom:188.706667pt;}
.y80{bottom:201.533333pt;}
.y4b{bottom:205.253333pt;}
.y22{bottom:206.946667pt;}
.y39{bottom:207.906667pt;}
.y27{bottom:211.106667pt;}
.y6f{bottom:220.160000pt;}
.y31{bottom:223.906667pt;}
.y4a{bottom:224.453333pt;}
.y7f{bottom:233.533333pt;}
.y21{bottom:238.626667pt;}
.y6e{bottom:239.360000pt;}
.y16{bottom:242.146667pt;}
.y38{bottom:243.106667pt;}
.y49{bottom:243.653333pt;}
.y30{bottom:259.106667pt;}
.y48{bottom:262.853333pt;}
.y7e{bottom:265.533333pt;}
.y20{bottom:270.306667pt;}
.y60{bottom:272.226667pt;}
.yc{bottom:274.653333pt;}
.y15{bottom:277.346667pt;}
.y37{bottom:278.306667pt;}
.y47{bottom:290.053333pt;}
.y5f{bottom:291.426667pt;}
.y2f{bottom:294.306667pt;}
.y7d{bottom:297.533333pt;}
.y1f{bottom:301.986667pt;}
.y46{bottom:309.253333pt;}
.y5e{bottom:310.626667pt;}
.y14{bottom:312.546667pt;}
.y45{bottom:328.453333pt;}
.y36{bottom:328.573333pt;}
.yb{bottom:329.053333pt;}
.y2e{bottom:329.533333pt;}
.y7c{bottom:329.573333pt;}
.y5d{bottom:329.853333pt;}
.y1e{bottom:333.693333pt;}
.y26{bottom:343.613333pt;}
.y5{bottom:344.573333pt;}
.y44{bottom:347.653333pt;}
.y13{bottom:347.773333pt;}
.y53{bottom:355.706667pt;}
.y6d{bottom:356.546667pt;}
.y5c{bottom:357.053333pt;}
.y85{bottom:360.066667pt;}
.y35{bottom:363.773333pt;}
.y2d{bottom:371.773333pt;}
.y43{bottom:374.880000pt;}
.y52{bottom:374.906667pt;}
.y6c{bottom:375.746667pt;}
.y7b{bottom:375.973333pt;}
.y5b{bottom:376.253333pt;}
.y25{bottom:378.813333pt;}
.ya{bottom:383.493333pt;}
.y42{bottom:394.080000pt;}
.y51{bottom:394.106667pt;}
.y6b{bottom:394.946667pt;}
.y5a{bottom:395.453333pt;}
.y1d{bottom:396.413333pt;}
.y4{bottom:398.973333pt;}
.y2c{bottom:406.973333pt;}
.y7a{bottom:407.973333pt;}
.y50{bottom:413.306667pt;}
.y12{bottom:414.013333pt;}
.y6a{bottom:414.146667pt;}
.y59{bottom:414.653333pt;}
.y1c{bottom:428.093333pt;}
.y4f{bottom:432.506667pt;}
.y69{bottom:433.346667pt;}
.y84{bottom:433.986667pt;}
.y9{bottom:437.893333pt;}
.y79{bottom:439.973333pt;}
.y58{bottom:441.853333pt;}
.y2b{bottom:442.173333pt;}
.y11{bottom:449.213333pt;}
.y68{bottom:452.546667pt;}
.y1b{bottom:459.773333pt;}
.y57{bottom:461.053333pt;}
.y67{bottom:471.746667pt;}
.y3e{bottom:483.426667pt;}
.y10{bottom:484.453333pt;}
.y78{bottom:486.373333pt;}
.y1a{bottom:491.493333pt;}
.y8{bottom:492.293333pt;}
.y66{bottom:506.973333pt;}
.y77{bottom:518.400000pt;}
.yf{bottom:519.653333pt;}
.y3d{bottom:521.853333pt;}
.y19{bottom:523.173333pt;}
.y65{bottom:526.173333pt;}
.y61{bottom:544.413333pt;}
.y4d{bottom:582.813333pt;}
.y7{bottom:596.986667pt;}
.y64{bottom:604.480000pt;}
.y4c{bottom:621.213333pt;}
.y63{bottom:642.880000pt;}
.hc{height:24.568628pt;}
.h11{height:24.727524pt;}
.hd{height:43.404340pt;}
.h12{height:43.685056pt;}
.he{height:51.437500pt;}
.hf{height:51.540375pt;}
.h6{height:55.968750pt;}
.h10{height:56.080687pt;}
.h2{height:65.483437pt;}
.h7{height:65.595375pt;}
.hb{height:74.438437pt;}
.ha{height:74.550375pt;}
.h13{height:93.467812pt;}
.h14{height:93.579750pt;}
.h8{height:102.422812pt;}
.h9{height:102.534750pt;}
.h1{height:121.452188pt;}
.h3{height:158.391562pt;}
.h4{height:158.503500pt;}
.h5{height:168.018188pt;}
.h16{height:205.405313pt;}
.h15{height:251.859375pt;}
.h0{height:720.000000pt;}
.w2{width:565.602230pt;}
.w3{width:565.755439pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x19{left:49.120000pt;}
.x1f{left:54.527986pt;}
.xb{left:57.599986pt;}
.x18{left:58.687986pt;}
.x4{left:61.855986pt;}
.x13{left:67.103986pt;}
.x8{left:72.735986pt;}
.x1e{left:79.360000pt;}
.xc{left:93.599986pt;}
.x5{left:97.855986pt;}
.xe{left:99.711986pt;}
.xf{left:147.706652pt;}
.x3{left:185.786652pt;}
.x2{left:192.346652pt;}
.x12{left:219.359986pt;}
.x10{left:223.359986pt;}
.x11{left:225.439986pt;}
.xa{left:232.706652pt;}
.x25{left:234.173319pt;}
.x24{left:248.639986pt;}
.xd{left:267.679986pt;}
.x1{left:274.626652pt;}
.x6{left:293.146652pt;}
.x22{left:305.119986pt;}
.x23{left:314.399986pt;}
.x7{left:328.479986pt;}
.x26{left:349.533319pt;}
.x14{left:351.519986pt;}
.x21{left:663.173319pt;}
.x17{left:675.293319pt;}
.x20{left:677.893319pt;}
.x1b{left:689.146652pt;}
.x1a{left:692.826652pt;}
.x1c{left:695.066652pt;}
.x15{left:696.253319pt;}
.x16{left:698.813319pt;}
.x1d{left:886.053319pt;}
.x9{left:894.213319pt;}
}




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