
    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_35644d91dec3ed61538dfd8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180664;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_2f2e6614437469c49b9057a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8586fceb7ba4ba96dc193ee3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_ff03864d91b290abd442c3f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721174;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_20bd53f2b47c50b1a8acb320.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_08c6b9b336a49edeed8033b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_7b0b8f937b9d5820562baf0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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:-54.000000px;}
.v1{vertical-align:-48.000000px;}
.v4{vertical-align:-42.000000px;}
.v5{vertical-align:-36.000000px;}
.v8{vertical-align:-30.000000px;}
.v6{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:32.399940px;}
.v2{vertical-align:63.648960px;}
.ls19{letter-spacing:-6.224400px;}
.ls26{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.096000px;}
.ls7{letter-spacing:-0.086400px;}
.ls18{letter-spacing:-0.084000px;}
.ls15{letter-spacing:-0.076800px;}
.ls30{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.067200px;}
.ls16{letter-spacing:-0.060000px;}
.ls23{letter-spacing:-0.057600px;}
.ls8{letter-spacing:-0.050400px;}
.ls2e{letter-spacing:-0.043200px;}
.ls1b{letter-spacing:-0.038400px;}
.ls10{letter-spacing:-0.021600px;}
.ls4{letter-spacing:-0.019200px;}
.ls2a{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.001200px;}
.ls2c{letter-spacing:0.010980px;}
.ls2f{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.014628px;}
.lsa{letter-spacing:0.016800px;}
.ls27{letter-spacing:0.019011px;}
.lsb{letter-spacing:0.019200px;}
.ls24{letter-spacing:0.019611px;}
.ls5{letter-spacing:0.021600px;}
.ls25{letter-spacing:0.022200px;}
.ls1c{letter-spacing:0.025600px;}
.ls2d{letter-spacing:0.025800px;}
.lse{letter-spacing:0.033600px;}
.ls29{letter-spacing:0.038400px;}
.ls2{letter-spacing:0.043200px;}
.ls14{letter-spacing:0.048300px;}
.lsd{letter-spacing:0.050400px;}
.ls28{letter-spacing:0.055200px;}
.ls20{letter-spacing:0.057600px;}
.ls17{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.067200px;}
.ls9{letter-spacing:0.067800px;}
.ls21{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.076800px;}
.ls2b{letter-spacing:0.077400px;}
.ls11{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.086400px;}
.ls13{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.134400px;}
.ls1f{letter-spacing:0.151200px;}
.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;}
}
.ws23{word-spacing:-192.000000px;}
.wsc{word-spacing:-72.900000px;}
.ws17{word-spacing:-72.856800px;}
.ws0{word-spacing:-72.835200px;}
.ws3{word-spacing:-72.813600px;}
.ws1{word-spacing:-72.792000px;}
.ws29{word-spacing:-72.748800px;}
.ws15{word-spacing:-72.705600px;}
.ws20{word-spacing:-72.684000px;}
.ws7{word-spacing:-64.838400px;}
.wsd{word-spacing:-64.800000px;}
.ws18{word-spacing:-64.780800px;}
.ws1a{word-spacing:-64.761600px;}
.ws24{word-spacing:-64.742400px;}
.ws6{word-spacing:-64.723200px;}
.ws19{word-spacing:-64.704000px;}
.ws12{word-spacing:-64.665600px;}
.ws1e{word-spacing:-64.646400px;}
.ws1f{word-spacing:-64.627200px;}
.ws1b{word-spacing:-64.608000px;}
.ws21{word-spacing:-60.048000px;}
.wsb{word-spacing:-56.700000px;}
.ws4{word-spacing:-56.683200px;}
.ws8{word-spacing:-56.666400px;}
.ws9{word-spacing:-56.649600px;}
.wsa{word-spacing:-56.616000px;}
.ws5{word-spacing:-56.565600px;}
.ws16{word-spacing:-56.548800px;}
.ws28{word-spacing:-56.532000px;}
.ws1d{word-spacing:-48.600000px;}
.ws1c{word-spacing:-48.528000px;}
.ws26{word-spacing:-48.513600px;}
.ws2a{word-spacing:-48.456000px;}
.ws11{word-spacing:-46.704000px;}
.ws22{word-spacing:-43.135993px;}
.wsf{word-spacing:-40.500000px;}
.wse{word-spacing:-40.380000px;}
.ws2b{word-spacing:-40.032000px;}
.ws25{word-spacing:-30.045600px;}
.ws27{word-spacing:-30.024000px;}
.ws14{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.192000px;}
.ws10{word-spacing:-0.168000px;}
.ws2c{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-8.025000px;}
._4{margin-left:-6.972000px;}
._3{margin-left:-1.012200px;}
._0{width:1.028460px;}
._1{width:6.216000px;}
._2{width:1127.172000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(255,255,0);}
.fc5{color:rgb(255,51,153);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(107,107,207);}
.fc1{color:rgb(0,176,240);}
.fc0{color:rgb(255,0,0);}
.fsa{font-size:72.000000px;}
.fsb{font-size:79.999980px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:111.999960px;}
.fs5{font-size:120.000000px;}
.fs6{font-size:127.999980px;}
.fs7{font-size:144.000000px;}
.fs2{font-size:168.000000px;}
.fs4{font-size:192.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y30{bottom:7.987555px;}
.y31{bottom:9.605875px;}
.y8{bottom:26.615635px;}
.y14{bottom:27.974995px;}
.y3{bottom:31.632520px;}
.y6{bottom:35.404705px;}
.y3e{bottom:38.404705px;}
.y7{bottom:45.974965px;}
.yc{bottom:72.424255px;}
.y1e{bottom:271.258465px;}
.y2b{bottom:285.217915px;}
.y1d{bottom:299.758615px;}
.y24{bottom:302.743765px;}
.y2a{bottom:313.717915px;}
.y1c{bottom:328.258465px;}
.y23{bottom:332.743765px;}
.y29{bottom:343.717915px;}
.y1b{bottom:358.258615px;}
.y22{bottom:361.243765px;}
.y28{bottom:372.217915px;}
.y1a{bottom:386.758615px;}
.y21{bottom:389.743765px;}
.y27{bottom:400.717915px;}
.y19{bottom:415.258465px;}
.y20{bottom:418.243765px;}
.y26{bottom:429.217915px;}
.y18{bottom:443.758465px;}
.y1f{bottom:446.743765px;}
.y25{bottom:457.717915px;}
.y17{bottom:472.258615px;}
.y3a{bottom:602.231665px;}
.y41{bottom:626.662315px;}
.y38{bottom:653.024425px;}
.y2f{bottom:655.809865px;}
.y3d{bottom:658.762315px;}
.y5{bottom:661.162315px;}
.y16{bottom:662.662315px;}
.ya{bottom:665.062315px;}
.y10{bottom:669.862315px;}
.y12{bottom:671.319565px;}
.y35{bottom:675.724420px;}
.ye{bottom:679.824415px;}
.y33{bottom:681.324415px;}
.y40{bottom:685.162315px;}
.yb{bottom:688.462315px;}
.y2c{bottom:690.862315px;}
.y37{bottom:700.524415px;}
.y2{bottom:707.124415px;}
.yf{bottom:708.862315px;}
.y13{bottom:709.524415px;}
.y2e{bottom:712.809865px;}
.y4{bottom:713.662315px;}
.y2d{bottom:715.629265px;}
.y9{bottom:716.062315px;}
.y3c{bottom:717.262315px;}
.y15{bottom:719.662315px;}
.y11{bottom:723.819565px;}
.y34{bottom:728.724415px;}
.yd{bottom:732.324415px;}
.y32{bottom:738.324415px;}
.y3b{bottom:745.943965px;}
.y3f{bottom:749.662315px;}
.y36{bottom:751.524415px;}
.y39{bottom:777.599965px;}
.h4{height:61.154297px;}
.h3{height:69.890625px;}
.ha{height:78.626953px;}
.h9{height:81.539033px;}
.hb{height:84.817909px;}
.h8{height:93.187485px;}
.hd{height:122.308594px;}
.hc{height:139.781250px;}
.h6{height:143.718750px;}
.h7{height:156.039585px;}
.h5{height:164.250000px;}
.h2{height:184.781250px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2e{left:66.141840px;}
.x48{left:70.215513px;}
.x2d{left:73.424985px;}
.x24{left:83.866395px;}
.xf{left:86.432805px;}
.x41{left:90.264825px;}
.x16{left:95.944095px;}
.x32{left:97.413270px;}
.x26{left:99.830865px;}
.x5{left:104.595390px;}
.x30{left:109.507020px;}
.x1c{left:112.338285px;}
.x25{left:116.996760px;}
.x4d{left:126.030450px;}
.x2c{left:129.897645px;}
.x28{left:132.090510px;}
.x18{left:136.931820px;}
.xd{left:141.721860px;}
.x14{left:144.488955px;}
.x1f{left:152.327325px;}
.x1e{left:160.214055px;}
.x3{left:162.959160px;}
.x8{left:166.430850px;}
.x54{left:171.809295px;}
.x10{left:173.513284px;}
.x44{left:176.585100px;}
.x34{left:178.366215px;}
.x4c{left:191.995305px;}
.x49{left:199.134945px;}
.x38{left:205.640775px;}
.x1a{left:212.839890px;}
.x3f{left:217.343385px;}
.x3d{left:220.846785px;}
.x45{left:222.030435px;}
.x35{left:223.422000px;}
.x1d{left:231.614985px;}
.x46{left:234.710085px;}
.x33{left:236.459235px;}
.x31{left:238.178835px;}
.x23{left:240.650085px;}
.x1{left:244.433835px;}
.x29{left:246.089085px;}
.x52{left:247.647585px;}
.x51{left:250.260885px;}
.x4b{left:252.264885px;}
.x42{left:257.117835px;}
.x11{left:258.714450px;}
.x2a{left:264.049485px;}
.x36{left:273.879885px;}
.xe{left:278.794635px;}
.x4f{left:282.487485px;}
.x50{left:284.229135px;}
.x17{left:289.890735px;}
.x55{left:291.402585px;}
.x37{left:303.733635px;}
.x47{left:321.168150px;}
.x20{left:335.696235px;}
.x3c{left:338.280885px;}
.x27{left:361.260960px;}
.x13{left:363.877185px;}
.x4{left:368.494290px;}
.x15{left:379.301970px;}
.x3a{left:382.941135px;}
.x39{left:392.617335px;}
.x6{left:397.278435px;}
.x2f{left:420.716040px;}
.x9{left:449.060655px;}
.x2b{left:461.174985px;}
.x3e{left:462.784335px;}
.xb{left:510.563655px;}
.x4a{left:526.964085px;}
.x4e{left:528.631035px;}
.x40{left:531.409335px;}
.x43{left:532.520685px;}
.x1b{left:569.227650px;}
.x12{left:992.441400px;}
.x19{left:994.000050px;}
.x7{left:1001.558550px;}
.xa{left:1004.120700px;}
.x2{left:1010.063550px;}
.x53{left:1016.734350px;}
.x21{left:1031.069850px;}
.x3b{left:1042.879050px;}
.xc{left:1045.423350px;}
.x22{left:1056.584700px;}
@media print{
.v3{vertical-align:-48.000000pt;}
.v1{vertical-align:-42.666667pt;}
.v4{vertical-align:-37.333333pt;}
.v5{vertical-align:-32.000000pt;}
.v8{vertical-align:-26.666667pt;}
.v6{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:28.799947pt;}
.v2{vertical-align:56.576853pt;}
.ls19{letter-spacing:-5.532800pt;}
.ls26{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.085333pt;}
.ls7{letter-spacing:-0.076800pt;}
.ls18{letter-spacing:-0.074667pt;}
.ls15{letter-spacing:-0.068267pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls23{letter-spacing:-0.051200pt;}
.ls8{letter-spacing:-0.044800pt;}
.ls2e{letter-spacing:-0.038400pt;}
.ls1b{letter-spacing:-0.034133pt;}
.ls10{letter-spacing:-0.019200pt;}
.ls4{letter-spacing:-0.017067pt;}
.ls2a{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.001067pt;}
.ls2c{letter-spacing:0.009760pt;}
.ls2f{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.013003pt;}
.lsa{letter-spacing:0.014933pt;}
.ls27{letter-spacing:0.016899pt;}
.lsb{letter-spacing:0.017067pt;}
.ls24{letter-spacing:0.017432pt;}
.ls5{letter-spacing:0.019200pt;}
.ls25{letter-spacing:0.019733pt;}
.ls1c{letter-spacing:0.022756pt;}
.ls2d{letter-spacing:0.022933pt;}
.lse{letter-spacing:0.029867pt;}
.ls29{letter-spacing:0.034133pt;}
.ls2{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.042933pt;}
.lsd{letter-spacing:0.044800pt;}
.ls28{letter-spacing:0.049067pt;}
.ls20{letter-spacing:0.051200pt;}
.ls17{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.059733pt;}
.ls9{letter-spacing:0.060267pt;}
.ls21{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.068267pt;}
.ls2b{letter-spacing:0.068800pt;}
.ls11{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.076800pt;}
.ls13{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.119467pt;}
.ls1f{letter-spacing:0.134400pt;}
.ws23{word-spacing:-170.666667pt;}
.wsc{word-spacing:-64.800000pt;}
.ws17{word-spacing:-64.761600pt;}
.ws0{word-spacing:-64.742400pt;}
.ws3{word-spacing:-64.723200pt;}
.ws1{word-spacing:-64.704000pt;}
.ws29{word-spacing:-64.665600pt;}
.ws15{word-spacing:-64.627200pt;}
.ws20{word-spacing:-64.608000pt;}
.ws7{word-spacing:-57.634133pt;}
.wsd{word-spacing:-57.600000pt;}
.ws18{word-spacing:-57.582933pt;}
.ws1a{word-spacing:-57.565867pt;}
.ws24{word-spacing:-57.548800pt;}
.ws6{word-spacing:-57.531733pt;}
.ws19{word-spacing:-57.514667pt;}
.ws12{word-spacing:-57.480533pt;}
.ws1e{word-spacing:-57.463467pt;}
.ws1f{word-spacing:-57.446400pt;}
.ws1b{word-spacing:-57.429333pt;}
.ws21{word-spacing:-53.376000pt;}
.wsb{word-spacing:-50.400000pt;}
.ws4{word-spacing:-50.385067pt;}
.ws8{word-spacing:-50.370133pt;}
.ws9{word-spacing:-50.355200pt;}
.wsa{word-spacing:-50.325333pt;}
.ws5{word-spacing:-50.280533pt;}
.ws16{word-spacing:-50.265600pt;}
.ws28{word-spacing:-50.250667pt;}
.ws1d{word-spacing:-43.200000pt;}
.ws1c{word-spacing:-43.136000pt;}
.ws26{word-spacing:-43.123200pt;}
.ws2a{word-spacing:-43.072000pt;}
.ws11{word-spacing:-41.514667pt;}
.ws22{word-spacing:-38.343105pt;}
.wsf{word-spacing:-36.000000pt;}
.wse{word-spacing:-35.893333pt;}
.ws2b{word-spacing:-35.584000pt;}
.ws25{word-spacing:-26.707200pt;}
.ws27{word-spacing:-26.688000pt;}
.ws14{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.170667pt;}
.ws10{word-spacing:-0.149333pt;}
.ws2c{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-7.133333pt;}
._4{margin-left:-6.197333pt;}
._3{margin-left:-0.899733pt;}
._0{width:0.914187pt;}
._1{width:5.525333pt;}
._2{width:1001.930667pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:71.111093pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:99.555520pt;}
.fs5{font-size:106.666667pt;}
.fs6{font-size:113.777760pt;}
.fs7{font-size:128.000000pt;}
.fs2{font-size:149.333333pt;}
.fs4{font-size:170.666667pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y30{bottom:7.100049pt;}
.y31{bottom:8.538556pt;}
.y8{bottom:23.658342pt;}
.y14{bottom:24.866662pt;}
.y3{bottom:28.117796pt;}
.y6{bottom:31.470849pt;}
.y3e{bottom:34.137516pt;}
.y7{bottom:40.866636pt;}
.yc{bottom:64.377116pt;}
.y1e{bottom:241.118636pt;}
.y2b{bottom:253.527036pt;}
.y1d{bottom:266.452102pt;}
.y24{bottom:269.105569pt;}
.y2a{bottom:278.860369pt;}
.y1c{bottom:291.785302pt;}
.y23{bottom:295.772236pt;}
.y29{bottom:305.527036pt;}
.y1b{bottom:318.452102pt;}
.y22{bottom:321.105569pt;}
.y28{bottom:330.860369pt;}
.y1a{bottom:343.785436pt;}
.y21{bottom:346.438902pt;}
.y27{bottom:356.193702pt;}
.y19{bottom:369.118636pt;}
.y20{bottom:371.772236pt;}
.y26{bottom:381.527036pt;}
.y18{bottom:394.451969pt;}
.y1f{bottom:397.105569pt;}
.y25{bottom:406.860369pt;}
.y17{bottom:419.785436pt;}
.y3a{bottom:535.317036pt;}
.y41{bottom:557.033169pt;}
.y38{bottom:580.466156pt;}
.y2f{bottom:582.942102pt;}
.y3d{bottom:585.566502pt;}
.y5{bottom:587.699836pt;}
.y16{bottom:589.033169pt;}
.ya{bottom:591.166502pt;}
.y10{bottom:595.433169pt;}
.y12{bottom:596.728502pt;}
.y35{bottom:600.643929pt;}
.ye{bottom:604.288369pt;}
.y33{bottom:605.621702pt;}
.y40{bottom:609.033169pt;}
.yb{bottom:611.966502pt;}
.y2c{bottom:614.099836pt;}
.y37{bottom:622.688369pt;}
.y2{bottom:628.555036pt;}
.yf{bottom:630.099836pt;}
.y13{bottom:630.688369pt;}
.y2e{bottom:633.608769pt;}
.y4{bottom:634.366502pt;}
.y2d{bottom:636.114902pt;}
.y9{bottom:636.499836pt;}
.y3c{bottom:637.566502pt;}
.y15{bottom:639.699836pt;}
.y11{bottom:643.395169pt;}
.y34{bottom:647.755036pt;}
.yd{bottom:650.955036pt;}
.y32{bottom:656.288369pt;}
.y3b{bottom:663.061302pt;}
.y3f{bottom:666.366502pt;}
.y36{bottom:668.021702pt;}
.y39{bottom:691.199969pt;}
.h4{height:54.359375pt;}
.h3{height:62.125000pt;}
.ha{height:69.890625pt;}
.h9{height:72.479141pt;}
.hb{height:75.393697pt;}
.h8{height:82.833320pt;}
.hd{height:108.718750pt;}
.hc{height:124.250000pt;}
.h6{height:127.750000pt;}
.h7{height:138.701853pt;}
.h5{height:146.000000pt;}
.h2{height:164.250000pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:58.792747pt;}
.x48{left:62.413789pt;}
.x2d{left:65.266653pt;}
.x24{left:74.547907pt;}
.xf{left:76.829160pt;}
.x41{left:80.235400pt;}
.x16{left:85.283640pt;}
.x32{left:86.589573pt;}
.x26{left:88.738547pt;}
.x5{left:92.973680pt;}
.x30{left:97.339573pt;}
.x1c{left:99.856253pt;}
.x25{left:103.997120pt;}
.x4d{left:112.027067pt;}
.x2c{left:115.464573pt;}
.x28{left:117.413787pt;}
.x18{left:121.717173pt;}
.xd{left:125.974987pt;}
.x14{left:128.434627pt;}
.x1f{left:135.402067pt;}
.x1e{left:142.412493pt;}
.x3{left:144.852587pt;}
.x8{left:147.938533pt;}
.x54{left:152.719373pt;}
.x10{left:154.234031pt;}
.x44{left:156.964533pt;}
.x34{left:158.547747pt;}
.x4c{left:170.662493pt;}
.x49{left:177.008840pt;}
.x38{left:182.791800pt;}
.x1a{left:189.191013pt;}
.x3f{left:193.194120pt;}
.x3d{left:196.308253pt;}
.x45{left:197.360387pt;}
.x35{left:198.597333pt;}
.x1d{left:205.879987pt;}
.x46{left:208.631187pt;}
.x33{left:210.185987pt;}
.x31{left:211.714520pt;}
.x23{left:213.911187pt;}
.x1{left:217.274520pt;}
.x29{left:218.745853pt;}
.x52{left:220.131187pt;}
.x51{left:222.454120pt;}
.x4b{left:224.235453pt;}
.x42{left:228.549187pt;}
.x11{left:229.968400pt;}
.x2a{left:234.710653pt;}
.x36{left:243.448787pt;}
.xe{left:247.817453pt;}
.x4f{left:251.099987pt;}
.x50{left:252.648120pt;}
.x17{left:257.680653pt;}
.x55{left:259.024520pt;}
.x37{left:269.985453pt;}
.x47{left:285.482800pt;}
.x20{left:298.396653pt;}
.x3c{left:300.694120pt;}
.x27{left:321.120853pt;}
.x13{left:323.446387pt;}
.x4{left:327.550480pt;}
.x15{left:337.157307pt;}
.x3a{left:340.392120pt;}
.x39{left:348.993187pt;}
.x6{left:353.136387pt;}
.x2f{left:373.969813pt;}
.x9{left:399.165027pt;}
.x2b{left:409.933320pt;}
.x3e{left:411.363853pt;}
.xb{left:453.834360pt;}
.x4a{left:468.412520pt;}
.x4e{left:469.894253pt;}
.x40{left:472.363853pt;}
.x43{left:473.351720pt;}
.x1b{left:505.980133pt;}
.x12{left:882.170133pt;}
.x19{left:883.555600pt;}
.x7{left:890.274267pt;}
.xa{left:892.551733pt;}
.x2{left:897.834267pt;}
.x53{left:903.763867pt;}
.x21{left:916.506533pt;}
.x3b{left:927.003600pt;}
.xc{left:929.265200pt;}
.x22{left:939.186400pt;}
}




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