
    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_864d7796da89ed3d94fac294.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_24e856590b2e77abe2f655ed.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b40b63054b67f1c78dc1771d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_e60886a5896670ff1c799e68.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws18{word-spacing:-13.449600px;}
.ws17{word-spacing:-8.966400px;}
.ws14{word-spacing:-1.912819px;}
.wse{word-spacing:-1.195512px;}
.wsa{word-spacing:-0.537980px;}
.ws20{word-spacing:-0.358654px;}
.ws4{word-spacing:-0.298878px;}
.wsd{word-spacing:-0.239102px;}
.ws1f{word-spacing:-0.179327px;}
.ws10{word-spacing:-0.119551px;}
.ws2b{word-spacing:-0.071731px;}
.wsc{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.059776px;}
.ws11{word-spacing:0.119551px;}
.ws6{word-spacing:0.179327px;}
.ws7{word-spacing:0.239102px;}
.ws25{word-spacing:0.717307px;}
.ws8{word-spacing:0.836858px;}
.ws12{word-spacing:1.075961px;}
.ws26{word-spacing:1.195512px;}
.ws27{word-spacing:1.554166px;}
.ws1a{word-spacing:2.151922px;}
.ws23{word-spacing:2.510575px;}
.ws13{word-spacing:2.809453px;}
.wsf{word-spacing:3.466985px;}
.ws9{word-spacing:4.184292px;}
.ws2a{word-spacing:4.303843px;}
.ws15{word-spacing:4.483170px;}
.ws1e{word-spacing:5.499355px;}
.ws24{word-spacing:5.858009px;}
.ws2c{word-spacing:6.037336px;}
.ws22{word-spacing:6.156887px;}
.ws21{word-spacing:6.933970px;}
.ws1d{word-spacing:7.292623px;}
.ws16{word-spacing:7.470163px;}
.ws1c{word-spacing:8.428360px;}
.ws1{word-spacing:14.884124px;}
.ws28{word-spacing:14.943900px;}
.ws1b{word-spacing:17.049133px;}
.ws3{word-spacing:17.155597px;}
.ws19{word-spacing:17.861069px;}
.ws0{word-spacing:25.719808px;}
.ws29{word-spacing:59.715824px;}
.wsb{word-spacing:71.659469px;}
._14{margin-left:-8.241853px;}
._c{margin-left:-6.599270px;}
._3{margin-left:-5.164620px;}
._7{margin-left:-3.799381px;}
._2{margin-left:-2.065848px;}
._0{margin-left:-1.032924px;}
._a{width:2.978141px;}
._9{width:13.867939px;}
._10{width:16.684572px;}
._5{width:18.896269px;}
._8{width:20.263928px;}
._6{width:21.519216px;}
._4{width:23.192933px;}
._d{width:25.524181px;}
._13{width:27.735878px;}
._12{width:29.887800px;}
._1{width:32.020644px;}
._e{width:36.171458px;}
._f{width:40.661808px;}
._15{width:41.689891px;}
._11{width:59.775600px;}
._b{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y48{bottom:63.168000px;}
.y2a{bottom:78.184500px;}
.y29{bottom:93.129000px;}
.y47{bottom:108.000000px;}
.y46{bottom:124.363500px;}
.y61{bottom:133.435500px;}
.y45{bottom:140.727000px;}
.y60{bottom:149.799000px;}
.y28{bottom:154.303500px;}
.y44{bottom:157.090500px;}
.y27{bottom:170.667000px;}
.y43{bottom:173.454000px;}
.y5f{bottom:174.382500px;}
.y42{bottom:189.817500px;}
.y26{bottom:195.250500px;}
.y25{bottom:211.614000px;}
.y5e{bottom:212.533500px;}
.y41{bottom:214.401000px;}
.y40{bottom:230.764500px;}
.y24{bottom:236.196000px;}
.y5d{bottom:237.969000px;}
.y3f{bottom:247.128000px;}
.y23{bottom:252.561000px;}
.y5c{bottom:262.551000px;}
.y3e{bottom:263.491500px;}
.y22{bottom:268.924500px;}
.y3d{bottom:279.855000px;}
.y21{bottom:285.288000px;}
.y3c{bottom:296.218500px;}
.y5b{bottom:300.702000px;}
.y20{bottom:301.651500px;}
.y3b{bottom:320.802000px;}
.y5a{bottom:321.601500px;}
.y1f{bottom:326.233500px;}
.y3a{bottom:337.165500px;}
.y59{bottom:342.501000px;}
.y1e{bottom:342.597000px;}
.y39{bottom:353.529000px;}
.y1d{bottom:358.962000px;}
.y58{bottom:367.936500px;}
.y1c{bottom:375.325500px;}
.y38{bottom:378.112500px;}
.y1b{bottom:391.689000px;}
.y57{bottom:392.520000px;}
.y37{bottom:394.476000px;}
.y1a{bottom:408.052500px;}
.y36{bottom:410.839500px;}
.y56{bottom:423.874500px;}
.y35{bottom:427.203000px;}
.y19{bottom:432.634500px;}
.y34{bottom:443.566500px;}
.y18{bottom:448.998000px;}
.y33{bottom:459.930000px;}
.y55{bottom:460.633500px;}
.y17{bottom:465.363000px;}
.y32{bottom:476.293500px;}
.y16{bottom:481.726500px;}
.y15{bottom:498.090000px;}
.y31{bottom:500.877000px;}
.y14{bottom:514.453500px;}
.y30{bottom:517.240500px;}
.y54{bottom:519.513000px;}
.y2f{bottom:533.604000px;}
.y2e{bottom:549.967500px;}
.y13{bottom:560.041500px;}
.y2d{bottom:587.179500px;}
.y73{bottom:598.804500px;}
.y72{bottom:615.168000px;}
.y2c{bottom:635.926500px;}
.y12{bottom:640.431000px;}
.y71{bottom:643.486500px;}
.y2b{bottom:652.290000px;}
.y11{bottom:656.794500px;}
.y70{bottom:659.851500px;}
.y10{bottom:673.158000px;}
.y6f{bottom:686.301000px;}
.yf{bottom:689.521500px;}
.ye{bottom:705.885000px;}
.yd{bottom:722.248500px;}
.y6e{bottom:728.892000px;}
.yc{bottom:738.613500px;}
.y6d{bottom:745.255500px;}
.yb{bottom:754.977000px;}
.ya{bottom:771.340500px;}
.y6c{bottom:779.925000px;}
.y9{bottom:787.704000px;}
.y6b{bottom:822.516000px;}
.y8{bottom:835.252500px;}
.y6a{bottom:844.857000px;}
.y69{bottom:869.589000px;}
.y53{bottom:893.200500px;}
.y7{bottom:897.025500px;}
.y68{bottom:906.276000px;}
.y52{bottom:909.564000px;}
.y6{bottom:913.389000px;}
.y51{bottom:925.927500px;}
.y67{bottom:928.617000px;}
.y5{bottom:929.752500px;}
.y50{bottom:942.291000px;}
.y4{bottom:946.116000px;}
.y66{bottom:950.959500px;}
.y4f{bottom:958.654500px;}
.y3{bottom:962.479500px;}
.y65{bottom:973.300500px;}
.y4e{bottom:975.018000px;}
.y64{bottom:995.641500px;}
.y4d{bottom:999.601500px;}
.y2{bottom:1013.299500px;}
.y4c{bottom:1015.965000px;}
.y63{bottom:1017.982500px;}
.y4b{bottom:1032.328500px;}
.y62{bottom:1040.323500px;}
.y1{bottom:1043.188500px;}
.y4a{bottom:1048.692000px;}
.y49{bottom:1065.055500px;}
.h5{height:40.826735px;}
.h3{height:41.125613px;}
.h2{height:41.364715px;}
.h6{height:41.544042px;}
.h7{height:47.529533px;}
.h4{height:49.637990px;}
.h1{height:71.478341px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:162.000000px;}
.x11{left:176.406000px;}
.xe{left:197.118000px;}
.xd{left:199.717500px;}
.x10{left:203.095500px;}
.x1{left:214.831500px;}
.xf{left:232.984500px;}
.x4{left:339.091500px;}
.x2{left:352.660500px;}
.x6{left:368.814000px;}
.x5{left:372.124500px;}
.x3{left:404.538000px;}
.x7{left:421.230000px;}
.x8{left:425.637000px;}
.xc{left:455.263500px;}
.xb{left:588.930000px;}
.xa{left:712.860000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws18{word-spacing:-11.955200pt;}
.ws17{word-spacing:-7.970133pt;}
.ws14{word-spacing:-1.700284pt;}
.wse{word-spacing:-1.062677pt;}
.wsa{word-spacing:-0.478205pt;}
.ws20{word-spacing:-0.318803pt;}
.ws4{word-spacing:-0.265669pt;}
.wsd{word-spacing:-0.212535pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws10{word-spacing:-0.106268pt;}
.ws2b{word-spacing:-0.063761pt;}
.wsc{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.053134pt;}
.ws11{word-spacing:0.106268pt;}
.ws6{word-spacing:0.159402pt;}
.ws7{word-spacing:0.212535pt;}
.ws25{word-spacing:0.637606pt;}
.ws8{word-spacing:0.743874pt;}
.ws12{word-spacing:0.956410pt;}
.ws26{word-spacing:1.062677pt;}
.ws27{word-spacing:1.381481pt;}
.ws1a{word-spacing:1.912819pt;}
.ws23{word-spacing:2.231622pt;}
.ws13{word-spacing:2.497292pt;}
.wsf{word-spacing:3.081764pt;}
.ws9{word-spacing:3.719371pt;}
.ws2a{word-spacing:3.825638pt;}
.ws15{word-spacing:3.985040pt;}
.ws1e{word-spacing:4.888316pt;}
.ws24{word-spacing:5.207119pt;}
.ws2c{word-spacing:5.366521pt;}
.ws22{word-spacing:5.472788pt;}
.ws21{word-spacing:6.163529pt;}
.ws1d{word-spacing:6.482332pt;}
.ws16{word-spacing:6.640145pt;}
.ws1c{word-spacing:7.491875pt;}
.ws1{word-spacing:13.230333pt;}
.ws28{word-spacing:13.283467pt;}
.ws1b{word-spacing:15.154785pt;}
.ws3{word-spacing:15.249420pt;}
.ws19{word-spacing:15.876506pt;}
.ws0{word-spacing:22.862051pt;}
.ws29{word-spacing:53.080733pt;}
.wsb{word-spacing:63.697306pt;}
._14{margin-left:-7.326092pt;}
._c{margin-left:-5.866018pt;}
._3{margin-left:-4.590773pt;}
._7{margin-left:-3.377228pt;}
._2{margin-left:-1.836309pt;}
._0{margin-left:-0.918155pt;}
._a{width:2.647236pt;}
._9{width:12.327057pt;}
._10{width:14.830731pt;}
._5{width:16.796684pt;}
._8{width:18.012381pt;}
._6{width:19.128192pt;}
._4{width:20.615940pt;}
._d{width:22.688161pt;}
._13{width:24.654114pt;}
._12{width:26.566933pt;}
._1{width:28.462795pt;}
._e{width:32.152407pt;}
._f{width:36.143829pt;}
._15{width:37.057681pt;}
._11{width:53.133867pt;}
._b{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:56.149333pt;}
.y2a{bottom:69.497333pt;}
.y29{bottom:82.781333pt;}
.y47{bottom:96.000000pt;}
.y46{bottom:110.545333pt;}
.y61{bottom:118.609333pt;}
.y45{bottom:125.090667pt;}
.y60{bottom:133.154667pt;}
.y28{bottom:137.158667pt;}
.y44{bottom:139.636000pt;}
.y27{bottom:151.704000pt;}
.y43{bottom:154.181333pt;}
.y5f{bottom:155.006667pt;}
.y42{bottom:168.726667pt;}
.y26{bottom:173.556000pt;}
.y25{bottom:188.101333pt;}
.y5e{bottom:188.918667pt;}
.y41{bottom:190.578667pt;}
.y40{bottom:205.124000pt;}
.y24{bottom:209.952000pt;}
.y5d{bottom:211.528000pt;}
.y3f{bottom:219.669333pt;}
.y23{bottom:224.498667pt;}
.y5c{bottom:233.378667pt;}
.y3e{bottom:234.214667pt;}
.y22{bottom:239.044000pt;}
.y3d{bottom:248.760000pt;}
.y21{bottom:253.589333pt;}
.y3c{bottom:263.305333pt;}
.y5b{bottom:267.290667pt;}
.y20{bottom:268.134667pt;}
.y3b{bottom:285.157333pt;}
.y5a{bottom:285.868000pt;}
.y1f{bottom:289.985333pt;}
.y3a{bottom:299.702667pt;}
.y59{bottom:304.445333pt;}
.y1e{bottom:304.530667pt;}
.y39{bottom:314.248000pt;}
.y1d{bottom:319.077333pt;}
.y58{bottom:327.054667pt;}
.y1c{bottom:333.622667pt;}
.y38{bottom:336.100000pt;}
.y1b{bottom:348.168000pt;}
.y57{bottom:348.906667pt;}
.y37{bottom:350.645333pt;}
.y1a{bottom:362.713333pt;}
.y36{bottom:365.190667pt;}
.y56{bottom:376.777333pt;}
.y35{bottom:379.736000pt;}
.y19{bottom:384.564000pt;}
.y34{bottom:394.281333pt;}
.y18{bottom:399.109333pt;}
.y33{bottom:408.826667pt;}
.y55{bottom:409.452000pt;}
.y17{bottom:413.656000pt;}
.y32{bottom:423.372000pt;}
.y16{bottom:428.201333pt;}
.y15{bottom:442.746667pt;}
.y31{bottom:445.224000pt;}
.y14{bottom:457.292000pt;}
.y30{bottom:459.769333pt;}
.y54{bottom:461.789333pt;}
.y2f{bottom:474.314667pt;}
.y2e{bottom:488.860000pt;}
.y13{bottom:497.814667pt;}
.y2d{bottom:521.937333pt;}
.y73{bottom:532.270667pt;}
.y72{bottom:546.816000pt;}
.y2c{bottom:565.268000pt;}
.y12{bottom:569.272000pt;}
.y71{bottom:571.988000pt;}
.y2b{bottom:579.813333pt;}
.y11{bottom:583.817333pt;}
.y70{bottom:586.534667pt;}
.y10{bottom:598.362667pt;}
.y6f{bottom:610.045333pt;}
.yf{bottom:612.908000pt;}
.ye{bottom:627.453333pt;}
.yd{bottom:641.998667pt;}
.y6e{bottom:647.904000pt;}
.yc{bottom:656.545333pt;}
.y6d{bottom:662.449333pt;}
.yb{bottom:671.090667pt;}
.ya{bottom:685.636000pt;}
.y6c{bottom:693.266667pt;}
.y9{bottom:700.181333pt;}
.y6b{bottom:731.125333pt;}
.y8{bottom:742.446667pt;}
.y6a{bottom:750.984000pt;}
.y69{bottom:772.968000pt;}
.y53{bottom:793.956000pt;}
.y7{bottom:797.356000pt;}
.y68{bottom:805.578667pt;}
.y52{bottom:808.501333pt;}
.y6{bottom:811.901333pt;}
.y51{bottom:823.046667pt;}
.y67{bottom:825.437333pt;}
.y5{bottom:826.446667pt;}
.y50{bottom:837.592000pt;}
.y4{bottom:840.992000pt;}
.y66{bottom:845.297333pt;}
.y4f{bottom:852.137333pt;}
.y3{bottom:855.537333pt;}
.y65{bottom:865.156000pt;}
.y4e{bottom:866.682667pt;}
.y64{bottom:885.014667pt;}
.y4d{bottom:888.534667pt;}
.y2{bottom:900.710667pt;}
.y4c{bottom:903.080000pt;}
.y63{bottom:904.873333pt;}
.y4b{bottom:917.625333pt;}
.y62{bottom:924.732000pt;}
.y1{bottom:927.278667pt;}
.y4a{bottom:932.170667pt;}
.y49{bottom:946.716000pt;}
.h5{height:36.290431pt;}
.h3{height:36.556100pt;}
.h2{height:36.768636pt;}
.h6{height:36.928037pt;}
.h7{height:42.248474pt;}
.h4{height:44.122658pt;}
.h1{height:63.536303pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:144.000000pt;}
.x11{left:156.805333pt;}
.xe{left:175.216000pt;}
.xd{left:177.526667pt;}
.x10{left:180.529333pt;}
.x1{left:190.961333pt;}
.xf{left:207.097333pt;}
.x4{left:301.414667pt;}
.x2{left:313.476000pt;}
.x6{left:327.834667pt;}
.x5{left:330.777333pt;}
.x3{left:359.589333pt;}
.x7{left:374.426667pt;}
.x8{left:378.344000pt;}
.xc{left:404.678667pt;}
.xb{left:523.493333pt;}
.xa{left:633.653333pt;}
}




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