
    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_f6da926c5ddd024795c21858.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_caf81c0a9a24e0602b99695f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_9b6ece3fe0c0ddd5ff6a7548.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_5882ee0c6d4d5f88bc83de8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_da247e7bce4758a59acb64f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_1926fe8f496c35991efa4a33.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772461;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_d844bd977059ead7cb567ad6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184082;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_bbf3b02c77153a2a0b069e90.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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_ee80983acd66c76118f91dd7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_02d06fb6112a76f8710235f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_8316d2bb4ea0a9ec53e5cd8d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;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_5fa37985a68b51f640c3ab65.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.780273;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_bc8d586fcaba41b4bea4e413.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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:ffe;src:url('chunks/assets/font_38663c2e410075ef289e3699.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls16{letter-spacing:-9.060000px;}
.ls18{letter-spacing:-1.662000px;}
.ls19{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.323400px;}
.lsc{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.208200px;}
.ls15{letter-spacing:-0.195000px;}
.ls9{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.064800px;}
.ls1{letter-spacing:-0.061800px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.157800px;}
.ls11{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.341400px;}
.ls10{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.402600px;}
.ls5{letter-spacing:21.276000px;}
.ls6{letter-spacing:26.316000px;}
.lse{letter-spacing:30.748224px;}
.lsd{letter-spacing:30.862560px;}
.ls4{letter-spacing:32.976000px;}
.ls8{letter-spacing:48.636000px;}
.ls7{letter-spacing:53.676000px;}
.lsa{letter-spacing:793.980000px;}
.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;}
}
.ws9{word-spacing:-33.426720px;}
.ws6{word-spacing:-32.864832px;}
.ws5{word-spacing:-32.832000px;}
.wsa{word-spacing:-32.576544px;}
.ws0{word-spacing:-32.544000px;}
.wse{word-spacing:-29.935560px;}
.ws4{word-spacing:-27.414720px;}
.ws3{word-spacing:-26.621280px;}
.ws1{word-spacing:-18.061920px;}
.wsb{word-spacing:-1.000080px;}
.ws25{word-spacing:-0.721680px;}
.ws20{word-spacing:-0.618480px;}
.ws16{word-spacing:-0.487872px;}
.ws18{word-spacing:-0.243648px;}
.ws1e{word-spacing:-0.218880px;}
.ws21{word-spacing:-0.182160px;}
.ws15{word-spacing:-0.121680px;}
.ws23{word-spacing:-0.080160px;}
.ws7{word-spacing:0.000000px;}
.ws22{word-spacing:0.118800px;}
.ws2{word-spacing:0.180000px;}
.ws17{word-spacing:1.050624px;}
.ws24{word-spacing:4.191120px;}
.ws11{word-spacing:8.699520px;}
.wsf{word-spacing:9.498960px;}
.wsc{word-spacing:9.853200px;}
.ws10{word-spacing:10.590120px;}
.ws12{word-spacing:10.605240px;}
.ws13{word-spacing:10.824240px;}
.wsd{word-spacing:11.092680px;}
.ws37{word-spacing:18.185760px;}
.ws38{word-spacing:18.242640px;}
.ws32{word-spacing:18.663840px;}
.ws33{word-spacing:18.995760px;}
.ws34{word-spacing:19.448880px;}
.ws36{word-spacing:19.697040px;}
.ws35{word-spacing:20.068320px;}
.ws14{word-spacing:28.673280px;}
.ws1d{word-spacing:34.441200px;}
.ws8{word-spacing:34.560000px;}
.ws19{word-spacing:34.878240px;}
.ws1b{word-spacing:35.007840px;}
.ws1a{word-spacing:35.070120px;}
.ws1c{word-spacing:35.217840px;}
.ws27{word-spacing:48.193200px;}
.ws28{word-spacing:48.248880px;}
.ws30{word-spacing:49.217040px;}
.ws2e{word-spacing:49.359600px;}
.ws26{word-spacing:49.547280px;}
.ws2b{word-spacing:49.547520px;}
.ws2f{word-spacing:49.770000px;}
.ws31{word-spacing:49.798080px;}
.ws29{word-spacing:49.936080px;}
.ws2d{word-spacing:50.096160px;}
.ws2c{word-spacing:50.135760px;}
.ws2a{word-spacing:50.657040px;}
.ws1f{word-spacing:81.682560px;}
._9{margin-left:-11.448000px;}
._2{margin-left:-9.527040px;}
._4{margin-left:-8.232480px;}
._3{margin-left:-6.308640px;}
._5{margin-left:-4.489920px;}
._6{margin-left:-3.062160px;}
._0{margin-left:-2.016000px;}
._10{margin-left:-1.014720px;}
._1{width:1.026000px;}
._7{width:2.340000px;}
._8{width:4.059360px;}
._f{width:19.924800px;}
._b{width:30.945600px;}
._a{width:40.927680px;}
._e{width:50.766960px;}
._c{width:66.033360px;}
._d{width:113.148144px;}
.fc5{color:rgb(0,32,96);}
.fc6{color:rgb(31,73,125);}
.fc2{color:rgb(192,0,0);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(204,0,106);}
.fs8{font-size:59.760000px;}
.fs2{font-size:79.920000px;}
.fsc{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs6{font-size:131.760000px;}
.fs7{font-size:131.904000px;}
.fs0{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fsb{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:43.236000px;}
.yf{bottom:51.696000px;}
.y28{bottom:56.592000px;}
.y27{bottom:83.592000px;}
.y1e{bottom:90.072000px;}
.y26{bottom:144.468000px;}
.y18{bottom:145.080000px;}
.y16{bottom:145.116000px;}
.y9{bottom:152.970000px;}
.y25{bottom:184.110000px;}
.yb{bottom:185.970000px;}
.y8{bottom:188.970000px;}
.y1b{bottom:199.875000px;}
.y17{bottom:217.080000px;}
.y15{bottom:217.110000px;}
.y1a{bottom:237.675000px;}
.y24{bottom:263.310000px;}
.y14{bottom:268.815000px;}
.ye{bottom:272.985000px;}
.y23{bottom:302.910000px;}
.yd{bottom:312.630000px;}
.y1d{bottom:340.890000px;}
.yc{bottom:352.230000px;}
.y22{bottom:382.140000px;}
.y7{bottom:424.155000px;}
.ya{bottom:428.370000px;}
.y21{bottom:461.340000px;}
.y1c{bottom:484.560000px;}
.y13{bottom:485.745000px;}
.y1{bottom:496.260000px;}
.y20{bottom:500.940000px;}
.y1f{bottom:577.470000px;}
.y10{bottom:578.595000px;}
.y19{bottom:589.110000px;}
.y5{bottom:610.170000px;}
.y4{bottom:643.290000px;}
.y12{bottom:689.550000px;}
.y3{bottom:711.690000px;}
.y11{bottom:721.950000px;}
.y2{bottom:747.690000px;}
.hc{height:58.242656px;}
.h16{height:82.635820px;}
.h5{height:86.906250px;}
.h8{height:87.596719px;}
.h12{height:91.757531px;}
.h3{height:93.174258px;}
.h4{height:96.408281px;}
.ha{height:99.592031px;}
.hb{height:99.700875px;}
.h6{height:99.874688px;}
.h9{height:104.906250px;}
.h7{height:105.011156px;}
.h14{height:106.025625px;}
.h15{height:106.141500px;}
.h2{height:111.585938px;}
.h10{height:111.697523px;}
.hd{height:112.640625px;}
.he{height:112.790813px;}
.h11{height:115.875000px;}
.hf{height:125.406562px;}
.h13{height:129.669961px;}
.h1{height:810.000000px;}
.h0{height:810.180000px;}
.w1{width:1440.000000px;}
.w2{width:1440.359979px;}
.w0{width:1440.360000px;}
.x0{left:0.000000px;}
.x6{left:57.095979px;}
.x1e{left:104.003979px;}
.x1{left:169.094979px;}
.x1b{left:196.094979px;}
.xf{left:197.924979px;}
.x16{left:202.499979px;}
.x1c{left:205.094979px;}
.x10{left:216.644979px;}
.x11{left:219.749979px;}
.x1d{left:238.964979px;}
.x2{left:262.109979px;}
.x4{left:272.729979px;}
.x19{left:280.694979px;}
.x3{left:284.069979px;}
.x5{left:309.449979px;}
.x17{left:362.699979px;}
.x13{left:379.109979px;}
.x18{left:394.019979px;}
.x1a{left:446.864979px;}
.xe{left:568.109979px;}
.xb{left:620.279979px;}
.xa{left:622.589979px;}
.x12{left:635.069979px;}
.x14{left:665.459979px;}
.xc{left:761.294979px;}
.xd{left:766.334979px;}
.x9{left:918.029979px;}
.x15{left:929.129979px;}
.x7{left:946.904979px;}
.x8{left:955.649979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls16{letter-spacing:-8.053333pt;}
.ls18{letter-spacing:-1.477333pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.287467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls15{letter-spacing:-0.173333pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.057600pt;}
.ls1{letter-spacing:-0.054933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.140267pt;}
.ls11{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.303467pt;}
.ls10{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.357867pt;}
.ls5{letter-spacing:18.912000pt;}
.ls6{letter-spacing:23.392000pt;}
.lse{letter-spacing:27.331755pt;}
.lsd{letter-spacing:27.433387pt;}
.ls4{letter-spacing:29.312000pt;}
.ls8{letter-spacing:43.232000pt;}
.ls7{letter-spacing:47.712000pt;}
.lsa{letter-spacing:705.760000pt;}
.ws9{word-spacing:-29.712640pt;}
.ws6{word-spacing:-29.213184pt;}
.ws5{word-spacing:-29.184000pt;}
.wsa{word-spacing:-28.956928pt;}
.ws0{word-spacing:-28.928000pt;}
.wse{word-spacing:-26.609387pt;}
.ws4{word-spacing:-24.368640pt;}
.ws3{word-spacing:-23.663360pt;}
.ws1{word-spacing:-16.055040pt;}
.wsb{word-spacing:-0.888960pt;}
.ws25{word-spacing:-0.641493pt;}
.ws20{word-spacing:-0.549760pt;}
.ws16{word-spacing:-0.433664pt;}
.ws18{word-spacing:-0.216576pt;}
.ws1e{word-spacing:-0.194560pt;}
.ws21{word-spacing:-0.161920pt;}
.ws15{word-spacing:-0.108160pt;}
.ws23{word-spacing:-0.071253pt;}
.ws7{word-spacing:0.000000pt;}
.ws22{word-spacing:0.105600pt;}
.ws2{word-spacing:0.160000pt;}
.ws17{word-spacing:0.933888pt;}
.ws24{word-spacing:3.725440pt;}
.ws11{word-spacing:7.732907pt;}
.wsf{word-spacing:8.443520pt;}
.wsc{word-spacing:8.758400pt;}
.ws10{word-spacing:9.413440pt;}
.ws12{word-spacing:9.426880pt;}
.ws13{word-spacing:9.621547pt;}
.wsd{word-spacing:9.860160pt;}
.ws37{word-spacing:16.165120pt;}
.ws38{word-spacing:16.215680pt;}
.ws32{word-spacing:16.590080pt;}
.ws33{word-spacing:16.885120pt;}
.ws34{word-spacing:17.287893pt;}
.ws36{word-spacing:17.508480pt;}
.ws35{word-spacing:17.838507pt;}
.ws14{word-spacing:25.487360pt;}
.ws1d{word-spacing:30.614400pt;}
.ws8{word-spacing:30.720000pt;}
.ws19{word-spacing:31.002880pt;}
.ws1b{word-spacing:31.118080pt;}
.ws1a{word-spacing:31.173440pt;}
.ws1c{word-spacing:31.304747pt;}
.ws27{word-spacing:42.838400pt;}
.ws28{word-spacing:42.887893pt;}
.ws30{word-spacing:43.748480pt;}
.ws2e{word-spacing:43.875200pt;}
.ws26{word-spacing:44.042027pt;}
.ws2b{word-spacing:44.042240pt;}
.ws2f{word-spacing:44.240000pt;}
.ws31{word-spacing:44.264960pt;}
.ws29{word-spacing:44.387627pt;}
.ws2d{word-spacing:44.529920pt;}
.ws2c{word-spacing:44.565120pt;}
.ws2a{word-spacing:45.028480pt;}
.ws1f{word-spacing:72.606720pt;}
._9{margin-left:-10.176000pt;}
._2{margin-left:-8.468480pt;}
._4{margin-left:-7.317760pt;}
._3{margin-left:-5.607680pt;}
._5{margin-left:-3.991040pt;}
._6{margin-left:-2.721920pt;}
._0{margin-left:-1.792000pt;}
._10{margin-left:-0.901973pt;}
._1{width:0.912000pt;}
._7{width:2.080000pt;}
._8{width:3.608320pt;}
._f{width:17.710933pt;}
._b{width:27.507200pt;}
._a{width:36.380160pt;}
._e{width:45.126187pt;}
._c{width:58.696320pt;}
._d{width:100.576128pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:71.040000pt;}
.fsc{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs6{font-size:117.120000pt;}
.fs7{font-size:117.248000pt;}
.fs0{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fsb{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:38.432000pt;}
.yf{bottom:45.952000pt;}
.y28{bottom:50.304000pt;}
.y27{bottom:74.304000pt;}
.y1e{bottom:80.064000pt;}
.y26{bottom:128.416000pt;}
.y18{bottom:128.960000pt;}
.y16{bottom:128.992000pt;}
.y9{bottom:135.973333pt;}
.y25{bottom:163.653333pt;}
.yb{bottom:165.306667pt;}
.y8{bottom:167.973333pt;}
.y1b{bottom:177.666667pt;}
.y17{bottom:192.960000pt;}
.y15{bottom:192.986667pt;}
.y1a{bottom:211.266667pt;}
.y24{bottom:234.053333pt;}
.y14{bottom:238.946667pt;}
.ye{bottom:242.653333pt;}
.y23{bottom:269.253333pt;}
.yd{bottom:277.893333pt;}
.y1d{bottom:303.013333pt;}
.yc{bottom:313.093333pt;}
.y22{bottom:339.680000pt;}
.y7{bottom:377.026667pt;}
.ya{bottom:380.773333pt;}
.y21{bottom:410.080000pt;}
.y1c{bottom:430.720000pt;}
.y13{bottom:431.773333pt;}
.y1{bottom:441.120000pt;}
.y20{bottom:445.280000pt;}
.y1f{bottom:513.306667pt;}
.y10{bottom:514.306667pt;}
.y19{bottom:523.653333pt;}
.y5{bottom:542.373333pt;}
.y4{bottom:571.813333pt;}
.y12{bottom:612.933333pt;}
.y3{bottom:632.613333pt;}
.y11{bottom:641.733333pt;}
.y2{bottom:664.613333pt;}
.hc{height:51.771250pt;}
.h16{height:73.454062pt;}
.h5{height:77.250000pt;}
.h8{height:77.863750pt;}
.h12{height:81.562250pt;}
.h3{height:82.821562pt;}
.h4{height:85.696250pt;}
.ha{height:88.526250pt;}
.hb{height:88.623000pt;}
.h6{height:88.777500pt;}
.h9{height:93.250000pt;}
.h7{height:93.343250pt;}
.h14{height:94.245000pt;}
.h15{height:94.348000pt;}
.h2{height:99.187500pt;}
.h10{height:99.286687pt;}
.hd{height:100.125000pt;}
.he{height:100.258500pt;}
.h11{height:103.000000pt;}
.hf{height:111.472500pt;}
.h13{height:115.262187pt;}
.h1{height:720.000000pt;}
.h0{height:720.160000pt;}
.w1{width:1280.000000pt;}
.w2{width:1280.319981pt;}
.w0{width:1280.320000pt;}
.x0{left:0.000000pt;}
.x6{left:50.751981pt;}
.x1e{left:92.447981pt;}
.x1{left:150.306648pt;}
.x1b{left:174.306648pt;}
.xf{left:175.933314pt;}
.x16{left:179.999981pt;}
.x1c{left:182.306648pt;}
.x10{left:192.573314pt;}
.x11{left:195.333314pt;}
.x1d{left:212.413314pt;}
.x2{left:232.986648pt;}
.x4{left:242.426648pt;}
.x19{left:249.506648pt;}
.x3{left:252.506648pt;}
.x5{left:275.066648pt;}
.x17{left:322.399981pt;}
.x13{left:336.986648pt;}
.x18{left:350.239981pt;}
.x1a{left:397.213314pt;}
.xe{left:504.986648pt;}
.xb{left:551.359981pt;}
.xa{left:553.413314pt;}
.x12{left:564.506648pt;}
.x14{left:591.519981pt;}
.xc{left:676.706648pt;}
.xd{left:681.186648pt;}
.x9{left:816.026648pt;}
.x15{left:825.893314pt;}
.x7{left:841.693314pt;}
.x8{left:849.466648pt;}
}




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