
    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_304909f99c52fd8b7b4f9960.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_bab0408d58a51a72fbebc0a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_6a0d5b487d4e6f437f5a5a8f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.579000;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_d02bfa0ddbc1a5e31a73ce4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.771000;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_78194bdd6f2a5f603f0f29dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_5afa8fcf7700f932e5982242.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_00154e1d339cbe990254bdff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727000;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_42eff55b1841010cd48f454e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_33cbe16722491204f64df573.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953000;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:ffa;src:url('chunks/assets/font_74155e1d5317babbbf5f8fbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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:ffb;src:url('chunks/assets/font_253ad22cad8c5d9a828813cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694000;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:ffc;src:url('chunks/assets/font_fd721719d72df3bfa67be18d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.658000;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:ffd;src:url('chunks/assets/font_e89ac446e67e2f0ff9edbe54.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.456000;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);}
.va{vertical-align:-19.260000px;}
.v2{vertical-align:-12.912000px;}
.vd{vertical-align:-10.764000px;}
.vc{vertical-align:-8.970000px;}
.v1{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.720000px;}
.v5{vertical-align:25.638000px;}
.v3{vertical-align:31.236000px;}
.v4{vertical-align:44.592000px;}
.v7{vertical-align:56.874000px;}
.v9{vertical-align:58.134000px;}
.v6{vertical-align:70.230000px;}
.vb{vertical-align:76.728000px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000298px;}
.ls1f{letter-spacing:0.001641px;}
.lsc{letter-spacing:0.002593px;}
.ls1d{letter-spacing:0.003562px;}
.ls1a{letter-spacing:2.393941px;}
.ls26{letter-spacing:2.856915px;}
.ls22{letter-spacing:2.985223px;}
.lsd{letter-spacing:2.986200px;}
.ls27{letter-spacing:2.990250px;}
.ls29{letter-spacing:2.990915px;}
.ls7{letter-spacing:2.992200px;}
.ls15{letter-spacing:7.618405px;}
.ls6{letter-spacing:7.624405px;}
.ls11{letter-spacing:8.423422px;}
.lse{letter-spacing:14.345002px;}
.ls1c{letter-spacing:18.561702px;}
.ls17{letter-spacing:19.121604px;}
.ls14{letter-spacing:19.127604px;}
.ls19{letter-spacing:22.114200px;}
.ls16{letter-spacing:22.120200px;}
.ls10{letter-spacing:23.903604px;}
.ls21{letter-spacing:23.907154px;}
.lsb{letter-spacing:23.908800px;}
.ls23{letter-spacing:26.248974px;}
.ls2b{letter-spacing:26.396915px;}
.ls13{letter-spacing:26.746405px;}
.ls20{letter-spacing:26.895223px;}
.lsf{letter-spacing:26.899557px;}
.ls5{letter-spacing:26.900250px;}
.ls2f{letter-spacing:28.090800px;}
.ls4{letter-spacing:28.091400px;}
.ls2e{letter-spacing:28.096800px;}
.ls24{letter-spacing:28.099014px;}
.ls1e{letter-spacing:31.084200px;}
.ls2c{letter-spacing:31.084677px;}
.ls8{letter-spacing:31.088250px;}
.ls2d{letter-spacing:31.182723px;}
.lsa{letter-spacing:31.528405px;}
.ls3{letter-spacing:42.138603px;}
.ls28{letter-spacing:42.139473px;}
.ls1{letter-spacing:42.141154px;}
.ls9{letter-spacing:42.142800px;}
.ls25{letter-spacing:42.143400px;}
.ls2{letter-spacing:42.177828px;}
.ls18{letter-spacing:55.405557px;}
.ls12{letter-spacing:55.411557px;}
.ls1b{letter-spacing:79.321557px;}
.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;}
}
.ws7{word-spacing:-86.077200px;}
.ws3{word-spacing:-19.823579px;}
.ws13{word-spacing:-16.519695px;}
.ws9{word-spacing:-0.714441px;}
.ws8{word-spacing:-0.086077px;}
.ws12{word-spacing:-0.071731px;}
.ws6{word-spacing:0.000000px;}
.ws5{word-spacing:6.429967px;}
.ws11{word-spacing:6.864676px;}
.ws1a{word-spacing:8.229273px;}
.ws16{word-spacing:8.233042px;}
.ws14{word-spacing:8.234135px;}
.wsb{word-spacing:8.234151px;}
.wsf{word-spacing:8.237086px;}
.ws2{word-spacing:8.237588px;}
.wsa{word-spacing:8.268264px;}
.ws10{word-spacing:8.274264px;}
.ws15{word-spacing:8.287828px;}
.ws4{word-spacing:8.323665px;}
.ws1{word-spacing:11.207340px;}
.ws0{word-spacing:11.331315px;}
.wse{word-spacing:17.652830px;}
.wsc{word-spacing:22.309380px;}
.wsd{word-spacing:23.754830px;}
.ws19{word-spacing:31.418178px;}
.ws17{word-spacing:126.103098px;}
.ws18{word-spacing:126.189175px;}
._3{margin-left:-42.895350px;}
._2{margin-left:-15.372900px;}
._1{margin-left:-3.347325px;}
._4{margin-left:-2.324084px;}
._7{width:1.510896px;}
._0{width:3.223350px;}
._6{width:23.928884px;}
._5{width:37.443582px;}
._8{width:52.069500px;}
.fc3{color:rgb(0,128,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,178);}
.fs4{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:33.357000px;}
.y8{bottom:35.113500px;}
.y12{bottom:39.112500px;}
.y49{bottom:51.678000px;}
.y28{bottom:56.763000px;}
.y1c{bottom:58.762500px;}
.y7{bottom:60.519000px;}
.y11{bottom:64.518000px;}
.y48{bottom:78.951000px;}
.y6{bottom:85.923000px;}
.y1b{bottom:90.517500px;}
.y37{bottom:92.373000px;}
.y3b{bottom:95.770500px;}
.y27{bottom:99.609000px;}
.y26{bottom:106.018500px;}
.y10{bottom:108.751500px;}
.y30{bottom:111.364500px;}
.y47{bottom:112.708500px;}
.y36{bottom:113.295000px;}
.y1a{bottom:120.406500px;}
.y3a{bottom:121.174500px;}
.yf{bottom:134.157000px;}
.y35{bottom:136.458000px;}
.y2f{bottom:136.770000px;}
.y46{bottom:138.114000px;}
.y2e{bottom:138.637500px;}
.y25{bottom:139.839000px;}
.y3f{bottom:142.107000px;}
.y24{bottom:146.247000px;}
.y39{bottom:146.580000px;}
.y19{bottom:148.426500px;}
.y45{bottom:165.387000px;}
.y34{bottom:169.335000px;}
.y3e{bottom:169.380000px;}
.y18{bottom:175.698000px;}
.y2d{bottom:179.257500px;}
.y23{bottom:180.069000px;}
.ye{bottom:180.258000px;}
.y22{bottom:186.477000px;}
.y44{bottom:199.144500px;}
.y17{bottom:203.718000px;}
.y2c{bottom:209.146500px;}
.y5{bottom:213.733500px;}
.y33{bottom:221.563500px;}
.yd{bottom:222.624000px;}
.y3d{bottom:226.092000px;}
.y43{bottom:226.417500px;}
.y21{bottom:231.547500px;}
.y16{bottom:233.175000px;}
.y2b{bottom:234.550500px;}
.y2a{bottom:236.418000px;}
.y4{bottom:239.137500px;}
.y20{bottom:239.824500px;}
.yc{bottom:249.897000px;}
.y3c{bottom:253.365000px;}
.y42{bottom:260.176500px;}
.y15{bottom:263.062500px;}
.y3{bottom:271.122000px;}
.y29{bottom:273.061500px;}
.y32{bottom:273.792000px;}
.y1f{bottom:282.190500px;}
.y41{bottom:285.580500px;}
.y14{bottom:291.082500px;}
.yb{bottom:292.263000px;}
.y38{bottom:292.648500px;}
.y31{bottom:301.065000px;}
.y2{bottom:308.482500px;}
.y1e{bottom:309.463500px;}
.y40{bottom:312.853500px;}
.ya{bottom:319.536000px;}
.y13{bottom:322.839000px;}
.y1{bottom:345.843000px;}
.y9{bottom:368.695500px;}
.h10{height:44.828400px;}
.h11{height:44.834400px;}
.h12{height:53.798400px;}
.h5{height:57.081900px;}
.h4{height:57.087900px;}
.h13{height:60.770503px;}
.h14{height:62.750279px;}
.h3{height:64.557900px;}
.h6{height:76.067700px;}
.h7{height:81.953700px;}
.ha{height:89.423700px;}
.hc{height:89.429700px;}
.hb{height:90.189900px;}
.hd{height:90.195900px;}
.h2{height:92.857275px;}
.he{height:95.495700px;}
.h9{height:101.705700px;}
.hf{height:114.089700px;}
.h8{height:115.061700px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x9{left:12.756000px;}
.x10{left:23.106000px;}
.xc{left:52.606500px;}
.x16{left:54.837000px;}
.xa{left:57.388500px;}
.xb{left:63.591000px;}
.x19{left:77.017500px;}
.x1{left:85.392000px;}
.x2{left:87.004500px;}
.x11{left:95.470500px;}
.x14{left:102.319500px;}
.x3{left:107.538000px;}
.x15{left:126.802500px;}
.x8{left:130.969500px;}
.x6{left:135.228000px;}
.x18{left:142.362000px;}
.xd{left:143.464500px;}
.x5{left:148.054500px;}
.x1a{left:154.101000px;}
.x17{left:177.924000px;}
.x13{left:179.737500px;}
.x12{left:184.935000px;}
.x4{left:205.215000px;}
.xe{left:213.220500px;}
.x7{left:217.557000px;}
.xf{left:291.196500px;}
@media print{
.va{vertical-align:-17.120000pt;}
.v2{vertical-align:-11.477333pt;}
.vd{vertical-align:-9.568000pt;}
.vc{vertical-align:-7.973333pt;}
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:11.306667pt;}
.v5{vertical-align:22.789333pt;}
.v3{vertical-align:27.765333pt;}
.v4{vertical-align:39.637333pt;}
.v7{vertical-align:50.554667pt;}
.v9{vertical-align:51.674667pt;}
.v6{vertical-align:62.426667pt;}
.vb{vertical-align:68.202667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000265pt;}
.ls1f{letter-spacing:0.001459pt;}
.lsc{letter-spacing:0.002305pt;}
.ls1d{letter-spacing:0.003167pt;}
.ls1a{letter-spacing:2.127948pt;}
.ls26{letter-spacing:2.539480pt;}
.ls22{letter-spacing:2.653532pt;}
.lsd{letter-spacing:2.654400pt;}
.ls27{letter-spacing:2.658000pt;}
.ls29{letter-spacing:2.658591pt;}
.ls7{letter-spacing:2.659733pt;}
.ls15{letter-spacing:6.771916pt;}
.ls6{letter-spacing:6.777249pt;}
.ls11{letter-spacing:7.487487pt;}
.lse{letter-spacing:12.751113pt;}
.ls1c{letter-spacing:16.499290pt;}
.ls17{letter-spacing:16.996982pt;}
.ls14{letter-spacing:17.002315pt;}
.ls19{letter-spacing:19.657067pt;}
.ls16{letter-spacing:19.662400pt;}
.ls10{letter-spacing:21.247648pt;}
.ls21{letter-spacing:21.250803pt;}
.lsb{letter-spacing:21.252267pt;}
.ls23{letter-spacing:23.332421pt;}
.ls2b{letter-spacing:23.463925pt;}
.ls13{letter-spacing:23.774583pt;}
.ls20{letter-spacing:23.906865pt;}
.lsf{letter-spacing:23.910718pt;}
.ls5{letter-spacing:23.911333pt;}
.ls2f{letter-spacing:24.969600pt;}
.ls4{letter-spacing:24.970133pt;}
.ls2e{letter-spacing:24.974933pt;}
.ls24{letter-spacing:24.976901pt;}
.ls1e{letter-spacing:27.630400pt;}
.ls2c{letter-spacing:27.630824pt;}
.ls8{letter-spacing:27.634000pt;}
.ls2d{letter-spacing:27.717976pt;}
.lsa{letter-spacing:28.025249pt;}
.ls3{letter-spacing:37.456536pt;}
.ls28{letter-spacing:37.457309pt;}
.ls1{letter-spacing:37.458803pt;}
.ls9{letter-spacing:37.460267pt;}
.ls25{letter-spacing:37.460800pt;}
.ls2{letter-spacing:37.491403pt;}
.ls18{letter-spacing:49.249384pt;}
.ls12{letter-spacing:49.254718pt;}
.ls1b{letter-spacing:70.508051pt;}
.ws7{word-spacing:-76.513067pt;}
.ws3{word-spacing:-17.620959pt;}
.ws13{word-spacing:-14.684174pt;}
.ws9{word-spacing:-0.635058pt;}
.ws8{word-spacing:-0.076513pt;}
.ws12{word-spacing:-0.063761pt;}
.ws6{word-spacing:0.000000pt;}
.ws5{word-spacing:5.715526pt;}
.ws11{word-spacing:6.101934pt;}
.ws1a{word-spacing:7.314909pt;}
.ws16{word-spacing:7.318260pt;}
.ws14{word-spacing:7.319231pt;}
.wsb{word-spacing:7.319245pt;}
.wsf{word-spacing:7.321854pt;}
.ws2{word-spacing:7.322300pt;}
.wsa{word-spacing:7.349568pt;}
.ws10{word-spacing:7.354901pt;}
.ws15{word-spacing:7.366959pt;}
.ws4{word-spacing:7.398814pt;}
.ws1{word-spacing:9.962080pt;}
.ws0{word-spacing:10.072280pt;}
.wse{word-spacing:15.691404pt;}
.wsc{word-spacing:19.830560pt;}
.wsd{word-spacing:21.115404pt;}
.ws19{word-spacing:27.927269pt;}
.ws17{word-spacing:112.091643pt;}
.ws18{word-spacing:112.168156pt;}
._3{margin-left:-38.129200pt;}
._2{margin-left:-13.664800pt;}
._1{margin-left:-2.975400pt;}
._4{margin-left:-2.065853pt;}
._7{width:1.343019pt;}
._0{width:2.865200pt;}
._6{width:21.270119pt;}
._5{width:33.283184pt;}
._8{width:46.284000pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:29.650667pt;}
.y8{bottom:31.212000pt;}
.y12{bottom:34.766667pt;}
.y49{bottom:45.936000pt;}
.y28{bottom:50.456000pt;}
.y1c{bottom:52.233333pt;}
.y7{bottom:53.794667pt;}
.y11{bottom:57.349333pt;}
.y48{bottom:70.178667pt;}
.y6{bottom:76.376000pt;}
.y1b{bottom:80.460000pt;}
.y37{bottom:82.109333pt;}
.y3b{bottom:85.129333pt;}
.y27{bottom:88.541333pt;}
.y26{bottom:94.238667pt;}
.y10{bottom:96.668000pt;}
.y30{bottom:98.990667pt;}
.y47{bottom:100.185333pt;}
.y36{bottom:100.706667pt;}
.y1a{bottom:107.028000pt;}
.y3a{bottom:107.710667pt;}
.yf{bottom:119.250667pt;}
.y35{bottom:121.296000pt;}
.y2f{bottom:121.573333pt;}
.y46{bottom:122.768000pt;}
.y2e{bottom:123.233333pt;}
.y25{bottom:124.301333pt;}
.y3f{bottom:126.317333pt;}
.y24{bottom:129.997333pt;}
.y39{bottom:130.293333pt;}
.y19{bottom:131.934667pt;}
.y45{bottom:147.010667pt;}
.y34{bottom:150.520000pt;}
.y3e{bottom:150.560000pt;}
.y18{bottom:156.176000pt;}
.y2d{bottom:159.340000pt;}
.y23{bottom:160.061333pt;}
.ye{bottom:160.229333pt;}
.y22{bottom:165.757333pt;}
.y44{bottom:177.017333pt;}
.y17{bottom:181.082667pt;}
.y2c{bottom:185.908000pt;}
.y5{bottom:189.985333pt;}
.y33{bottom:196.945333pt;}
.yd{bottom:197.888000pt;}
.y3d{bottom:200.970667pt;}
.y43{bottom:201.260000pt;}
.y21{bottom:205.820000pt;}
.y16{bottom:207.266667pt;}
.y2b{bottom:208.489333pt;}
.y2a{bottom:210.149333pt;}
.y4{bottom:212.566667pt;}
.y20{bottom:213.177333pt;}
.yc{bottom:222.130667pt;}
.y3c{bottom:225.213333pt;}
.y42{bottom:231.268000pt;}
.y15{bottom:233.833333pt;}
.y3{bottom:240.997333pt;}
.y29{bottom:242.721333pt;}
.y32{bottom:243.370667pt;}
.y1f{bottom:250.836000pt;}
.y41{bottom:253.849333pt;}
.y14{bottom:258.740000pt;}
.yb{bottom:259.789333pt;}
.y38{bottom:260.132000pt;}
.y31{bottom:267.613333pt;}
.y2{bottom:274.206667pt;}
.y1e{bottom:275.078667pt;}
.y40{bottom:278.092000pt;}
.ya{bottom:284.032000pt;}
.y13{bottom:286.968000pt;}
.y1{bottom:307.416000pt;}
.y9{bottom:327.729333pt;}
.h10{height:39.847467pt;}
.h11{height:39.852800pt;}
.h12{height:47.820800pt;}
.h5{height:50.739467pt;}
.h4{height:50.744800pt;}
.h13{height:54.018225pt;}
.h14{height:55.778026pt;}
.h3{height:57.384800pt;}
.h6{height:67.615733pt;}
.h7{height:72.847733pt;}
.ha{height:79.487733pt;}
.hc{height:79.493067pt;}
.hb{height:80.168800pt;}
.hd{height:80.174133pt;}
.h2{height:82.539800pt;}
.he{height:84.885067pt;}
.h9{height:90.405067pt;}
.hf{height:101.413067pt;}
.h8{height:102.277067pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x9{left:11.338667pt;}
.x10{left:20.538667pt;}
.xc{left:46.761333pt;}
.x16{left:48.744000pt;}
.xa{left:51.012000pt;}
.xb{left:56.525333pt;}
.x19{left:68.460000pt;}
.x1{left:75.904000pt;}
.x2{left:77.337333pt;}
.x11{left:84.862667pt;}
.x14{left:90.950667pt;}
.x3{left:95.589333pt;}
.x15{left:112.713333pt;}
.x8{left:116.417333pt;}
.x6{left:120.202667pt;}
.x18{left:126.544000pt;}
.xd{left:127.524000pt;}
.x5{left:131.604000pt;}
.x1a{left:136.978667pt;}
.x17{left:158.154667pt;}
.x13{left:159.766667pt;}
.x12{left:164.386667pt;}
.x4{left:182.413333pt;}
.xe{left:189.529333pt;}
.x7{left:193.384000pt;}
.xf{left:258.841333pt;}
}




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