
    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_04e45ad9b20c2cd5546965f2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_66411041a670ef145bf6188e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_7d4dcd36e3f6f644b3ccca9f.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_099148445ec67252405d0b24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_e92a8e42cb175c7a3aba3c67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044922;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_65aa3778dd32b14d3532e31e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_f51d5e18d0eaac79724d7294.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_3ba45ad2995de53baee75361.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.776855;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);}
.v3{vertical-align:-75.600000px;}
.v4{vertical-align:-71.280000px;}
.v5{vertical-align:-64.800000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.254000px;}
.ls24{letter-spacing:-1.182000px;}
.lsb{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.567600px;}
.ls25{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.531600px;}
.ls9{letter-spacing:-0.528600px;}
.ls23{letter-spacing:-0.460200px;}
.ls1a{letter-spacing:-0.457800px;}
.ls13{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.089400px;}
.ls2a{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.262080px;}
.ls6{letter-spacing:0.274200px;}
.ls16{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.342600px;}
.ls2b{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.377400px;}
.ls21{letter-spacing:0.379920px;}
.ls20{letter-spacing:0.900000px;}
.ls1f{letter-spacing:2.340000px;}
.ls2{letter-spacing:3.060000px;}
.ls19{letter-spacing:9.509760px;}
.ls1b{letter-spacing:10.229760px;}
.ls17{letter-spacing:14.400000px;}
.ls26{letter-spacing:14.574240px;}
.ls22{letter-spacing:19.800000px;}
.ls1c{letter-spacing:21.029760px;}
.ls1d{letter-spacing:28.080000px;}
.lsf{letter-spacing:170.640000px;}
.ls18{letter-spacing:310.296000px;}
.ls10{letter-spacing:383.916000px;}
.ls27{letter-spacing:720.876000px;}
.ls28{letter-spacing:1259.556000px;}
.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;}
}
.ws4{word-spacing:-51.120000px;}
.ws12{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.wse{word-spacing:-16.145400px;}
.ws10{word-spacing:-16.102200px;}
.wsd{word-spacing:-15.948000px;}
.ws17{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.120000px;}
.ws19{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.328000px;}
.ws18{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.157400px;}
.ws2{word-spacing:-13.054200px;}
.ws0{word-spacing:-12.780000px;}
.ws3{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws8{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.350600px;}
.ws9{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._3{margin-left:-3.732204px;}
._1{margin-left:-2.229396px;}
._0{margin-left:-1.185702px;}
._2{width:1.337817px;}
._19{width:2.339622px;}
._8{width:3.350298px;}
._7{width:4.618493px;}
._9{width:5.968493px;}
._a{width:7.816188px;}
._e{width:8.834880px;}
._f{width:10.096544px;}
._c{width:11.459454px;}
._d{width:12.718626px;}
._12{width:13.843680px;}
._14{width:15.143520px;}
._23{width:16.203486px;}
._16{width:18.010662px;}
._21{width:19.055973px;}
._5{width:20.514000px;}
._4{width:21.546000px;}
._6{width:22.737885px;}
._1d{width:23.820435px;}
._1e{width:25.237440px;}
._1c{width:26.266298px;}
._10{width:27.489600px;}
._13{width:28.581018px;}
._1f{width:30.781440px;}
._20{width:32.222298px;}
._b{width:33.576960px;}
._22{width:36.365760px;}
._15{width:39.142080px;}
._1b{width:40.273920px;}
._1a{width:42.222342px;}
._18{width:43.618080px;}
._17{width:44.706240px;}
._27{width:48.425107px;}
._26{width:50.424000px;}
._25{width:51.528000px;}
._11{width:53.124679px;}
._24{width:70.755840px;}
._28{width:124.470000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(15,17,21);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.880000px;}
.y55{bottom:90.360000px;}
.y5d{bottom:97.560000px;}
.y3a{bottom:100.836000px;}
.y54{bottom:109.476000px;}
.y5c{bottom:114.876000px;}
.y25{bottom:119.736000px;}
.y53{bottom:128.376000px;}
.y5b{bottom:132.156000px;}
.y24{bottom:138.816000px;}
.y52{bottom:147.456000px;}
.y5a{bottom:149.436000px;}
.y23{bottom:157.710000px;}
.y51{bottom:166.350000px;}
.y59{bottom:166.710000px;}
.y22{bottom:176.790000px;}
.y58{bottom:183.810000px;}
.y50{bottom:185.250000px;}
.y21{bottom:195.690000px;}
.y57{bottom:198.030000px;}
.y4f{bottom:204.330000px;}
.y20{bottom:214.590000px;}
.y4e{bottom:223.230000px;}
.y78{bottom:227.370000px;}
.y1f{bottom:233.670000px;}
.y77{bottom:241.770000px;}
.y4d{bottom:242.310000px;}
.y1e{bottom:252.570000px;}
.y4c{bottom:261.210000px;}
.y1d{bottom:271.650000px;}
.y76{bottom:276.735000px;}
.y4b{bottom:280.155000px;}
.y1c{bottom:290.595000px;}
.y75{bottom:295.095000px;}
.y4a{bottom:299.235000px;}
.y1b{bottom:309.495000px;}
.y74{bottom:310.575000px;}
.y49{bottom:318.135000px;}
.y73{bottom:326.055000px;}
.y1a{bottom:328.575000px;}
.y48{bottom:337.215000px;}
.y72{bottom:341.535000px;}
.y19{bottom:347.475000px;}
.y47{bottom:356.115000px;}
.y71{bottom:357.195000px;}
.y18{bottom:366.555000px;}
.y70{bottom:372.675000px;}
.y46{bottom:375.195000px;}
.y17{bottom:385.455000px;}
.y6f{bottom:388.155000px;}
.y45{bottom:394.095000px;}
.y6e{bottom:403.635000px;}
.y39{bottom:404.355000px;}
.y44{bottom:412.995000px;}
.y6d{bottom:419.295000px;}
.y16{bottom:423.435000px;}
.y43{bottom:432.075000px;}
.y6c{bottom:434.775000px;}
.y38{bottom:442.335000px;}
.y6b{bottom:450.255000px;}
.y42{bottom:450.975000px;}
.y15{bottom:455.505000px;}
.y37{bottom:461.445000px;}
.y6a{bottom:465.765000px;}
.y41{bottom:470.085000px;}
.y14{bottom:470.985000px;}
.y36{bottom:480.345000px;}
.y69{bottom:481.245000px;}
.y13{bottom:486.465000px;}
.y40{bottom:488.985000px;}
.y68{bottom:496.905000px;}
.y35{bottom:499.245000px;}
.y12{bottom:501.945000px;}
.y56{bottom:507.885000px;}
.y67{bottom:512.385000px;}
.y11{bottom:517.605000px;}
.y34{bottom:518.325000px;}
.y3f{bottom:526.965000px;}
.y66{bottom:527.865000px;}
.y10{bottom:533.085000px;}
.y65{bottom:543.345000px;}
.y3e{bottom:545.865000px;}
.y33{bottom:555.045000px;}
.yf{bottom:562.425000px;}
.y3d{bottom:564.945000px;}
.y32{bottom:569.985000px;}
.y64{bottom:575.205000px;}
.ye{bottom:577.905000px;}
.y3c{bottom:583.845000px;}
.y31{bottom:587.805000px;}
.y63{bottom:593.745000px;}
.yd{bottom:597.885000px;}
.y30{bottom:602.745000px;}
.y62{bottom:611.025000px;}
.y2f{bottom:621.825000px;}
.yc{bottom:624.525000px;}
.y61{bottom:628.305000px;}
.yb{bottom:640.050000px;}
.y2e{bottom:640.770000px;}
.y60{bottom:645.630000px;}
.y2d{bottom:659.850000px;}
.ya{bottom:660.030000px;}
.y5f{bottom:662.730000px;}
.y2c{bottom:678.750000px;}
.y5e{bottom:680.010000px;}
.y9{bottom:690.810000px;}
.y2b{bottom:697.650000px;}
.y2a{bottom:716.730000px;}
.y8{bottom:728.790000px;}
.y29{bottom:735.630000px;}
.y7{bottom:747.690000px;}
.y3b{bottom:754.710000px;}
.y6{bottom:769.110000px;}
.y28{bottom:773.610000px;}
.y5{bottom:782.790000px;}
.y27{bottom:792.690000px;}
.y4{bottom:796.650000px;}
.y2{bottom:813.240000px;}
.y26{bottom:824.580000px;}
.y1{bottom:828.000000px;}
.h7{height:36.281250px;}
.h4{height:47.344922px;}
.he{height:48.410156px;}
.h2{height:51.519375px;}
.h8{height:52.998047px;}
.h9{height:54.421875px;}
.hf{height:58.621992px;}
.hc{height:58.651172px;}
.hd{height:59.439023px;}
.hb{height:60.226875px;}
.ha{height:65.010937px;}
.h5{height:65.884219px;}
.h6{height:66.757500px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x4{left:84.996000px;}
.x2{left:86.796000px;}
.x8{left:89.315991px;}
.x5{left:122.256000px;}
.x1{left:131.076000px;}
.x6{left:192.450000px;}
.x7{left:197.669991px;}
.x9{left:279.974991px;}
.x3{left:301.215000px;}
.xb{left:404.024991px;}
.xa{left:544.109991px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v4{vertical-align:-63.360000pt;}
.v5{vertical-align:-57.600000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-1.114667pt;}
.ls24{letter-spacing:-1.050667pt;}
.lsb{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.504533pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.472533pt;}
.ls9{letter-spacing:-0.469867pt;}
.ls23{letter-spacing:-0.409067pt;}
.ls1a{letter-spacing:-0.406933pt;}
.ls13{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.079467pt;}
.ls2a{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.232960pt;}
.ls6{letter-spacing:0.243733pt;}
.ls16{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.304533pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.335467pt;}
.ls21{letter-spacing:0.337707pt;}
.ls20{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls2{letter-spacing:2.720000pt;}
.ls19{letter-spacing:8.453120pt;}
.ls1b{letter-spacing:9.093120pt;}
.ls17{letter-spacing:12.800000pt;}
.ls26{letter-spacing:12.954880pt;}
.ls22{letter-spacing:17.600000pt;}
.ls1c{letter-spacing:18.693120pt;}
.ls1d{letter-spacing:24.960000pt;}
.lsf{letter-spacing:151.680000pt;}
.ls18{letter-spacing:275.818667pt;}
.ls10{letter-spacing:341.258667pt;}
.ls27{letter-spacing:640.778667pt;}
.ls28{letter-spacing:1119.605333pt;}
.ws4{word-spacing:-45.440000pt;}
.ws12{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.351467pt;}
.ws10{word-spacing:-14.313067pt;}
.wsd{word-spacing:-14.176000pt;}
.ws17{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.736000pt;}
.ws18{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.695467pt;}
.ws2{word-spacing:-11.603733pt;}
.ws0{word-spacing:-11.360000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.280000pt;}
.wsb{word-spacing:-9.200533pt;}
.ws9{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._3{margin-left:-3.317515pt;}
._1{margin-left:-1.981685pt;}
._0{margin-left:-1.053958pt;}
._2{width:1.189171pt;}
._19{width:2.079664pt;}
._8{width:2.978042pt;}
._7{width:4.105327pt;}
._9{width:5.305327pt;}
._a{width:6.947722pt;}
._e{width:7.853227pt;}
._f{width:8.974706pt;}
._c{width:10.186181pt;}
._d{width:11.305446pt;}
._12{width:12.305493pt;}
._14{width:13.460907pt;}
._23{width:14.403098pt;}
._16{width:16.009478pt;}
._21{width:16.938643pt;}
._5{width:18.234667pt;}
._4{width:19.152000pt;}
._6{width:20.211453pt;}
._1d{width:21.173720pt;}
._1e{width:22.433280pt;}
._1c{width:23.347821pt;}
._10{width:24.435200pt;}
._13{width:25.405349pt;}
._1f{width:27.361280pt;}
._20{width:28.642042pt;}
._b{width:29.846187pt;}
._22{width:32.325120pt;}
._15{width:34.792960pt;}
._1b{width:35.799040pt;}
._1a{width:37.530971pt;}
._18{width:38.771627pt;}
._17{width:39.738880pt;}
._27{width:43.044539pt;}
._26{width:44.821333pt;}
._25{width:45.802667pt;}
._11{width:47.221937pt;}
._24{width:62.894080pt;}
._28{width:110.640000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.560000pt;}
.y55{bottom:80.320000pt;}
.y5d{bottom:86.720000pt;}
.y3a{bottom:89.632000pt;}
.y54{bottom:97.312000pt;}
.y5c{bottom:102.112000pt;}
.y25{bottom:106.432000pt;}
.y53{bottom:114.112000pt;}
.y5b{bottom:117.472000pt;}
.y24{bottom:123.392000pt;}
.y52{bottom:131.072000pt;}
.y5a{bottom:132.832000pt;}
.y23{bottom:140.186667pt;}
.y51{bottom:147.866667pt;}
.y59{bottom:148.186667pt;}
.y22{bottom:157.146667pt;}
.y58{bottom:163.386667pt;}
.y50{bottom:164.666667pt;}
.y21{bottom:173.946667pt;}
.y57{bottom:176.026667pt;}
.y4f{bottom:181.626667pt;}
.y20{bottom:190.746667pt;}
.y4e{bottom:198.426667pt;}
.y78{bottom:202.106667pt;}
.y1f{bottom:207.706667pt;}
.y77{bottom:214.906667pt;}
.y4d{bottom:215.386667pt;}
.y1e{bottom:224.506667pt;}
.y4c{bottom:232.186667pt;}
.y1d{bottom:241.466667pt;}
.y76{bottom:245.986667pt;}
.y4b{bottom:249.026667pt;}
.y1c{bottom:258.306667pt;}
.y75{bottom:262.306667pt;}
.y4a{bottom:265.986667pt;}
.y1b{bottom:275.106667pt;}
.y74{bottom:276.066667pt;}
.y49{bottom:282.786667pt;}
.y73{bottom:289.826667pt;}
.y1a{bottom:292.066667pt;}
.y48{bottom:299.746667pt;}
.y72{bottom:303.586667pt;}
.y19{bottom:308.866667pt;}
.y47{bottom:316.546667pt;}
.y71{bottom:317.506667pt;}
.y18{bottom:325.826667pt;}
.y70{bottom:331.266667pt;}
.y46{bottom:333.506667pt;}
.y17{bottom:342.626667pt;}
.y6f{bottom:345.026667pt;}
.y45{bottom:350.306667pt;}
.y6e{bottom:358.786667pt;}
.y39{bottom:359.426667pt;}
.y44{bottom:367.106667pt;}
.y6d{bottom:372.706667pt;}
.y16{bottom:376.386667pt;}
.y43{bottom:384.066667pt;}
.y6c{bottom:386.466667pt;}
.y38{bottom:393.186667pt;}
.y6b{bottom:400.226667pt;}
.y42{bottom:400.866667pt;}
.y15{bottom:404.893333pt;}
.y37{bottom:410.173333pt;}
.y6a{bottom:414.013333pt;}
.y41{bottom:417.853333pt;}
.y14{bottom:418.653333pt;}
.y36{bottom:426.973333pt;}
.y69{bottom:427.773333pt;}
.y13{bottom:432.413333pt;}
.y40{bottom:434.653333pt;}
.y68{bottom:441.693333pt;}
.y35{bottom:443.773333pt;}
.y12{bottom:446.173333pt;}
.y56{bottom:451.453333pt;}
.y67{bottom:455.453333pt;}
.y11{bottom:460.093333pt;}
.y34{bottom:460.733333pt;}
.y3f{bottom:468.413333pt;}
.y66{bottom:469.213333pt;}
.y10{bottom:473.853333pt;}
.y65{bottom:482.973333pt;}
.y3e{bottom:485.213333pt;}
.y33{bottom:493.373333pt;}
.yf{bottom:499.933333pt;}
.y3d{bottom:502.173333pt;}
.y32{bottom:506.653333pt;}
.y64{bottom:511.293333pt;}
.ye{bottom:513.693333pt;}
.y3c{bottom:518.973333pt;}
.y31{bottom:522.493333pt;}
.y63{bottom:527.773333pt;}
.yd{bottom:531.453333pt;}
.y30{bottom:535.773333pt;}
.y62{bottom:543.133333pt;}
.y2f{bottom:552.733333pt;}
.yc{bottom:555.133333pt;}
.y61{bottom:558.493333pt;}
.yb{bottom:568.933333pt;}
.y2e{bottom:569.573333pt;}
.y60{bottom:573.893333pt;}
.y2d{bottom:586.533333pt;}
.ya{bottom:586.693333pt;}
.y5f{bottom:589.093333pt;}
.y2c{bottom:603.333333pt;}
.y5e{bottom:604.453333pt;}
.y9{bottom:614.053333pt;}
.y2b{bottom:620.133333pt;}
.y2a{bottom:637.093333pt;}
.y8{bottom:647.813333pt;}
.y29{bottom:653.893333pt;}
.y7{bottom:664.613333pt;}
.y3b{bottom:670.853333pt;}
.y6{bottom:683.653333pt;}
.y28{bottom:687.653333pt;}
.y5{bottom:695.813333pt;}
.y27{bottom:704.613333pt;}
.y4{bottom:708.133333pt;}
.y2{bottom:722.880000pt;}
.y26{bottom:732.960000pt;}
.y1{bottom:736.000000pt;}
.h7{height:32.250000pt;}
.h4{height:42.084375pt;}
.he{height:43.031250pt;}
.h2{height:45.795000pt;}
.h8{height:47.109375pt;}
.h9{height:48.375000pt;}
.hf{height:52.108438pt;}
.hc{height:52.134375pt;}
.hd{height:52.834688pt;}
.hb{height:53.535000pt;}
.ha{height:57.787500pt;}
.h5{height:58.563750pt;}
.h6{height:59.340000pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x4{left:75.552000pt;}
.x2{left:77.152000pt;}
.x8{left:79.391992pt;}
.x5{left:108.672000pt;}
.x1{left:116.512000pt;}
.x6{left:171.066667pt;}
.x7{left:175.706658pt;}
.x9{left:248.866658pt;}
.x3{left:267.746667pt;}
.xb{left:359.133325pt;}
.xa{left:483.653325pt;}
}




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