
    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_54e1d71cb2673a3fe6c25677.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8cf9f93e8f6b03347e4d421e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073000;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_929a4c1d8aba2f54b6c86d6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.086000;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_bb1888fb584db043ab9795e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_8e38e12a410a62c10a38f066.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_421612e910e4accbb31e1183.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.085000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a0d8795ec21867bf82f34a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.744000px;}
.ls16{letter-spacing:-0.542400px;}
.ls18{letter-spacing:-0.429000px;}
.ls1a{letter-spacing:-0.386400px;}
.ls13{letter-spacing:-0.364200px;}
.ls17{letter-spacing:-0.229200px;}
.ls1b{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.139800px;}
.lsb{letter-spacing:-0.115800px;}
.ls22{letter-spacing:-0.030960px;}
.ls1{letter-spacing:-0.026640px;}
.ls23{letter-spacing:-0.015480px;}
.lsa{letter-spacing:-0.005760px;}
.ls3{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.019440px;}
.ls19{letter-spacing:0.040320px;}
.ls15{letter-spacing:0.062400px;}
.ls4{letter-spacing:0.065400px;}
.ls1c{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.066000px;}
.ls21{letter-spacing:0.074400px;}
.ls6{letter-spacing:0.074880px;}
.ls5{letter-spacing:0.075600px;}
.ls1e{letter-spacing:0.082200px;}
.ls8{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.121800px;}
.ls2{letter-spacing:0.130800px;}
.ls12{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.155400px;}
.lsc{letter-spacing:0.177600px;}
.ls20{letter-spacing:0.180600px;}
.ls7{letter-spacing:0.425520px;}
.ls1f{letter-spacing:4.304520px;}
.lsf{letter-spacing:2688.165000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-56.880000px;}
.ws1d{word-spacing:-47.880000px;}
.ws18{word-spacing:-18.771840px;}
.wsa{word-spacing:-18.725760px;}
.ws19{word-spacing:-18.587520px;}
.wsd{word-spacing:-15.592080px;}
.ws11{word-spacing:-15.569880px;}
.ws12{word-spacing:-15.546480px;}
.ws2{word-spacing:-15.545280px;}
.ws9{word-spacing:-15.490080px;}
.ws1a{word-spacing:-15.488880px;}
.wsc{word-spacing:-15.479880px;}
.ws13{word-spacing:-15.476880px;}
.wsf{word-spacing:-15.433920px;}
.ws6{word-spacing:-15.414480px;}
.ws4{word-spacing:-15.410160px;}
.ws1{word-spacing:-15.387840px;}
.wsb{word-spacing:-15.298680px;}
.ws8{word-spacing:-15.274680px;}
.ws15{word-spacing:-15.185280px;}
.ws10{word-spacing:-15.050280px;}
.ws17{word-spacing:-15.028080px;}
.ws16{word-spacing:-14.985480px;}
.ws14{word-spacing:-14.872080px;}
.wse{word-spacing:-14.670480px;}
.ws1f{word-spacing:-13.156080px;}
.ws1b{word-spacing:-13.057680px;}
.ws1c{word-spacing:-12.975480px;}
.ws1e{word-spacing:-12.944520px;}
.ws7{word-spacing:-12.285000px;}
.ws5{word-spacing:-9.756000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.190160px;}
._0{width:1.078920px;}
._2{width:2.490480px;}
._5{width:3.506520px;}
._3{width:2557.125000px;}
._4{width:3398.465520px;}
.fc4{color:rgb(136,24,36);}
.fc3{color:rgb(0,71,120);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:42.120000px;}
.fsa{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y97{bottom:2.520000px;}
.y94{bottom:3.240000px;}
.y29{bottom:3.870000px;}
.y95{bottom:34.020000px;}
.y6{bottom:50.595005px;}
.y4d{bottom:54.900000px;}
.y25{bottom:56.610000px;}
.yba{bottom:72.720000px;}
.y5{bottom:75.795004px;}
.yb9{bottom:89.280000px;}
.y4{bottom:100.995005px;}
.yb8{bottom:105.750000px;}
.y4c{bottom:112.950000px;}
.y96{bottom:114.840000px;}
.y4b{bottom:126.450000px;}
.yb7{bottom:138.780000px;}
.y23{bottom:139.264499px;}
.yb6{bottom:155.250000px;}
.y4a{bottom:165.600000px;}
.y7b{bottom:165.780000px;}
.y93{bottom:165.870000px;}
.yb5{bottom:171.720000px;}
.y49{bottom:185.040000px;}
.y7a{bottom:185.310000px;}
.yb4{bottom:188.280000px;}
.y1a{bottom:196.933500px;}
.y48{bottom:204.570000px;}
.yb3{bottom:204.750000px;}
.y79{bottom:204.840000px;}
.y91{bottom:207.090000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yb2{bottom:221.220000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y98{bottom:223.320000px;}
.y47{bottom:224.130000px;}
.y78{bottom:224.310000px;}
.y90{bottom:226.650000px;}
.y27{bottom:228.810000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y46{bottom:243.570000px;}
.y77{bottom:243.840000px;}
.yb1{bottom:254.250000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y45{bottom:263.100000px;}
.y76{bottom:263.370000px;}
.yb0{bottom:270.720000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y44{bottom:282.630000px;}
.y75{bottom:282.810000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yaf{bottom:287.280000px;}
.y43{bottom:302.070000px;}
.y74{bottom:302.340000px;}
.yae{bottom:303.750000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yad{bottom:320.220000px;}
.y42{bottom:321.600000px;}
.y73{bottom:321.870000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yac{bottom:336.780000px;}
.y41{bottom:341.130000px;}
.y72{bottom:341.310000px;}
.y92{bottom:341.400000px;}
.y11{bottom:348.133500px;}
.y40{bottom:360.570000px;}
.y71{bottom:360.840000px;}
.yab{bottom:369.720000px;}
.y3f{bottom:380.100000px;}
.y70{bottom:380.370000px;}
.yaa{bottom:386.280000px;}
.y10{bottom:386.785499px;}
.y3e{bottom:399.630000px;}
.y6f{bottom:399.810000px;}
.y8c{bottom:402.060000px;}
.ya9{bottom:402.750000px;}
.yf{bottom:408.044999px;}
.y3d{bottom:419.070000px;}
.ya8{bottom:419.250000px;}
.y6e{bottom:419.340000px;}
.y8b{bottom:421.590000px;}
.ya7{bottom:435.810000px;}
.y3c{bottom:438.600000px;}
.y6d{bottom:438.870000px;}
.ya6{bottom:452.280000px;}
.y3b{bottom:458.130000px;}
.y6c{bottom:458.310000px;}
.ya5{bottom:468.750000px;}
.y8a{bottom:474.780000px;}
.y3a{bottom:477.570000px;}
.y6b{bottom:477.840000px;}
.ya4{bottom:485.310000px;}
.y89{bottom:494.310000px;}
.y39{bottom:497.100000px;}
.y6a{bottom:497.370000px;}
.ya3{bottom:501.780000px;}
.ye{bottom:502.864502px;}
.y38{bottom:516.630000px;}
.y69{bottom:516.810000px;}
.ya2{bottom:518.250000px;}
.yd{bottom:520.864502px;}
.y37{bottom:536.070000px;}
.y68{bottom:536.340000px;}
.yc{bottom:538.864499px;}
.ya1{bottom:551.280000px;}
.y36{bottom:555.600000px;}
.y67{bottom:555.870000px;}
.yb{bottom:556.864499px;}
.ya0{bottom:567.750000px;}
.y35{bottom:575.130000px;}
.y66{bottom:575.310000px;}
.y9f{bottom:584.310000px;}
.y34{bottom:594.570000px;}
.y65{bottom:594.840000px;}
.y9e{bottom:600.780000px;}
.y33{bottom:614.100000px;}
.y64{bottom:614.370000px;}
.ya{bottom:626.610001px;}
.y32{bottom:633.660000px;}
.y9d{bottom:633.810000px;}
.y63{bottom:633.840000px;}
.y9{bottom:645.510000px;}
.y9c{bottom:650.280000px;}
.y31{bottom:653.100000px;}
.y83{bottom:653.370000px;}
.y88{bottom:653.460000px;}
.y8{bottom:666.771000px;}
.y62{bottom:669.840000px;}
.y30{bottom:672.630000px;}
.y82{bottom:672.900000px;}
.y9b{bottom:682.950000px;}
.y61{bottom:689.370000px;}
.y2f{bottom:692.160000px;}
.y81{bottom:692.340000px;}
.y9a{bottom:699.690000px;}
.y86{bottom:708.810000px;}
.y80{bottom:711.870000px;}
.y99{bottom:713.460000px;}
.y7{bottom:726.298500px;}
.y85{bottom:728.340000px;}
.y60{bottom:731.400000px;}
.y2e{bottom:734.820000px;}
.y5f{bottom:750.840000px;}
.y3{bottom:752.599495px;}
.y2d{bottom:754.350000px;}
.y5e{bottom:770.370000px;}
.y2c{bottom:773.880000px;}
.y5d{bottom:789.900000px;}
.y2b{bottom:801.240000px;}
.y5c{bottom:809.340000px;}
.y5b{bottom:828.870000px;}
.y2a{bottom:837.240000px;}
.y5a{bottom:848.400000px;}
.y59{bottom:867.840000px;}
.y2{bottom:879.369000px;}
.y7f{bottom:884.310000px;}
.y58{bottom:887.370000px;}
.y28{bottom:891.690000px;}
.y57{bottom:906.900000px;}
.y26{bottom:912.030000px;}
.y56{bottom:926.340000px;}
.y55{bottom:945.870000px;}
.y54{bottom:965.400000px;}
.y1{bottom:966.726000px;}
.y53{bottom:984.840000px;}
.y52{bottom:1004.370000px;}
.y7e{bottom:1023.900000px;}
.y51{bottom:1043.340000px;}
.y7d{bottom:1062.900000px;}
.y8d{bottom:1065.150000px;}
.y87{bottom:1079.370000px;}
.y7c{bottom:1082.430000px;}
.y50{bottom:1101.870000px;}
.y4f{bottom:1121.400000px;}
.y84{bottom:1121.490000px;}
.y8f{bottom:1123.650000px;}
.y4e{bottom:1140.930000px;}
.y8e{bottom:1143.180000px;}
.y24{bottom:1203.390000px;}
.h16{height:16.470000px;}
.he{height:19.530000px;}
.h8{height:32.130000px;}
.h1a{height:34.020003px;}
.h19{height:35.212320px;}
.h13{height:37.800000px;}
.h9{height:37.968000px;}
.h14{height:38.565000px;}
.h17{height:40.027680px;}
.hb{height:40.219200px;}
.h1c{height:41.033160px;}
.h12{height:47.551680px;}
.hc{height:47.779200px;}
.h3{height:48.195000px;}
.h11{height:48.746160px;}
.h15{height:53.991000px;}
.h7{height:54.240000px;}
.h6{height:56.952000px;}
.hf{height:59.235840px;}
.h2{height:65.088000px;}
.h5{height:75.936000px;}
.h10{height:102.737160px;}
.h4{height:119.055004px;}
.h18{height:131.850000px;}
.hd{height:244.470000px;}
.h1b{height:732.090000px;}
.h0{height:1262.833500px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:0.449985px;}
.wa{width:0.450000px;}
.w7{width:19.740000px;}
.w6{width:25.470000px;}
.w8{width:132.660000px;}
.wb{width:174.360000px;}
.wd{width:178.680000px;}
.wc{width:578.400000px;}
.w5{width:599.760000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x6{left:-63.720013px;}
.x0{left:0.000000px;}
.x8{left:10.710000px;}
.x15{left:49.680000px;}
.x14{left:51.030000px;}
.x7{left:65.880000px;}
.x5{left:76.589987px;}
.xc{left:89.730000px;}
.x13{left:93.599987px;}
.xf{left:97.829987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:121.800000px;}
.x4{left:203.484001px;}
.x10{left:238.169987px;}
.xa{left:254.460000px;}
.xb{left:255.810000px;}
.xd{left:374.189987px;}
.xe{left:391.199987px;}
.x3{left:454.959000px;}
.x11{left:535.739987px;}
.x12{left:552.749987px;}
@media print{
.v1{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.661333pt;}
.ls16{letter-spacing:-0.482133pt;}
.ls18{letter-spacing:-0.381333pt;}
.ls1a{letter-spacing:-0.343467pt;}
.ls13{letter-spacing:-0.323733pt;}
.ls17{letter-spacing:-0.203733pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.124267pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls22{letter-spacing:-0.027520pt;}
.ls1{letter-spacing:-0.023680pt;}
.ls23{letter-spacing:-0.013760pt;}
.lsa{letter-spacing:-0.005120pt;}
.ls3{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.017280pt;}
.ls19{letter-spacing:0.035840pt;}
.ls15{letter-spacing:0.055467pt;}
.ls4{letter-spacing:0.058133pt;}
.ls1c{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.058667pt;}
.ls21{letter-spacing:0.066133pt;}
.ls6{letter-spacing:0.066560pt;}
.ls5{letter-spacing:0.067200pt;}
.ls1e{letter-spacing:0.073067pt;}
.ls8{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.108267pt;}
.ls2{letter-spacing:0.116267pt;}
.ls12{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.138133pt;}
.lsc{letter-spacing:0.157867pt;}
.ls20{letter-spacing:0.160533pt;}
.ls7{letter-spacing:0.378240pt;}
.ls1f{letter-spacing:3.826240pt;}
.lsf{letter-spacing:2389.480000pt;}
.ws3{word-spacing:-50.560000pt;}
.ws1d{word-spacing:-42.560000pt;}
.ws18{word-spacing:-16.686080pt;}
.wsa{word-spacing:-16.645120pt;}
.ws19{word-spacing:-16.522240pt;}
.wsd{word-spacing:-13.859627pt;}
.ws11{word-spacing:-13.839893pt;}
.ws12{word-spacing:-13.819093pt;}
.ws2{word-spacing:-13.818027pt;}
.ws9{word-spacing:-13.768960pt;}
.ws1a{word-spacing:-13.767893pt;}
.wsc{word-spacing:-13.759893pt;}
.ws13{word-spacing:-13.757227pt;}
.wsf{word-spacing:-13.719040pt;}
.ws6{word-spacing:-13.701760pt;}
.ws4{word-spacing:-13.697920pt;}
.ws1{word-spacing:-13.678080pt;}
.wsb{word-spacing:-13.598827pt;}
.ws8{word-spacing:-13.577493pt;}
.ws15{word-spacing:-13.498027pt;}
.ws10{word-spacing:-13.378027pt;}
.ws17{word-spacing:-13.358293pt;}
.ws16{word-spacing:-13.320427pt;}
.ws14{word-spacing:-13.219627pt;}
.wse{word-spacing:-13.040427pt;}
.ws1f{word-spacing:-11.694293pt;}
.ws1b{word-spacing:-11.606827pt;}
.ws1c{word-spacing:-11.533760pt;}
.ws1e{word-spacing:-11.506240pt;}
.ws7{word-spacing:-10.920000pt;}
.ws5{word-spacing:-8.672000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.057920pt;}
._0{width:0.959040pt;}
._2{width:2.213760pt;}
._5{width:3.116907pt;}
._3{width:2273.000000pt;}
._4{width:3020.858240pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:37.440000pt;}
.fsa{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:2.240000pt;}
.y94{bottom:2.880000pt;}
.y29{bottom:3.440000pt;}
.y95{bottom:30.240000pt;}
.y6{bottom:44.973338pt;}
.y4d{bottom:48.800000pt;}
.y25{bottom:50.320000pt;}
.yba{bottom:64.640000pt;}
.y5{bottom:67.373337pt;}
.yb9{bottom:79.360000pt;}
.y4{bottom:89.773337pt;}
.yb8{bottom:94.000000pt;}
.y4c{bottom:100.400000pt;}
.y96{bottom:102.080000pt;}
.y4b{bottom:112.400000pt;}
.yb7{bottom:123.360000pt;}
.y23{bottom:123.790666pt;}
.yb6{bottom:138.000000pt;}
.y4a{bottom:147.200000pt;}
.y7b{bottom:147.360000pt;}
.y93{bottom:147.440000pt;}
.yb5{bottom:152.640000pt;}
.y49{bottom:164.480000pt;}
.y7a{bottom:164.720000pt;}
.yb4{bottom:167.360000pt;}
.y1a{bottom:175.052000pt;}
.y48{bottom:181.840000pt;}
.yb3{bottom:182.000000pt;}
.y79{bottom:182.080000pt;}
.y91{bottom:184.080000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yb2{bottom:196.640000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y98{bottom:198.506667pt;}
.y47{bottom:199.226667pt;}
.y78{bottom:199.386667pt;}
.y90{bottom:201.466667pt;}
.y27{bottom:203.386667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y46{bottom:216.506667pt;}
.y77{bottom:216.746667pt;}
.yb1{bottom:226.000000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y45{bottom:233.866667pt;}
.y76{bottom:234.106667pt;}
.yb0{bottom:240.640000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y44{bottom:251.226667pt;}
.y75{bottom:251.386667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yaf{bottom:255.360000pt;}
.y43{bottom:268.506667pt;}
.y74{bottom:268.746667pt;}
.yae{bottom:270.000000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yad{bottom:284.640000pt;}
.y42{bottom:285.866667pt;}
.y73{bottom:286.106667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yac{bottom:299.360000pt;}
.y41{bottom:303.226667pt;}
.y72{bottom:303.386667pt;}
.y92{bottom:303.466667pt;}
.y11{bottom:309.452000pt;}
.y40{bottom:320.506667pt;}
.y71{bottom:320.746667pt;}
.yab{bottom:328.640000pt;}
.y3f{bottom:337.866667pt;}
.y70{bottom:338.106667pt;}
.yaa{bottom:343.360000pt;}
.y10{bottom:343.809333pt;}
.y3e{bottom:355.226667pt;}
.y6f{bottom:355.386667pt;}
.y8c{bottom:357.386667pt;}
.ya9{bottom:358.000000pt;}
.yf{bottom:362.706666pt;}
.y3d{bottom:372.506667pt;}
.ya8{bottom:372.666667pt;}
.y6e{bottom:372.746667pt;}
.y8b{bottom:374.746667pt;}
.ya7{bottom:387.386667pt;}
.y3c{bottom:389.866667pt;}
.y6d{bottom:390.106667pt;}
.ya6{bottom:402.026667pt;}
.y3b{bottom:407.226667pt;}
.y6c{bottom:407.386667pt;}
.ya5{bottom:416.666667pt;}
.y8a{bottom:422.026667pt;}
.y3a{bottom:424.506667pt;}
.y6b{bottom:424.746667pt;}
.ya4{bottom:431.386667pt;}
.y89{bottom:439.386667pt;}
.y39{bottom:441.866667pt;}
.y6a{bottom:442.106667pt;}
.ya3{bottom:446.026667pt;}
.ye{bottom:446.990669pt;}
.y38{bottom:459.226667pt;}
.y69{bottom:459.386667pt;}
.ya2{bottom:460.666667pt;}
.yd{bottom:462.990669pt;}
.y37{bottom:476.506667pt;}
.y68{bottom:476.746667pt;}
.yc{bottom:478.990666pt;}
.ya1{bottom:490.026667pt;}
.y36{bottom:493.866667pt;}
.y67{bottom:494.106667pt;}
.yb{bottom:494.990666pt;}
.ya0{bottom:504.666667pt;}
.y35{bottom:511.226667pt;}
.y66{bottom:511.386667pt;}
.y9f{bottom:519.386667pt;}
.y34{bottom:528.506667pt;}
.y65{bottom:528.746667pt;}
.y9e{bottom:534.026667pt;}
.y33{bottom:545.866667pt;}
.y64{bottom:546.106667pt;}
.ya{bottom:556.986668pt;}
.y32{bottom:563.253333pt;}
.y9d{bottom:563.386667pt;}
.y63{bottom:563.413333pt;}
.y9{bottom:573.786667pt;}
.y9c{bottom:578.026667pt;}
.y31{bottom:580.533333pt;}
.y83{bottom:580.773333pt;}
.y88{bottom:580.853333pt;}
.y8{bottom:592.685334pt;}
.y62{bottom:595.413333pt;}
.y30{bottom:597.893333pt;}
.y82{bottom:598.133333pt;}
.y9b{bottom:607.066667pt;}
.y61{bottom:612.773333pt;}
.y2f{bottom:615.253333pt;}
.y81{bottom:615.413333pt;}
.y9a{bottom:621.946667pt;}
.y86{bottom:630.053333pt;}
.y80{bottom:632.773333pt;}
.y99{bottom:634.186667pt;}
.y7{bottom:645.598667pt;}
.y85{bottom:647.413333pt;}
.y60{bottom:650.133333pt;}
.y2e{bottom:653.173333pt;}
.y5f{bottom:667.413333pt;}
.y3{bottom:668.977329pt;}
.y2d{bottom:670.533333pt;}
.y5e{bottom:684.773333pt;}
.y2c{bottom:687.893333pt;}
.y5d{bottom:702.133333pt;}
.y2b{bottom:712.213333pt;}
.y5c{bottom:719.413333pt;}
.y5b{bottom:736.773333pt;}
.y2a{bottom:744.213333pt;}
.y5a{bottom:754.133333pt;}
.y59{bottom:771.413333pt;}
.y2{bottom:781.661334pt;}
.y7f{bottom:786.053333pt;}
.y58{bottom:788.773333pt;}
.y28{bottom:792.613333pt;}
.y57{bottom:806.133333pt;}
.y26{bottom:810.693333pt;}
.y56{bottom:823.413333pt;}
.y55{bottom:840.773333pt;}
.y54{bottom:858.133333pt;}
.y1{bottom:859.312000pt;}
.y53{bottom:875.413333pt;}
.y52{bottom:892.773333pt;}
.y7e{bottom:910.133333pt;}
.y51{bottom:927.413333pt;}
.y7d{bottom:944.800000pt;}
.y8d{bottom:946.800000pt;}
.y87{bottom:959.440000pt;}
.y7c{bottom:962.160000pt;}
.y50{bottom:979.440000pt;}
.y4f{bottom:996.800000pt;}
.y84{bottom:996.880000pt;}
.y8f{bottom:998.800000pt;}
.y4e{bottom:1014.160000pt;}
.y8e{bottom:1016.160000pt;}
.y24{bottom:1069.680000pt;}
.h16{height:14.640000pt;}
.he{height:17.360000pt;}
.h8{height:28.560000pt;}
.h1a{height:30.240003pt;}
.h19{height:31.299840pt;}
.h13{height:33.600000pt;}
.h9{height:33.749333pt;}
.h14{height:34.280000pt;}
.h17{height:35.580160pt;}
.hb{height:35.750400pt;}
.h1c{height:36.473920pt;}
.h12{height:42.268160pt;}
.hc{height:42.470400pt;}
.h3{height:42.840000pt;}
.h11{height:43.329920pt;}
.h15{height:47.992000pt;}
.h7{height:48.213333pt;}
.h6{height:50.624000pt;}
.hf{height:52.654080pt;}
.h2{height:57.856000pt;}
.h5{height:67.498667pt;}
.h10{height:91.321920pt;}
.h4{height:105.826671pt;}
.h18{height:117.200000pt;}
.hd{height:217.306667pt;}
.h1b{height:650.746667pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:0.399987pt;}
.wa{width:0.400000pt;}
.w7{width:17.546667pt;}
.w6{width:22.640000pt;}
.w8{width:117.920000pt;}
.wb{width:154.986667pt;}
.wd{width:158.826667pt;}
.wc{width:514.133333pt;}
.w5{width:533.120000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x6{left:-56.640012pt;}
.x0{left:0.000000pt;}
.x8{left:9.520000pt;}
.x15{left:44.160000pt;}
.x14{left:45.360000pt;}
.x7{left:58.560000pt;}
.x5{left:68.079988pt;}
.xc{left:79.760000pt;}
.x13{left:83.199988pt;}
.xf{left:86.959988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:108.266667pt;}
.x4{left:180.874667pt;}
.x10{left:211.706655pt;}
.xa{left:226.186667pt;}
.xb{left:227.386667pt;}
.xd{left:332.613322pt;}
.xe{left:347.733322pt;}
.x3{left:404.408000pt;}
.x11{left:476.213322pt;}
.x12{left:491.333322pt;}
}




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